53c700.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. /* -*- mode: c; c-basic-offset: 8 -*- */
  2. /* Driver for 53c700 and 53c700-66 chips from NCR and Symbios
  3. *
  4. * Copyright (C) 2001 by James.Bottomley@HansenPartnership.com
  5. */
  6. #ifndef _53C700_H
  7. #define _53C700_H
  8. #include <linux/interrupt.h>
  9. #include <asm/io.h>
  10. #include <scsi/scsi_device.h>
  11. /* Turn on for general debugging---too verbose for normal use */
  12. #undef NCR_700_DEBUG
  13. /* Debug the tag queues, checking hash queue allocation and deallocation
  14. * and search for duplicate tags */
  15. #undef NCR_700_TAG_DEBUG
  16. #ifdef NCR_700_DEBUG
  17. #define DEBUG(x) printk x
  18. #else
  19. #define DEBUG(x)
  20. #endif
  21. /* The number of available command slots */
  22. #define NCR_700_COMMAND_SLOTS_PER_HOST 64
  23. /* The maximum number of Scatter Gathers we allow */
  24. #define NCR_700_SG_SEGMENTS 32
  25. /* The maximum number of luns (make this of the form 2^n) */
  26. #define NCR_700_MAX_LUNS 32
  27. #define NCR_700_LUN_MASK (NCR_700_MAX_LUNS - 1)
  28. /* Maximum number of tags the driver ever allows per device */
  29. #define NCR_700_MAX_TAGS 16
  30. /* Tag depth the driver starts out with (can be altered in sysfs) */
  31. #define NCR_700_DEFAULT_TAGS 4
  32. /* This is the default number of commands per LUN in the untagged case.
  33. * two is a good value because it means we can have one command active and
  34. * one command fully prepared and waiting
  35. */
  36. #define NCR_700_CMD_PER_LUN 2
  37. /* magic byte identifying an internally generated REQUEST_SENSE command */
  38. #define NCR_700_INTERNAL_SENSE_MAGIC 0x42
  39. struct NCR_700_Host_Parameters;
  40. /* These are the externally used routines */
  41. struct Scsi_Host *NCR_700_detect(struct scsi_host_template *,
  42. struct NCR_700_Host_Parameters *, struct device *);
  43. int NCR_700_release(struct Scsi_Host *host);
  44. irqreturn_t NCR_700_intr(int, void *, struct pt_regs *);
  45. enum NCR_700_Host_State {
  46. NCR_700_HOST_BUSY,
  47. NCR_700_HOST_FREE,
  48. };
  49. struct NCR_700_SG_List {
  50. /* The following is a script fragment to move the buffer onto the
  51. * bus and then link the next fragment or return */
  52. #define SCRIPT_MOVE_DATA_IN 0x09000000
  53. #define SCRIPT_MOVE_DATA_OUT 0x08000000
  54. __u32 ins;
  55. __u32 pAddr;
  56. #define SCRIPT_NOP 0x80000000
  57. #define SCRIPT_RETURN 0x90080000
  58. };
  59. /* We use device->hostdata to store negotiated parameters. This is
  60. * supposed to be a pointer to a device private area, but we cannot
  61. * really use it as such since it will never be freed, so just use the
  62. * 32 bits to cram the information. The SYNC negotiation sequence looks
  63. * like:
  64. *
  65. * If DEV_NEGOTIATED_SYNC not set, tack and SDTR message on to the
  66. * initial identify for the device and set DEV_BEGIN_SYNC_NEGOTATION
  67. * If we get an SDTR reply, work out the SXFER parameters, squirrel
  68. * them away here, clear DEV_BEGIN_SYNC_NEGOTIATION and set
  69. * DEV_NEGOTIATED_SYNC. If we get a REJECT msg, squirrel
  70. *
  71. *
  72. * 0:7 SXFER_REG negotiated value for this device
  73. * 8:15 Current queue depth
  74. * 16 negotiated SYNC flag
  75. * 17 begin SYNC negotiation flag
  76. * 18 device supports tag queueing */
  77. #define NCR_700_DEV_NEGOTIATED_SYNC (1<<16)
  78. #define NCR_700_DEV_BEGIN_SYNC_NEGOTIATION (1<<17)
  79. #define NCR_700_DEV_PRINT_SYNC_NEGOTIATION (1<<19)
  80. static inline void
  81. NCR_700_set_depth(struct scsi_device *SDp, __u8 depth)
  82. {
  83. long l = (long)SDp->hostdata;
  84. l &= 0xffff00ff;
  85. l |= 0xff00 & (depth << 8);
  86. SDp->hostdata = (void *)l;
  87. }
  88. static inline __u8
  89. NCR_700_get_depth(struct scsi_device *SDp)
  90. {
  91. return ((((unsigned long)SDp->hostdata) & 0xff00)>>8);
  92. }
  93. static inline int
  94. NCR_700_is_flag_set(struct scsi_device *SDp, __u32 flag)
  95. {
  96. return (spi_flags(SDp->sdev_target) & flag) == flag;
  97. }
  98. static inline int
  99. NCR_700_is_flag_clear(struct scsi_device *SDp, __u32 flag)
  100. {
  101. return (spi_flags(SDp->sdev_target) & flag) == 0;
  102. }
  103. static inline void
  104. NCR_700_set_flag(struct scsi_device *SDp, __u32 flag)
  105. {
  106. spi_flags(SDp->sdev_target) |= flag;
  107. }
  108. static inline void
  109. NCR_700_clear_flag(struct scsi_device *SDp, __u32 flag)
  110. {
  111. spi_flags(SDp->sdev_target) &= ~flag;
  112. }
  113. enum NCR_700_tag_neg_state {
  114. NCR_700_START_TAG_NEGOTIATION = 0,
  115. NCR_700_DURING_TAG_NEGOTIATION = 1,
  116. NCR_700_FINISHED_TAG_NEGOTIATION = 2,
  117. };
  118. static inline enum NCR_700_tag_neg_state
  119. NCR_700_get_tag_neg_state(struct scsi_device *SDp)
  120. {
  121. return (enum NCR_700_tag_neg_state)((spi_flags(SDp->sdev_target)>>20) & 0x3);
  122. }
  123. static inline void
  124. NCR_700_set_tag_neg_state(struct scsi_device *SDp,
  125. enum NCR_700_tag_neg_state state)
  126. {
  127. /* clear the slot */
  128. spi_flags(SDp->sdev_target) &= ~(0x3 << 20);
  129. spi_flags(SDp->sdev_target) |= ((__u32)state) << 20;
  130. }
  131. struct NCR_700_command_slot {
  132. struct NCR_700_SG_List SG[NCR_700_SG_SEGMENTS+1];
  133. struct NCR_700_SG_List *pSG;
  134. #define NCR_700_SLOT_MASK 0xFC
  135. #define NCR_700_SLOT_MAGIC 0xb8
  136. #define NCR_700_SLOT_FREE (0|NCR_700_SLOT_MAGIC) /* slot may be used */
  137. #define NCR_700_SLOT_BUSY (1|NCR_700_SLOT_MAGIC) /* slot has command active on HA */
  138. #define NCR_700_SLOT_QUEUED (2|NCR_700_SLOT_MAGIC) /* slot has command to be made active on HA */
  139. __u8 state;
  140. int tag;
  141. __u32 resume_offset;
  142. struct scsi_cmnd *cmnd;
  143. /* The pci_mapped address of the actual command in cmnd */
  144. dma_addr_t pCmd;
  145. __u32 temp;
  146. /* if this command is a pci_single mapping, holds the dma address
  147. * for later unmapping in the done routine */
  148. dma_addr_t dma_handle;
  149. /* historical remnant, now used to link free commands */
  150. struct NCR_700_command_slot *ITL_forw;
  151. };
  152. struct NCR_700_Host_Parameters {
  153. /* These must be filled in by the calling driver */
  154. int clock; /* board clock speed in MHz */
  155. void __iomem *base; /* the base for the port (copied to host) */
  156. struct device *dev;
  157. __u32 dmode_extra; /* adjustable bus settings */
  158. __u32 differential:1; /* if we are differential */
  159. #ifdef CONFIG_53C700_LE_ON_BE
  160. /* This option is for HP only. Set it if your chip is wired for
  161. * little endian on this platform (which is big endian) */
  162. __u32 force_le_on_be:1;
  163. #endif
  164. __u32 chip710:1; /* set if really a 710 not 700 */
  165. __u32 burst_disable:1; /* set to 1 to disable 710 bursting */
  166. /* NOTHING BELOW HERE NEEDS ALTERING */
  167. __u32 fast:1; /* if we can alter the SCSI bus clock
  168. speed (so can negiotiate sync) */
  169. int sync_clock; /* The speed of the SYNC core */
  170. __u32 *script; /* pointer to script location */
  171. __u32 pScript; /* physical mem addr of script */
  172. enum NCR_700_Host_State state; /* protected by state lock */
  173. struct scsi_cmnd *cmd;
  174. /* Note: pScript contains the single consistent block of
  175. * memory. All the msgin, msgout and status are allocated in
  176. * this memory too (at separate cache lines). TOTAL_MEM_SIZE
  177. * represents the total size of this area */
  178. #define MSG_ARRAY_SIZE 8
  179. #define MSGOUT_OFFSET (L1_CACHE_ALIGN(sizeof(SCRIPT)))
  180. __u8 *msgout;
  181. #define MSGIN_OFFSET (MSGOUT_OFFSET + L1_CACHE_ALIGN(MSG_ARRAY_SIZE))
  182. __u8 *msgin;
  183. #define STATUS_OFFSET (MSGIN_OFFSET + L1_CACHE_ALIGN(MSG_ARRAY_SIZE))
  184. __u8 *status;
  185. #define SLOTS_OFFSET (STATUS_OFFSET + L1_CACHE_ALIGN(MSG_ARRAY_SIZE))
  186. struct NCR_700_command_slot *slots;
  187. #define TOTAL_MEM_SIZE (SLOTS_OFFSET + L1_CACHE_ALIGN(sizeof(struct NCR_700_command_slot) * NCR_700_COMMAND_SLOTS_PER_HOST))
  188. int saved_slot_position;
  189. int command_slot_count; /* protected by state lock */
  190. __u8 tag_negotiated;
  191. __u8 rev;
  192. __u8 reselection_id;
  193. __u8 min_period;
  194. /* Free list, singly linked by ITL_forw elements */
  195. struct NCR_700_command_slot *free_list;
  196. /* Completion for waited for ops, like reset, abort or
  197. * device reset.
  198. *
  199. * NOTE: relies on single threading in the error handler to
  200. * have only one outstanding at once */
  201. struct completion *eh_complete;
  202. };
  203. /*
  204. * 53C700 Register Interface - the offset from the Selected base
  205. * I/O address */
  206. #ifdef CONFIG_53C700_LE_ON_BE
  207. #define bE (hostdata->force_le_on_be ? 0 : 3)
  208. #define bSWAP (hostdata->force_le_on_be)
  209. /* This is terrible, but there's no raw version of ioread32. That means
  210. * that on a be board we swap twice (once in ioread32 and once again to
  211. * get the value correct) */
  212. #define bS_to_io(x) ((hostdata->force_le_on_be) ? (x) : cpu_to_le32(x))
  213. #elif defined(__BIG_ENDIAN)
  214. #define bE 3
  215. #define bSWAP 0
  216. #define bS_to_io(x) (x)
  217. #elif defined(__LITTLE_ENDIAN)
  218. #define bE 0
  219. #define bSWAP 0
  220. #define bS_to_io(x) (x)
  221. #else
  222. #error "__BIG_ENDIAN or __LITTLE_ENDIAN must be defined, did you include byteorder.h?"
  223. #endif
  224. #define bS_to_cpu(x) (bSWAP ? le32_to_cpu(x) : (x))
  225. #define bS_to_host(x) (bSWAP ? cpu_to_le32(x) : (x))
  226. /* NOTE: These registers are in the LE register space only, the required byte
  227. * swapping is done by the NCR_700_{read|write}[b] functions */
  228. #define SCNTL0_REG 0x00
  229. #define FULL_ARBITRATION 0xc0
  230. #define PARITY 0x08
  231. #define ENABLE_PARITY 0x04
  232. #define AUTO_ATN 0x02
  233. #define SCNTL1_REG 0x01
  234. #define SLOW_BUS 0x80
  235. #define ENABLE_SELECT 0x20
  236. #define ASSERT_RST 0x08
  237. #define ASSERT_EVEN_PARITY 0x04
  238. #define SDID_REG 0x02
  239. #define SIEN_REG 0x03
  240. #define PHASE_MM_INT 0x80
  241. #define FUNC_COMP_INT 0x40
  242. #define SEL_TIMEOUT_INT 0x20
  243. #define SELECT_INT 0x10
  244. #define GROSS_ERR_INT 0x08
  245. #define UX_DISC_INT 0x04
  246. #define RST_INT 0x02
  247. #define PAR_ERR_INT 0x01
  248. #define SCID_REG 0x04
  249. #define SXFER_REG 0x05
  250. #define ASYNC_OPERATION 0x00
  251. #define SODL_REG 0x06
  252. #define SOCL_REG 0x07
  253. #define SFBR_REG 0x08
  254. #define SIDL_REG 0x09
  255. #define SBDL_REG 0x0A
  256. #define SBCL_REG 0x0B
  257. /* read bits */
  258. #define SBCL_IO 0x01
  259. /*write bits */
  260. #define SYNC_DIV_AS_ASYNC 0x00
  261. #define SYNC_DIV_1_0 0x01
  262. #define SYNC_DIV_1_5 0x02
  263. #define SYNC_DIV_2_0 0x03
  264. #define DSTAT_REG 0x0C
  265. #define ILGL_INST_DETECTED 0x01
  266. #define WATCH_DOG_INTERRUPT 0x02
  267. #define SCRIPT_INT_RECEIVED 0x04
  268. #define ABORTED 0x10
  269. #define SSTAT0_REG 0x0D
  270. #define PARITY_ERROR 0x01
  271. #define SCSI_RESET_DETECTED 0x02
  272. #define UNEXPECTED_DISCONNECT 0x04
  273. #define SCSI_GROSS_ERROR 0x08
  274. #define SELECTED 0x10
  275. #define SELECTION_TIMEOUT 0x20
  276. #define FUNCTION_COMPLETE 0x40
  277. #define PHASE_MISMATCH 0x80
  278. #define SSTAT1_REG 0x0E
  279. #define SIDL_REG_FULL 0x80
  280. #define SODR_REG_FULL 0x40
  281. #define SODL_REG_FULL 0x20
  282. #define SSTAT2_REG 0x0F
  283. #define CTEST0_REG 0x14
  284. #define BTB_TIMER_DISABLE 0x40
  285. #define CTEST1_REG 0x15
  286. #define CTEST2_REG 0x16
  287. #define CTEST3_REG 0x17
  288. #define CTEST4_REG 0x18
  289. #define DISABLE_FIFO 0x00
  290. #define SLBE 0x10
  291. #define SFWR 0x08
  292. #define BYTE_LANE0 0x04
  293. #define BYTE_LANE1 0x05
  294. #define BYTE_LANE2 0x06
  295. #define BYTE_LANE3 0x07
  296. #define SCSI_ZMODE 0x20
  297. #define ZMODE 0x40
  298. #define CTEST5_REG 0x19
  299. #define MASTER_CONTROL 0x10
  300. #define DMA_DIRECTION 0x08
  301. #define CTEST7_REG 0x1B
  302. #define BURST_DISABLE 0x80 /* 710 only */
  303. #define SEL_TIMEOUT_DISABLE 0x10 /* 710 only */
  304. #define DFP 0x08
  305. #define EVP 0x04
  306. #define DIFF 0x01
  307. #define CTEST6_REG 0x1A
  308. #define TEMP_REG 0x1C
  309. #define DFIFO_REG 0x20
  310. #define FLUSH_DMA_FIFO 0x80
  311. #define CLR_FIFO 0x40
  312. #define ISTAT_REG 0x21
  313. #define ABORT_OPERATION 0x80
  314. #define SOFTWARE_RESET_710 0x40
  315. #define DMA_INT_PENDING 0x01
  316. #define SCSI_INT_PENDING 0x02
  317. #define CONNECTED 0x08
  318. #define CTEST8_REG 0x22
  319. #define LAST_DIS_ENBL 0x01
  320. #define SHORTEN_FILTERING 0x04
  321. #define ENABLE_ACTIVE_NEGATION 0x10
  322. #define GENERATE_RECEIVE_PARITY 0x20
  323. #define CLR_FIFO_710 0x04
  324. #define FLUSH_DMA_FIFO_710 0x08
  325. #define CTEST9_REG 0x23
  326. #define DBC_REG 0x24
  327. #define DCMD_REG 0x27
  328. #define DNAD_REG 0x28
  329. #define DIEN_REG 0x39
  330. #define BUS_FAULT 0x20
  331. #define ABORT_INT 0x10
  332. #define INT_INST_INT 0x04
  333. #define WD_INT 0x02
  334. #define ILGL_INST_INT 0x01
  335. #define DCNTL_REG 0x3B
  336. #define SOFTWARE_RESET 0x01
  337. #define COMPAT_700_MODE 0x01
  338. #define SCRPTS_16BITS 0x20
  339. #define ASYNC_DIV_2_0 0x00
  340. #define ASYNC_DIV_1_5 0x40
  341. #define ASYNC_DIV_1_0 0x80
  342. #define ASYNC_DIV_3_0 0xc0
  343. #define DMODE_710_REG 0x38
  344. #define DMODE_700_REG 0x34
  345. #define BURST_LENGTH_1 0x00
  346. #define BURST_LENGTH_2 0x40
  347. #define BURST_LENGTH_4 0x80
  348. #define BURST_LENGTH_8 0xC0
  349. #define DMODE_FC1 0x10
  350. #define DMODE_FC2 0x20
  351. #define BW16 32
  352. #define MODE_286 16
  353. #define IO_XFER 8
  354. #define FIXED_ADDR 4
  355. #define DSP_REG 0x2C
  356. #define DSPS_REG 0x30
  357. /* Parameters to begin SDTR negotiations. Empirically, I find that
  358. * the 53c700-66 cannot handle an offset >8, so don't change this */
  359. #define NCR_700_MAX_OFFSET 8
  360. /* Was hoping the max offset would be greater for the 710, but
  361. * empirically it seems to be 8 also */
  362. #define NCR_710_MAX_OFFSET 8
  363. #define NCR_700_MIN_XFERP 1
  364. #define NCR_710_MIN_XFERP 0
  365. #define NCR_700_MIN_PERIOD 25 /* for SDTR message, 100ns */
  366. #define script_patch_32(script, symbol, value) \
  367. { \
  368. int i; \
  369. for(i=0; i< (sizeof(A_##symbol##_used) / sizeof(__u32)); i++) { \
  370. __u32 val = bS_to_cpu((script)[A_##symbol##_used[i]]) + value; \
  371. (script)[A_##symbol##_used[i]] = bS_to_host(val); \
  372. dma_cache_sync(&(script)[A_##symbol##_used[i]], 4, DMA_TO_DEVICE); \
  373. DEBUG((" script, patching %s at %d to 0x%lx\n", \
  374. #symbol, A_##symbol##_used[i], (value))); \
  375. } \
  376. }
  377. #define script_patch_32_abs(script, symbol, value) \
  378. { \
  379. int i; \
  380. for(i=0; i< (sizeof(A_##symbol##_used) / sizeof(__u32)); i++) { \
  381. (script)[A_##symbol##_used[i]] = bS_to_host(value); \
  382. dma_cache_sync(&(script)[A_##symbol##_used[i]], 4, DMA_TO_DEVICE); \
  383. DEBUG((" script, patching %s at %d to 0x%lx\n", \
  384. #symbol, A_##symbol##_used[i], (value))); \
  385. } \
  386. }
  387. /* Used for patching the SCSI ID in the SELECT instruction */
  388. #define script_patch_ID(script, symbol, value) \
  389. { \
  390. int i; \
  391. for(i=0; i< (sizeof(A_##symbol##_used) / sizeof(__u32)); i++) { \
  392. __u32 val = bS_to_cpu((script)[A_##symbol##_used[i]]); \
  393. val &= 0xff00ffff; \
  394. val |= ((value) & 0xff) << 16; \
  395. (script)[A_##symbol##_used[i]] = bS_to_host(val); \
  396. dma_cache_sync(&(script)[A_##symbol##_used[i]], 4, DMA_TO_DEVICE); \
  397. DEBUG((" script, patching ID field %s at %d to 0x%x\n", \
  398. #symbol, A_##symbol##_used[i], val)); \
  399. } \
  400. }
  401. #define script_patch_16(script, symbol, value) \
  402. { \
  403. int i; \
  404. for(i=0; i< (sizeof(A_##symbol##_used) / sizeof(__u32)); i++) { \
  405. __u32 val = bS_to_cpu((script)[A_##symbol##_used[i]]); \
  406. val &= 0xffff0000; \
  407. val |= ((value) & 0xffff); \
  408. (script)[A_##symbol##_used[i]] = bS_to_host(val); \
  409. dma_cache_sync(&(script)[A_##symbol##_used[i]], 4, DMA_TO_DEVICE); \
  410. DEBUG((" script, patching short field %s at %d to 0x%x\n", \
  411. #symbol, A_##symbol##_used[i], val)); \
  412. } \
  413. }
  414. static inline __u8
  415. NCR_700_readb(struct Scsi_Host *host, __u32 reg)
  416. {
  417. const struct NCR_700_Host_Parameters *hostdata
  418. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  419. return ioread8(hostdata->base + (reg^bE));
  420. }
  421. static inline __u32
  422. NCR_700_readl(struct Scsi_Host *host, __u32 reg)
  423. {
  424. const struct NCR_700_Host_Parameters *hostdata
  425. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  426. __u32 value = ioread32(hostdata->base + reg);
  427. #if 1
  428. /* sanity check the register */
  429. if((reg & 0x3) != 0)
  430. BUG();
  431. #endif
  432. return bS_to_io(value);
  433. }
  434. static inline void
  435. NCR_700_writeb(__u8 value, struct Scsi_Host *host, __u32 reg)
  436. {
  437. const struct NCR_700_Host_Parameters *hostdata
  438. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  439. iowrite8(value, hostdata->base + (reg^bE));
  440. }
  441. static inline void
  442. NCR_700_writel(__u32 value, struct Scsi_Host *host, __u32 reg)
  443. {
  444. const struct NCR_700_Host_Parameters *hostdata
  445. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  446. #if 1
  447. /* sanity check the register */
  448. if((reg & 0x3) != 0)
  449. BUG();
  450. #endif
  451. iowrite32(bS_to_io(value), hostdata->base + reg);
  452. }
  453. #endif