53c700.h 16 KB

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