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

嵌入式Linux

开发平台:

Unix_Linux

  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. /* Turn on for general debugging---too verbose for normal use */
  9. #undef NCR_700_DEBUG
  10. /* Debug the tag queues, checking hash queue allocation and deallocation
  11.  * and search for duplicate tags */
  12. #undef NCR_700_TAG_DEBUG
  13. #ifdef NCR_700_DEBUG
  14. #define DEBUG(x) printk x
  15. #else
  16. #define DEBUG(x)
  17. #endif
  18. /* The number of available command slots */
  19. #define NCR_700_COMMAND_SLOTS_PER_HOST 64
  20. /* The maximum number of Scatter Gathers we allow */
  21. #define NCR_700_SG_SEGMENTS 32
  22. /* The maximum number of luns (make this of the form 2^n) */
  23. #define NCR_700_MAX_LUNS 32
  24. #define NCR_700_LUN_MASK (NCR_700_MAX_LUNS - 1)
  25. /* Alter this with care: too many tags won't give the elevator a chance to
  26.  * work; too few will cause the device to operate less efficiently */
  27. #define NCR_700_MAX_TAGS 16
  28. /* magic byte identifying an internally generated REQUEST_SENSE command */
  29. #define NCR_700_INTERNAL_SENSE_MAGIC 0x42
  30. /* WARNING: Leave this in for now: the dependency preprocessor doesn't
  31.  * pick up file specific flags, so must define here if they are not
  32.  * set */
  33. #if !defined(CONFIG_53C700_IO_MAPPED) && !defined(CONFIG_53C700_MEM_MAPPED)
  34. #error "Config.in must define either CONFIG_53C700_IO_MAPPED or CONFIG_53C700_MEM_MAPPED to use this scsi core."
  35. #endif
  36. /* macros for consistent memory allocation */
  37. #ifdef CONFIG_53C700_USE_CONSISTENT
  38. #define NCR_700_dma_cache_wback(mem, size) 
  39. if(!hostdata->consistent) 
  40. dma_cache_wback(mem, size)
  41. #define NCR_700_dma_cache_inv(mem, size) 
  42. if(!hostdata->consistent) 
  43. dma_cache_inv(mem, size)
  44. #define NCR_700_dma_cache_wback_inv(mem, size) 
  45. if(!hostdata->consistent) 
  46. dma_cache_wback_inv(mem, size)
  47. #else
  48. #define NCR_700_dma_cache_wback(mem, size) dma_cache_wback(mem,size)
  49. #define NCR_700_dma_cache_inv(mem, size) dma_cache_inv(mem,size)
  50. #define NCR_700_dma_cache_wback_inv(mem, size) dma_cache_wback_inv(mem,size)
  51. #endif
  52. struct NCR_700_Host_Parameters;
  53. /* These are the externally used routines */
  54. struct Scsi_Host *NCR_700_detect(Scsi_Host_Template *, struct NCR_700_Host_Parameters *);
  55. int NCR_700_release(struct Scsi_Host *host);
  56. void NCR_700_intr(int, void *, struct pt_regs *);
  57. enum NCR_700_Host_State {
  58. NCR_700_HOST_BUSY,
  59. NCR_700_HOST_FREE,
  60. };
  61. struct NCR_700_SG_List {
  62. /* The following is a script fragment to move the buffer onto the
  63.  * bus and then link the next fragment or return */
  64. #define SCRIPT_MOVE_DATA_IN 0x09000000
  65. #define SCRIPT_MOVE_DATA_OUT 0x08000000
  66. __u32 ins;
  67. __u32 pAddr;
  68. #define SCRIPT_NOP 0x80000000
  69. #define SCRIPT_RETURN 0x90080000
  70. };
  71. /* We use device->hostdata to store negotiated parameters.  This is
  72.  * supposed to be a pointer to a device private area, but we cannot
  73.  * really use it as such since it will never be freed, so just use the
  74.  * 32 bits to cram the information.  The SYNC negotiation sequence looks
  75.  * like:
  76.  * 
  77.  * If DEV_NEGOTIATED_SYNC not set, tack and SDTR message on to the
  78.  * initial identify for the device and set DEV_BEGIN_SYNC_NEGOTATION
  79.  * If we get an SDTR reply, work out the SXFER parameters, squirrel
  80.  * them away here, clear DEV_BEGIN_SYNC_NEGOTIATION and set
  81.  * DEV_NEGOTIATED_SYNC.  If we get a REJECT msg, squirrel
  82.  *
  83.  *
  84.  * 0:7 SXFER_REG negotiated value for this device
  85.  * 8:15 Current queue depth
  86.  * 16 negotiated SYNC flag
  87.  * 17 begin SYNC negotiation flag 
  88.  * 18 device supports tag queueing */
  89. #define NCR_700_DEV_NEGOTIATED_SYNC (1<<16)
  90. #define NCR_700_DEV_BEGIN_SYNC_NEGOTIATION (1<<17)
  91. #define NCR_700_DEV_BEGIN_TAG_QUEUEING (1<<18)
  92. #define NCR_700_DEV_TAG_STARVATION_WARNED (1<<19)
  93. static inline void
  94. NCR_700_set_SXFER(Scsi_Device *SDp, __u8 sxfer)
  95. {
  96. ((unsigned long)SDp->hostdata) &= 0xffffff00;
  97. ((unsigned long)SDp->hostdata) |= sxfer & 0xff;
  98. }
  99. static inline __u8 NCR_700_get_SXFER(Scsi_Device *SDp)
  100. {
  101. return (((unsigned long)SDp->hostdata) & 0xff);
  102. }
  103. static inline void
  104. NCR_700_set_depth(Scsi_Device *SDp, __u8 depth)
  105. {
  106. ((unsigned long)SDp->hostdata) &= 0xffff00ff;
  107. ((unsigned long)SDp->hostdata) |= (0xff00 & (depth << 8));
  108. }
  109. static inline __u8
  110. NCR_700_get_depth(Scsi_Device *SDp)
  111. {
  112. return ((((unsigned long)SDp->hostdata) & 0xff00)>>8);
  113. }
  114. static inline int
  115. NCR_700_is_flag_set(Scsi_Device *SDp, __u32 flag)
  116. {
  117. return (((unsigned long)SDp->hostdata) & flag) == flag;
  118. }
  119. static inline int
  120. NCR_700_is_flag_clear(Scsi_Device *SDp, __u32 flag)
  121. {
  122. return (((unsigned long)SDp->hostdata) & flag) == 0;
  123. }
  124. static inline void
  125. NCR_700_set_flag(Scsi_Device *SDp, __u32 flag)
  126. {
  127. ((unsigned long)SDp->hostdata) |= (flag & 0xffff0000);
  128. }
  129. static inline void
  130. NCR_700_clear_flag(Scsi_Device *SDp, __u32 flag)
  131. {
  132. ((unsigned long)SDp->hostdata) &= ~(flag & 0xffff0000);
  133. }
  134. /* These represent the Nexus hashing functions.  A Nexus in SCSI terms
  135.  * just means the identification of an outstanding command, by ITL
  136.  * (Initiator Target Lun) or ITLQ (Initiator Target Lun Tag).  I'm not
  137.  * very keen on XOR based hashes, so these are based on number theory
  138.  * instead.  All you need to do is to fix your hash bucket size and
  139.  * then choose reasonable strides which are coprime with the chosen
  140.  * bucket size
  141.  *
  142.  * Note: this mathematical hash can be made very efficient, if the
  143.  * compiler is good at optimising: Choose the number of buckets to be
  144.  * 2^n and the modulo becomes a logical and with (2^n-1).
  145.  * Additionally, if you chose the coprimes of the form 2^n-2^n the
  146.  * multiplication can be done by a shift and an addition. */
  147. #define MAX_ITL_HASH_BUCKETS 16
  148. #define ITL_HASH_PRIME 7
  149. #define MAX_ITLQ_HASH_BUCKETS 64
  150. #define ITLQ_PUN_PRIME 7
  151. #define ITLQ_LUN_PRIME 3
  152. static inline int
  153. hash_ITL(__u8 pun, __u8 lun)
  154. {
  155. return (pun*ITL_HASH_PRIME + lun) % MAX_ITL_HASH_BUCKETS;
  156. }
  157. static inline int
  158. hash_ITLQ(__u8 pun, __u8 lun, __u8 tag)
  159. {
  160. return (pun*ITLQ_PUN_PRIME + lun*ITLQ_LUN_PRIME + tag) % MAX_ITLQ_HASH_BUCKETS;
  161. }
  162. struct NCR_700_command_slot {
  163. struct NCR_700_SG_List SG[NCR_700_SG_SEGMENTS+1];
  164. struct NCR_700_SG_List *pSG;
  165. #define NCR_700_SLOT_MASK 0xFC
  166. #define NCR_700_SLOT_MAGIC 0xb8
  167. #define NCR_700_SLOT_FREE (0|NCR_700_SLOT_MAGIC) /* slot may be used */
  168. #define NCR_700_SLOT_BUSY (1|NCR_700_SLOT_MAGIC) /* slot has command active on HA */
  169. #define NCR_700_SLOT_QUEUED (2|NCR_700_SLOT_MAGIC) /* slot has command to be made active on HA */
  170. __u8 state;
  171. #define NCR_700_NO_TAG 0xdead
  172. __u16 tag;
  173. __u32 resume_offset;
  174. Scsi_Cmnd *cmnd;
  175. /* The pci_mapped address of the actual command in cmnd */
  176. dma_addr_t pCmd;
  177. __u32 temp;
  178. /* if this command is a pci_single mapping, holds the dma address
  179.  * for later unmapping in the done routine */
  180. dma_addr_t dma_handle;
  181. /* Doubly linked ITL/ITLQ list kept in strict time order
  182.  * (latest at the back) */
  183. struct NCR_700_command_slot *ITL_forw;
  184. struct NCR_700_command_slot *ITL_back;
  185. struct NCR_700_command_slot *ITLQ_forw;
  186. struct NCR_700_command_slot *ITLQ_back;
  187. };
  188. struct NCR_700_Host_Parameters {
  189. /* These must be filled in by the calling driver */
  190. int clock; /* board clock speed in MHz */
  191. unsigned long base; /* the base for the port (copied to host) */
  192. struct pci_dev *pci_dev;
  193. __u32 dmode_extra; /* adjustable bus settings */
  194. __u32 differential:1; /* if we are differential */
  195. #ifdef CONFIG_53C700_LE_ON_BE
  196. /* This option is for HP only.  Set it if your chip is wired for
  197.  * little endian on this platform (which is big endian) */
  198. __u32 force_le_on_be:1;
  199. #endif
  200. __u32 chip710:1; /* set if really a 710 not 700 */
  201. __u32 burst_disable:1; /* set to 1 to disable 710 bursting */
  202. /* NOTHING BELOW HERE NEEDS ALTERING */
  203. __u32 fast:1; /* if we can alter the SCSI bus clock
  204.                                    speed (so can negiotiate sync) */
  205. #ifdef CONFIG_53C700_USE_CONSISTENT
  206. __u32 consistent:1;
  207. #endif
  208. int sync_clock; /* The speed of the SYNC core */
  209. __u32 *script; /* pointer to script location */
  210. __u32 pScript; /* physical mem addr of script */
  211. /* This will be the host lock.  Unfortunately, we can't use it
  212.  * at the moment because of the necessity of holding the
  213.  * io_request_lock */
  214. spinlock_t lock;
  215. enum NCR_700_Host_State state; /* protected by state lock */
  216. Scsi_Cmnd *cmd;
  217. /* Note: pScript contains the single consistent block of
  218.  * memory.  All the msgin, msgout and status are allocated in
  219.  * this memory too (at separate cache lines).  TOTAL_MEM_SIZE
  220.  * represents the total size of this area */
  221. #define MSG_ARRAY_SIZE 8
  222. #define MSGOUT_OFFSET (L1_CACHE_ALIGN(sizeof(SCRIPT)))
  223. __u8 *msgout;
  224. #define MSGIN_OFFSET (MSGOUT_OFFSET + L1_CACHE_ALIGN(MSG_ARRAY_SIZE))
  225. __u8 *msgin;
  226. #define STATUS_OFFSET (MSGIN_OFFSET + L1_CACHE_ALIGN(MSG_ARRAY_SIZE))
  227. __u8 *status;
  228. #define SLOTS_OFFSET (STATUS_OFFSET + L1_CACHE_ALIGN(MSG_ARRAY_SIZE))
  229. struct NCR_700_command_slot *slots;
  230. #define TOTAL_MEM_SIZE (SLOTS_OFFSET + L1_CACHE_ALIGN(sizeof(struct NCR_700_command_slot) * NCR_700_COMMAND_SLOTS_PER_HOST))
  231. int saved_slot_position;
  232. int command_slot_count; /* protected by state lock */
  233. __u8 tag_negotiated;
  234. __u8 rev;
  235. __u8 reselection_id;
  236. /* flags for the host */
  237. /* ITL list.  ALL outstanding commands are hashed here in strict
  238.  * order, latest at the back */
  239. struct NCR_700_command_slot *ITL_Hash_forw[MAX_ITL_HASH_BUCKETS];
  240. struct NCR_700_command_slot *ITL_Hash_back[MAX_ITL_HASH_BUCKETS];
  241. /* Only tagged outstanding commands are hashed here (also latest
  242.  * at the back) */
  243. struct NCR_700_command_slot *ITLQ_Hash_forw[MAX_ITLQ_HASH_BUCKETS];
  244. struct NCR_700_command_slot *ITLQ_Hash_back[MAX_ITLQ_HASH_BUCKETS];
  245. /* Free list, singly linked by ITL_forw elements */
  246. struct NCR_700_command_slot *free_list;
  247. };
  248. /*
  249.  * 53C700 Register Interface - the offset from the Selected base
  250.  * I/O address */
  251. #ifdef CONFIG_53C700_LE_ON_BE
  252. #define bE (hostdata->force_le_on_be ? 0 : 3)
  253. #define bSWAP (hostdata->force_le_on_be)
  254. #elif defined(__BIG_ENDIAN)
  255. #define bE 3
  256. #define bSWAP 0
  257. #elif defined(__LITTLE_ENDIAN)
  258. #define bE 0
  259. #define bSWAP 0
  260. #else
  261. #error "__BIG_ENDIAN or __LITTLE_ENDIAN must be defined, did you include byteorder.h?"
  262. #endif
  263. #define bS_to_cpu(x) (bSWAP ? le32_to_cpu(x) : (x))
  264. #define bS_to_host(x) (bSWAP ? cpu_to_le32(x) : (x))
  265. /* NOTE: These registers are in the LE register space only, the required byte
  266.  * swapping is done by the NCR_700_{read|write}[b] functions */
  267. #define SCNTL0_REG 0x00
  268. #define FULL_ARBITRATION 0xc0
  269. #define  PARITY 0x08
  270. #define ENABLE_PARITY 0x04
  271. #define  AUTO_ATN 0x02
  272. #define SCNTL1_REG 0x01
  273. #define  SLOW_BUS 0x80
  274. #define ENABLE_SELECT 0x20
  275. #define ASSERT_RST 0x08
  276. #define ASSERT_EVEN_PARITY 0x04
  277. #define SDID_REG 0x02
  278. #define SIEN_REG 0x03
  279. #define  PHASE_MM_INT 0x80
  280. #define  FUNC_COMP_INT 0x40
  281. #define  SEL_TIMEOUT_INT 0x20
  282. #define  SELECT_INT 0x10
  283. #define  GROSS_ERR_INT 0x08
  284. #define  UX_DISC_INT 0x04
  285. #define  RST_INT 0x02
  286. #define  PAR_ERR_INT 0x01
  287. #define SCID_REG 0x04
  288. #define SXFER_REG 0x05
  289. #define ASYNC_OPERATION 0x00
  290. #define SODL_REG                        0x06
  291. #define SOCL_REG 0x07
  292. #define SFBR_REG 0x08
  293. #define SIDL_REG 0x09
  294. #define SBDL_REG 0x0A
  295. #define SBCL_REG 0x0B
  296. /* read bits */
  297. #define SBCL_IO 0x01
  298. /*write bits */
  299. #define SYNC_DIV_AS_ASYNC 0x00
  300. #define SYNC_DIV_1_0 0x01
  301. #define SYNC_DIV_1_5 0x02
  302. #define SYNC_DIV_2_0 0x03
  303. #define DSTAT_REG 0x0C
  304. #define ILGL_INST_DETECTED 0x01
  305. #define WATCH_DOG_INTERRUPT 0x02
  306. #define SCRIPT_INT_RECEIVED 0x04
  307. #define ABORTED 0x10
  308. #define SSTAT0_REG 0x0D
  309. #define PARITY_ERROR 0x01
  310. #define SCSI_RESET_DETECTED 0x02
  311. #define UNEXPECTED_DISCONNECT 0x04
  312. #define SCSI_GROSS_ERROR 0x08
  313. #define SELECTED 0x10
  314. #define SELECTION_TIMEOUT 0x20
  315. #define FUNCTION_COMPLETE 0x40
  316. #define PHASE_MISMATCH  0x80
  317. #define SSTAT1_REG 0x0E
  318. #define SIDL_REG_FULL 0x80
  319. #define SODR_REG_FULL 0x40
  320. #define SODL_REG_FULL 0x20
  321. #define SSTAT2_REG                      0x0F
  322. #define CTEST0_REG                      0x14
  323. #define BTB_TIMER_DISABLE 0x40
  324. #define CTEST1_REG                      0x15
  325. #define CTEST2_REG                      0x16
  326. #define CTEST3_REG                      0x17
  327. #define CTEST4_REG                      0x18
  328. #define         DISABLE_FIFO            0x00
  329. #define         SLBE                    0x10
  330. #define         SFWR                    0x08
  331. #define         BYTE_LANE0              0x04
  332. #define         BYTE_LANE1              0x05
  333. #define         BYTE_LANE2              0x06
  334. #define         BYTE_LANE3              0x07
  335. #define         SCSI_ZMODE              0x20
  336. #define         ZMODE                   0x40
  337. #define CTEST5_REG                      0x19
  338. #define         MASTER_CONTROL          0x10
  339. #define         DMA_DIRECTION           0x08
  340. #define CTEST7_REG                      0x1B
  341. #define BURST_DISABLE 0x80 /* 710 only */
  342. #define SEL_TIMEOUT_DISABLE 0x10 /* 710 only */
  343. #define         DFP                     0x08
  344. #define         EVP                     0x04
  345. #define DIFF 0x01
  346. #define CTEST6_REG                      0x1A
  347. #define TEMP_REG 0x1C
  348. #define DFIFO_REG 0x20
  349. #define FLUSH_DMA_FIFO 0x80
  350. #define CLR_FIFO 0x40
  351. #define ISTAT_REG 0x21
  352. #define ABORT_OPERATION 0x80
  353. #define SOFTWARE_RESET_710 0x40
  354. #define DMA_INT_PENDING 0x01
  355. #define SCSI_INT_PENDING 0x02
  356. #define CONNECTED 0x08
  357. #define CTEST8_REG                      0x22
  358. #define         LAST_DIS_ENBL           0x01
  359. #define SHORTEN_FILTERING 0x04
  360. #define ENABLE_ACTIVE_NEGATION 0x10
  361. #define GENERATE_RECEIVE_PARITY 0x20
  362. #define CLR_FIFO_710 0x04
  363. #define FLUSH_DMA_FIFO_710 0x08
  364. #define CTEST9_REG                      0x23
  365. #define DBC_REG 0x24
  366. #define DCMD_REG 0x27
  367. #define DNAD_REG 0x28
  368. #define DIEN_REG 0x39
  369. #define BUS_FAULT 0x20
  370. #define  ABORT_INT 0x10
  371. #define  INT_INST_INT 0x04
  372. #define  WD_INT 0x02
  373. #define  ILGL_INST_INT 0x01
  374. #define DCNTL_REG 0x3B
  375. #define SOFTWARE_RESET 0x01
  376. #define COMPAT_700_MODE 0x01
  377. #define  SCRPTS_16BITS 0x20
  378. #define ASYNC_DIV_2_0 0x00
  379. #define ASYNC_DIV_1_5 0x40
  380. #define ASYNC_DIV_1_0 0x80
  381. #define ASYNC_DIV_3_0 0xc0
  382. #define DMODE_710_REG 0x38
  383. #define DMODE_700_REG 0x34
  384. #define BURST_LENGTH_1 0x00
  385. #define BURST_LENGTH_2 0x40
  386. #define BURST_LENGTH_4 0x80
  387. #define BURST_LENGTH_8 0xC0
  388. #define DMODE_FC1 0x10
  389. #define DMODE_FC2 0x20
  390. #define  BW16 32 
  391. #define  MODE_286 16
  392. #define  IO_XFER 8
  393. #define  FIXED_ADDR 4
  394. #define DSP_REG                         0x2C
  395. #define DSPS_REG                        0x30
  396. /* Parameters to begin SDTR negotiations.  Empirically, I find that
  397.  * the 53c700-66 cannot handle an offset >8, so don't change this  */
  398. #define NCR_700_MAX_OFFSET 8
  399. /* Was hoping the max offset would be greater for the 710, but
  400.  * empirically it seems to be 8 also */
  401. #define NCR_710_MAX_OFFSET 8
  402. #define NCR_700_MIN_XFERP 1
  403. #define NCR_710_MIN_XFERP 0
  404. #define NCR_700_MIN_PERIOD 25 /* for SDTR message, 100ns */
  405. #define script_patch_32(script, symbol, value) 
  406. int i; 
  407. for(i=0; i< (sizeof(A_##symbol##_used) / sizeof(__u32)); i++) { 
  408. __u32 val = bS_to_cpu((script)[A_##symbol##_used[i]]) + value; 
  409. (script)[A_##symbol##_used[i]] = bS_to_host(val); 
  410. dma_cache_wback((unsigned long)&(script)[A_##symbol##_used[i]], 4); 
  411. DEBUG((" script, patching %s at %d to 0x%lxn", 
  412.        #symbol, A_##symbol##_used[i], (value))); 
  413. }
  414. #define script_patch_32_abs(script, symbol, value) 
  415. int i; 
  416. for(i=0; i< (sizeof(A_##symbol##_used) / sizeof(__u32)); i++) { 
  417. (script)[A_##symbol##_used[i]] = bS_to_host(value); 
  418. dma_cache_wback((unsigned long)&(script)[A_##symbol##_used[i]], 4); 
  419. DEBUG((" script, patching %s at %d to 0x%lxn", 
  420.        #symbol, A_##symbol##_used[i], (value))); 
  421. }
  422. /* Used for patching the SCSI ID in the SELECT instruction */
  423. #define script_patch_ID(script, symbol, value) 
  424. int i; 
  425. for(i=0; i< (sizeof(A_##symbol##_used) / sizeof(__u32)); i++) { 
  426. __u32 val = bS_to_cpu((script)[A_##symbol##_used[i]]); 
  427. val &= 0xff00ffff; 
  428. val |= ((value) & 0xff) << 16; 
  429. (script)[A_##symbol##_used[i]] = bS_to_host(val); 
  430. dma_cache_wback((unsigned long)&(script)[A_##symbol##_used[i]], 4); 
  431. DEBUG((" script, patching ID field %s at %d to 0x%xn", 
  432.        #symbol, A_##symbol##_used[i], val)); 
  433. }
  434. #define script_patch_16(script, symbol, value) 
  435. int i; 
  436. for(i=0; i< (sizeof(A_##symbol##_used) / sizeof(__u32)); i++) { 
  437. __u32 val = bS_to_cpu((script)[A_##symbol##_used[i]]); 
  438. val &= 0xffff0000; 
  439. val |= ((value) & 0xffff); 
  440. (script)[A_##symbol##_used[i]] = bS_to_host(val); 
  441. dma_cache_wback((unsigned long)&(script)[A_##symbol##_used[i]], 4); 
  442. DEBUG((" script, patching short field %s at %d to 0x%xn", 
  443.        #symbol, A_##symbol##_used[i], val)); 
  444. }
  445. #endif
  446. #ifdef CONFIG_53C700_MEM_MAPPED
  447. static inline __u8
  448. NCR_700_readb(struct Scsi_Host *host, __u32 reg)
  449. {
  450. const struct NCR_700_Host_Parameters *hostdata __attribute__((unused))
  451. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  452. return readb(host->base + (reg^bE));
  453. }
  454. static inline __u32
  455. NCR_700_readl(struct Scsi_Host *host, __u32 reg)
  456. {
  457. __u32 value = __raw_readl(host->base + reg);
  458. const struct NCR_700_Host_Parameters *hostdata __attribute__((unused))
  459. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  460. #if 1
  461. /* sanity check the register */
  462. if((reg & 0x3) != 0)
  463. BUG();
  464. #endif
  465. return bS_to_cpu(value);
  466. }
  467. static inline void
  468. NCR_700_writeb(__u8 value, struct Scsi_Host *host, __u32 reg)
  469. {
  470. const struct NCR_700_Host_Parameters *hostdata __attribute__((unused))
  471. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  472. writeb(value, host->base + (reg^bE));
  473. }
  474. static inline void
  475. NCR_700_writel(__u32 value, struct Scsi_Host *host, __u32 reg)
  476. {
  477. const struct NCR_700_Host_Parameters *hostdata __attribute__((unused))
  478. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  479. #if 1
  480. /* sanity check the register */
  481. if((reg & 0x3) != 0)
  482. BUG();
  483. #endif
  484. __raw_writel(bS_to_host(value), host->base + reg);
  485. }
  486. #elif defined(CONFIG_53C700_IO_MAPPED)
  487. static inline __u8
  488. NCR_700_readb(struct Scsi_Host *host, __u32 reg)
  489. {
  490. const struct NCR_700_Host_Parameters *hostdata __attribute__((unused))
  491. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  492. return inb(host->base + (reg^bE));
  493. }
  494. static inline __u32
  495. NCR_700_readl(struct Scsi_Host *host, __u32 reg)
  496. {
  497. __u32 value = inl(host->base + reg);
  498. const struct NCR_700_Host_Parameters *hostdata __attribute__((unused))
  499. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  500. #if 1
  501. /* sanity check the register */
  502. if((reg & 0x3) != 0)
  503. BUG();
  504. #endif
  505. return bS_to_cpu(value);
  506. }
  507. static inline void
  508. NCR_700_writeb(__u8 value, struct Scsi_Host *host, __u32 reg)
  509. {
  510. const struct NCR_700_Host_Parameters *hostdata __attribute__((unused))
  511. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  512. outb(value, host->base + (reg^bE));
  513. }
  514. static inline void
  515. NCR_700_writel(__u32 value, struct Scsi_Host *host, __u32 reg)
  516. {
  517. const struct NCR_700_Host_Parameters *hostdata __attribute__((unused))
  518. = (struct NCR_700_Host_Parameters *)host->hostdata[0];
  519. #if 1
  520. /* sanity check the register */
  521. if((reg & 0x3) != 0)
  522. BUG();
  523. #endif
  524. outl(bS_to_host(value), host->base + reg);
  525. }
  526. #endif