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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _SIM710_H
  2. #define _SIM710_H
  3. /*
  4.  * sim710.h - Copyright (C) 1999 Richard Hirst
  5.  */
  6. #include <linux/types.h>
  7. int sim710_detect(Scsi_Host_Template *);
  8. int sim710_command(Scsi_Cmnd *);
  9. int sim710_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
  10. int sim710_abort(Scsi_Cmnd * SCpnt);
  11. int sim710_bus_reset(Scsi_Cmnd * SCpnt);
  12. int sim710_dev_reset(Scsi_Cmnd * SCpnt);
  13. int sim710_host_reset(Scsi_Cmnd * SCpnt);
  14. int sim710_biosparam(Disk *, kdev_t, int*);
  15. #ifdef MODULE
  16. int sim710_release(struct Scsi_Host *);
  17. #else
  18. #define sim710_release NULL
  19. #endif
  20. #include <scsi/scsicam.h>
  21. #define SIM710_SCSI { proc_name: "sim710",
  22.       name: "Simple 53c710", 
  23.       detect: sim710_detect,
  24.       release: sim710_release,
  25.       queuecommand: sim710_queuecommand,
  26.       eh_abort_handler: sim710_abort,
  27.       eh_device_reset_handler: sim710_dev_reset,
  28.       eh_bus_reset_handler: sim710_bus_reset,
  29.       eh_host_reset_handler: sim710_host_reset,
  30.       bios_param: scsicam_bios_param,
  31.       can_queue: 8,  
  32.       this_id: 7, 
  33.       sg_tablesize: 128,  
  34.       cmd_per_lun: 1,  
  35.       use_clustering: DISABLE_CLUSTERING,
  36.       use_new_eh_code: 1}
  37. #ifndef HOSTS_C
  38. #ifdef __BIG_ENDIAN
  39. #define bE 3 /* 0 for little endian, 3 for big endian */
  40. #else
  41. #define bE 0
  42. #endif
  43. /* SCSI control 0 rw, default = 0xc0 */
  44. #define SCNTL0_REG  (0x00^bE)
  45. #define SCNTL0_ARB1 0x80 /* 0 0 = simple arbitration */
  46. #define SCNTL0_ARB2 0x40 /* 1 1 = full arbitration */
  47. #define SCNTL0_STRT 0x20 /* Start Sequence */
  48. #define SCNTL0_WATN 0x10 /* Select with ATN */
  49. #define SCNTL0_EPC 0x08 /* Enable parity checking */
  50. /* Bit 2 is reserved on 800 series chips */
  51. #define SCNTL0_EPG_700 0x04 /* Enable parity generation */
  52. #define SCNTL0_AAP 0x02 /*  ATN/ on parity error */
  53. #define SCNTL0_TRG 0x01 /* Target mode */
  54. /* SCSI control 1 rw, default = 0x00 */
  55. #define SCNTL1_REG  (0x01^bE)
  56. #define SCNTL1_EXC 0x80 /* Extra Clock Cycle of Data setup */
  57. #define SCNTL1_ADB 0x40 /*  contents of SODL on bus */
  58. #define SCNTL1_ESR_700 0x20 /* Enable SIOP response to selection
  59.    and reselection */
  60. #define SCNTL1_CON 0x10 /* Connected */
  61. #define SCNTL1_RST 0x08 /* SCSI RST/ */
  62. #define SCNTL1_AESP 0x04 /* Force bad parity */
  63. #define SCNTL1_SND_700 0x02 /* Start SCSI send */
  64. #define SCNTL1_IARB_800 0x02 /* Immediate Arbitration, start
  65.    arbitration immediately after
  66.    busfree is detected */
  67. #define SCNTL1_RCV_700 0x01 /* Start SCSI receive */
  68. #define SCNTL1_SST_800 0x01 /* Start SCSI transfer */
  69. /* SCSI control 2 rw, */
  70. #define SCNTL2_REG_800 (0x02^bE)
  71. #define SCNTL2_800_SDU 0x80 /* SCSI disconnect unexpected */
  72. /* SCSI control 3 rw */
  73. #define SCNTL3_REG_800  (0x03^bE)
  74. #define SCNTL3_800_SCF_SHIFT 4
  75. #define SCNTL3_800_SCF_MASK 0x70
  76. #define SCNTL3_800_SCF2 0x40 /* Synchronous divisor */
  77. #define SCNTL3_800_SCF1 0x20 /* 0x00 = SCLK/3 */
  78. #define SCNTL3_800_SCF0 0x10 /* 0x10 = SCLK/1 */
  79. /* 0x20 = SCLK/1.5
  80.    0x30 = SCLK/2
  81.    0x40 = SCLK/3 */
  82. #define SCNTL3_800_CCF_SHIFT 0
  83. #define SCNTL3_800_CCF_MASK 0x07
  84. #define SCNTL3_800_CCF2 0x04 /* 0x00 50.01 to 66 */
  85. #define SCNTL3_800_CCF1 0x02 /* 0x01 16.67 to 25 */
  86. #define SCNTL3_800_CCF0 0x01 /* 0x02 25.01 - 37.5
  87.    0x03 37.51 - 50
  88.    0x04 50.01 - 66 */
  89. /*
  90.  * SCSI destination ID rw - the appropriate bit is set for the selected
  91.  * target ID.  This is written by the SCSI SCRIPTS processor.
  92.  * default = 0x00
  93.  */
  94. #define SDID_REG_700   (0x02^bE)
  95. #define SDID_REG_800   (0x06^bE)
  96. #define GP_REG_800 (0x07^bE) /* General purpose IO */
  97. #define GP_800_IO1 0x02
  98. #define GP_800_IO2 0x01
  99. /* SCSI interrupt enable rw, default = 0x00 */
  100. #define SIEN_REG_700 (0x03^bE)
  101. #define SIEN0_REG_800 (0x40^bE)
  102. #define SIEN_MA 0x80 /* Phase mismatch (ini) or ATN (tgt) */
  103. #define SIEN_FC 0x40 /* Function complete */
  104. #define SIEN_700_STO 0x20 /* Selection or reselection timeout */
  105. #define SIEN_800_SEL 0x20 /* Selected */
  106. #define SIEN_700_SEL 0x10 /* Selected or reselected */
  107. #define SIEN_800_RESEL 0x10 /* Reselected */
  108. #define SIEN_SGE 0x08 /* SCSI gross error */
  109. #define SIEN_UDC 0x04 /* Unexpected disconnect */
  110. #define SIEN_RST 0x02 /* SCSI RST/ received */
  111. #define SIEN_PAR 0x01 /* Parity error */
  112. /*
  113.  * SCSI chip ID rw
  114.  * NCR53c700 :
  115.  *  When arbitrating, the highest bit is used, when reselection or selection
  116.  *  occurs, the chip responds to all IDs for which a bit is set.
  117.  *  default = 0x00
  118.  */
  119. #define SCID_REG (0x04^bE)
  120. /* Bit 7 is reserved on 800 series chips */
  121. #define SCID_800_RRE 0x40 /* Enable response to reselection */
  122. #define SCID_800_SRE 0x20 /* Enable response to selection */
  123. /* Bits four and three are reserved on 800 series chips */
  124. #define SCID_800_ENC_MASK 0x07 /* Encoded SCSI ID */
  125. /* SCSI transfer rw, default = 0x00 */
  126. #define SXFER_REG (0x05^bE)
  127. #define SXFER_DHP 0x80 /* Disable halt on parity */
  128. #define SXFER_TP2 0x40 /* Transfer period msb */
  129. #define SXFER_TP1 0x20
  130. #define SXFER_TP0 0x10 /* lsb */
  131. #define SXFER_TP_MASK 0x70
  132. /* FIXME : SXFER_TP_SHIFT == 5 is right for '8xx chips */
  133. #define SXFER_TP_SHIFT 5
  134. #define SXFER_TP_4 0x00 /* Divisors */
  135. #define SXFER_TP_5 0x10<<1
  136. #define SXFER_TP_6 0x20<<1
  137. #define SXFER_TP_7 0x30<<1
  138. #define SXFER_TP_8 0x40<<1
  139. #define SXFER_TP_9 0x50<<1
  140. #define SXFER_TP_10 0x60<<1
  141. #define SXFER_TP_11 0x70<<1
  142. #define SXFER_MO3 0x08 /* Max offset msb */
  143. #define SXFER_MO2 0x04
  144. #define SXFER_MO1 0x02
  145. #define SXFER_MO0 0x01 /* lsb */
  146. #define SXFER_MO_MASK 0x0f
  147. #define SXFER_MO_SHIFT 0
  148. /*
  149.  * SCSI output data latch rw
  150.  * The contents of this register are driven onto the SCSI bus when
  151.  * the Assert Data Bus bit of the SCNTL1 register is set and
  152.  * the CD, IO, and MSG bits of the SOCL register match the SCSI phase
  153.  */
  154. #define SODL_REG_700 (0x06^bE)
  155. #define SODL_REG_800 (0x54^bE)
  156. /*
  157.  * SCSI output control latch rw, default = 0
  158.  * Note that when the chip is being manually programmed as an initiator,
  159.  * the MSG, CD, and IO bits must be set correctly for the phase the target
  160.  * is driving the bus in.  Otherwise no data transfer will occur due to
  161.  * phase mismatch.
  162.  */
  163. #define SOCL_REG (0x07^bE)
  164. #define SOCL_REQ 0x80 /*  REQ */
  165. #define SOCL_ACK 0x40 /*  ACK */
  166. #define SOCL_BSY 0x20 /*  BSY */
  167. #define SOCL_SEL 0x10 /*  SEL */
  168. #define SOCL_ATN 0x08 /*  ATN */
  169. #define SOCL_MSG 0x04 /*  MSG */
  170. #define SOCL_CD 0x02 /*  C/D */
  171. #define SOCL_IO 0x01 /*  I/O */
  172. /*
  173.  * SCSI first byte received latch ro
  174.  * This register contains the first byte received during a block MOVE
  175.  * SCSI SCRIPTS instruction, including
  176.  *
  177.  * Initiator mode Target mode
  178.  * Message in Command
  179.  * Status Message out
  180.  * Data in Data out
  181.  *
  182.  * It also contains the selecting or reselecting device's ID and our
  183.  * ID.
  184.  *
  185.  * Note that this is the register the various IF conditionals can
  186.  * operate on.
  187.  */
  188. #define SFBR_REG (0x08^bE)
  189. /*
  190.  * SCSI input data latch ro
  191.  * In initiator mode, data is latched into this register on the rising
  192.  * edge of REQ/. In target mode, data is latched on the rising edge of
  193.  * ACK/
  194.  */
  195. #define SIDL_REG_700 (0x09^bE)
  196. #define SIDL_REG_800 (0x50^bE)
  197. /*
  198.  * SCSI bus data lines ro
  199.  * This register reflects the instantaneous status of the SCSI data
  200.  * lines.  Note that SCNTL0 must be set to disable parity checking,
  201.  * otherwise reading this register will latch new parity.
  202.  */
  203. #define SBDL_REG_700 (0x0a^bE)
  204. #define SBDL_REG_800 (0x58^bE)
  205. #define SSID_REG_800 (0x0a^bE)
  206. #define SSID_800_VAL 0x80 /* Exactly two bits asserted at sel */
  207. #define SSID_800_ENCID_MASK 0x07 /* Device which performed operation */
  208. /*
  209.  * SCSI bus control lines rw,
  210.  * instantaneous readout of control lines
  211.  */
  212. #define SBCL_REG (0x0b^bE)
  213. #define SBCL_REQ 0x80 /*  REQ ro */
  214. #define SBCL_ACK 0x40 /*  ACK ro */
  215. #define SBCL_BSY 0x20 /*  BSY ro */
  216. #define SBCL_SEL 0x10 /*  SEL ro */
  217. #define SBCL_ATN 0x08 /*  ATN ro */
  218. #define SBCL_MSG 0x04 /*  MSG ro */
  219. #define SBCL_CD 0x02 /*  C/D ro */
  220. #define SBCL_IO 0x01 /*  I/O ro */
  221. #define SBCL_PHASE_CMDOUT SBCL_CD
  222. #define SBCL_PHASE_DATAIN SBCL_IO
  223. #define SBCL_PHASE_DATAOUT 0
  224. #define SBCL_PHASE_MSGIN (SBCL_CD|SBCL_IO|SBCL_MSG)
  225. #define SBCL_PHASE_MSGOUT (SBCL_CD|SBCL_MSG)
  226. #define SBCL_PHASE_STATIN (SBCL_CD|SBCL_IO)
  227. #define SBCL_PHASE_MASK (SBCL_CD|SBCL_IO|SBCL_MSG)
  228. /*
  229.  * Synchronous SCSI Clock Control bits
  230.  * 0 - set by DCNTL
  231.  * 1 - SCLK / 1.0
  232.  * 2 - SCLK / 1.5
  233.  * 3 - SCLK / 2.0
  234.  */
  235. #define SBCL_SSCF1 0x02 /* wo, -66 only */
  236. #define SBCL_SSCF0 0x01 /* wo, -66 only */
  237. #define SBCL_SSCF_MASK 0x03
  238. /*
  239.  * XXX note : when reading the DSTAT and STAT registers to clear interrupts,
  240.  * insure that 10 clocks elapse between the two
  241.  */
  242. /* DMA status ro */
  243. #define DSTAT_REG (0x0c^bE)
  244. #define DSTAT_DFE 0x80 /* DMA FIFO empty */
  245. #define DSTAT_800_MDPE 0x40 /* Master Data Parity Error */
  246. #define DSTAT_BF 0x20 /* Bus Fault */
  247. #define DSTAT_ABRT 0x10 /* Aborted - set on error */
  248. #define DSTAT_SSI 0x08 /* SCRIPTS single step interrupt */
  249. #define DSTAT_SIR 0x04 /* SCRIPTS interrupt received -
  250.    set when INT instruction is
  251.    executed */
  252. #define DSTAT_WTD 0x02 /* Watchdog timeout detected */
  253. #define DSTAT_OPC 0x01 /* Illegal instruction */
  254. #define DSTAT_IID 0x01 /* Same thing, different name */
  255. #define SSTAT0_REG (0x0d^bE) /* SCSI status 0 ro */
  256. #define SIST0_REG_800 (0x42^bE) /* SCSI status 0 ro */
  257. #define SSTAT0_MA 0x80 /* ini : phase mismatch,
  258.  * tgt : ATN/ asserted
  259.  */
  260. #define SSTAT0_CMP 0x40 /* function complete */
  261. #define SSTAT0_700_STO 0x20 /* Selection or reselection timeout */
  262. #define SSTAT0_800_SEL 0x20 /* Selected */
  263. #define SSTAT0_700_SEL 0x10 /* Selected or reselected */
  264. #define SIST0_800_RSL 0x10 /* Reselected */
  265. #define SSTAT0_SGE 0x08 /* SCSI gross error */
  266. #define SSTAT0_UDC 0x04 /* Unexpected disconnect */
  267. #define SSTAT0_RST 0x02 /* SCSI RST/ received */
  268. #define SSTAT0_PAR 0x01 /* Parity error */
  269. #define SSTAT1_REG (0x0e^bE) /* SCSI status 1 ro */
  270. #define SSTAT1_ILF 0x80 /* SIDL full */
  271. #define SSTAT1_ORF 0x40 /* SODR full */
  272. #define SSTAT1_OLF 0x20 /* SODL full */
  273. #define SSTAT1_AIP 0x10 /* Arbitration in progress */
  274. #define SSTAT1_LOA 0x08 /* Lost arbitration */
  275. #define SSTAT1_WOA 0x04 /* Won arbitration */
  276. #define SSTAT1_RST 0x02 /* Instant readout of RST/ */
  277. #define SSTAT1_SDP 0x01 /* Instant readout of SDP/ */
  278. #define SSTAT2_REG (0x0f^bE) /* SCSI status 2 ro */
  279. #define SSTAT2_FF3 0x80  /* number of bytes in synchronous */
  280. #define SSTAT2_FF2 0x40 /* data FIFO */
  281. #define SSTAT2_FF1 0x20
  282. #define SSTAT2_FF0 0x10
  283. #define SSTAT2_FF_MASK 0xf0
  284. #define SSTAT2_FF_SHIFT 4
  285. /*
  286.  * Latched signals, latched on the leading edge of REQ/ for initiators,
  287.  * ACK/ for targets.
  288.  */
  289. #define SSTAT2_SDP 0x08 /* SDP */
  290. #define SSTAT2_MSG 0x04 /* MSG */
  291. #define SSTAT2_CD 0x02 /* C/D */
  292. #define SSTAT2_IO 0x01 /* I/O */
  293. #define SSTAT2_PHASE_CMDOUT SSTAT2_CD
  294. #define SSTAT2_PHASE_DATAIN SSTAT2_IO
  295. #define SSTAT2_PHASE_DATAOUT 0
  296. #define SSTAT2_PHASE_MSGIN (SSTAT2_CD|SSTAT2_IO|SSTAT2_MSG)
  297. #define SSTAT2_PHASE_MSGOUT (SSTAT2_CD|SSTAT2_MSG)
  298. #define SSTAT2_PHASE_STATIN (SSTAT2_CD|SSTAT2_IO)
  299. #define SSTAT2_PHASE_MASK (SSTAT2_CD|SSTAT2_IO|SSTAT2_MSG)
  300. #define DSA_REG 0x10 /* DATA structure address */
  301. #define CTEST0_REG_700 (0x14^bE) /* Chip test 0 ro */
  302. #define CTEST0_REG_800 (0x18^bE) /* Chip test 0 ro */
  303. /* 0x80 - 0x04 are reserved */
  304. #define CTEST0_700_RTRG 0x02 /* Real target mode */
  305. #define CTEST0_700_DDIR 0x01 /* Data direction, 1 =
  306.  * SCSI bus to host, 0  =
  307.  * host to SCSI.
  308.  */
  309. #define CTEST1_REG_700 (0x15^bE) /* Chip test 1 ro */
  310. #define CTEST1_REG_800 (0x19^bE) /* Chip test 1 ro */
  311. #define CTEST1_FMT3 0x80 /* Identify which byte lanes are empty */
  312. #define CTEST1_FMT2 0x40  /* in the DMA FIFO */
  313. #define CTEST1_FMT1 0x20
  314. #define CTEST1_FMT0 0x10
  315. #define CTEST1_FFL3 0x08 /* Identify which bytes lanes are full */
  316. #define CTEST1_FFL2 0x04 /* in the DMA FIFO */
  317. #define CTEST1_FFL1 0x02
  318. #define CTEST1_FFL0 0x01
  319. #define CTEST2_REG_700 (0x16^bE) /* Chip test 2 ro */
  320. #define CTEST2_REG_800 (0x1a^bE) /* Chip test 2 ro */
  321. #define CTEST2_800_DDIR 0x80 /* 1 = SCSI->host */
  322. #define CTEST2_800_SIGP 0x40 /* A copy of SIGP in ISTAT.
  323.    Reading this register clears */
  324. #define CTEST2_800_CIO 0x20 /* Configured as IO */.
  325. #define CTEST2_800_CM 0x10 /* Configured as memory */
  326. /* 0x80 - 0x40 are reserved on 700 series chips */
  327. #define CTEST2_700_SOFF 0x20 /* SCSI Offset Compare,
  328.  * As an initiator, this bit is
  329.  * one when the synchronous offset
  330.  * is zero, as a target this bit
  331.  * is one when the synchronous
  332.  * offset is at the maximum
  333.  * defined in SXFER
  334.  */
  335. #define CTEST2_700_SFP 0x10 /* SCSI FIFO parity bit,
  336.  * reading CTEST3 unloads a byte
  337.  * from the FIFO and sets this
  338.  */
  339. #define CTEST2_700_DFP 0x08 /* DMA FIFO parity bit,
  340.  * reading CTEST6 unloads a byte
  341.  * from the FIFO and sets this
  342.  */
  343. #define CTEST2_TEOP 0x04 /* SCSI true end of process,
  344.  * indicates a totally finished
  345.  * transfer
  346.  */
  347. #define CTEST2_DREQ 0x02 /* Data request signal */
  348. /* 0x01 is reserved on 700 series chips */
  349. #define CTEST2_800_DACK 0x01
  350. /*
  351.  * Chip test 3 ro
  352.  * Unloads the bottom byte of the eight deep SCSI synchronous FIFO,
  353.  * check SSTAT2 FIFO full bits to determine size.  Note that a GROSS
  354.  * error results if a read is attempted on this register.  Also note
  355.  * that 16 and 32 bit reads of this register will cause corruption.
  356.  */
  357. #define CTEST3_REG_700 (0x17^bE)
  358. /*  Chip test 3 rw */
  359. #define CTEST3_REG_800 (0x1b^bE)
  360. #define CTEST3_800_V3 0x80 /* Chip revision */
  361. #define CTEST3_800_V2 0x40
  362. #define CTEST3_800_V1 0x20
  363. #define CTEST3_800_V0 0x10
  364. #define CTEST3_800_FLF 0x08 /* Flush DMA FIFO */
  365. #define CTEST3_800_CLF 0x04 /* Clear DMA FIFO */
  366. #define CTEST3_800_FM 0x02 /* Fetch mode pin */
  367. /* bit 0 is reserved on 800 series chips */
  368. #define CTEST4_REG_400 (0x18^bE) /* Chip test 4 rw */
  369. #define CTEST4_REG_800 (0x21^bE) /* Chip test 4 rw */
  370. /* 0x80 is reserved on 700 series chips */
  371. #define CTEST4_800_BDIS 0x80 /* Burst mode disable */
  372. #define CTEST4_ZMOD 0x40 /* High impedance mode */
  373. #define CTEST4_SZM 0x20 /* SCSI bus high impedance */
  374. #define CTEST4_700_SLBE 0x10 /* SCSI loopback enabled */
  375. #define CTEST4_800_SRTM 0x10 /* Shadow Register Test Mode */
  376. #define CTEST4_700_SFWR 0x08 /* SCSI FIFO write enable,
  377.  * redirects writes from SODL
  378.  * to the SCSI FIFO.
  379.  */
  380. #define CTEST4_800_MPEE 0x08 /* Enable parity checking
  381.    during master cycles on PCI
  382.    bus */
  383. /*
  384.  * These bits send the contents of the CTEST6 register to the appropriate
  385.  * byte lane of the 32 bit DMA FIFO.  Normal operation is zero, otherwise
  386.  * the high bit means the low two bits select the byte lane.
  387.  */
  388. #define CTEST4_FBL2 0x04
  389. #define CTEST4_FBL1 0x02
  390. #define CTEST4_FBL0 0x01
  391. #define CTEST4_FBL_MASK 0x07
  392. #define CTEST4_FBL_0 0x04 /* Select DMA FIFO byte lane 0 */
  393. #define CTEST4_FBL_1 0x05 /* Select DMA FIFO byte lane 1 */
  394. #define CTEST4_FBL_2 0x06 /* Select DMA FIFO byte lane 2 */
  395. #define CTEST4_FBL_3 0x07 /* Select DMA FIFO byte lane 3 */
  396. #define CTEST4_800_SAVE (CTEST4_800_BDIS)
  397. #define CTEST5_REG_700 (0x19^bE) /* Chip test 5 rw */
  398. #define CTEST5_REG_800 (0x22^bE) /* Chip test 5 rw */
  399. /*
  400.  * Clock Address Incrementor.  When set, it increments the
  401.  * DNAD register to the next bus size boundary.  It automatically
  402.  * resets itself when the operation is complete.
  403.  */
  404. #define CTEST5_ADCK 0x80
  405. /*
  406.  * Clock Byte Counter.  When set, it decrements the DBC register to
  407.  * the next bus size boundary.
  408.  */
  409. #define CTEST5_BBCK 0x40
  410. /*
  411.  * Reset SCSI Offset.  Setting this bit to 1 clears the current offset
  412.  * pointer in the SCSI synchronous offset counter (SSTAT).  This bit
  413.  * is set to 1 if a SCSI Gross Error Condition occurs.  The offset should
  414.  * be cleared when a synchronous transfer fails.  When written, it is
  415.  * automatically cleared after the SCSI synchronous offset counter is
  416.  * reset.
  417.  */
  418. /* Bit 5 is reserved on 800 series chips */
  419. #define CTEST5_700_ROFF 0x20
  420. /*
  421.  * Master Control for Set or Reset pulses. When 1, causes the low
  422.  * four bits of register to set when set, 0 causes the low bits to
  423.  * clear when set.
  424.  */
  425. #define CTEST5_MASR  0x10
  426. #define CTEST5_DDIR 0x08 /* DMA direction */
  427. /*
  428.  * Bits 2-0 are reserved on 800 series chips
  429.  */
  430. #define CTEST5_700_EOP 0x04 /* End of process */
  431. #define CTEST5_700_DREQ 0x02 /* Data request */
  432. #define CTEST5_700_DACK 0x01 /* Data acknowledge */
  433. /*
  434.  * Chip test 6 rw - writing to this register writes to the byte
  435.  * lane in the DMA FIFO as determined by the FBL bits in the CTEST4
  436.  * register.
  437.  */
  438. #define CTEST6_REG_700 (0x1a^bE)
  439. #define CTEST6_REG_800 (0x23^bE)
  440. #define CTEST7_REG (0x1b^bE) /* Chip test 7 rw */
  441. #define CTEST7_10_CDIS 0x80 /* Cache burst disable */
  442. #define CTEST7_10_SC1 0x40 /* Snoop control bits */
  443. #define CTEST7_10_SC0 0x20
  444. #define CTEST7_10_SC_MASK 0x60
  445. #define CTEST7_STD 0x10 /* Selection timeout disable */
  446. #define CTEST7_DFP 0x08 /* DMA FIFO parity bit for CTEST6 */
  447. #define CTEST7_EVP 0x04 /* 1 = host bus even parity, 0 = odd */
  448. #define CTEST7_10_TT1 0x02 /* Transfer type */
  449. #define CTEST7_DIFF 0x01 /* Differential mode */
  450. #define CTEST7_SAVE ( CTEST7_EVP | CTEST7_DIFF )
  451. #define TEMP_REG 0x1c /* through 0x1f Temporary stack rw */
  452. #define DFIFO_REG (0x20^bE) /* DMA FIFO rw */
  453. /*
  454.  * 0x80 is reserved on the NCR53c710, the CLF and FLF bits have been
  455.  * moved into the CTEST8 register.
  456.  */
  457. #define DFIFO_BO6 0x40
  458. #define DFIFO_BO5 0x20
  459. #define DFIFO_BO4 0x10
  460. #define DFIFO_BO3 0x08
  461. #define DFIFO_BO2 0x04
  462. #define DFIFO_BO1 0x02
  463. #define DFIFO_BO0 0x01
  464. #define DFIFO_10_BO_MASK 0x7f /* 7 bit counter */
  465. /*
  466.  * Interrupt status rw
  467.  * Note that this is the only register which can be read while SCSI
  468.  * SCRIPTS are being executed.
  469.  */
  470. #define ISTAT_REG_700 (0x21^bE)
  471. #define ISTAT_REG_800 (0x14^bE)
  472. #define ISTAT_ABRT 0x80 /* Software abort, write
  473.  *1 to abort, wait for interrupt. */
  474. #define ISTAT_10_SRST 0x40 /* software reset */
  475. #define ISTAT_10_SIGP 0x20 /* signal script */
  476. #define ISTAT_CON 0x08 /* 1 when connected */
  477. #define ISTAT_800_INTF 0x04 /* Interrupt on the fly */
  478. #define ISTAT_700_PRE 0x04 /* Pointer register empty.
  479.  * Set to 1 when DSPS and DSP
  480.  * registers are empty in pipeline
  481.  * mode, always set otherwise.
  482.  */
  483. #define ISTAT_SIP 0x02 /* SCSI interrupt pending from
  484.  * SCSI portion of SIOP see
  485.  * SSTAT0
  486.  */
  487. #define ISTAT_DIP 0x01 /* DMA interrupt pending
  488.  * see DSTAT
  489.  */
  490. #define CTEST8_REG (0x22^bE) /* Chip test 8 rw */
  491. #define CTEST8_10_V3 0x80 /* Chip revision */
  492. #define CTEST8_10_V2 0x40
  493. #define CTEST8_10_V1 0x20
  494. #define CTEST8_10_V0 0x10
  495. #define CTEST8_10_V_MASK 0xf0
  496. #define CTEST8_10_FLF 0x08 /* Flush FIFOs */
  497. #define CTEST8_10_CLF 0x04 /* Clear FIFOs */
  498. #define CTEST8_10_FM 0x02 /* Fetch pin mode */
  499. #define CTEST8_10_SM 0x01 /* Snoop pin mode */
  500. #define LCRC_REG_10 (0x23^bE)
  501. /*
  502.  * 0x24 through 0x27 are the DMA byte counter register.  Instructions
  503.  * write their high 8 bits into the DCMD register, the low 24 bits into
  504.  * the DBC register.
  505.  *
  506.  * Function is dependent on the command type being executed.
  507.  */
  508. #define DBC_REG 0x24
  509. /*
  510.  * For Block Move Instructions, DBC is a 24 bit quantity representing
  511.  *     the number of bytes to transfer.
  512.  * For Transfer Control Instructions, DBC is bit fielded as follows :
  513.  */
  514. /* Bits 20 - 23 should be clear */
  515. #define DBC_TCI_TRUE (1 << 19)  /* Jump when true */
  516. #define DBC_TCI_COMPARE_DATA (1 << 18) /* Compare data */
  517. #define DBC_TCI_COMPARE_PHASE (1 << 17) /* Compare phase with DCMD field */
  518. #define DBC_TCI_WAIT_FOR_VALID (1 << 16) /* Wait for REQ */
  519. /* Bits 8 - 15 are reserved on some implementations ? */
  520. #define DBC_TCI_MASK_MASK 0xff00  /* Mask for data compare */
  521. #define DBC_TCI_MASK_SHIFT 8
  522. #define DBC_TCI_DATA_MASK 0xff /* Data to be compared */
  523. #define DBC_TCI_DATA_SHIFT 0
  524. #define DBC_RWRI_IMMEDIATE_MASK 0xff00 /* Immediate data */
  525. #define DBC_RWRI_IMMEDIATE_SHIFT 8 /* Amount to shift */
  526. #define DBC_RWRI_ADDRESS_MASK 0x3f0000 /* Register address */
  527. #define DBC_RWRI_ADDRESS_SHIFT  16
  528. /*
  529.  * DMA command r/w
  530.  */
  531. #define DCMD_REG (0x27^bE)
  532. #define DCMD_TYPE_MASK 0xc0 /* Masks off type */
  533. #define DCMD_TYPE_BMI 0x00 /* Indicates a Block Move instruction */
  534. #define DCMD_BMI_IO 0x01 /* I/O, CD, and MSG bits selecting   */
  535. #define DCMD_BMI_CD 0x02 /* the phase for the block MOVE      */
  536. #define DCMD_BMI_MSG 0x04 /* instruction       */
  537. #define DCMD_BMI_OP_MASK 0x18 /* mask for opcode */
  538. #define DCMD_BMI_OP_MOVE_T 0x00 /* MOVE */
  539. #define DCMD_BMI_OP_MOVE_I 0x08 /* MOVE Initiator */
  540. #define DCMD_BMI_INDIRECT 0x20 /*  Indirect addressing */
  541. #define DCMD_TYPE_TCI 0x80 /* Indicates a Transfer Control
  542.    instruction */
  543. #define DCMD_TCI_IO 0x01 /* I/O, CD, and MSG bits selecting   */
  544. #define DCMD_TCI_CD 0x02 /* the phase for the block MOVE      */
  545. #define DCMD_TCI_MSG 0x04 /* instruction       */
  546. #define DCMD_TCI_OP_MASK 0x38 /* mask for opcode */
  547. #define DCMD_TCI_OP_JUMP 0x00 /* JUMP */
  548. #define DCMD_TCI_OP_CALL 0x08 /* CALL */
  549. #define DCMD_TCI_OP_RETURN 0x10 /* RETURN */
  550. #define DCMD_TCI_OP_INT 0x18 /* INT */
  551. #define DCMD_TYPE_RWRI 0x40 /* Indicates I/O or register Read/Write
  552.    instruction */
  553. #define DCMD_RWRI_OPC_MASK 0x38 /* Opcode mask */
  554. #define DCMD_RWRI_OPC_WRITE 0x28 /* Write SFBR to register */
  555. #define DCMD_RWRI_OPC_READ 0x30 /* Read register to SFBR */
  556. #define DCMD_RWRI_OPC_MODIFY 0x38 /* Modify in place */
  557. #define DCMD_RWRI_OP_MASK 0x07
  558. #define DCMD_RWRI_OP_MOVE 0x00
  559. #define DCMD_RWRI_OP_SHL 0x01
  560. #define DCMD_RWRI_OP_OR 0x02
  561. #define DCMD_RWRI_OP_XOR 0x03
  562. #define DCMD_RWRI_OP_AND 0x04
  563. #define DCMD_RWRI_OP_SHR 0x05
  564. #define DCMD_RWRI_OP_ADD 0x06
  565. #define DCMD_RWRI_OP_ADDC 0x07
  566. #define DCMD_TYPE_MMI 0xc0 /* Indicates a Memory Move instruction
  567.    (three words) */
  568. #define DNAD_REG 0x28 /* through 0x2b DMA next address for
  569.    data */
  570. #define DSP_REG 0x2c /* through 0x2f DMA SCRIPTS pointer rw */
  571. #define DSPS_REG 0x30 /* through 0x33 DMA SCRIPTS pointer
  572.    save rw */
  573. #define DMODE_BL1 0x80 /* Burst length bits */
  574. #define DMODE_BL0 0x40
  575. #define DMODE_BL_MASK 0xc0
  576. /* Burst lengths (800) */
  577. #define DMODE_BL_2 0x00 /* 2 transfer */
  578. #define DMODE_BL_4 0x40 /* 4 transfers */
  579. #define DMODE_BL_8 0x80 /* 8 transfers */
  580. #define DMODE_BL_16 0xc0 /* 16 transfers */
  581. #define DMODE_10_BL_1 0x00 /* 1 transfer */
  582. #define DMODE_10_BL_2 0x40 /* 2 transfers */
  583. #define DMODE_10_BL_4 0x80 /* 4 transfers */
  584. #define DMODE_10_BL_8 0xc0 /* 8 transfers */
  585. #define DMODE_10_FC2 0x20 /* Driven to FC2 pin */
  586. #define DMODE_10_FC1 0x10 /* Driven to FC1 pin */
  587. #define DMODE_710_PD 0x08 /* Program/data on FC0 pin */
  588. #define DMODE_710_UO 0x02 /* User prog. output */
  589. #define DMODE_MAN 0x01 /* Manual start mode,
  590.  * requires a 1 to be written
  591.  * to the start DMA bit in the DCNTL
  592.  * register to run scripts
  593.  */
  594. /* NCR53c800 series only */
  595. #define SCRATCHA_REG_800 0x34 /* through 0x37 Scratch A rw */
  596. /* NCR53c710 only */
  597. #define SCRATCHB_REG_10 0x34 /* through 0x37 scratch rw */
  598. #define DMODE_REG      (0x38^bE) /* DMA mode rw, NCR53c710 and newer */
  599. #define DMODE_800_SIOM 0x20 /* Source IO = 1 */
  600. #define DMODE_800_DIOM 0x10 /* Destination IO = 1 */
  601. #define DMODE_800_ERL 0x08 /* Enable Read Line */
  602. #define DIEN_REG (0x39^bE) /* DMA interrupt enable rw */
  603. /* 0x80, 0x40, and 0x20 are reserved on 700-series chips */
  604. #define DIEN_800_MDPE 0x40 /* Master data parity error */
  605. #define DIEN_800_BF 0x20 /* BUS fault */
  606. #define DIEN_700_BF 0x20 /* BUS fault */
  607. #define DIEN_ABRT 0x10 /* Enable aborted interrupt */
  608. #define DIEN_SSI 0x08 /* Enable single step interrupt */
  609. #define DIEN_SIR 0x04 /* Enable SCRIPTS INT command
  610.  * interrupt
  611.  */
  612. #define DIEN_700_WTD 0x02 /* Enable watchdog timeout interrupt */
  613. #define DIEN_700_OPC 0x01 /* Enable illegal instruction
  614.  * interrupt
  615.  */
  616. #define DIEN_800_IID 0x01 /*  Same meaning, different name */
  617. /*
  618.  * DMA watchdog timer rw
  619.  * set in 16 CLK input periods.
  620.  */
  621. #define DWT_REG (0x3a^bE)
  622. /* DMA control rw */
  623. #define DCNTL_REG (0x3b^bE)
  624. #define DCNTL_700_CF1 0x80 /* Clock divisor bits */
  625. #define DCNTL_700_CF0 0x40
  626. #define DCNTL_700_CF_MASK 0xc0
  627. /* Clock divisors     Divisor SCLK range (MHZ) */
  628. #define DCNTL_700_CF_2 0x00    /* 2.0    37.51-50.00 */
  629. #define DCNTL_700_CF_1_5 0x40 /* 1.5    25.01-37.50 */
  630. #define DCNTL_700_CF_1 0x80 /* 1.0     16.67-25.00 */
  631. #define DCNTL_700_CF_3 0xc0 /* 3.0    50.01-66.67 (53c700-66) */
  632. #define DCNTL_700_S16 0x20 /* Load scripts 16 bits at a time */
  633. #define DCNTL_SSM 0x10 /* Single step mode */
  634. #define DCNTL_700_LLM 0x08 /* Low level mode, can only be set
  635.  * after selection */
  636. #define DCNTL_800_IRQM 0x08 /* Totem pole IRQ pin */
  637. #define DCNTL_STD 0x04 /* Start DMA / SCRIPTS */
  638. /* 0x02 is reserved */
  639. #define DCNTL_10_COM 0x01 /* 700 software compatibility mode */
  640. #define DCNTL_10_EA 0x20 /* Enable Ack - needed for MVME16x */
  641. #define SCRATCHB_REG_800 0x5c /* through 0x5f scratch b rw */
  642. /* NCR53c710 only */
  643. #define ADDER_REG_10 0x3c /* Adder, NCR53c710 only */
  644. #define SIEN1_REG_800 (0x41^bE)
  645. #define SIEN1_800_STO 0x04 /* selection/reselection timeout */
  646. #define SIEN1_800_GEN 0x02 /* general purpose timer */
  647. #define SIEN1_800_HTH 0x01 /* handshake to handshake */
  648. #define SIST1_REG_800 (0x43^bE)
  649. #define SIST1_800_STO 0x04 /* selection/reselection timeout */
  650. #define SIST1_800_GEN 0x02 /* general purpose timer */
  651. #define SIST1_800_HTH 0x01 /* handshake to handshake */
  652. #define SLPAR_REG_800 (0x44^bE) /* Parity */
  653. #define MACNTL_REG_800 (0x46^bE) /* Memory access control */
  654. #define MACNTL_800_TYP3 0x80
  655. #define MACNTL_800_TYP2 0x40
  656. #define MACNTL_800_TYP1 0x20
  657. #define MACNTL_800_TYP0 0x10
  658. #define MACNTL_800_DWR 0x08
  659. #define MACNTL_800_DRD 0x04
  660. #define MACNTL_800_PSCPT 0x02
  661. #define MACNTL_800_SCPTS 0x01
  662. #define GPCNTL_REG_800 (0x47^bE) /* General Purpose Pin Control */
  663. /* Timeouts are expressed such that 0=off, 1=100us, doubling after that */
  664. #define STIME0_REG_800 (0x48^bE) /* SCSI Timer Register 0 */
  665. #define STIME0_800_HTH_MASK 0xf0 /* Handshake to Handshake timeout */
  666. #define STIME0_800_HTH_SHIFT 4
  667. #define STIME0_800_SEL_MASK 0x0f /* Selection timeout */
  668. #define STIME0_800_SEL_SHIFT 0
  669. #define STIME1_REG_800 (0x49^bE)
  670. #define STIME1_800_GEN_MASK 0x0f /* General purpose timer */
  671. #define RESPID_REG_800 (0x4a^bE) /* Response ID, bit fielded.  8
  672.    bits on narrow chips, 16 on WIDE */
  673. #define STEST0_REG_800 (0x4c^bE)
  674. #define STEST0_800_SLT 0x08 /* Selection response logic test */
  675. #define STEST0_800_ART 0x04 /* Arbitration priority encoder test */
  676. #define STEST0_800_SOZ 0x02 /* Synchronous offset zero */
  677. #define STEST0_800_SOM 0x01 /* Synchronous offset maximum */
  678. #define STEST1_REG_800 (0x4d^bE)
  679. #define STEST1_800_SCLK 0x80 /* Disable SCSI clock */
  680. #define STEST2_REG_800 (0x4e^bE)
  681. #define STEST2_800_SCE 0x80 /* Enable SOCL/SODL */
  682. #define STEST2_800_ROF 0x40 /* Reset SCSI sync offset */
  683. #define STEST2_800_SLB 0x10 /* Enable SCSI loopback mode */
  684. #define STEST2_800_SZM 0x08 /* SCSI high impedance mode */
  685. #define STEST2_800_EXT 0x02 /* Extend REQ/ACK filter 30 to 60ns */
  686. #define STEST2_800_LOW 0x01 /* SCSI low level mode */
  687. #define STEST3_REG_800 (0x4f^bE)
  688. #define STEST3_800_TE 0x80 /* Enable active negation */
  689. #define STEST3_800_STR 0x40 /* SCSI FIFO test read */
  690. #define STEST3_800_HSC 0x20 /* Halt SCSI clock */
  691. #define STEST3_800_DSI 0x10 /* Disable single initiator response */
  692. #define STEST3_800_TTM 0x04 /* Time test mode */
  693. #define STEST3_800_CSF 0x02 /* Clear SCSI FIFO */
  694. #define STEST3_800_STW 0x01 /* SCSI FIFO test write */
  695. #define ISTAT_REG ISTAT_REG_700
  696. #define SCRATCH_REG SCRATCHB_REG_10
  697. #ifdef MEM_MAPPED
  698. #define NCR_read8(address) 
  699. (unsigned int)readb((u32)(host->base) + ((u32)(address)))
  700. #define NCR_read32(address) 
  701. (unsigned int) readl((u32)(host->base) + (u32)(address))
  702. #define NCR_write8(address,value) 
  703. { DEB(DEB_REGS, printk("NCR: %02x => %08xn", (u32)(value), ((u32)(host->base) + (u32)(address)))); 
  704. *(volatile unsigned char *)
  705. ((u32)(host->base) + (u32)(address)) = (value); }
  706. #define NCR_write32(address,value) 
  707. { DEB(DEB_REGS, printk("NCR: %08x => %08xn", (u32)(value), ((u32)(host->base) + (u32)(address)))); 
  708. *(volatile unsigned long *)
  709. ((u32)(host->base) + (u32)(address)) = (value); }
  710. #else
  711. #define NCR_read8(address) 
  712. inb((u32)(host->base) + (address))
  713. #define NCR_read32(address) 
  714. inl((u32)(host->base) + (address))
  715. #define NCR_write8(address,value) 
  716. { DEB(DEB_REGS, printk("NCR: %02x => %08xn", (u32)(value), ((u32)(host->base) + (u32)(address)))); 
  717. outb((value), (u32)(host->base) + (u32)(address)); }
  718. #define NCR_write32(address,value) 
  719. { DEB(DEB_REGS, printk("NCR: %08x => %08xn", (u32)(value), ((u32)(host->base) + (u32)(address)))); 
  720. outl((value), (u32)(host->base) + (u32)(address)); }
  721. #endif
  722. /* Patch arbitrary 32 bit words in the script */
  723. #define patch_abs_32(script, offset, symbol, value)
  724.      for (i = 0; i < (sizeof (A_##symbol##_used) / sizeof 
  725.          (u32)); ++i) {
  726.     (script)[A_##symbol##_used[i] - (offset)] += (value);
  727.       DEB(DEB_FIXUP, printk("scsi%d: %s reference %d at 0x%x in %s is now 0x%xn",
  728. host->host_no, #symbol, i, A_##symbol##_used[i] - 
  729. (int)(offset), #script, (script)[A_##symbol##_used[i] -
  730. (offset)]));
  731.      }
  732. #endif
  733. #endif