sym_glue.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:18k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Device driver for the SYMBIOS/LSILOGIC 53C8XX and 53C1010 family 
  3.  * of PCI-SCSI IO processors.
  4.  *
  5.  * Copyright (C) 1999-2001  Gerard Roudier <groudier@free.fr>
  6.  *
  7.  * This driver is derived from the Linux sym53c8xx driver.
  8.  * Copyright (C) 1998-2000  Gerard Roudier
  9.  *
  10.  * The sym53c8xx driver is derived from the ncr53c8xx driver that had been 
  11.  * a port of the FreeBSD ncr driver to Linux-1.2.13.
  12.  *
  13.  * The original ncr driver has been written for 386bsd and FreeBSD by
  14.  *         Wolfgang Stanglmeier        <wolf@cologne.de>
  15.  *         Stefan Esser                <se@mi.Uni-Koeln.de>
  16.  * Copyright (C) 1994  Wolfgang Stanglmeier
  17.  *
  18.  * Other major contributions:
  19.  *
  20.  * NVRAM detection and reading.
  21.  * Copyright (C) 1997 Richard Waltham <dormouse@farsrobt.demon.co.uk>
  22.  *
  23.  *-----------------------------------------------------------------------------
  24.  *
  25.  * Redistribution and use in source and binary forms, with or without
  26.  * modification, are permitted provided that the following conditions
  27.  * are met:
  28.  * 1. Redistributions of source code must retain the above copyright
  29.  *    notice, this list of conditions and the following disclaimer.
  30.  * 2. The name of the author may not be used to endorse or promote products
  31.  *    derived from this software without specific prior written permission.
  32.  *
  33.  * Where this Software is combined with software released under the terms of 
  34.  * the GNU Public License ("GPL") and the terms of the GPL would require the 
  35.  * combined work to also be released under the terms of the GPL, the terms
  36.  * and conditions of this License will apply in addition to those of the
  37.  * GPL with the exception of any terms or conditions of this License that
  38.  * conflict with, or are expressly prohibited by, the GPL.
  39.  *
  40.  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
  41.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43.  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  44.  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50.  * SUCH DAMAGE.
  51.  */
  52. #ifndef SYM_GLUE_H
  53. #define SYM_GLUE_H
  54. #if 0
  55. #define SYM_CONF_DMA_ADDRESSING_MODE 2
  56. #endif
  57. #define LinuxVersionCode(v, p, s) (((v)<<16)+((p)<<8)+(s))
  58. #include <linux/version.h>
  59. #if LINUX_VERSION_CODE < LinuxVersionCode(2, 2, 0)
  60. #error "This driver requires a kernel version not lower than 2.2.0"
  61. #endif
  62. #include <asm/dma.h>
  63. #include <asm/io.h>
  64. #include <asm/system.h>
  65. #if LINUX_VERSION_CODE >= LinuxVersionCode(2,3,17)
  66. #include <linux/spinlock.h>
  67. #else
  68. #include <asm/spinlock.h>
  69. #endif
  70. #include <linux/delay.h>
  71. #include <linux/signal.h>
  72. #include <linux/sched.h>
  73. #include <linux/errno.h>
  74. #include <linux/pci.h>
  75. #include <linux/string.h>
  76. #include <linux/mm.h>
  77. #include <linux/ioport.h>
  78. #include <linux/time.h>
  79. #include <linux/timer.h>
  80. #include <linux/stat.h>
  81. #include <linux/blk.h>
  82. #ifdef __sparc__
  83. #  include <asm/irq.h>
  84. #endif
  85. #include <linux/init.h>
  86. #ifndef __init
  87. #define __init
  88. #endif
  89. #ifndef __initdata
  90. #define __initdata
  91. #endif
  92. #include "../scsi.h"
  93. #include "../hosts.h"
  94. #include "../constants.h"
  95. #include "../sd.h"
  96. #include <linux/types.h>
  97. /*
  98.  *  Define BITS_PER_LONG for earlier linux versions.
  99.  */
  100. #ifndef BITS_PER_LONG
  101. #if (~0UL) == 0xffffffffUL
  102. #define BITS_PER_LONG 32
  103. #else
  104. #define BITS_PER_LONG 64
  105. #endif
  106. #endif
  107. typedef u_long vm_offset_t;
  108. #ifndef bcopy
  109. #define bcopy(s, d, n) memcpy((d), (s), (n))
  110. #endif
  111. #ifndef bzero
  112. #define bzero(d, n) memset((d), 0, (n))
  113. #endif
  114. #ifndef bcmp
  115. #define bcmp(a, b, n) memcmp((a), (b), (n))
  116. #endif
  117. /*
  118.  *  General driver includes.
  119.  */
  120. #include "sym53c8xx.h"
  121. #include "sym_misc.h"
  122. #include "sym_conf.h"
  123. #include "sym_defs.h"
  124. /*
  125.  * Configuration addendum for Linux.
  126.  */
  127. #if LINUX_VERSION_CODE >= LinuxVersionCode(2,3,47)
  128. #define SYM_LINUX_DYNAMIC_DMA_MAPPING
  129. #endif
  130. #define SYM_CONF_TIMER_INTERVAL ((HZ+1)/2)
  131. #define SYM_OPT_HANDLE_DIR_UNKNOWN
  132. #define SYM_OPT_HANDLE_DEVICE_QUEUEING
  133. #define SYM_OPT_NVRAM_PRE_READ
  134. #define SYM_OPT_SNIFF_INQUIRY
  135. #define SYM_OPT_LIMIT_COMMAND_REORDERING
  136. #define SYM_OPT_ANNOUNCE_TRANSFER_RATE
  137. #ifdef SYM_LINUX_DYNAMIC_DMA_MAPPING
  138. #define SYM_OPT_BUS_DMA_ABSTRACTION
  139. #endif
  140. /*
  141.  *  Print a message with severity.
  142.  */
  143. #define printf_emerg(args...) printk(KERN_EMERG args)
  144. #define printf_alert(args...) printk(KERN_ALERT args)
  145. #define printf_crit(args...) printk(KERN_CRIT args)
  146. #define printf_err(args...) printk(KERN_ERR args)
  147. #define printf_warning(args...) printk(KERN_WARNING args)
  148. #define printf_notice(args...) printk(KERN_NOTICE args)
  149. #define printf_info(args...) printk(KERN_INFO args)
  150. #define printf_debug(args...) printk(KERN_DEBUG args)
  151. #define printf(args...) printk(args)
  152. /*
  153.  *  Insert a delay in micro-seconds and milli-seconds.
  154.  */
  155. void sym_udelay(int us);
  156. void sym_mdelay(int ms);
  157. /*
  158.  *  Let the compiler know about driver data structure names.
  159.  */
  160. typedef struct sym_tcb *tcb_p;
  161. typedef struct sym_lcb *lcb_p;
  162. typedef struct sym_ccb *ccb_p;
  163. typedef struct sym_hcb *hcb_p;
  164. typedef struct sym_stcb *stcb_p;
  165. typedef struct sym_slcb *slcb_p;
  166. typedef struct sym_sccb *sccb_p;
  167. typedef struct sym_shcb *shcb_p;
  168. /*
  169.  *  Define a reference to the O/S dependant IO request.
  170.  */
  171. typedef Scsi_Cmnd *cam_ccb_p; /* Generic */
  172. typedef Scsi_Cmnd *cam_scsiio_p;/* SCSI I/O */
  173. /*
  174.  *  IO functions definition for big/little endian CPU support.
  175.  *  For now, PCI chips are only supported in little endian addressing mode, 
  176.  */
  177. #ifdef __BIG_ENDIAN
  178. #define inw_l2b inw
  179. #define inl_l2b inl
  180. #define outw_b2l outw
  181. #define outl_b2l outl
  182. #define readw_l2b readw
  183. #define readl_l2b readl
  184. #define writew_b2l writew
  185. #define writel_b2l writel
  186. #else /* little endian */
  187. #if defined(__i386__) /* i386 implements full FLAT memory/MMIO model */
  188. #define inw_raw inw
  189. #define inl_raw inl
  190. #define outw_raw outw
  191. #define outl_raw outl
  192. #define readb_raw(a) (*(volatile unsigned char *) (a))
  193. #define readw_raw(a) (*(volatile unsigned short *) (a))
  194. #define readl_raw(a) (*(volatile unsigned int *) (a))
  195. #define writeb_raw(b,a) ((*(volatile unsigned char *) (a)) = (b))
  196. #define writew_raw(b,a) ((*(volatile unsigned short *) (a)) = (b))
  197. #define writel_raw(b,a) ((*(volatile unsigned int *) (a)) = (b))
  198. #else /* Other little-endian */
  199. #define inw_raw inw
  200. #define inl_raw inl
  201. #define outw_raw outw
  202. #define outl_raw outl
  203. #define readw_raw readw
  204. #define readl_raw readl
  205. #define writew_raw writew
  206. #define writel_raw writel
  207. #endif
  208. #endif
  209. #ifdef SYM_CONF_CHIP_BIG_ENDIAN
  210. #error "Chips in BIG ENDIAN addressing mode are not (yet) supported"
  211. #endif
  212. /*
  213.  *  If the chip uses big endian addressing mode over the 
  214.  *  PCI, actual io register addresses for byte and word 
  215.  *  accesses must be changed according to lane routing.
  216.  *  Btw, sym_offb() and sym_offw() macros only apply to 
  217.  *  constants and so donnot generate bloated code.
  218.  */
  219. #if defined(SYM_CONF_CHIP_BIG_ENDIAN)
  220. #define sym_offb(o) (((o)&~3)+((~((o)&3))&3))
  221. #define sym_offw(o) (((o)&~3)+((~((o)&3))&2))
  222. #else
  223. #define sym_offb(o) (o)
  224. #define sym_offw(o) (o)
  225. #endif
  226. /*
  227.  *  If the CPU and the chip use same endian-ness adressing,
  228.  *  no byte reordering is needed for script patching.
  229.  *  Macro cpu_to_scr() is to be used for script patching.
  230.  *  Macro scr_to_cpu() is to be used for getting a DWORD 
  231.  *  from the script.
  232.  */
  233. #if defined(__BIG_ENDIAN) && !defined(SYM_CONF_CHIP_BIG_ENDIAN)
  234. #define cpu_to_scr(dw) cpu_to_le32(dw)
  235. #define scr_to_cpu(dw) le32_to_cpu(dw)
  236. #elif defined(__LITTLE_ENDIAN) && defined(SYM_CONF_CHIP_BIG_ENDIAN)
  237. #define cpu_to_scr(dw) cpu_to_be32(dw)
  238. #define scr_to_cpu(dw) be32_to_cpu(dw)
  239. #else
  240. #define cpu_to_scr(dw) (dw)
  241. #define scr_to_cpu(dw) (dw)
  242. #endif
  243. /*
  244.  *  Access to the controller chip.
  245.  *
  246.  *  If SYM_CONF_IOMAPPED is defined, the driver will use 
  247.  *  normal IOs instead of the MEMORY MAPPED IO method  
  248.  *  recommended by PCI specifications.
  249.  *  If all PCI bridges, host brigdes and architectures 
  250.  *  would have been correctly designed for PCI, this 
  251.  *  option would be useless.
  252.  *
  253.  *  If the CPU and the chip use same endian-ness adressing,
  254.  *  no byte reordering is needed for accessing chip io 
  255.  *  registers. Functions suffixed by '_raw' are assumed 
  256.  *  to access the chip over the PCI without doing byte 
  257.  *  reordering. Functions suffixed by '_l2b' are 
  258.  *  assumed to perform little-endian to big-endian byte 
  259.  *  reordering, those suffixed by '_b2l' blah, blah,
  260.  *  blah, ...
  261.  */
  262. #if defined(SYM_CONF_IOMAPPED)
  263. /*
  264.  *  IO mapped only input / ouput
  265.  */
  266. #define INB_OFF(o)        inb (np->s.io_port + sym_offb(o))
  267. #define OUTB_OFF(o, val)  outb ((val), np->s.io_port + sym_offb(o))
  268. #if defined(__BIG_ENDIAN) && !defined(SYM_CONF_CHIP_BIG_ENDIAN)
  269. #define INW_OFF(o)        inw_l2b (np->s.io_port + sym_offw(o))
  270. #define INL_OFF(o)        inl_l2b (np->s.io_port + (o))
  271. #define OUTW_OFF(o, val)  outw_b2l ((val), np->s.io_port + sym_offw(o))
  272. #define OUTL_OFF(o, val)  outl_b2l ((val), np->s.io_port + (o))
  273. #elif defined(__LITTLE_ENDIAN) && defined(SYM_CONF_CHIP_BIG_ENDIAN)
  274. #define INW_OFF(o)        inw_b2l (np->s.io_port + sym_offw(o))
  275. #define INL_OFF(o)        inl_b2l (np->s.io_port + (o))
  276. #define OUTW_OFF(o, val)  outw_l2b ((val), np->s.io_port + sym_offw(o))
  277. #define OUTL_OFF(o, val)  outl_l2b ((val), np->s.io_port + (o))
  278. #else
  279. #define INW_OFF(o)        inw_raw (np->s.io_port + sym_offw(o))
  280. #define INL_OFF(o)        inl_raw (np->s.io_port + (o))
  281. #define OUTW_OFF(o, val)  outw_raw ((val), np->s.io_port + sym_offw(o))
  282. #define OUTL_OFF(o, val)  outl_raw ((val), np->s.io_port + (o))
  283. #endif /* ENDIANs */
  284. #else /* defined SYM_CONF_IOMAPPED */
  285. /*
  286.  *  MEMORY mapped IO input / output
  287.  */
  288. #define INB_OFF(o)        readb((char *)np->s.mmio_va + sym_offb(o))
  289. #define OUTB_OFF(o, val)  writeb((val), (char *)np->s.mmio_va + sym_offb(o))
  290. #if defined(__BIG_ENDIAN) && !defined(SYM_CONF_CHIP_BIG_ENDIAN)
  291. #define INW_OFF(o)        readw_l2b((char *)np->s.mmio_va + sym_offw(o))
  292. #define INL_OFF(o)        readl_l2b((char *)np->s.mmio_va + (o))
  293. #define OUTW_OFF(o, val)  writew_b2l((val), (char *)np->s.mmio_va + sym_offw(o))
  294. #define OUTL_OFF(o, val)  writel_b2l((val), (char *)np->s.mmio_va + (o))
  295. #elif defined(__LITTLE_ENDIAN) && defined(SYM_CONF_CHIP_BIG_ENDIAN)
  296. #define INW_OFF(o)        readw_b2l((char *)np->s.mmio_va + sym_offw(o))
  297. #define INL_OFF(o)        readl_b2l((char *)np->s.mmio_va + (o))
  298. #define OUTW_OFF(o, val)  writew_l2b((val), (char *)np->s.mmio_va + sym_offw(o))
  299. #define OUTL_OFF(o, val)  writel_l2b((val), (char *)np->s.mmio_va + (o))
  300. #else
  301. #define INW_OFF(o)        readw_raw((char *)np->s.mmio_va + sym_offw(o))
  302. #define INL_OFF(o)        readl_raw((char *)np->s.mmio_va + (o))
  303. #define OUTW_OFF(o, val)  writew_raw((val), (char *)np->s.mmio_va + sym_offw(o))
  304. #define OUTL_OFF(o, val)  writel_raw((val), (char *)np->s.mmio_va + (o))
  305. #endif
  306. #endif /* defined SYM_CONF_IOMAPPED */
  307. #define OUTRAM_OFF(o, a, l) memcpy_toio(np->s.ram_va + (o), (a), (l))
  308. /*
  309.  *  Remap some status field values.
  310.  */
  311. #define CAM_REQ_CMP DID_OK
  312. #define CAM_SEL_TIMEOUT DID_NO_CONNECT
  313. #define CAM_CMD_TIMEOUT DID_TIME_OUT
  314. #define CAM_REQ_ABORTED DID_ABORT
  315. #define CAM_UNCOR_PARITY DID_PARITY
  316. #define CAM_SCSI_BUS_RESET DID_RESET
  317. #define CAM_REQUEUE_REQ DID_SOFT_ERROR
  318. #define CAM_UNEXP_BUSFREE DID_ERROR
  319. #define CAM_SCSI_BUSY DID_BUS_BUSY
  320. #define CAM_DEV_NOT_THERE DID_NO_CONNECT
  321. #define CAM_REQ_INVALID DID_ERROR
  322. #define CAM_REQ_TOO_BIG DID_ERROR
  323. #define CAM_RESRC_UNAVAIL DID_ERROR
  324. /*
  325.  *  Remap SCSI data direction values.
  326.  */
  327. #ifndef SCSI_DATA_UNKNOWN
  328. #define SCSI_DATA_UNKNOWN 0
  329. #define SCSI_DATA_WRITE 1
  330. #define SCSI_DATA_READ 2
  331. #define SCSI_DATA_NONE 3
  332. #endif
  333. #define CAM_DIR_NONE SCSI_DATA_NONE
  334. #define CAM_DIR_IN SCSI_DATA_READ
  335. #define CAM_DIR_OUT SCSI_DATA_WRITE
  336. #define CAM_DIR_UNKNOWN SCSI_DATA_UNKNOWN
  337. /*
  338.  *  These ones are used as return code from 
  339.  *  error recovery handlers under Linux.
  340.  */
  341. #define SCSI_SUCCESS SUCCESS
  342. #define SCSI_FAILED FAILED
  343. /*
  344.  *  System specific target data structure.
  345.  *  None for now, under Linux.
  346.  */
  347. /* #define SYM_HAVE_STCB */
  348. /*
  349.  *  System specific lun data structure.
  350.  */
  351. #define SYM_HAVE_SLCB
  352. struct sym_slcb {
  353. u_short reqtags; /* Number of tags requested by user */
  354. u_short scdev_depth; /* Queue depth set in select_queue_depth() */
  355. };
  356. /*
  357.  *  System specific command data structure.
  358.  *  Not needed under Linux.
  359.  */
  360. /* struct sym_sccb */
  361. /*
  362.  *  System specific host data structure.
  363.  */
  364. struct sym_shcb {
  365. /*
  366.  *  Chip and controller indentification.
  367.  */
  368. int unit;
  369. char inst_name[16];
  370. char chip_name[8];
  371. struct pci_dev *device;
  372. u_char bus; /* PCI BUS number */
  373. u_char device_fn; /* PCI BUS device and function */
  374. spinlock_t smp_lock; /* Lock for SMP threading       */
  375. vm_offset_t mmio_va; /* MMIO kernel virtual address */
  376. vm_offset_t ram_va; /* RAM  kernel virtual address */
  377. u_long io_port; /* IO port address cookie */
  378. u_short io_ws; /* IO window size */
  379. int irq; /* IRQ number */
  380. SYM_QUEHEAD wait_cmdq; /* Awaiting SCSI commands */
  381. SYM_QUEHEAD busy_cmdq; /* Enqueued SCSI commands */
  382. struct timer_list timer; /* Timer handler link header */
  383. u_long lasttime;
  384. u_long settle_time; /* Resetting the SCSI BUS */
  385. u_char settle_time_valid;
  386. #if LINUX_VERSION_CODE < LinuxVersionCode(2, 4, 0)
  387. u_char release_stage; /* Synchronisation on release */
  388. #endif
  389. };
  390. /*
  391.  *  Return the name of the controller.
  392.  */
  393. #define sym_name(np) (np)->s.inst_name
  394. /*
  395.  *  Data structure used as input for the NVRAM reading.
  396.  *  Must resolve the IO macros and sym_name(), when  
  397.  *  used as sub-field 's' of another structure.
  398.  */
  399. typedef struct {
  400. int bus;
  401. u_char device_fn;
  402. u_long base;
  403. u_long base_2;
  404. u_long base_c;
  405. u_long base_2_c;
  406. int irq;
  407. /* port and address fields to fit INB, OUTB macros */
  408. u_long io_port;
  409. vm_offset_t mmio_va;
  410. char inst_name[16];
  411. } sym_slot;
  412. typedef struct sym_nvram sym_nvram;
  413. typedef struct sym_pci_chip sym_chip;
  414. typedef struct {
  415. struct pci_dev *pdev;
  416. sym_slot  s;
  417. sym_chip  chip;
  418. sym_nvram *nvram;
  419. u_short device_id;
  420. u_char host_id;
  421. #ifdef SYM_CONF_PQS_PDS_SUPPORT
  422. u_char pqs_pds;
  423. #endif
  424. int attach_done;
  425. } sym_device;
  426. typedef sym_device *sdev_p;
  427. /*
  428.  *  The driver definitions (sym_hipd.h) must know about a 
  429.  *  couple of things related to the memory allocator.
  430.  */
  431. typedef u_long m_addr_t; /* Enough bits to represent any address */
  432. #define SYM_MEM_PAGE_ORDER 0 /* 1 PAGE  maximum */
  433. #define SYM_MEM_CLUSTER_SHIFT (PAGE_SHIFT+SYM_MEM_PAGE_ORDER)
  434. #ifdef MODULE
  435. #define SYM_MEM_FREE_UNUSED /* Free unused pages immediately */
  436. #endif
  437. #ifdef SYM_LINUX_DYNAMIC_DMA_MAPPING
  438. typedef struct pci_dev *m_pool_ident_t;
  439. #endif
  440. /*
  441.  *  Include driver soft definitions.
  442.  */
  443. #include "sym_fw.h"
  444. #include "sym_hipd.h"
  445. /*
  446.  *  Memory allocator related stuff.
  447.  */
  448. #define SYM_MEM_GFP_FLAGS GFP_ATOMIC
  449. #define SYM_MEM_WARN 1 /* Warn on failed operations */
  450. #define sym_get_mem_cluster()
  451. __get_free_pages(SYM_MEM_GFP_FLAGS, SYM_MEM_PAGE_ORDER)
  452. #define sym_free_mem_cluster(p)
  453. free_pages(p, SYM_MEM_PAGE_ORDER)
  454. void *sym_calloc(int size, char *name);
  455. void sym_mfree(void *m, int size, char *name);
  456. #ifndef SYM_LINUX_DYNAMIC_DMA_MAPPING
  457. /*
  458.  *  Simple case.
  459.  *  All the memory assummed DMAable and O/S providing virtual 
  460.  *  to bus physical address translation.
  461.  */
  462. #define __sym_calloc_dma(pool_id, size, name) sym_calloc(size, name)
  463. #define __sym_mfree_dma(pool_id, m, size, name) sym_mfree(m, size, name)
  464. #define __vtobus(b, p) virt_to_bus(p)
  465. #else /* SYM_LINUX_DYNAMIC_DMA_MAPPING */
  466. /*
  467.  *  Complex case.
  468.  *  We have to provide the driver memory allocator with methods for 
  469.  *  it to maintain virtual to bus physical address translations.
  470.  */
  471. #define sym_m_pool_match(mp_id1, mp_id2) (mp_id1 == mp_id2)
  472. static __inline m_addr_t sym_m_get_dma_mem_cluster(m_pool_p mp, m_vtob_p vbp)
  473. {
  474. void *vaddr = 0;
  475. dma_addr_t baddr = 0;
  476. vaddr = pci_alloc_consistent(mp->dev_dmat,SYM_MEM_CLUSTER_SIZE, &baddr);
  477. if (vaddr) {
  478. vbp->vaddr = (m_addr_t) vaddr;
  479. vbp->baddr = (m_addr_t) baddr;
  480. }
  481. return (m_addr_t) vaddr;
  482. }
  483. static __inline void sym_m_free_dma_mem_cluster(m_pool_p mp, m_vtob_p vbp)
  484. {
  485. pci_free_consistent(mp->dev_dmat, SYM_MEM_CLUSTER_SIZE,
  486.                     (void *)vbp->vaddr, (dma_addr_t)vbp->baddr);
  487. }
  488. #define sym_m_create_dma_mem_tag(mp) (0)
  489. #define sym_m_delete_dma_mem_tag(mp) do { ; } while (0)
  490. void *__sym_calloc_dma(m_pool_ident_t dev_dmat, int size, char *name);
  491. void __sym_mfree_dma(m_pool_ident_t dev_dmat, void *m, int size, char *name);
  492. m_addr_t __vtobus(m_pool_ident_t dev_dmat, void *m);
  493. #endif /* SYM_LINUX_DYNAMIC_DMA_MAPPING */
  494. /*
  495.  *  Set the status field of a CAM CCB.
  496.  */
  497. static __inline void 
  498. sym_set_cam_status(Scsi_Cmnd  *ccb, int status)
  499. {
  500. ccb->result &= ~(0xff  << 16);
  501. ccb->result |= (status << 16);
  502. }
  503. /*
  504.  *  Get the status field of a CAM CCB.
  505.  */
  506. static __inline int 
  507. sym_get_cam_status(Scsi_Cmnd  *ccb)
  508. {
  509. return ((ccb->result >> 16) & 0xff);
  510. }
  511. /*
  512.  *  The dma mapping is mostly handled by the 
  513.  *  SCSI layer and the driver glue under Linux.
  514.  */
  515. #define sym_data_dmamap_create(np, cp) (0)
  516. #define sym_data_dmamap_destroy(np, cp) do { ; } while (0)
  517. #define sym_data_dmamap_unload(np, cp) do { ; } while (0)
  518. #define sym_data_dmamap_presync(np, cp) do { ; } while (0)
  519. #define sym_data_dmamap_postsync(np, cp) do { ; } while (0)
  520. /*
  521.  *  Async handler for negotiations.
  522.  */
  523. void sym_xpt_async_nego_wide(hcb_p np, int target);
  524. #define sym_xpt_async_nego_sync(np, target)
  525. sym_announce_transfer_rate(np, target)
  526. #define sym_xpt_async_nego_ppr(np, target)
  527. sym_announce_transfer_rate(np, target)
  528. /*
  529.  *  Build CAM result for a successful IO and for a failed IO.
  530.  */
  531. static __inline void sym_set_cam_result_ok(hcb_p np, ccb_p cp, int resid)
  532. {
  533. Scsi_Cmnd *cmd = cp->cam_ccb;
  534. #if LINUX_VERSION_CODE >= LinuxVersionCode(2,3,99)
  535. cmd->resid = resid;
  536. #endif
  537. cmd->result = (((DID_OK) << 16) + ((cp->ssss_status) & 0x7f));
  538. }
  539. void sym_set_cam_result_error(hcb_p np, ccb_p cp, int resid);
  540. /*
  541.  *  Other O/S specific methods.
  542.  */
  543. #define sym_cam_target_id(ccb) (ccb)->target
  544. #define sym_cam_target_lun(ccb) (ccb)->lun
  545. #define sym_freeze_cam_ccb(ccb) do { ; } while (0)
  546. void sym_xpt_done(hcb_p np, cam_ccb_p ccb);
  547. void sym_xpt_done2(hcb_p np, cam_ccb_p ccb, int cam_status);
  548. void sym_print_addr (ccb_p cp);
  549. void sym_xpt_async_bus_reset(hcb_p np);
  550. void sym_xpt_async_sent_bdr(hcb_p np, int target);
  551. int  sym_setup_data_and_start (hcb_p np, cam_scsiio_p csio, ccb_p cp);
  552. void sym_log_bus_error(hcb_p np);
  553. #ifdef SYM_OPT_SNIFF_INQUIRY
  554. void sym_sniff_inquiry(hcb_p np, Scsi_Cmnd *cmd, int resid);
  555. #endif
  556. #endif /* SYM_GLUE_H */