nsp32.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Workbit NinjaSCSI-32Bi/UDE PCI/CardBus SCSI Host Bus Adapter driver
  4. * Basic data header
  5. */
  6. #ifndef _NSP32_H
  7. #define _NSP32_H
  8. //#define NSP32_DEBUG 9
  9. /*
  10. * VENDOR/DEVICE ID
  11. */
  12. #define PCI_VENDOR_ID_IODATA 0x10fc
  13. #define PCI_VENDOR_ID_WORKBIT 0x1145
  14. #define PCI_DEVICE_ID_NINJASCSI_32BI_CBSC_II 0x0005
  15. #define PCI_DEVICE_ID_NINJASCSI_32BI_KME 0xf007
  16. #define PCI_DEVICE_ID_NINJASCSI_32BI_WBT 0x8007
  17. #define PCI_DEVICE_ID_WORKBIT_STANDARD 0xf010
  18. #define PCI_DEVICE_ID_WORKBIT_DUALEDGE 0xf011
  19. #define PCI_DEVICE_ID_NINJASCSI_32BI_LOGITEC 0xf012
  20. #define PCI_DEVICE_ID_NINJASCSI_32BIB_LOGITEC 0xf013
  21. #define PCI_DEVICE_ID_NINJASCSI_32UDE_MELCO 0xf015
  22. #define PCI_DEVICE_ID_NINJASCSI_32UDE_MELCO_II 0x8009
  23. /*
  24. * MODEL
  25. */
  26. enum {
  27. MODEL_IODATA = 0,
  28. MODEL_KME = 1,
  29. MODEL_WORKBIT = 2,
  30. MODEL_LOGITEC = 3,
  31. MODEL_PCI_WORKBIT = 4,
  32. MODEL_PCI_LOGITEC = 5,
  33. MODEL_PCI_MELCO = 6,
  34. };
  35. static char * nsp32_model[] = {
  36. "I-O DATA CBSC-II CardBus card",
  37. "KME SCSI CardBus card",
  38. "Workbit duo SCSI CardBus card",
  39. "Logitec CardBus card with external ROM",
  40. "Workbit / I-O DATA PCI card",
  41. "Logitec PCI card with external ROM",
  42. "Melco CardBus/PCI card with external ROM",
  43. };
  44. /*
  45. * SCSI Generic Definitions
  46. */
  47. #define EXTENDED_SDTR_LEN 0x03
  48. /* Little Endian */
  49. typedef u32 u32_le;
  50. typedef u16 u16_le;
  51. /*
  52. * BASIC Definitions
  53. */
  54. #ifndef TRUE
  55. # define TRUE 1
  56. #endif
  57. #ifndef FALSE
  58. # define FALSE 0
  59. #endif
  60. #define ASSERT 1
  61. #define NEGATE 0
  62. /*******************/
  63. /* normal register */
  64. /*******************/
  65. /*
  66. * Don't access below register with Double Word:
  67. * +00, +04, +08, +0c, +64, +80, +84, +88, +90, +c4, +c8, +cc, +d0.
  68. */
  69. #define IRQ_CONTROL 0x00 /* BASE+00, W, W */
  70. #define IRQ_STATUS 0x00 /* BASE+00, W, R */
  71. # define IRQSTATUS_LATCHED_MSG BIT(0)
  72. # define IRQSTATUS_LATCHED_IO BIT(1)
  73. # define IRQSTATUS_LATCHED_CD BIT(2)
  74. # define IRQSTATUS_LATCHED_BUS_FREE BIT(3)
  75. # define IRQSTATUS_RESELECT_OCCUER BIT(4)
  76. # define IRQSTATUS_PHASE_CHANGE_IRQ BIT(5)
  77. # define IRQSTATUS_SCSIRESET_IRQ BIT(6)
  78. # define IRQSTATUS_TIMER_IRQ BIT(7)
  79. # define IRQSTATUS_FIFO_SHLD_IRQ BIT(8)
  80. # define IRQSTATUS_PCI_IRQ BIT(9)
  81. # define IRQSTATUS_BMCNTERR_IRQ BIT(10)
  82. # define IRQSTATUS_AUTOSCSI_IRQ BIT(11)
  83. # define PCI_IRQ_MASK BIT(12)
  84. # define TIMER_IRQ_MASK BIT(13)
  85. # define FIFO_IRQ_MASK BIT(14)
  86. # define SCSI_IRQ_MASK BIT(15)
  87. # define IRQ_CONTROL_ALL_IRQ_MASK (PCI_IRQ_MASK | \
  88. TIMER_IRQ_MASK | \
  89. FIFO_IRQ_MASK | \
  90. SCSI_IRQ_MASK )
  91. # define IRQSTATUS_ANY_IRQ (IRQSTATUS_RESELECT_OCCUER | \
  92. IRQSTATUS_PHASE_CHANGE_IRQ | \
  93. IRQSTATUS_SCSIRESET_IRQ | \
  94. IRQSTATUS_TIMER_IRQ | \
  95. IRQSTATUS_FIFO_SHLD_IRQ | \
  96. IRQSTATUS_PCI_IRQ | \
  97. IRQSTATUS_BMCNTERR_IRQ | \
  98. IRQSTATUS_AUTOSCSI_IRQ )
  99. #define TRANSFER_CONTROL 0x02 /* BASE+02, W, W */
  100. #define TRANSFER_STATUS 0x02 /* BASE+02, W, R */
  101. # define CB_MMIO_MODE BIT(0)
  102. # define CB_IO_MODE BIT(1)
  103. # define BM_TEST BIT(2)
  104. # define BM_TEST_DIR BIT(3)
  105. # define DUAL_EDGE_ENABLE BIT(4)
  106. # define NO_TRANSFER_TO_HOST BIT(5)
  107. # define TRANSFER_GO BIT(7)
  108. # define BLIEND_MODE BIT(8)
  109. # define BM_START BIT(9)
  110. # define ADVANCED_BM_WRITE BIT(10)
  111. # define BM_SINGLE_MODE BIT(11)
  112. # define FIFO_TRUE_FULL BIT(12)
  113. # define FIFO_TRUE_EMPTY BIT(13)
  114. # define ALL_COUNTER_CLR BIT(14)
  115. # define FIFOTEST BIT(15)
  116. #define INDEX_REG 0x04 /* BASE+04, Byte(R/W), Word(R) */
  117. #define TIMER_SET 0x06 /* BASE+06, W, R/W */
  118. # define TIMER_CNT_MASK (0xff)
  119. # define TIMER_STOP BIT(8)
  120. #define DATA_REG_LOW 0x08 /* BASE+08, LowW, R/W */
  121. #define DATA_REG_HI 0x0a /* BASE+0a, Hi-W, R/W */
  122. #define FIFO_REST_CNT 0x0c /* BASE+0c, W, R/W */
  123. # define FIFO_REST_MASK 0x1ff
  124. # define FIFO_EMPTY_SHLD_FLAG BIT(14)
  125. # define FIFO_FULL_SHLD_FLAG BIT(15)
  126. #define SREQ_SMPL_RATE 0x0f /* BASE+0f, B, R/W */
  127. # define SREQSMPLRATE_RATE0 BIT(0)
  128. # define SREQSMPLRATE_RATE1 BIT(1)
  129. # define SAMPLING_ENABLE BIT(2)
  130. # define SMPL_40M (0) /* 40MHz: 0-100ns/period */
  131. # define SMPL_20M (SREQSMPLRATE_RATE0) /* 20MHz: 100-200ns/period */
  132. # define SMPL_10M (SREQSMPLRATE_RATE1) /* 10Mhz: 200- ns/period */
  133. #define SCSI_BUS_CONTROL 0x10 /* BASE+10, B, R/W */
  134. # define BUSCTL_SEL BIT(0)
  135. # define BUSCTL_RST BIT(1)
  136. # define BUSCTL_DATAOUT_ENB BIT(2)
  137. # define BUSCTL_ATN BIT(3)
  138. # define BUSCTL_ACK BIT(4)
  139. # define BUSCTL_BSY BIT(5)
  140. # define AUTODIRECTION BIT(6)
  141. # define ACKENB BIT(7)
  142. #define CLR_COUNTER 0x12 /* BASE+12, B, W */
  143. # define ACK_COUNTER_CLR BIT(0)
  144. # define SREQ_COUNTER_CLR BIT(1)
  145. # define FIFO_HOST_POINTER_CLR BIT(2)
  146. # define FIFO_REST_COUNT_CLR BIT(3)
  147. # define BM_COUNTER_CLR BIT(4)
  148. # define SAVED_ACK_CLR BIT(5)
  149. # define CLRCOUNTER_ALLMASK (ACK_COUNTER_CLR | \
  150. SREQ_COUNTER_CLR | \
  151. FIFO_HOST_POINTER_CLR | \
  152. FIFO_REST_COUNT_CLR | \
  153. BM_COUNTER_CLR | \
  154. SAVED_ACK_CLR )
  155. #define SCSI_BUS_MONITOR 0x12 /* BASE+12, B, R */
  156. # define BUSMON_MSG BIT(0)
  157. # define BUSMON_IO BIT(1)
  158. # define BUSMON_CD BIT(2)
  159. # define BUSMON_BSY BIT(3)
  160. # define BUSMON_ACK BIT(4)
  161. # define BUSMON_REQ BIT(5)
  162. # define BUSMON_SEL BIT(6)
  163. # define BUSMON_ATN BIT(7)
  164. #define COMMAND_DATA 0x14 /* BASE+14, B, R/W */
  165. #define PARITY_CONTROL 0x16 /* BASE+16, B, W */
  166. # define PARITY_CHECK_ENABLE BIT(0)
  167. # define PARITY_ERROR_CLEAR BIT(1)
  168. #define PARITY_STATUS 0x16 /* BASE+16, B, R */
  169. //# define PARITY_CHECK_ENABLE BIT(0)
  170. # define PARITY_ERROR_NORMAL BIT(1)
  171. # define PARITY_ERROR_LSB BIT(1)
  172. # define PARITY_ERROR_MSB BIT(2)
  173. #define RESELECT_ID 0x18 /* BASE+18, B, R */
  174. #define COMMAND_CONTROL 0x18 /* BASE+18, W, W */
  175. # define CLEAR_CDB_FIFO_POINTER BIT(0)
  176. # define AUTO_COMMAND_PHASE BIT(1)
  177. # define AUTOSCSI_START BIT(2)
  178. # define AUTOSCSI_RESTART BIT(3)
  179. # define AUTO_PARAMETER BIT(4)
  180. # define AUTO_ATN BIT(5)
  181. # define AUTO_MSGIN_00_OR_04 BIT(6)
  182. # define AUTO_MSGIN_02 BIT(7)
  183. # define AUTO_MSGIN_03 BIT(8)
  184. #define SET_ARBIT 0x1a /* BASE+1a, B, W */
  185. # define ARBIT_GO BIT(0)
  186. # define ARBIT_CLEAR BIT(1)
  187. #define ARBIT_STATUS 0x1a /* BASE+1a, B, R */
  188. //# define ARBIT_GO BIT(0)
  189. # define ARBIT_WIN BIT(1)
  190. # define ARBIT_FAIL BIT(2)
  191. # define AUTO_PARAMETER_VALID BIT(3)
  192. # define SGT_VALID BIT(4)
  193. #define SYNC_REG 0x1c /* BASE+1c, B, R/W */
  194. #define ACK_WIDTH 0x1d /* BASE+1d, B, R/W */
  195. #define SCSI_DATA_WITH_ACK 0x20 /* BASE+20, B, R/W */
  196. #define SCSI_OUT_LATCH_TARGET_ID 0x22 /* BASE+22, B, W */
  197. #define SCSI_DATA_IN 0x22 /* BASE+22, B, R */
  198. #define SCAM_CONTROL 0x24 /* BASE+24, B, W */
  199. #define SCAM_STATUS 0x24 /* BASE+24, B, R */
  200. # define SCAM_MSG BIT(0)
  201. # define SCAM_IO BIT(1)
  202. # define SCAM_CD BIT(2)
  203. # define SCAM_BSY BIT(3)
  204. # define SCAM_SEL BIT(4)
  205. # define SCAM_XFEROK BIT(5)
  206. #define SCAM_DATA 0x26 /* BASE+26, B, R/W */
  207. # define SD0 BIT(0)
  208. # define SD1 BIT(1)
  209. # define SD2 BIT(2)
  210. # define SD3 BIT(3)
  211. # define SD4 BIT(4)
  212. # define SD5 BIT(5)
  213. # define SD6 BIT(6)
  214. # define SD7 BIT(7)
  215. #define SACK_CNT 0x28 /* BASE+28, DW, R/W */
  216. #define SREQ_CNT 0x2c /* BASE+2c, DW, R/W */
  217. #define FIFO_DATA_LOW 0x30 /* BASE+30, B/W/DW, R/W */
  218. #define FIFO_DATA_HIGH 0x32 /* BASE+32, B/W, R/W */
  219. #define BM_START_ADR 0x34 /* BASE+34, DW, R/W */
  220. #define BM_CNT 0x38 /* BASE+38, DW, R/W */
  221. # define BM_COUNT_MASK 0x0001ffffUL
  222. # define SGTEND BIT(31) /* Last SGT marker */
  223. #define SGT_ADR 0x3c /* BASE+3c, DW, R/W */
  224. #define WAIT_REG 0x40 /* Bi only */
  225. #define SCSI_EXECUTE_PHASE 0x40 /* BASE+40, W, R */
  226. # define COMMAND_PHASE BIT(0)
  227. # define DATA_IN_PHASE BIT(1)
  228. # define DATA_OUT_PHASE BIT(2)
  229. # define MSGOUT_PHASE BIT(3)
  230. # define STATUS_PHASE BIT(4)
  231. # define ILLEGAL_PHASE BIT(5)
  232. # define BUS_FREE_OCCUER BIT(6)
  233. # define MSG_IN_OCCUER BIT(7)
  234. # define MSG_OUT_OCCUER BIT(8)
  235. # define SELECTION_TIMEOUT BIT(9)
  236. # define MSGIN_00_VALID BIT(10)
  237. # define MSGIN_02_VALID BIT(11)
  238. # define MSGIN_03_VALID BIT(12)
  239. # define MSGIN_04_VALID BIT(13)
  240. # define AUTOSCSI_BUSY BIT(15)
  241. #define SCSI_CSB_IN 0x42 /* BASE+42, B, R */
  242. #define SCSI_MSG_OUT 0x44 /* BASE+44, DW, R/W */
  243. # define MSGOUT_COUNT_MASK (BIT(0)|BIT(1))
  244. # define MV_VALID BIT(7)
  245. #define SEL_TIME_OUT 0x48 /* BASE+48, W, R/W */
  246. #define SAVED_SACK_CNT 0x4c /* BASE+4c, DW, R */
  247. #define HTOSDATADELAY 0x50 /* BASE+50, B, R/W */
  248. #define STOHDATADELAY 0x54 /* BASE+54, B, R/W */
  249. #define ACKSUMCHECKRD 0x58 /* BASE+58, W, R */
  250. #define REQSUMCHECKRD 0x5c /* BASE+5c, W, R */
  251. /********************/
  252. /* indexed register */
  253. /********************/
  254. #define CLOCK_DIV 0x00 /* BASE+08, IDX+00, B, R/W */
  255. # define CLOCK_2 BIT(0) /* MCLK/2 */
  256. # define CLOCK_4 BIT(1) /* MCLK/4 */
  257. # define PCICLK BIT(7) /* PCICLK (33MHz) */
  258. #define TERM_PWR_CONTROL 0x01 /* BASE+08, IDX+01, B, R/W */
  259. # define BPWR BIT(0)
  260. # define SENSE BIT(1) /* Read Only */
  261. #define EXT_PORT_DDR 0x02 /* BASE+08, IDX+02, B, R/W */
  262. #define EXT_PORT 0x03 /* BASE+08, IDX+03, B, R/W */
  263. # define LED_ON (0)
  264. # define LED_OFF BIT(0)
  265. #define IRQ_SELECT 0x04 /* BASE+08, IDX+04, W, R/W */
  266. # define IRQSELECT_RESELECT_IRQ BIT(0)
  267. # define IRQSELECT_PHASE_CHANGE_IRQ BIT(1)
  268. # define IRQSELECT_SCSIRESET_IRQ BIT(2)
  269. # define IRQSELECT_TIMER_IRQ BIT(3)
  270. # define IRQSELECT_FIFO_SHLD_IRQ BIT(4)
  271. # define IRQSELECT_TARGET_ABORT_IRQ BIT(5)
  272. # define IRQSELECT_MASTER_ABORT_IRQ BIT(6)
  273. # define IRQSELECT_SERR_IRQ BIT(7)
  274. # define IRQSELECT_PERR_IRQ BIT(8)
  275. # define IRQSELECT_BMCNTERR_IRQ BIT(9)
  276. # define IRQSELECT_AUTO_SCSI_SEQ_IRQ BIT(10)
  277. #define OLD_SCSI_PHASE 0x05 /* BASE+08, IDX+05, B, R */
  278. # define OLD_MSG BIT(0)
  279. # define OLD_IO BIT(1)
  280. # define OLD_CD BIT(2)
  281. # define OLD_BUSY BIT(3)
  282. #define FIFO_FULL_SHLD_COUNT 0x06 /* BASE+08, IDX+06, B, R/W */
  283. #define FIFO_EMPTY_SHLD_COUNT 0x07 /* BASE+08, IDX+07, B, R/W */
  284. #define EXP_ROM_CONTROL 0x08 /* BASE+08, IDX+08, B, R/W */ /* external ROM control */
  285. # define ROM_WRITE_ENB BIT(0)
  286. # define IO_ACCESS_ENB BIT(1)
  287. # define ROM_ADR_CLEAR BIT(2)
  288. #define EXP_ROM_ADR 0x09 /* BASE+08, IDX+09, W, R/W */
  289. #define EXP_ROM_DATA 0x0a /* BASE+08, IDX+0a, B, R/W */
  290. #define CHIP_MODE 0x0b /* BASE+08, IDX+0b, B, R */ /* NinjaSCSI-32Bi only */
  291. # define OEM0 BIT(1) /* OEM select */ /* 00=I-O DATA, 01=KME, 10=Workbit, 11=Ext ROM */
  292. # define OEM1 BIT(2) /* OEM select */
  293. # define OPTB BIT(3) /* KME mode select */
  294. # define OPTC BIT(4) /* KME mode select */
  295. # define OPTD BIT(5) /* KME mode select */
  296. # define OPTE BIT(6) /* KME mode select */
  297. # define OPTF BIT(7) /* Power management */
  298. #define MISC_WR 0x0c /* BASE+08, IDX+0c, W, R/W */
  299. #define MISC_RD 0x0c
  300. # define SCSI_DIRECTION_DETECTOR_SELECT BIT(0)
  301. # define SCSI2_HOST_DIRECTION_VALID BIT(1) /* Read only */
  302. # define HOST2_SCSI_DIRECTION_VALID BIT(2) /* Read only */
  303. # define DELAYED_BMSTART BIT(3)
  304. # define MASTER_TERMINATION_SELECT BIT(4)
  305. # define BMREQ_NEGATE_TIMING_SEL BIT(5)
  306. # define AUTOSEL_TIMING_SEL BIT(6)
  307. # define MISC_MABORT_MASK BIT(7)
  308. # define BMSTOP_CHANGE2_NONDATA_PHASE BIT(8)
  309. #define BM_CYCLE 0x0d /* BASE+08, IDX+0d, B, R/W */
  310. # define BM_CYCLE0 BIT(0)
  311. # define BM_CYCLE1 BIT(1)
  312. # define BM_FRAME_ASSERT_TIMING BIT(2)
  313. # define BM_IRDY_ASSERT_TIMING BIT(3)
  314. # define BM_SINGLE_BUS_MASTER BIT(4)
  315. # define MEMRD_CMD0 BIT(5)
  316. # define SGT_AUTO_PARA_MEMED_CMD BIT(6)
  317. # define MEMRD_CMD1 BIT(7)
  318. #define SREQ_EDGH 0x0e /* BASE+08, IDX+0e, B, W */
  319. # define SREQ_EDGH_SELECT BIT(0)
  320. #define UP_CNT 0x0f /* BASE+08, IDX+0f, B, W */
  321. # define REQCNT_UP BIT(0)
  322. # define ACKCNT_UP BIT(1)
  323. # define BMADR_UP BIT(4)
  324. # define BMCNT_UP BIT(5)
  325. # define SGT_CNT_UP BIT(7)
  326. #define CFG_CMD_STR 0x10 /* BASE+08, IDX+10, W, R */
  327. #define CFG_LATE_CACHE 0x11 /* BASE+08, IDX+11, W, R/W */
  328. #define CFG_BASE_ADR_1 0x12 /* BASE+08, IDX+12, W, R */
  329. #define CFG_BASE_ADR_2 0x13 /* BASE+08, IDX+13, W, R */
  330. #define CFG_INLINE 0x14 /* BASE+08, IDX+14, W, R */
  331. #define SERIAL_ROM_CTL 0x15 /* BASE+08, IDX+15, B, R */
  332. # define SCL BIT(0)
  333. # define ENA BIT(1)
  334. # define SDA BIT(2)
  335. #define FIFO_HST_POINTER 0x16 /* BASE+08, IDX+16, B, R/W */
  336. #define SREQ_DELAY 0x17 /* BASE+08, IDX+17, B, R/W */
  337. #define SACK_DELAY 0x18 /* BASE+08, IDX+18, B, R/W */
  338. #define SREQ_NOISE_CANCEL 0x19 /* BASE+08, IDX+19, B, R/W */
  339. #define SDP_NOISE_CANCEL 0x1a /* BASE+08, IDX+1a, B, R/W */
  340. #define DELAY_TEST 0x1b /* BASE+08, IDX+1b, B, R/W */
  341. #define SD0_NOISE_CANCEL 0x20 /* BASE+08, IDX+20, B, R/W */
  342. #define SD1_NOISE_CANCEL 0x21 /* BASE+08, IDX+21, B, R/W */
  343. #define SD2_NOISE_CANCEL 0x22 /* BASE+08, IDX+22, B, R/W */
  344. #define SD3_NOISE_CANCEL 0x23 /* BASE+08, IDX+23, B, R/W */
  345. #define SD4_NOISE_CANCEL 0x24 /* BASE+08, IDX+24, B, R/W */
  346. #define SD5_NOISE_CANCEL 0x25 /* BASE+08, IDX+25, B, R/W */
  347. #define SD6_NOISE_CANCEL 0x26 /* BASE+08, IDX+26, B, R/W */
  348. #define SD7_NOISE_CANCEL 0x27 /* BASE+08, IDX+27, B, R/W */
  349. /*
  350. * Useful Bus Monitor status combinations.
  351. */
  352. #define BUSMON_BUS_FREE 0
  353. #define BUSMON_COMMAND ( BUSMON_BSY | BUSMON_CD | BUSMON_REQ )
  354. #define BUSMON_MESSAGE_IN ( BUSMON_BSY | BUSMON_MSG | BUSMON_IO | BUSMON_CD | BUSMON_REQ )
  355. #define BUSMON_MESSAGE_OUT ( BUSMON_BSY | BUSMON_MSG | BUSMON_CD | BUSMON_REQ )
  356. #define BUSMON_DATA_IN ( BUSMON_BSY | BUSMON_IO | BUSMON_REQ )
  357. #define BUSMON_DATA_OUT ( BUSMON_BSY | BUSMON_REQ )
  358. #define BUSMON_STATUS ( BUSMON_BSY | BUSMON_IO | BUSMON_CD | BUSMON_REQ )
  359. #define BUSMON_RESELECT ( BUSMON_IO | BUSMON_SEL)
  360. #define BUSMON_PHASE_MASK ( BUSMON_MSG | BUSMON_IO | BUSMON_CD | BUSMON_SEL)
  361. #define BUSPHASE_COMMAND ( BUSMON_COMMAND & BUSMON_PHASE_MASK )
  362. #define BUSPHASE_MESSAGE_IN ( BUSMON_MESSAGE_IN & BUSMON_PHASE_MASK )
  363. #define BUSPHASE_MESSAGE_OUT ( BUSMON_MESSAGE_OUT & BUSMON_PHASE_MASK )
  364. #define BUSPHASE_DATA_IN ( BUSMON_DATA_IN & BUSMON_PHASE_MASK )
  365. #define BUSPHASE_DATA_OUT ( BUSMON_DATA_OUT & BUSMON_PHASE_MASK )
  366. #define BUSPHASE_STATUS ( BUSMON_STATUS & BUSMON_PHASE_MASK )
  367. #define BUSPHASE_SELECT ( BUSMON_SEL | BUSMON_IO )
  368. /************************************************************************
  369. * structure for DMA/Scatter Gather list
  370. */
  371. #define NSP32_SG_SIZE SG_ALL
  372. typedef struct _nsp32_sgtable {
  373. /* values must be little endian */
  374. u32_le addr; /* transfer address */
  375. u32_le len; /* transfer length. BIT(31) is for SGT_END mark */
  376. } __attribute__ ((packed)) nsp32_sgtable;
  377. typedef struct _nsp32_sglun {
  378. nsp32_sgtable sgt[NSP32_SG_SIZE+1]; /* SG table */
  379. } __attribute__ ((packed)) nsp32_sglun;
  380. #define NSP32_SG_TABLE_SIZE (sizeof(nsp32_sgtable) * NSP32_SG_SIZE * MAX_TARGET * MAX_LUN)
  381. /* Auto parameter mode memory map. */
  382. /* All values must be little endian. */
  383. typedef struct _nsp32_autoparam {
  384. u8 cdb[4 * 0x10]; /* SCSI Command */
  385. u32_le msgout; /* outgoing messages */
  386. u8 syncreg; /* sync register value */
  387. u8 ackwidth; /* ack width register value */
  388. u8 target_id; /* target/host device id */
  389. u8 sample_reg; /* hazard killer sampling rate */
  390. u16_le command_control; /* command control register */
  391. u16_le transfer_control; /* transfer control register */
  392. u32_le sgt_pointer; /* SG table physical address for DMA */
  393. u32_le dummy[2];
  394. } __attribute__ ((packed)) nsp32_autoparam; /* must be packed struct */
  395. /*
  396. * host data structure
  397. */
  398. /* message in/out buffer */
  399. #define MSGOUTBUF_MAX 20
  400. #define MSGINBUF_MAX 20
  401. /* flag for trans_method */
  402. #define NSP32_TRANSFER_BUSMASTER BIT(0)
  403. #define NSP32_TRANSFER_MMIO BIT(1) /* Not supported yet */
  404. #define NSP32_TRANSFER_PIO BIT(2) /* Not supported yet */
  405. /*
  406. * structure for connected LUN dynamic data
  407. *
  408. * Note: Currently tagged queuing is disabled, each nsp32_lunt holds
  409. * one SCSI command and one state.
  410. */
  411. #define DISCPRIV_OK BIT(0) /* DISCPRIV Enable mode */
  412. #define MSGIN03 BIT(1) /* Auto Msg In 03 Flag */
  413. typedef struct _nsp32_lunt {
  414. struct scsi_cmnd *SCpnt; /* Current Handling struct scsi_cmnd */
  415. unsigned long save_datp; /* Save Data Pointer - saved position from initial address */
  416. int msgin03; /* auto msg in 03 flag */
  417. unsigned int sg_num; /* Total number of SG entries */
  418. int cur_entry; /* Current SG entry number */
  419. nsp32_sglun *sglun; /* sg table per lun */
  420. dma_addr_t sglun_paddr; /* sglun physical address */
  421. } nsp32_lunt;
  422. /*
  423. * SCSI TARGET/LUN definition
  424. */
  425. #define NSP32_HOST_SCSIID 7 /* SCSI initiator is every time defined as 7 */
  426. #define MAX_TARGET 8
  427. #define MAX_LUN 8 /* XXX: In SPI3, max number of LUN is 64. */
  428. typedef struct _nsp32_sync_table {
  429. unsigned char period_num; /* period number */
  430. unsigned char ackwidth; /* ack width designated by period */
  431. unsigned char start_period; /* search range - start period */
  432. unsigned char end_period; /* search range - end period */
  433. unsigned char sample_rate; /* hazard killer parameter */
  434. } nsp32_sync_table;
  435. /*
  436. * structure for target device static data
  437. */
  438. /* flag for nsp32_target.sync_flag */
  439. #define SDTR_INITIATOR BIT(0) /* sending SDTR from initiator */
  440. #define SDTR_TARGET BIT(1) /* sending SDTR from target */
  441. #define SDTR_DONE BIT(2) /* exchanging SDTR has been processed */
  442. /* syncronous period value for nsp32_target.config_max */
  443. #define FAST5M 0x32
  444. #define FAST10M 0x19
  445. #define ULTRA20M 0x0c
  446. /* flag for nsp32_target.{sync_offset}, period */
  447. #define ASYNC_OFFSET 0 /* asynchronous transfer */
  448. #define SYNC_OFFSET 0xf /* synchronous transfer max offset */
  449. /* syncreg:
  450. bit:07 06 05 04 03 02 01 00
  451. ---PERIOD-- ---OFFSET-- */
  452. #define TO_SYNCREG(period, offset) (((period) & 0x0f) << 4 | ((offset) & 0x0f))
  453. struct nsp32_cmd_priv {
  454. enum sam_status status;
  455. };
  456. static inline struct nsp32_cmd_priv *nsp32_priv(struct scsi_cmnd *cmd)
  457. {
  458. return scsi_cmd_priv(cmd);
  459. }
  460. typedef struct _nsp32_target {
  461. unsigned char syncreg; /* value for SYNCREG */
  462. unsigned char ackwidth; /* value for ACKWIDTH */
  463. unsigned char period; /* sync period (0-255) */
  464. unsigned char offset; /* sync offset (0-15) */
  465. int sync_flag; /* SDTR_*, 0 */
  466. int limit_entry; /* max speed limit entry designated
  467. by EEPROM configuration */
  468. unsigned char sample_reg; /* SREQ hazard killer register */
  469. } nsp32_target;
  470. typedef struct _nsp32_hw_data {
  471. int IrqNumber;
  472. int BaseAddress;
  473. int NumAddress;
  474. void __iomem *MmioAddress;
  475. #define NSP32_MMIO_OFFSET 0x0800
  476. unsigned long MmioLength;
  477. struct scsi_cmnd *CurrentSC;
  478. struct pci_dev *Pci;
  479. const struct pci_device_id *pci_devid;
  480. struct Scsi_Host *Host;
  481. spinlock_t Lock;
  482. char info_str[100];
  483. /* allocated memory region */
  484. nsp32_sglun *sg_list; /* sglist virtuxal address */
  485. dma_addr_t sg_paddr; /* physical address of hw_sg_table */
  486. nsp32_autoparam *autoparam; /* auto parameter transfer region */
  487. dma_addr_t auto_paddr; /* physical address of autoparam */
  488. int cur_entry; /* current sgt entry */
  489. /* target/LUN */
  490. nsp32_lunt *cur_lunt; /* Current connected LUN table */
  491. nsp32_lunt lunt[MAX_TARGET][MAX_LUN]; /* All LUN table */
  492. nsp32_target *cur_target; /* Current connected SCSI ID */
  493. nsp32_target target[MAX_TARGET]; /* SCSI ID */
  494. int cur_id; /* Current connected target ID */
  495. int cur_lun; /* Current connected target LUN */
  496. /* behavior setting parameters */
  497. int trans_method; /* transfer method flag */
  498. int resettime; /* Reset time */
  499. int clock; /* clock dividing flag */
  500. nsp32_sync_table *synct; /* sync_table determined by clock */
  501. int syncnum; /* the max number of synct element */
  502. /* message buffer */
  503. unsigned char msgoutbuf[MSGOUTBUF_MAX]; /* msgout buffer */
  504. char msgout_len; /* msgoutbuf length */
  505. unsigned char msginbuf [MSGINBUF_MAX]; /* megin buffer */
  506. char msgin_len; /* msginbuf length */
  507. } nsp32_hw_data;
  508. /*
  509. * TIME definition
  510. */
  511. #define RESET_HOLD_TIME 10000 /* reset time in us (SCSI-2 says the
  512. minimum is 25us) */
  513. #define SEL_TIMEOUT_TIME 10000 /* 250ms defined in SCSI specification
  514. (25.6us/1unit) */
  515. #define ARBIT_TIMEOUT_TIME 100 /* 100us */
  516. #define REQSACK_TIMEOUT_TIME 10000 /* max wait time for REQ/SACK assertion
  517. or negation, 10000us == 10ms */
  518. #endif /* _NSP32_H */
  519. /* end */