53c7xx.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:55k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * 53c710 driver.  Modified from Drew Eckhardts driver
  3.  * for 53c810 by Richard Hirst [richard@sleepie.demon.co.uk]
  4.  *
  5.  * I have left the code for the 53c8xx family in here, because it didn't
  6.  * seem worth removing it.  The possibility of IO_MAPPED chips rather
  7.  * than MEMORY_MAPPED remains, in case someone wants to add support for
  8.  * 53c710 chips on Intel PCs (some older machines have them on the
  9.  * motherboard).
  10.  *
  11.  * NOTE THERE MAY BE PROBLEMS WITH CASTS IN read8 AND Co.
  12.  */
  13. /*
  14.  * NCR 53c{7,8}0x0 driver, header file
  15.  *
  16.  * Sponsored by
  17.  *      iX Multiuser Multitasking Magazine
  18.  * Hannover, Germany
  19.  * hm@ix.de
  20.  *
  21.  * Copyright 1993, 1994, 1995 Drew Eckhardt
  22.  *      Visionary Computing 
  23.  *      (Unix and Linux consulting and custom programming)
  24.  *      drew@PoohSticks.ORG
  25.  * +1 (303) 786-7975
  26.  *
  27.  * TolerANT and SCSI SCRIPTS are registered trademarks of NCR Corporation.
  28.  * 
  29.  * PRE-ALPHA
  30.  *
  31.  * For more information, please consult 
  32.  *
  33.  * NCR 53C700/53C700-66
  34.  * SCSI I/O Processor
  35.  * Data Manual
  36.  *
  37.  * NCR 53C810
  38.  * PCI-SCSI I/O Processor 
  39.  * Data Manual
  40.  *
  41.  * NCR Microelectronics
  42.  * 1635 Aeroplaza Drive
  43.  * Colorado Springs, CO 80916
  44.  * +1 (719) 578-3400
  45.  *
  46.  * Toll free literature number
  47.  * +1 (800) 334-5454
  48.  *
  49.  */
  50. #ifndef NCR53c710_H
  51. #define NCR53c710_H
  52. #ifndef HOSTS_C
  53. /* SCSI control 0 rw, default = 0xc0 */ 
  54. #define SCNTL0_REG  0x00
  55. #define SCNTL0_ARB1 0x80 /* 0 0 = simple arbitration */
  56. #define SCNTL0_ARB2 0x40 /* 1 1 = full arbitration */
  57. #define SCNTL0_STRT 0x20 /* Start Sequence */
  58. #define SCNTL0_WATN 0x10 /* Select with ATN */
  59. #define SCNTL0_EPC 0x08 /* Enable parity checking */
  60. /* Bit 2 is reserved on 800 series chips */
  61. #define SCNTL0_EPG_700 0x04 /* Enable parity generation */
  62. #define SCNTL0_AAP 0x02 /*  ATN/ on parity error */
  63. #define SCNTL0_TRG 0x01 /* Target mode */
  64. /* SCSI control 1 rw, default = 0x00 */
  65. #define SCNTL1_REG  0x01
  66. #define SCNTL1_EXC 0x80 /* Extra Clock Cycle of Data setup */
  67. #define SCNTL1_ADB 0x40 /*  contents of SODL on bus */
  68. #define SCNTL1_ESR_700 0x20 /* Enable SIOP response to selection 
  69.    and reselection */
  70. #define SCNTL1_DHP_800 0x20 /* Disable halt on parity error or ATN
  71.    target mode only */
  72. #define SCNTL1_CON 0x10 /* Connected */
  73. #define SCNTL1_RST 0x08 /* SCSI RST/ */
  74. #define SCNTL1_AESP 0x04 /* Force bad parity */
  75. #define SCNTL1_SND_700 0x02 /* Start SCSI send */
  76. #define SCNTL1_IARB_800 0x02 /* Immediate Arbitration, start
  77.    arbitration immediately after
  78.    busfree is detected */
  79. #define SCNTL1_RCV_700 0x01 /* Start SCSI receive */
  80. #define SCNTL1_SST_800 0x01 /* Start SCSI transfer */
  81. /* SCSI control 2 rw, */
  82. #define SCNTL2_REG_800 0x02
  83. #define SCNTL2_800_SDU 0x80 /* SCSI disconnect unexpected */
  84. /* SCSI control 3 rw */
  85. #define SCNTL3_REG_800  0x03
  86. #define SCNTL3_800_SCF_SHIFT 4
  87. #define SCNTL3_800_SCF_MASK 0x70
  88. #define SCNTL3_800_SCF2 0x40 /* Synchronous divisor */
  89. #define SCNTL3_800_SCF1 0x20 /* 0x00 = SCLK/3 */
  90. #define SCNTL3_800_SCF0 0x10 /* 0x10 = SCLK/1 */
  91. /* 0x20 = SCLK/1.5 
  92.    0x30 = SCLK/2 
  93.    0x40 = SCLK/3 */
  94.     
  95. #define SCNTL3_800_CCF_SHIFT 0
  96. #define SCNTL3_800_CCF_MASK 0x07
  97. #define SCNTL3_800_CCF2 0x04 /* 0x00 50.01 to 66 */
  98. #define SCNTL3_800_CCF1 0x02 /* 0x01 16.67 to 25 */
  99. #define SCNTL3_800_CCF0 0x01 /* 0x02 25.01 - 37.5 
  100.    0x03 37.51 - 50 
  101.    0x04 50.01 - 66 */
  102. /*  
  103.  * SCSI destination ID rw - the appropriate bit is set for the selected
  104.  * target ID.  This is written by the SCSI SCRIPTS processor.
  105.  * default = 0x00
  106.  */
  107. #define SDID_REG_700   0x02
  108. #define SDID_REG_800 0x06
  109. #define GP_REG_800 0x07 /* General purpose IO */
  110. #define GP_800_IO1 0x02
  111. #define GP_800_IO2 0x01
  112. /* SCSI interrupt enable rw, default = 0x00 */
  113. #define SIEN_REG_700 0x03
  114. #define SIEN0_REG_800 0x40
  115. #define SIEN_MA 0x80 /* Phase mismatch (ini) or ATN (tgt) */
  116. #define SIEN_FC 0x40 /* Function complete */
  117. #define SIEN_700_STO 0x20 /* Selection or reselection timeout */
  118. #define SIEN_800_SEL 0x20 /* Selected */
  119. #define SIEN_700_SEL 0x10 /* Selected or reselected */
  120. #define SIEN_800_RESEL 0x10 /* Reselected */
  121. #define SIEN_SGE 0x08 /* SCSI gross error */
  122. #define SIEN_UDC 0x04 /* Unexpected disconnect */
  123. #define SIEN_RST 0x02 /* SCSI RST/ received */
  124. #define SIEN_PAR 0x01 /* Parity error */
  125. /* 
  126.  * SCSI chip ID rw
  127.  * NCR53c700 : 
  128.  *  When arbitrating, the highest bit is used, when reselection or selection
  129.  *  occurs, the chip responds to all IDs for which a bit is set.
  130.  *  default = 0x00 
  131.  * NCR53c810 : 
  132.  * Uses bit mapping
  133.  */
  134. #define SCID_REG 0x04
  135. /* Bit 7 is reserved on 800 series chips */
  136. #define SCID_800_RRE 0x40 /* Enable response to reselection */
  137. #define SCID_800_SRE 0x20 /* Enable response to selection */
  138. /* Bits four and three are reserved on 800 series chips */
  139. #define SCID_800_ENC_MASK 0x07 /* Encoded SCSI ID */
  140. /* SCSI transfer rw, default = 0x00 */
  141. #define SXFER_REG 0x05
  142. #define SXFER_DHP 0x80 /* Disable halt on parity */
  143. #define SXFER_TP2 0x40 /* Transfer period msb */
  144. #define SXFER_TP1 0x20
  145. #define SXFER_TP0 0x10 /* lsb */
  146. #define SXFER_TP_MASK 0x70
  147. /* FIXME : SXFER_TP_SHIFT == 5 is right for '8xx chips */
  148. #define SXFER_TP_SHIFT 5
  149. #define SXFER_TP_4 0x00 /* Divisors */
  150. #define SXFER_TP_5 0x10<<1
  151. #define SXFER_TP_6 0x20<<1
  152. #define SXFER_TP_7 0x30<<1
  153. #define SXFER_TP_8 0x40<<1
  154. #define SXFER_TP_9 0x50<<1
  155. #define SXFER_TP_10 0x60<<1
  156. #define SXFER_TP_11 0x70<<1
  157. #define SXFER_MO3 0x08 /* Max offset msb */
  158. #define SXFER_MO2 0x04
  159. #define SXFER_MO1 0x02
  160. #define SXFER_MO0 0x01 /* lsb */
  161. #define SXFER_MO_MASK 0x0f
  162. #define SXFER_MO_SHIFT 0
  163. /* 
  164.  * SCSI output data latch rw
  165.  * The contents of this register are driven onto the SCSI bus when 
  166.  * the Assert Data Bus bit of the SCNTL1 register is set and 
  167.  * the CD, IO, and MSG bits of the SOCL register match the SCSI phase
  168.  */
  169. #define SODL_REG_700 0x06
  170. #define SODL_REG_800 0x54
  171. /* 
  172.  * SCSI output control latch rw, default = 0 
  173.  * Note that when the chip is being manually programmed as an initiator,
  174.  * the MSG, CD, and IO bits must be set correctly for the phase the target
  175.  * is driving the bus in.  Otherwise no data transfer will occur due to 
  176.  * phase mismatch.
  177.  */
  178. #define SOCL_REG 0x07
  179. #define SOCL_REQ 0x80 /*  REQ */
  180. #define SOCL_ACK 0x40 /*  ACK */
  181. #define SOCL_BSY 0x20 /*  BSY */
  182. #define SOCL_SEL 0x10 /*  SEL */
  183. #define SOCL_ATN 0x08 /*  ATN */
  184. #define SOCL_MSG 0x04 /*  MSG */
  185. #define SOCL_CD 0x02 /*  C/D */
  186. #define SOCL_IO 0x01 /*  I/O */
  187. /* 
  188.  * SCSI first byte received latch ro 
  189.  * This register contains the first byte received during a block MOVE 
  190.  * SCSI SCRIPTS instruction, including
  191.  * 
  192.  * Initiator mode Target mode
  193.  * Message in Command
  194.  * Status Message out
  195.  * Data in Data out
  196.  *
  197.  * It also contains the selecting or reselecting device's ID and our 
  198.  * ID.
  199.  *
  200.  * Note that this is the register the various IF conditionals can 
  201.  * operate on.
  202.  */
  203. #define SFBR_REG 0x08
  204. /* 
  205.  * SCSI input data latch ro
  206.  * In initiator mode, data is latched into this register on the rising
  207.  * edge of REQ/. In target mode, data is latched on the rising edge of 
  208.  * ACK/
  209.  */
  210. #define SIDL_REG_700 0x09
  211. #define SIDL_REG_800 0x50
  212. /* 
  213.  * SCSI bus data lines ro 
  214.  * This register reflects the instantaneous status of the SCSI data 
  215.  * lines.  Note that SCNTL0 must be set to disable parity checking, 
  216.  * otherwise reading this register will latch new parity.
  217.  */
  218. #define SBDL_REG_700 0x0a
  219. #define SBDL_REG_800 0x58
  220. #define SSID_REG_800 0x0a
  221. #define SSID_800_VAL 0x80 /* Exactly two bits asserted at sel */
  222. #define SSID_800_ENCID_MASK 0x07 /* Device which performed operation */
  223. /* 
  224.  * SCSI bus control lines rw, 
  225.  * instantaneous readout of control lines 
  226.  */
  227. #define SBCL_REG 0x0b 
  228. #define SBCL_REQ 0x80 /*  REQ ro */
  229. #define SBCL_ACK 0x40 /*  ACK ro */
  230. #define SBCL_BSY 0x20 /*  BSY ro */
  231. #define SBCL_SEL 0x10 /*  SEL ro */
  232. #define SBCL_ATN 0x08 /*  ATN ro */
  233. #define SBCL_MSG 0x04 /*  MSG ro */
  234. #define SBCL_CD 0x02 /*  C/D ro */
  235. #define SBCL_IO 0x01 /*  I/O ro */
  236. #define SBCL_PHASE_CMDOUT SBCL_CD
  237. #define SBCL_PHASE_DATAIN SBCL_IO
  238. #define SBCL_PHASE_DATAOUT 0
  239. #define SBCL_PHASE_MSGIN (SBCL_CD|SBCL_IO|SBCL_MSG)
  240. #define SBCL_PHASE_MSGOUT (SBCL_CD|SBCL_MSG)
  241. #define SBCL_PHASE_STATIN (SBCL_CD|SBCL_IO)
  242. #define SBCL_PHASE_MASK (SBCL_CD|SBCL_IO|SBCL_MSG)
  243. /* 
  244.  * Synchronous SCSI Clock Control bits 
  245.  * 0 - set by DCNTL 
  246.  * 1 - SCLK / 1.0
  247.  * 2 - SCLK / 1.5
  248.  * 3 - SCLK / 2.0 
  249.  */
  250. #define SBCL_SSCF1 0x02 /* wo, -66 only */
  251. #define SBCL_SSCF0 0x01 /* wo, -66 only */
  252. #define SBCL_SSCF_MASK 0x03
  253. /* 
  254.  * XXX note : when reading the DSTAT and STAT registers to clear interrupts,
  255.  * insure that 10 clocks elapse between the two  
  256.  */
  257. /* DMA status ro */
  258. #define DSTAT_REG 0x0c
  259. #define DSTAT_DFE 0x80 /* DMA FIFO empty */
  260. #define DSTAT_800_MDPE 0x40 /* Master Data Parity Error */
  261. #define DSTAT_800_BF 0x20 /* Bus Fault */
  262. #define DSTAT_ABRT 0x10 /* Aborted - set on error */
  263. #define DSTAT_SSI 0x08 /* SCRIPTS single step interrupt */
  264. #define DSTAT_SIR 0x04 /* SCRIPTS interrupt received - 
  265.    set when INT instruction is 
  266.    executed */
  267. #define DSTAT_WTD 0x02 /* Watchdog timeout detected */
  268. #define DSTAT_OPC 0x01 /* Illegal instruction */
  269. #define DSTAT_800_IID 0x01 /* Same thing, different name */
  270. /* NCR53c800 moves this stuff into SIST0 */
  271. #define SSTAT0_REG 0x0d /* SCSI status 0 ro */
  272. #define SIST0_REG_800 0x42
  273. #define SSTAT0_MA 0x80 /* ini : phase mismatch,
  274.  * tgt : ATN/ asserted 
  275.  */
  276. #define SSTAT0_CMP 0x40 /* function complete */
  277. #define SSTAT0_700_STO 0x20 /* Selection or reselection timeout */
  278. #define SIST0_800_SEL 0x20 /* Selected */
  279. #define SSTAT0_700_SEL 0x10 /* Selected or reselected */
  280. #define SIST0_800_RSL 0x10 /* Reselected */
  281. #define SSTAT0_SGE 0x08 /* SCSI gross error */
  282. #define SSTAT0_UDC 0x04 /* Unexpected disconnect */
  283. #define SSTAT0_RST 0x02 /* SCSI RST/ received */
  284. #define SSTAT0_PAR 0x01 /* Parity error */
  285. /* And uses SSTAT0 for what was SSTAT1 */
  286. #define SSTAT1_REG 0x0e /* SCSI status 1 ro */
  287. #define SSTAT1_ILF 0x80 /* SIDL full */
  288. #define SSTAT1_ORF 0x40 /* SODR full */
  289. #define SSTAT1_OLF 0x20 /* SODL full */
  290. #define SSTAT1_AIP 0x10 /* Arbitration in progress */
  291. #define SSTAT1_LOA 0x08 /* Lost arbitration */
  292. #define SSTAT1_WOA 0x04 /* Won arbitration */
  293. #define SSTAT1_RST 0x02 /* Instant readout of RST/ */
  294. #define SSTAT1_SDP 0x01 /* Instant readout of SDP/ */
  295. #define SSTAT2_REG 0x0f /* SCSI status 2 ro */
  296. #define SSTAT2_FF3 0x80  /* number of bytes in synchronous */
  297. #define SSTAT2_FF2 0x40 /* data FIFO */
  298. #define SSTAT2_FF1 0x20
  299. #define SSTAT2_FF0 0x10
  300. #define SSTAT2_FF_MASK 0xf0
  301. #define SSTAT2_FF_SHIFT 4
  302. /* 
  303.  * Latched signals, latched on the leading edge of REQ/ for initiators,
  304.  * ACK/ for targets.
  305.  */
  306. #define SSTAT2_SDP 0x08 /* SDP */
  307. #define SSTAT2_MSG 0x04 /* MSG */
  308. #define SSTAT2_CD 0x02 /* C/D */
  309. #define SSTAT2_IO 0x01 /* I/O */
  310. #define SSTAT2_PHASE_CMDOUT SSTAT2_CD
  311. #define SSTAT2_PHASE_DATAIN SSTAT2_IO
  312. #define SSTAT2_PHASE_DATAOUT 0
  313. #define SSTAT2_PHASE_MSGIN (SSTAT2_CD|SSTAT2_IO|SSTAT2_MSG)
  314. #define SSTAT2_PHASE_MSGOUT (SSTAT2_CD|SSTAT2_MSG)
  315. #define SSTAT2_PHASE_STATIN (SSTAT2_CD|SSTAT2_IO)
  316. #define SSTAT2_PHASE_MASK (SSTAT2_CD|SSTAT2_IO|SSTAT2_MSG)
  317. /* NCR53c700-66 only */
  318. #define SCRATCHA_REG_00 0x10    /* through  0x13 Scratch A rw */
  319. /* NCR53c710 and higher */
  320. #define DSA_REG 0x10 /* DATA structure address */
  321. #define CTEST0_REG_700 0x14 /* Chip test 0 ro */
  322. #define CTEST0_REG_800 0x18 /* Chip test 0 rw, general purpose */
  323. /* 0x80 - 0x04 are reserved */
  324. #define CTEST0_700_RTRG 0x02 /* Real target mode */
  325. #define CTEST0_700_DDIR 0x01 /* Data direction, 1 = 
  326.  * SCSI bus to host, 0  =
  327.  * host to SCSI.
  328.  */
  329. #define CTEST1_REG_700 0x15 /* Chip test 1 ro */
  330. #define CTEST1_REG_800 0x19 /* Chip test 1 ro */
  331. #define CTEST1_FMT3 0x80 /* Identify which byte lanes are empty */
  332. #define CTEST1_FMT2 0x40  /* in the DMA FIFO */
  333. #define CTEST1_FMT1 0x20
  334. #define CTEST1_FMT0 0x10
  335. #define CTEST1_FFL3 0x08 /* Identify which bytes lanes are full */
  336. #define CTEST1_FFL2 0x04 /* in the DMA FIFO */
  337. #define CTEST1_FFL1 0x02
  338. #define CTEST1_FFL0 0x01
  339. #define CTEST2_REG_700 0x16 /* Chip test 2 ro */
  340. #define CTEST2_REG_800 0x1a /* Chip test 2 ro */
  341. #define CTEST2_800_DDIR 0x80 /* 1 = SCSI->host */
  342. #define CTEST2_800_SIGP 0x40 /* A copy of SIGP in ISTAT.
  343.    Reading this register clears */
  344. #define CTEST2_800_CIO 0x20 /* Configured as IO */.
  345. #define CTEST2_800_CM 0x10 /* Configured as memory */
  346. /* 0x80 - 0x40 are reserved on 700 series chips */
  347. #define CTEST2_700_SOFF 0x20 /* SCSI Offset Compare,
  348.  * As an initiator, this bit is 
  349.  * one when the synchronous offset
  350.  * is zero, as a target this bit 
  351.  * is one when the synchronous 
  352.  * offset is at the maximum
  353.  * defined in SXFER
  354.  */
  355. #define CTEST2_700_SFP 0x10 /* SCSI FIFO parity bit,
  356.  * reading CTEST3 unloads a byte
  357.  * from the FIFO and sets this
  358.  */
  359. #define CTEST2_700_DFP 0x08 /* DMA FIFO parity bit,
  360.  * reading CTEST6 unloads a byte
  361.  * from the FIFO and sets this
  362.  */
  363. #define CTEST2_TEOP 0x04 /* SCSI true end of process,
  364.  * indicates a totally finished
  365.  * transfer
  366.  */
  367. #define CTEST2_DREQ 0x02 /* Data request signal */
  368. /* 0x01 is reserved on 700 series chips */
  369. #define CTEST2_800_DACK 0x01
  370. /* 
  371.  * Chip test 3 ro 
  372.  * Unloads the bottom byte of the eight deep SCSI synchronous FIFO,
  373.  * check SSTAT2 FIFO full bits to determine size.  Note that a GROSS
  374.  * error results if a read is attempted on this register.  Also note 
  375.  * that 16 and 32 bit reads of this register will cause corruption.
  376.  */
  377. #define CTEST3_REG_700 0x17
  378. /*  Chip test 3 rw */
  379. #define CTEST3_REG_800 0x1b
  380. #define CTEST3_800_V3 0x80 /* Chip revision */
  381. #define CTEST3_800_V2 0x40
  382. #define CTEST3_800_V1 0x20
  383. #define CTEST3_800_V0 0x10
  384. #define CTEST3_800_FLF 0x08 /* Flush DMA FIFO */
  385. #define CTEST3_800_CLF 0x04 /* Clear DMA FIFO */
  386. #define CTEST3_800_FM 0x02 /* Fetch mode pin */
  387. /* bit 0 is reserved on 800 series chips */
  388. #define CTEST4_REG_700 0x18 /* Chip test 4 rw */
  389. #define CTEST4_REG_800 0x21 /* Chip test 4 rw */
  390. /* 0x80 is reserved on 700 series chips */
  391. #define CTEST4_800_BDIS 0x80 /* Burst mode disable */
  392. #define CTEST4_ZMOD 0x40 /* High impedance mode */
  393. #define CTEST4_SZM 0x20 /* SCSI bus high impedance */
  394. #define CTEST4_700_SLBE 0x10 /* SCSI loopback enabled */
  395. #define CTEST4_800_SRTM 0x10 /* Shadow Register Test Mode */
  396. #define CTEST4_700_SFWR 0x08 /* SCSI FIFO write enable, 
  397.  * redirects writes from SODL
  398.  * to the SCSI FIFO.
  399.  */
  400. #define CTEST4_800_MPEE 0x08 /* Enable parity checking
  401.    during master cycles on PCI
  402.    bus */
  403. /* 
  404.  * These bits send the contents of the CTEST6 register to the appropriate
  405.  * byte lane of the 32 bit DMA FIFO.  Normal operation is zero, otherwise 
  406.  * the high bit means the low two bits select the byte lane.
  407.  */
  408. #define CTEST4_FBL2 0x04
  409. #define CTEST4_FBL1 0x02
  410. #define CTEST4_FBL0 0x01
  411. #define CTEST4_FBL_MASK 0x07
  412. #define CTEST4_FBL_0 0x04 /* Select DMA FIFO byte lane 0 */
  413. #define CTEST4_FBL_1 0x05 /* Select DMA FIFO byte lane 1 */
  414. #define CTEST4_FBL_2 0x06 /* Select DMA FIFO byte lane 2 */
  415. #define CTEST4_FBL_3 0x07 /* Select DMA FIFO byte lane 3 */
  416. #define CTEST4_800_SAVE (CTEST4_800_BDIS)
  417. #define CTEST5_REG_700 0x19 /* Chip test 5 rw */
  418. #define CTEST5_REG_800 0x22 /* Chip test 5 rw */
  419. /* 
  420.  * Clock Address Incrementor.  When set, it increments the 
  421.  * DNAD register to the next bus size boundary.  It automatically 
  422.  * resets itself when the operation is complete.
  423.  */
  424. #define CTEST5_ADCK 0x80
  425. /*
  426.  * Clock Byte Counter.  When set, it decrements the DBC register to
  427.  * the next bus size boundary.
  428.  */
  429. #define CTEST5_BBCK 0x40
  430. /*
  431.  * Reset SCSI Offset.  Setting this bit to 1 clears the current offset
  432.  * pointer in the SCSI synchronous offset counter (SSTAT).  This bit
  433.  * is set to 1 if a SCSI Gross Error Condition occurs.  The offset should
  434.  * be cleared when a synchronous transfer fails.  When written, it is 
  435.  * automatically cleared after the SCSI synchronous offset counter is 
  436.  * reset.
  437.  */
  438. /* Bit 5 is reserved on 800 series chips */
  439. #define CTEST5_700_ROFF 0x20
  440. /* 
  441.  * Master Control for Set or Reset pulses. When 1, causes the low 
  442.  * four bits of register to set when set, 0 causes the low bits to
  443.  * clear when set.
  444.  */
  445. #define CTEST5_MASR  0x10
  446. #define CTEST5_DDIR 0x08 /* DMA direction */
  447. /*
  448.  * Bits 2-0 are reserved on 800 series chips
  449.  */
  450. #define CTEST5_700_EOP 0x04 /* End of process */
  451. #define CTEST5_700_DREQ 0x02 /* Data request */
  452. #define CTEST5_700_DACK 0x01 /* Data acknowledge */
  453. /* 
  454.  * Chip test 6 rw - writing to this register writes to the byte 
  455.  * lane in the DMA FIFO as determined by the FBL bits in the CTEST4
  456.  * register.
  457.  */
  458. #define CTEST6_REG_700 0x1a
  459. #define CTEST6_REG_800 0x23
  460. #define CTEST7_REG 0x1b /* Chip test 7 rw */
  461. /* 0x80 - 0x40 are reserved on NCR53c700 and NCR53c700-66 chips */
  462. #define CTEST7_10_CDIS 0x80 /* Cache burst disable */
  463. #define CTEST7_10_SC1 0x40 /* Snoop control bits */
  464. #define CTEST7_10_SC0 0x20
  465. #define CTEST7_10_SC_MASK 0x60
  466. /* 0x20 is reserved on the NCR53c700 */
  467. #define CTEST7_0060_FM 0x20 /* Fetch mode */
  468. #define CTEST7_STD 0x10 /* Selection timeout disable */
  469. #define CTEST7_DFP 0x08 /* DMA FIFO parity bit for CTEST6 */
  470. #define CTEST7_EVP 0x04 /* 1 = host bus even parity, 0 = odd */
  471. #define CTEST7_10_TT1 0x02 /* Transfer type */
  472. #define CTEST7_00_DC 0x02 /* Set to drive DC low during instruction 
  473.    fetch */
  474. #define CTEST7_DIFF 0x01 /* Differential mode */
  475. #define CTEST7_SAVE ( CTEST7_EVP | CTEST7_DIFF )
  476. #define TEMP_REG 0x1c /* through 0x1f Temporary stack rw */
  477. #define DFIFO_REG 0x20 /* DMA FIFO rw */
  478. /* 
  479.  * 0x80 is reserved on the NCR53c710, the CLF and FLF bits have been
  480.  * moved into the CTEST8 register.
  481.  */
  482. #define DFIFO_00_FLF 0x80 /* Flush DMA FIFO to memory */
  483. #define DFIFO_00_CLF 0x40 /* Clear DMA and SCSI FIFOs */
  484. #define DFIFO_BO6 0x40
  485. #define DFIFO_BO5 0x20
  486. #define DFIFO_BO4 0x10
  487. #define DFIFO_BO3 0x08
  488. #define DFIFO_BO2 0x04 
  489. #define DFIFO_BO1 0x02
  490. #define DFIFO_BO0 0x01
  491. #define DFIFO_10_BO_MASK 0x7f /* 7 bit counter */
  492. #define DFIFO_00_BO_MASK 0x3f /* 6 bit counter */
  493. /* 
  494.  * Interrupt status rw 
  495.  * Note that this is the only register which can be read while SCSI
  496.  * SCRIPTS are being executed.
  497.  */
  498. #define ISTAT_REG_700 0x21
  499. #define ISTAT_REG_800 0x14
  500. #define ISTAT_ABRT 0x80 /* Software abort, write 
  501.  *1 to abort, wait for interrupt. */
  502. /* 0x40 and 0x20 are reserved on NCR53c700 and NCR53c700-66 chips */
  503. #define ISTAT_10_SRST 0x40 /* software reset */
  504. #define ISTAT_10_SIGP 0x20 /* signal script */
  505. /* 0x10 is reserved on NCR53c700 series chips */
  506. #define ISTAT_800_SEM 0x10 /* semaphore */
  507. #define ISTAT_CON 0x08 /* 1 when connected */
  508. #define ISTAT_800_INTF 0x04 /* Interrupt on the fly */
  509. #define ISTAT_700_PRE 0x04 /* Pointer register empty.
  510.  * Set to 1 when DSPS and DSP
  511.  * registers are empty in pipeline
  512.  * mode, always set otherwise.
  513.  */
  514. #define ISTAT_SIP 0x02 /* SCSI interrupt pending from
  515.  * SCSI portion of SIOP see
  516.  * SSTAT0
  517.  */
  518. #define ISTAT_DIP 0x01 /* DMA interrupt pending 
  519.  * see DSTAT
  520.  */
  521. /* NCR53c700-66 and NCR53c710 only */
  522. #define CTEST8_REG 0x22 /* Chip test 8 rw */
  523. #define CTEST8_0066_EAS 0x80 /* Enable alternate SCSI clock,
  524.  * ie read from SCLK/ rather than CLK/
  525.  */
  526. #define CTEST8_0066_EFM 0x40 /* Enable fetch and master outputs */
  527. #define CTEST8_0066_GRP 0x20 /* Generate Receive Parity for 
  528.  * pass through.  This insures that 
  529.  * bad parity won't reach the host 
  530.  * bus.
  531.  */
  532. #define CTEST8_0066_TE 0x10 /* TolerANT enable.  Enable 
  533.  * active negation, should only
  534.  * be used for slow SCSI 
  535.  * non-differential.
  536.  */
  537. #define CTEST8_0066_HSC 0x08 /* Halt SCSI clock */
  538. #define CTEST8_0066_SRA 0x04 /* Shorten REQ/ACK filtering,
  539.  * must be set for fast SCSI-II
  540.  * speeds.
  541.  */
  542. #define CTEST8_0066_DAS 0x02 /* Disable automatic target/initiator
  543.  * switching.
  544.  */
  545. #define CTEST8_0066_LDE 0x01 /* Last disconnect enable.
  546.  * The status of pending 
  547.  * disconnect is maintained by
  548.  * the core, eliminating
  549.  * the possibility of missing a 
  550.  * selection or reselection
  551.  * while waiting to fetch a 
  552.  * WAIT DISCONNECT opcode.
  553.  */
  554. #define CTEST8_10_V3 0x80 /* Chip revision */
  555. #define CTEST8_10_V2 0x40
  556. #define CTEST8_10_V1 0x20
  557. #define CTEST8_10_V0 0x10
  558. #define CTEST8_10_V_MASK 0xf0
  559. #define CTEST8_10_FLF 0x08 /* Flush FIFOs */
  560. #define CTEST8_10_CLF 0x04 /* Clear FIFOs */
  561. #define CTEST8_10_FM 0x02 /* Fetch pin mode */
  562. #define CTEST8_10_SM 0x01 /* Snoop pin mode */
  563. /* 
  564.  * The CTEST9 register may be used to differentiate between a
  565.  * NCR53c700 and a NCR53c710.  
  566.  *
  567.  * Write 0xff to this register.
  568.  * Read it.
  569.  * If the contents are 0xff, it is a NCR53c700
  570.  * If the contents are 0x00, it is a NCR53c700-66 first revision
  571.  * If the contents are some other value, it is some other NCR53c700-66
  572.  */
  573. #define CTEST9_REG_00 0x23 /* Chip test 9 ro */
  574. #define LCRC_REG_10 0x23
  575. /*
  576.  * 0x24 through 0x27 are the DMA byte counter register.  Instructions
  577.  * write their high 8 bits into the DCMD register, the low 24 bits into
  578.  * the DBC register.
  579.  *
  580.  * Function is dependent on the command type being executed.
  581.  */
  582.  
  583. #define DBC_REG 0x24
  584. /* 
  585.  * For Block Move Instructions, DBC is a 24 bit quantity representing 
  586.  *     the number of bytes to transfer.
  587.  * For Transfer Control Instructions, DBC is bit fielded as follows : 
  588.  */
  589. /* Bits 20 - 23 should be clear */
  590. #define DBC_TCI_TRUE (1 << 19)  /* Jump when true */
  591. #define DBC_TCI_COMPARE_DATA (1 << 18) /* Compare data */
  592. #define DBC_TCI_COMPARE_PHASE (1 << 17) /* Compare phase with DCMD field */
  593. #define DBC_TCI_WAIT_FOR_VALID (1 << 16) /* Wait for REQ */
  594. /* Bits 8 - 15 are reserved on some implementations ? */
  595. #define DBC_TCI_MASK_MASK 0xff00  /* Mask for data compare */
  596. #define DBC_TCI_MASK_SHIFT 8
  597. #define DBC_TCI_DATA_MASK 0xff /* Data to be compared */ 
  598. #define DBC_TCI_DATA_SHIFT 0
  599. #define DBC_RWRI_IMMEDIATE_MASK 0xff00 /* Immediate data */
  600. #define DBC_RWRI_IMMEDIATE_SHIFT 8 /* Amount to shift */
  601. #define DBC_RWRI_ADDRESS_MASK 0x3f0000 /* Register address */
  602. #define DBC_RWRI_ADDRESS_SHIFT  16
  603. /*
  604.  * DMA command r/w
  605.  */
  606. #define DCMD_REG 0x27
  607. #define DCMD_TYPE_MASK 0xc0 /* Masks off type */
  608. #define DCMD_TYPE_BMI 0x00 /* Indicates a Block Move instruction */
  609. #define DCMD_BMI_IO 0x01 /* I/O, CD, and MSG bits selecting   */
  610. #define DCMD_BMI_CD 0x02 /* the phase for the block MOVE      */
  611. #define DCMD_BMI_MSG 0x04 /* instruction       */
  612. #define DCMD_BMI_OP_MASK 0x18 /* mask for opcode */
  613. #define DCMD_BMI_OP_MOVE_T 0x00 /* MOVE */
  614. #define DCMD_BMI_OP_MOVE_I 0x08 /* MOVE Initiator */
  615. #define DCMD_BMI_INDIRECT 0x20 /*  Indirect addressing */
  616. #define DCMD_TYPE_TCI 0x80 /* Indicates a Transfer Control 
  617.    instruction */
  618. #define DCMD_TCI_IO 0x01 /* I/O, CD, and MSG bits selecting   */
  619. #define DCMD_TCI_CD 0x02 /* the phase for the block MOVE      */
  620. #define DCMD_TCI_MSG 0x04 /* instruction       */
  621. #define DCMD_TCI_OP_MASK 0x38 /* mask for opcode */
  622. #define DCMD_TCI_OP_JUMP 0x00 /* JUMP */
  623. #define DCMD_TCI_OP_CALL 0x08 /* CALL */
  624. #define DCMD_TCI_OP_RETURN 0x10 /* RETURN */
  625. #define DCMD_TCI_OP_INT 0x18 /* INT */
  626. #define DCMD_TYPE_RWRI 0x40 /* Indicates I/O or register Read/Write
  627.    instruction */
  628. #define DCMD_RWRI_OPC_MASK 0x38 /* Opcode mask */
  629. #define DCMD_RWRI_OPC_WRITE 0x28 /* Write SFBR to register */
  630. #define DCMD_RWRI_OPC_READ 0x30 /* Read register to SFBR */
  631. #define DCMD_RWRI_OPC_MODIFY 0x38 /* Modify in place */
  632. #define DCMD_RWRI_OP_MASK 0x07
  633. #define DCMD_RWRI_OP_MOVE 0x00
  634. #define DCMD_RWRI_OP_SHL 0x01
  635. #define DCMD_RWRI_OP_OR 0x02
  636. #define DCMD_RWRI_OP_XOR 0x03
  637. #define DCMD_RWRI_OP_AND 0x04
  638. #define DCMD_RWRI_OP_SHR 0x05
  639. #define DCMD_RWRI_OP_ADD 0x06
  640. #define DCMD_RWRI_OP_ADDC 0x07
  641. #define DCMD_TYPE_MMI 0xc0 /* Indicates a Memory Move instruction 
  642.    (three words) */
  643. #define DNAD_REG 0x28 /* through 0x2b DMA next address for 
  644.    data */
  645. #define DSP_REG 0x2c /* through 0x2f DMA SCRIPTS pointer rw */
  646. #define DSPS_REG 0x30 /* through 0x33 DMA SCRIPTS pointer 
  647.    save rw */
  648. #define DMODE_REG_00 0x34  /* DMA mode rw */
  649. #define DMODE_00_BL1 0x80 /* Burst length bits */
  650. #define DMODE_00_BL0 0x40
  651. #define DMODE_BL_MASK 0xc0
  652. /* Burst lengths (800) */
  653. #define DMODE_BL_2 0x00 /* 2 transfer */
  654. #define DMODE_BL_4 0x40 /* 4 transfers */
  655. #define DMODE_BL_8 0x80 /* 8 transfers */
  656. #define DMODE_BL_16 0xc0 /* 16 transfers */
  657. #define DMODE_10_BL_1 0x00 /* 1 transfer */
  658. #define DMODE_10_BL_2 0x40 /* 2 transfers */
  659. #define DMODE_10_BL_4 0x80 /* 4 transfers */
  660. #define DMODE_10_BL_8 0xc0 /* 8 transfers */
  661. #define DMODE_10_FC2 0x20 /* Driven to FC2 pin */
  662. #define DMODE_10_FC1 0x10 /* Driven to FC1 pin */
  663. #define DMODE_710_PD 0x08 /* Program/data on FC0 pin */
  664. #define DMODE_710_UO 0x02 /* User prog. output */
  665. #define DMODE_700_BW16 0x20 /* Host buswidth = 16 */
  666. #define DMODE_700_286 0x10 /* 286 mode */
  667. #define DMODE_700_IOM 0x08 /* Transfer to IO port */
  668. #define DMODE_700_FAM 0x04 /* Fixed address mode */
  669. #define DMODE_700_PIPE 0x02 /* Pipeline mode disables 
  670.  * automatic fetch / exec 
  671.  */
  672. #define DMODE_MAN 0x01 /* Manual start mode, 
  673.  * requires a 1 to be written
  674.  * to the start DMA bit in the DCNTL
  675.  * register to run scripts 
  676.  */
  677. #define DMODE_700_SAVE ( DMODE_00_BL_MASK | DMODE_00_BW16 | DMODE_00_286 )
  678. /* NCR53c800 series only */
  679. #define SCRATCHA_REG_800 0x34 /* through 0x37 Scratch A rw */
  680. /* NCR53c710 only */
  681. #define SCRATCHB_REG_10 0x34 /* through 0x37 scratch B rw */
  682. #define DMODE_REG_10     0x38 /* DMA mode rw, NCR53c710 and newer */
  683. #define DMODE_800_SIOM 0x20 /* Source IO = 1 */
  684. #define DMODE_800_DIOM 0x10 /* Destination IO = 1 */
  685. #define DMODE_800_ERL 0x08 /* Enable Read Line */
  686. /* 35-38 are reserved on 700 and 700-66 series chips */
  687. #define DIEN_REG 0x39 /* DMA interrupt enable rw */
  688. /* 0x80, 0x40, and 0x20 are reserved on 700-series chips */
  689. #define DIEN_800_MDPE 0x40 /* Master data parity error */
  690. #define DIEN_800_BF 0x20 /* BUS fault */
  691. #define DIEN_700_BF 0x20 /* BUS fault */
  692. #define DIEN_ABRT 0x10 /* Enable aborted interrupt */
  693. #define DIEN_SSI 0x08 /* Enable single step interrupt */
  694. #define DIEN_SIR 0x04 /* Enable SCRIPTS INT command 
  695.  * interrupt
  696.  */
  697. /* 0x02 is reserved on 800 series chips */
  698. #define DIEN_700_WTD 0x02 /* Enable watchdog timeout interrupt */
  699. #define DIEN_700_OPC 0x01 /* Enable illegal instruction 
  700.  * interrupt 
  701.  */
  702. #define DIEN_800_IID 0x01 /*  Same meaning, different name */ 
  703. /*
  704.  * DMA watchdog timer rw
  705.  * set in 16 CLK input periods.
  706.  */
  707. #define DWT_REG 0x3a
  708. /* DMA control rw */
  709. #define DCNTL_REG 0x3b
  710. #define DCNTL_700_CF1 0x80 /* Clock divisor bits */
  711. #define DCNTL_700_CF0 0x40
  712. #define DCNTL_700_CF_MASK 0xc0
  713. /* Clock divisors     Divisor SCLK range (MHZ) */
  714. #define DCNTL_700_CF_2 0x00    /* 2.0    37.51-50.00 */
  715. #define DCNTL_700_CF_1_5 0x40 /* 1.5    25.01-37.50 */
  716. #define DCNTL_700_CF_1 0x80 /* 1.0     16.67-25.00 */
  717. #define DCNTL_700_CF_3 0xc0 /* 3.0    50.01-66.67 (53c700-66) */
  718. #define DCNTL_700_S16 0x20 /* Load scripts 16 bits at a time */
  719. #define DCNTL_SSM 0x10 /* Single step mode */
  720. #define DCNTL_700_LLM 0x08 /* Low level mode, can only be set 
  721.  * after selection */
  722. #define DCNTL_800_IRQM 0x08 /* Totem pole IRQ pin */
  723. #define DCNTL_STD 0x04 /* Start DMA / SCRIPTS */
  724. /* 0x02 is reserved */
  725. #define DCNTL_00_RST 0x01 /* Software reset, resets everything
  726.  * but 286 mode bit  in DMODE. On the
  727.  * NCR53c710, this bit moved to CTEST8
  728.  */
  729. #define DCNTL_10_COM 0x01 /* 700 software compatibility mode */
  730. #define DCNTL_10_EA 0x20 /* Enable Ack - needed for MVME16x */
  731. #define DCNTL_700_SAVE ( DCNTL_CF_MASK | DCNTL_S16)
  732. /* NCR53c700-66 only */
  733. #define SCRATCHB_REG_00 0x3c /* through 0x3f scratch b rw */
  734. #define SCRATCHB_REG_800 0x5c /* through 0x5f scratch b rw */
  735. /* NCR53c710 only */
  736. #define ADDER_REG_10 0x3c /* Adder, NCR53c710 only */
  737. #define SIEN1_REG_800 0x41
  738. #define SIEN1_800_STO 0x04 /* selection/reselection timeout */
  739. #define SIEN1_800_GEN 0x02 /* general purpose timer */
  740. #define SIEN1_800_HTH 0x01 /* handshake to handshake */
  741. #define SIST1_REG_800 0x43
  742. #define SIST1_800_STO 0x04 /* selection/reselection timeout */
  743. #define SIST1_800_GEN 0x02 /* general purpose timer */
  744. #define SIST1_800_HTH 0x01 /* handshake to handshake */
  745. #define SLPAR_REG_800 0x44 /* Parity */
  746. #define MACNTL_REG_800 0x46 /* Memory access control */
  747. #define MACNTL_800_TYP3 0x80
  748. #define MACNTL_800_TYP2 0x40
  749. #define MACNTL_800_TYP1 0x20
  750. #define MACNTL_800_TYP0 0x10
  751. #define MACNTL_800_DWR 0x08
  752. #define MACNTL_800_DRD 0x04
  753. #define MACNTL_800_PSCPT 0x02
  754. #define MACNTL_800_SCPTS 0x01
  755. #define GPCNTL_REG_800 0x47 /* General Purpose Pin Control */
  756. /* Timeouts are expressed such that 0=off, 1=100us, doubling after that */
  757. #define STIME0_REG_800 0x48 /* SCSI Timer Register 0 */
  758. #define STIME0_800_HTH_MASK 0xf0 /* Handshake to Handshake timeout */
  759. #define STIME0_800_HTH_SHIFT 4
  760. #define STIME0_800_SEL_MASK 0x0f /* Selection timeout */
  761. #define STIME0_800_SEL_SHIFT 0
  762. #define STIME1_REG_800 0x49
  763. #define STIME1_800_GEN_MASK 0x0f /* General purpose timer */
  764. #define RESPID_REG_800 0x4a /* Response ID, bit fielded.  8
  765.    bits on narrow chips, 16 on WIDE */
  766. #define STEST0_REG_800 0x4c
  767. #define STEST0_800_SLT 0x08 /* Selection response logic test */
  768. #define STEST0_800_ART 0x04 /* Arbitration priority encoder test */
  769. #define STEST0_800_SOZ 0x02 /* Synchronous offset zero */
  770. #define STEST0_800_SOM 0x01 /* Synchronous offset maximum */
  771. #define STEST1_REG_800 0x4d
  772. #define STEST1_800_SCLK 0x80 /* Disable SCSI clock */
  773. #define STEST2_REG_800 0x4e
  774. #define STEST2_800_SCE 0x80 /* Enable SOCL/SODL */
  775. #define STEST2_800_ROF 0x40 /* Reset SCSI sync offset */
  776. #define STEST2_800_SLB 0x10 /* Enable SCSI loopback mode */
  777. #define STEST2_800_SZM 0x08 /* SCSI high impedance mode */
  778. #define STEST2_800_EXT 0x02 /* Extend REQ/ACK filter 30 to 60ns */
  779. #define STEST2_800_LOW 0x01 /* SCSI low level mode */
  780. #define STEST3_REG_800 0x4f  
  781. #define STEST3_800_TE 0x80 /* Enable active negation */
  782. #define STEST3_800_STR 0x40 /* SCSI FIFO test read */
  783. #define STEST3_800_HSC 0x20 /* Halt SCSI clock */
  784. #define STEST3_800_DSI 0x10 /* Disable single initiator response */
  785. #define STEST3_800_TTM 0x04 /* Time test mode */
  786. #define STEST3_800_CSF 0x02 /* Clear SCSI FIFO */
  787. #define STEST3_800_STW 0x01 /* SCSI FIFO test write */
  788. #define OPTION_PARITY  0x1 /* Enable parity checking */
  789. #define OPTION_TAGGED_QUEUE 0x2 /* Enable SCSI-II tagged queuing */
  790. #define OPTION_700 0x8 /* Always run NCR53c700 scripts */
  791. #define OPTION_INTFLY 0x10 /* Use INTFLY interrupts */
  792. #define OPTION_DEBUG_INTR 0x20 /* Debug interrupts */
  793. #define OPTION_DEBUG_INIT_ONLY 0x40 /* Run initialization code and 
  794.    simple test code, return
  795.    DID_NO_CONNECT if any SCSI
  796.    commands are attempted. */
  797. #define OPTION_DEBUG_READ_ONLY 0x80 /* Return DID_ERROR if any 
  798.    SCSI write is attempted */
  799. #define OPTION_DEBUG_TRACE 0x100 /* Animated trace mode, print 
  800.    each address and instruction 
  801.    executed to debug buffer. */
  802. #define OPTION_DEBUG_SINGLE 0x200 /* stop after executing one 
  803.    instruction */
  804. #define OPTION_SYNCHRONOUS 0x400 /* Enable sync SCSI.  */
  805. #define OPTION_MEMORY_MAPPED 0x800 /* NCR registers have valid 
  806.    memory mapping */
  807. #define OPTION_IO_MAPPED 0x1000  /* NCR registers have valid
  808.      I/O mapping */
  809. #define OPTION_DEBUG_PROBE_ONLY 0x2000  /* Probe only, don't even init */
  810. #define OPTION_DEBUG_TESTS_ONLY 0x4000  /* Probe, init, run selected tests */
  811. #define OPTION_DEBUG_TEST0 0x08000 /* Run test 0 */
  812. #define OPTION_DEBUG_TEST1 0x10000 /* Run test 1 */
  813. #define OPTION_DEBUG_TEST2 0x20000 /* Run test 2 */
  814. #define OPTION_DEBUG_DUMP 0x40000 /* Dump commands */
  815. #define OPTION_DEBUG_TARGET_LIMIT 0x80000 /* Only talk to target+luns specified */
  816. #define OPTION_DEBUG_NCOMMANDS_LIMIT 0x100000 /* Limit the number of commands */
  817. #define OPTION_DEBUG_SCRIPT 0x200000 /* Print when checkpoints are passed */
  818. #define OPTION_DEBUG_FIXUP 0x400000 /* print fixup values */
  819. #define OPTION_DEBUG_DSA 0x800000
  820. #define OPTION_DEBUG_CORRUPTION 0x1000000 /* Detect script corruption */
  821. #define OPTION_DEBUG_SDTR       0x2000000 /* Debug SDTR problem */
  822. #define OPTION_DEBUG_MISMATCH  0x4000000  /* Debug phase mismatches */
  823. #define OPTION_DISCONNECT 0x8000000 /* Allow disconnect */
  824. #define OPTION_DEBUG_DISCONNECT 0x10000000
  825. #define OPTION_ALWAYS_SYNCHRONOUS 0x20000000 /* Negotiate sync. transfers
  826.    on power up */
  827. #define OPTION_DEBUG_QUEUES 0x80000000
  828. #define OPTION_DEBUG_ALLOCATION 0x100000000LL
  829. #define OPTION_DEBUG_SYNCHRONOUS 0x200000000LL /* Sanity check SXFER and 
  830.    SCNTL3 registers */
  831. #define OPTION_NO_ASYNC 0x400000000LL /* Don't automagically send
  832.    SDTR for async transfers when
  833.    we haven't been told to do
  834.    a synchronous transfer. */
  835. #define OPTION_NO_PRINT_RACE 0x800000000LL /* Don't print message when
  836.    the reselect/WAIT DISCONNECT
  837.    race condition hits */
  838. #if !defined(PERM_OPTIONS)
  839. #define PERM_OPTIONS 0
  840. #endif
  841. /*
  842.  * Some data which is accessed by the NCR chip must be 4-byte aligned.
  843.  * For some hosts the default is less than that (eg. 68K uses 2-byte).
  844.  * Alignment has only been forced where it is important; also if one
  845.  * 32 bit structure field is aligned then it is assumed that following
  846.  * 32 bit fields are also aligned.  Take care when adding fields
  847.  * which are other than 32 bit.
  848.  */
  849. struct NCR53c7x0_synchronous {
  850.     u32 select_indirect /* Value used for indirect selection */
  851. __attribute__ ((aligned (4)));
  852.     u32 sscf_710; /* Used to set SSCF bits for 710 */
  853.     u32 script[8]; /* Size ?? Script used when target is 
  854. reselected */
  855.     unsigned char synchronous_want[5]; /* Per target desired SDTR */
  856. /* 
  857.  * Set_synchronous programs these, select_indirect and current settings after
  858.  * int_debug_should show a match.
  859.  */
  860.     unsigned char sxfer_sanity, scntl3_sanity;
  861. };
  862. #define CMD_FLAG_SDTR  1 /* Initiating synchronous 
  863.    transfer negotiation */
  864. #define CMD_FLAG_WDTR 2 /* Initiating wide transfer
  865.    negotiation */
  866. #define CMD_FLAG_DID_SDTR 4 /* did SDTR */
  867. #define CMD_FLAG_DID_WDTR 8 /* did WDTR */
  868. struct NCR53c7x0_table_indirect {
  869.     u32 count;
  870.     void *address;
  871. };
  872. enum ncr_event { 
  873.     EVENT_NONE = 0,
  874. /* 
  875.  * Order is IMPORTANT, since these must correspond to the event interrupts
  876.  * in 53c7,8xx.scr 
  877.  */
  878.     EVENT_ISSUE_QUEUE = 0x5000000, /* 0 Command was added to issue queue */
  879.     EVENT_START_QUEUE, /* 1 Command moved to start queue */
  880.     EVENT_SELECT, /* 2 Command completed selection */
  881.     EVENT_DISCONNECT, /* 3 Command disconnected */
  882.     EVENT_RESELECT, /* 4 Command reselected */
  883.     EVENT_COMPLETE,         /* 5 Command completed */
  884.     EVENT_IDLE, /* 6 */
  885.     EVENT_SELECT_FAILED, /* 7 */
  886.     EVENT_BEFORE_SELECT, /* 8 */
  887.     EVENT_RESELECT_FAILED /* 9 */
  888. };
  889. struct NCR53c7x0_event {
  890.     enum ncr_event event; /* What type of event */
  891.     unsigned char target;
  892.     unsigned char lun;
  893.     struct timeval time;
  894.     u32 *dsa; /* What's in the DSA register now (virt) */
  895. /* 
  896.  * A few things from that SCSI pid so we know what happened after 
  897.  * the Scsi_Cmnd structure in question may have disappeared.
  898.  */
  899.     unsigned long pid; /* The SCSI PID which caused this 
  900.    event */
  901.     unsigned char cmnd[12];
  902. };
  903. /*
  904.  * Things in the NCR53c7x0_cmd structure are split into two parts :
  905.  *
  906.  * 1.  A fixed portion, for things which are not accessed directly by static NCR
  907.  * code (ie, are referenced only by the Linux side of the driver,
  908.  * or only by dynamically generated code).  
  909.  *
  910.  * 2.  The DSA portion, for things which are accessed directly by static NCR
  911.  * code.
  912.  *
  913.  * This is a little ugly, but it 
  914.  * 1.  Avoids conflicts between the NCR code's picture of the structure, and 
  915.  *  Linux code's idea of what it looks like.
  916.  *
  917.  * 2.  Minimizes the pain in the Linux side of the code needed 
  918.  *  to calculate real dsa locations for things, etc.
  919.  * 
  920.  */
  921. struct NCR53c7x0_cmd {
  922.     void *real; /* Real, unaligned address for
  923.    free function */
  924.     void (* free)(void *, int); /* Command to deallocate; NULL
  925.    for structures allocated with
  926.    scsi_register, etc. */
  927.     Scsi_Cmnd *cmd; /* Associated Scsi_Cmnd 
  928.    structure, Scsi_Cmnd points
  929.    at NCR53c7x0_cmd using 
  930.    host_scribble structure */
  931.     int size; /* scsi_malloc'd size of this 
  932.    structure */
  933.     int flags; /* CMD_* flags */
  934.     unsigned char      cmnd[12]; /* CDB, copied from Scsi_Cmnd */
  935.     int                result; /* Copy to Scsi_Cmnd when done */
  936.     struct { /* Private non-cached bounce buffer */
  937.         unsigned char buf[256];
  938. u32       addr;
  939.         u32           len;
  940.     } bounce;
  941. /*
  942.  * SDTR and WIDE messages are an either/or affair
  943.  * in this message, since we will go into message out and send
  944.  * _the whole mess_ without dropping out of message out to 
  945.  * let the target go into message in after sending the first 
  946.  * message.
  947.  */
  948.     unsigned char select[11]; /* Select message, includes
  949.    IDENTIFY
  950.    (optional) QUEUE TAG
  951.        (optional) SDTR or WDTR
  952.  */
  953.     volatile struct NCR53c7x0_cmd *next; /* Linux maintained lists (free,
  954.     running, eventually finished */
  955.       
  956.     u32 *data_transfer_start; /* Start of data transfer routines */
  957.     u32 *data_transfer_end; /* Address after end of data transfer o
  958.                             routines */
  959. /* 
  960.  * The following three fields were moved from the DSA proper to here
  961.  * since only dynamically generated NCR code refers to them, meaning
  962.  * we don't need dsa_* absolutes, and it is simpler to let the 
  963.  * host code refer to them directly.
  964.  */
  965. /* 
  966.  * HARD CODED : residual and saved_residual need to agree with the sizes
  967.  * used in NCR53c7,8xx.scr.  
  968.  * 
  969.  * FIXME: we want to consider the case where we have odd-length 
  970.  * scatter/gather buffers and a WIDE transfer, in which case 
  971.  * we'll need to use the CHAIN MOVE instruction.  Ick.
  972.  */
  973.     u32 residual[6] __attribute__ ((aligned (4)));
  974. /* Residual data transfer which
  975.    allows pointer code to work
  976.    right.
  977.                              [0-1] : Conditional call to 
  978.                               appropriate other transfer 
  979.                               routine.
  980.                              [2-3] : Residual block transfer
  981.                               instruction.
  982.                              [4-5] : Jump to instruction
  983.                               after splice.
  984.  */
  985.     u32 saved_residual[6];  /* Copy of old residual, so we 
  986.    can get another partial 
  987.    transfer and still recover 
  988.                           */
  989.          
  990.     u32 saved_data_pointer; /* Saved data pointer */
  991.     u32 dsa_next_addr;         /* _Address_ of dsa_next field  
  992.    in this dsa for RISCy 
  993.    style constant. */
  994.     u32 dsa_addr; /* Address of dsa; RISCy style
  995.    constant */
  996.     u32 dsa[0]; /* Variable length (depending
  997.    on host type, number of scatter /
  998.    gather buffers, etc).  */
  999. };
  1000. struct NCR53c7x0_break {
  1001.     u32 *address, old_instruction[2];
  1002.     struct NCR53c7x0_break *next;
  1003.     unsigned char old_size; /* Size of old instruction */
  1004. };
  1005. /* Indicates that the NCR is not executing code */
  1006. #define STATE_HALTED 0
  1007. /* 
  1008.  * Indicates that the NCR is executing the wait for select / reselect 
  1009.  * script.  Only used when running NCR53c700 compatible scripts, only 
  1010.  * state during which an ABORT is _not_ considered an error condition.
  1011.  */
  1012. #define STATE_WAITING 1
  1013. /* Indicates that the NCR is executing other code. */
  1014. #define STATE_RUNNING 2
  1015. /* 
  1016.  * Indicates that the NCR was being aborted.
  1017.  */
  1018. #define STATE_ABORTING 3
  1019. /* Indicates that the NCR was successfully aborted. */
  1020. #define STATE_ABORTED 4
  1021. /* Indicates that the NCR has been disabled due to a fatal error */
  1022. #define STATE_DISABLED 5
  1023. /* 
  1024.  * Where knowledge of SCSI SCRIPT(tm) specified values are needed 
  1025.  * in an interrupt handler, an interrupt handler exists for each 
  1026.  * different SCSI script so we don't have name space problems.
  1027.  * 
  1028.  * Return values of these handlers are as follows : 
  1029.  */
  1030. #define SPECIFIC_INT_NOTHING  0 /* don't even restart */
  1031. #define SPECIFIC_INT_RESTART 1 /* restart at the next instruction */
  1032. #define SPECIFIC_INT_ABORT 2 /* recoverable error, abort cmd */
  1033. #define SPECIFIC_INT_PANIC 3 /* unrecoverable error, panic */
  1034. #define SPECIFIC_INT_DONE 4 /* normal command completion */
  1035. #define SPECIFIC_INT_BREAK 5 /* break point encountered */
  1036. struct NCR53c7x0_hostdata {
  1037.     int size; /* Size of entire Scsi_Host
  1038.    structure */
  1039.     int board; /* set to board type, useful if 
  1040.    we have host specific things,
  1041.    ie, a general purpose I/O 
  1042.    bit is being used to enable
  1043.    termination, etc. */
  1044.     int chip; /* set to chip type; 700-66 is
  1045.    700-66, rest are last three
  1046.    digits of part number */
  1047.     char valid_ids[8]; /* Valid SCSI ID's for adapter */
  1048.     u32 *dsp; /* dsp to restart with after
  1049.    all stacked interrupts are
  1050.    handled. */
  1051.     unsigned dsp_changed:1; /* Has dsp changed within this
  1052.    set of stacked interrupts ? */
  1053.     unsigned char dstat; /* Most recent value of dstat */
  1054.     unsigned dstat_valid:1;
  1055.     unsigned expecting_iid:1; /* Expect IID interrupt */
  1056.     unsigned expecting_sto:1; /* Expect STO interrupt */
  1057.     
  1058.     /* 
  1059.      * The code stays cleaner if we use variables with function
  1060.      * pointers and offsets that are unique for the different
  1061.      * scripts rather than having a slew of switch(hostdata->chip) 
  1062.      * statements.
  1063.      * 
  1064.      * It also means that the #defines from the SCSI SCRIPTS(tm)
  1065.      * don't have to be visible outside of the script-specific
  1066.      * instructions, preventing name space pollution.
  1067.      */
  1068.     void (* init_fixup)(struct Scsi_Host *host);
  1069.     void (* init_save_regs)(struct Scsi_Host *host);
  1070.     void (* dsa_fixup)(struct NCR53c7x0_cmd *cmd);
  1071.     void (* soft_reset)(struct Scsi_Host *host);
  1072.     int (* run_tests)(struct Scsi_Host *host);
  1073.     /*
  1074.      * Called when DSTAT_SIR is set, indicating an interrupt generated
  1075.      * by the INT instruction, where values are unique for each SCSI
  1076.      * script.  Should return one of the SPEC_* values.
  1077.      */
  1078.     int (* dstat_sir_intr)(struct Scsi_Host *host, struct NCR53c7x0_cmd *cmd);
  1079.     int dsa_len; /* Size of DSA structure */
  1080.     /*
  1081.      * Location of DSA fields for the SCSI SCRIPT corresponding to this 
  1082.      * chip.  
  1083.      */
  1084.     s32 dsa_start;
  1085.     s32 dsa_end;
  1086.     s32 dsa_next;
  1087.     s32 dsa_prev;
  1088.     s32 dsa_cmnd;
  1089.     s32 dsa_select;
  1090.     s32 dsa_msgout;
  1091.     s32 dsa_cmdout;
  1092.     s32 dsa_dataout;
  1093.     s32 dsa_datain;
  1094.     s32 dsa_msgin;
  1095.     s32 dsa_msgout_other;
  1096.     s32 dsa_write_sync;
  1097.     s32 dsa_write_resume;
  1098.     s32 dsa_check_reselect;
  1099.     s32 dsa_status;
  1100.     s32 dsa_saved_pointer;
  1101.     s32 dsa_jump_dest;
  1102.     /* 
  1103.      * Important entry points that generic fixup code needs
  1104.      * to know about, fixed up.
  1105.      */
  1106.     s32 E_accept_message;
  1107.     s32 E_command_complete;
  1108.     s32 E_data_transfer;
  1109.     s32 E_dsa_code_template;
  1110.     s32 E_dsa_code_template_end;
  1111.     s32 E_end_data_transfer;
  1112.     s32 E_msg_in;
  1113.     s32 E_initiator_abort;
  1114.     s32 E_other_transfer;
  1115.     s32 E_other_in;
  1116.     s32 E_other_out;
  1117.     s32 E_target_abort;
  1118.     s32 E_debug_break;
  1119.     s32 E_reject_message;
  1120.     s32 E_respond_message;
  1121.     s32 E_select;
  1122.     s32 E_select_msgout;
  1123.     s32 E_test_0;
  1124.     s32 E_test_1;
  1125.     s32 E_test_2;
  1126.     s32 E_test_3;
  1127.     s32 E_dsa_zero;
  1128.     s32 E_cmdout_cmdout;
  1129.     s32 E_wait_reselect;
  1130.     s32 E_dsa_code_begin;
  1131.     long long options; /* Bitfielded set of options enabled */
  1132.     volatile u32 test_completed; /* Test completed */
  1133.     int test_running; /* Test currently running */
  1134.     s32 test_source
  1135. __attribute__ ((aligned (4)));
  1136.     volatile s32 test_dest;
  1137.     volatile int state; /* state of driver, only used for 
  1138.    OPTION_700 */
  1139.     unsigned char  dmode; /* 
  1140.  * set to the address of the DMODE 
  1141.  * register for this chip.
  1142.  */
  1143.     unsigned char istat; /* 
  1144.                           * set to the address of the ISTAT 
  1145.                           * register for this chip.
  1146.                           */
  1147.   
  1148.     int scsi_clock; /* 
  1149.  * SCSI clock in HZ. 0 may be used 
  1150.  * for unknown, although this will
  1151.  * disable synchronous negotiation.
  1152.  */
  1153.     volatile int intrs; /* Number of interrupts */
  1154.     volatile int resets; /* Number of SCSI resets */
  1155.     unsigned char saved_dmode;
  1156.     unsigned char saved_ctest4;
  1157.     unsigned char saved_ctest7;
  1158.     unsigned char saved_dcntl;
  1159.     unsigned char saved_scntl3;
  1160.     unsigned char this_id_mask;
  1161.     /* Debugger information */
  1162.     struct NCR53c7x0_break *breakpoints, /* Linked list of all break points */
  1163. *breakpoint_current; /* Current breakpoint being stepped 
  1164.    through, NULL if we are running 
  1165.    normally. */
  1166. #ifdef NCR_DEBUG
  1167.     int debug_size; /* Size of debug buffer */
  1168.     volatile int debug_count; /* Current data count */
  1169.     volatile char *debug_buf; /* Output ring buffer */
  1170.     volatile char *debug_write; /* Current write pointer */
  1171.     volatile char *debug_read; /* Current read pointer */
  1172. #endif /* def NCR_DEBUG */
  1173.     /* XXX - primitive debugging junk, remove when working ? */
  1174.     int debug_print_limit; /* Number of commands to print
  1175.    out exhaustive debugging
  1176.    information for if 
  1177.    OPTION_DEBUG_DUMP is set */ 
  1178.     unsigned char debug_lun_limit[16]; /* If OPTION_DEBUG_TARGET_LIMIT
  1179.    set, puke if commands are sent
  1180.    to other target/lun combinations */
  1181.     int debug_count_limit; /* Number of commands to execute
  1182.    before puking to limit debugging 
  1183.    output */
  1184.     
  1185.     volatile unsigned idle:1; /* set to 1 if idle */
  1186.     /* 
  1187.      * Table of synchronous+wide transfer parameters set on a per-target
  1188.      * basis.
  1189.      */
  1190.     
  1191.     volatile struct NCR53c7x0_synchronous sync[16]
  1192. __attribute__ ((aligned (4)));
  1193.     volatile Scsi_Cmnd *issue_queue
  1194. __attribute__ ((aligned (4)));
  1195. /* waiting to be issued by
  1196.    Linux driver */
  1197.     volatile struct NCR53c7x0_cmd *running_list;
  1198. /* commands running, maintained
  1199.    by Linux driver */
  1200.     volatile struct NCR53c7x0_cmd *ncrcurrent; /* currently connected 
  1201.    nexus, ONLY valid for
  1202.    NCR53c700/NCR53c700-66
  1203.  */
  1204.     volatile struct NCR53c7x0_cmd *spare; /* pointer to spare,
  1205.                                  allocated at probe time,
  1206.                                  which we can use for 
  1207.    initialization */
  1208.     volatile struct NCR53c7x0_cmd *free;
  1209.     int max_cmd_size; /* Maximum size of NCR53c7x0_cmd
  1210.         based on number of 
  1211.    scatter/gather segments, etc.
  1212.    */
  1213.     volatile int num_cmds; /* Number of commands 
  1214.    allocated */
  1215.     volatile int extra_allocate;
  1216.     volatile unsigned char cmd_allocated[16]; /* Have we allocated commands
  1217.    for this target yet?  If not,
  1218.    do so ASAP */
  1219.     volatile unsigned char busy[16][8];      /* number of commands 
  1220.    executing on each target
  1221.                                */
  1222.     /* 
  1223.      * Eventually, I'll switch to a coroutine for calling 
  1224.      * cmd->done(cmd), etc. so that we can overlap interrupt
  1225.      * processing with this code for maximum performance.
  1226.      */
  1227.     
  1228.     volatile struct NCR53c7x0_cmd *finished_queue;
  1229.     /* Shared variables between SCRIPT and host driver */
  1230.     volatile u32 *schedule
  1231. __attribute__ ((aligned (4))); /* Array of JUMPs to dsa_begin
  1232.    routines of various DSAs.  
  1233.    When not in use, replace
  1234.    with jump to next slot */
  1235.     volatile unsigned char msg_buf[16]; /* buffer for messages
  1236.    other than the command
  1237.    complete message */
  1238.     /* Per-target default synchronous and WIDE messages */
  1239.     volatile unsigned char synchronous_want[16][5];
  1240.     volatile unsigned char wide_want[16][4];
  1241.     /* Bit fielded set of targets we want to speak synchronously with */ 
  1242.     volatile u16 initiate_sdtr;
  1243.     /* Bit fielded set of targets we want to speak wide with */
  1244.     volatile u16 initiate_wdtr;
  1245.     /* Bit fielded list of targets we've talked to. */
  1246.     volatile u16 talked_to;
  1247.     /* Array of bit-fielded lun lists that we need to request_sense */
  1248.     volatile unsigned char request_sense[16];
  1249.     u32 addr_reconnect_dsa_head
  1250. __attribute__ ((aligned (4))); /* RISCy style constant,
  1251.    address of following */
  1252.     volatile u32 reconnect_dsa_head;
  1253.     /* Data identifying nexus we are trying to match during reselection */
  1254.     volatile unsigned char reselected_identify; /* IDENTIFY message */
  1255.     volatile unsigned char reselected_tag; /* second byte of queue tag 
  1256.    message or 0 */
  1257.     /* These were static variables before we moved them */
  1258.     s32 NCR53c7xx_zero
  1259. __attribute__ ((aligned (4)));
  1260.     s32 NCR53c7xx_sink;
  1261.     u32 NOP_insn;
  1262.     char NCR53c7xx_msg_reject;
  1263.     char NCR53c7xx_msg_abort;
  1264.     char NCR53c7xx_msg_nop;
  1265.     /*
  1266.      * Following item introduced by RGH to support NCRc710, which is
  1267.      * VERY brain-dead when it come to memory moves
  1268.      */
  1269.   /* DSA save area used only by the NCR chip */
  1270.     volatile unsigned long saved2_dsa
  1271. __attribute__ ((aligned (4)));
  1272.     volatile unsigned long emulated_intfly
  1273. __attribute__ ((aligned (4)));
  1274.     volatile int event_size, event_index;
  1275.     volatile struct NCR53c7x0_event *events;
  1276.     /* If we need to generate code to kill off the currently connected 
  1277.        command, this is where we do it. Should have a BMI instruction
  1278.        to source or sink the current data, followed by a JUMP
  1279.        to abort_connected */
  1280.     u32 *abort_script;
  1281.     int script_count; /* Size of script in words */
  1282.     u32 script[0]; /* Relocated SCSI script */
  1283. };
  1284. #define IRQ_NONE 255
  1285. #define DMA_NONE 255
  1286. #define IRQ_AUTO 254
  1287. #define DMA_AUTO 254
  1288. #define BOARD_GENERIC 0
  1289. #define NCR53c7x0_insn_size(insn)
  1290.     (((insn) & DCMD_TYPE_MASK) == DCMD_TYPE_MMI ? 3 : 2)
  1291.     
  1292. #define NCR53c7x0_local_declare()
  1293.     volatile unsigned char *NCR53c7x0_address_memory;
  1294.     unsigned int NCR53c7x0_address_io;
  1295.     int NCR53c7x0_memory_mapped
  1296. #define NCR53c7x0_local_setup(host)
  1297.     NCR53c7x0_address_memory = (void *) (host)->base;
  1298.     NCR53c7x0_address_io = (unsigned int) (host)->io_port;
  1299.     NCR53c7x0_memory_mapped = ((struct NCR53c7x0_hostdata *) 
  1300. host->hostdata[0])-> options & OPTION_MEMORY_MAPPED 
  1301. #ifdef BIG_ENDIAN
  1302. /* These could be more efficient, given that we are always memory mapped,
  1303.  * but they don't give the same problems as the write macros, so leave
  1304.  * them. */
  1305. #ifdef __mc68000__
  1306. #define NCR53c7x0_read8(address) 
  1307.     ((unsigned int)raw_inb((u32)NCR53c7x0_address_memory + ((u32)(address)^3)) )
  1308. #define NCR53c7x0_read16(address) 
  1309.     ((unsigned int)raw_inw((u32)NCR53c7x0_address_memory + ((u32)(address)^2)))
  1310. #else
  1311. #define NCR53c7x0_read8(address) 
  1312.     (NCR53c7x0_memory_mapped ? 
  1313. (unsigned int)readb((u32)NCR53c7x0_address_memory + ((u32)(address)^3)) :
  1314. inb(NCR53c7x0_address_io + (address)))
  1315. #define NCR53c7x0_read16(address) 
  1316.     (NCR53c7x0_memory_mapped ? 
  1317. (unsigned int)readw((u32)NCR53c7x0_address_memory + ((u32)(address)^2)) :
  1318. inw(NCR53c7x0_address_io + (address)))
  1319. #endif /* mc68000 */
  1320. #else
  1321. #define NCR53c7x0_read8(address) 
  1322.     (NCR53c7x0_memory_mapped ? 
  1323. (unsigned int)readb((u32)NCR53c7x0_address_memory + (u32)(address)) :
  1324. inb(NCR53c7x0_address_io + (address)))
  1325. #define NCR53c7x0_read16(address) 
  1326.     (NCR53c7x0_memory_mapped ? 
  1327. (unsigned int)readw((u32)NCR53c7x0_address_memory + (u32)(address)) :
  1328. inw(NCR53c7x0_address_io + (address)))
  1329. #endif
  1330. #ifdef __mc68000__
  1331. #define NCR53c7x0_read32(address) 
  1332.     ((unsigned int) raw_inl((u32)NCR53c7x0_address_memory + (u32)(address)))
  1333. #else
  1334. #define NCR53c7x0_read32(address) 
  1335.     (NCR53c7x0_memory_mapped ? 
  1336. (unsigned int) readl((u32)NCR53c7x0_address_memory + (u32)(address)) : 
  1337. inl(NCR53c7x0_address_io + (address)))
  1338. #endif /* mc68000*/
  1339. #ifdef BIG_ENDIAN
  1340. /* If we are big-endian, then we are not Intel, so probably don't have
  1341.  * an i/o map as well as a memory map.  So, let's assume memory mapped.
  1342.  * Also, I am having terrible problems trying to persuade the compiler
  1343.  * not to lay down code which does a read after write for these macros.
  1344.  * If you remove 'volatile' from writeb() and friends it is ok....
  1345.  */
  1346. #define NCR53c7x0_write8(address,value) 
  1347. *(volatile unsigned char *)
  1348. ((u32)NCR53c7x0_address_memory + ((u32)(address)^3)) = (value)
  1349. #define NCR53c7x0_write16(address,value) 
  1350. *(volatile unsigned short *)
  1351. ((u32)NCR53c7x0_address_memory + ((u32)(address)^2)) = (value)
  1352. #define NCR53c7x0_write32(address,value) 
  1353. *(volatile unsigned long *)
  1354. ((u32)NCR53c7x0_address_memory + ((u32)(address))) = (value)
  1355. #else
  1356. #define NCR53c7x0_write8(address,value) 
  1357.     (NCR53c7x0_memory_mapped ? 
  1358.      ({writeb((value), (u32)NCR53c7x0_address_memory + (u32)(address)); mb();}) :
  1359. outb((value), NCR53c7x0_address_io + (address)))
  1360. #define NCR53c7x0_write16(address,value) 
  1361.     (NCR53c7x0_memory_mapped ? 
  1362.      ({writew((value), (u32)NCR53c7x0_address_memory + (u32)(address)); mb();}) :
  1363. outw((value), NCR53c7x0_address_io + (address)))
  1364. #define NCR53c7x0_write32(address,value) 
  1365.     (NCR53c7x0_memory_mapped ? 
  1366.      ({writel((value), (u32)NCR53c7x0_address_memory + (u32)(address)); mb();}) :
  1367. outl((value), NCR53c7x0_address_io + (address)))
  1368. #endif
  1369. /* Patch arbitrary 32 bit words in the script */
  1370. #define patch_abs_32(script, offset, symbol, value)
  1371.      for (i = 0; i < (sizeof (A_##symbol##_used) / sizeof 
  1372.          (u32)); ++i) {
  1373.     (script)[A_##symbol##_used[i] - (offset)] += (value);
  1374.     if (hostdata->options & OPTION_DEBUG_FIXUP) 
  1375.       printk("scsi%d : %s reference %d at 0x%x in %s is now 0x%xn",
  1376. host->host_no, #symbol, i, A_##symbol##_used[i] - 
  1377. (int)(offset), #script, (script)[A_##symbol##_used[i] -
  1378. (offset)]);
  1379.      }
  1380. /* Patch read/write instruction immediate field */
  1381. #define patch_abs_rwri_data(script, offset, symbol, value)
  1382.      for (i = 0; i < (sizeof (A_##symbol##_used) / sizeof 
  1383.          (u32)); ++i)
  1384.          (script)[A_##symbol##_used[i] - (offset)] =
  1385.      ((script)[A_##symbol##_used[i] - (offset)] & 
  1386.      ~DBC_RWRI_IMMEDIATE_MASK) | 
  1387.           (((value) << DBC_RWRI_IMMEDIATE_SHIFT) &
  1388.  DBC_RWRI_IMMEDIATE_MASK)
  1389. /* Patch transfer control instruction data field */
  1390. #define patch_abs_tci_data(script, offset, symbol, value)         
  1391.      for (i = 0; i < (sizeof (A_##symbol##_used) / sizeof 
  1392.          (u32)); ++i)
  1393.          (script)[A_##symbol##_used[i] - (offset)] =
  1394.      ((script)[A_##symbol##_used[i] - (offset)] & 
  1395.      ~DBC_TCI_DATA_MASK) | 
  1396.           (((value) << DBC_TCI_DATA_SHIFT) &
  1397.  DBC_TCI_DATA_MASK)
  1398. /* Patch field in dsa structure (assignment should be +=?) */
  1399. #define patch_dsa_32(dsa, symbol, word, value)
  1400. {
  1401. (dsa)[(hostdata->##symbol - hostdata->dsa_start) / sizeof(u32)
  1402.     + (word)] = (value);
  1403. if (hostdata->options & OPTION_DEBUG_DSA)
  1404.     printk("scsi : dsa %s symbol %s(%d) word %d now 0x%xn",
  1405. #dsa, #symbol, hostdata->##symbol, 
  1406. (word), (u32) (value));
  1407. }
  1408. /* Paranoid people could use panic() here. */
  1409. #define FATAL(host) shutdown((host));
  1410. #endif /* NCR53c710_C */
  1411. #endif /* NCR53c710_H */