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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.  * NCR 5380 defines
  3.  *
  4.  * Copyright 1993, Drew Eckhardt
  5.  * Visionary Computing
  6.  * (Unix consulting and custom programming)
  7.  *  drew@colorado.edu
  8.  *      +1 (303) 666-5836
  9.  *
  10.  * DISTRIBUTION RELEASE 7
  11.  *
  12.  * For more information, please consult 
  13.  *
  14.  * NCR 5380 Family
  15.  * SCSI Protocol Controller
  16.  * Databook
  17.  * NCR Microelectronics
  18.  * 1635 Aeroplaza Drive
  19.  * Colorado Springs, CO 80916
  20.  * 1+ (719) 578-3400
  21.  * 1+ (800) 334-5454
  22.  */
  23. /*
  24.  * $Log: NCR5380.h,v $
  25.  */
  26. #ifndef NCR5380_H
  27. #define NCR5380_H
  28. #define NCR5380_PUBLIC_RELEASE 7
  29. #define NCR53C400_PUBLIC_RELEASE 2
  30. #define NDEBUG_ARBITRATION 0x1
  31. #define NDEBUG_AUTOSENSE 0x2
  32. #define NDEBUG_DMA 0x4
  33. #define NDEBUG_HANDSHAKE 0x8
  34. #define NDEBUG_INFORMATION 0x10
  35. #define NDEBUG_INIT 0x20
  36. #define NDEBUG_INTR 0x40
  37. #define NDEBUG_LINKED 0x80
  38. #define NDEBUG_MAIN 0x100
  39. #define NDEBUG_NO_DATAOUT 0x200
  40. #define NDEBUG_NO_WRITE 0x400
  41. #define NDEBUG_PIO 0x800
  42. #define NDEBUG_PSEUDO_DMA 0x1000
  43. #define NDEBUG_QUEUES 0x2000
  44. #define NDEBUG_RESELECTION 0x4000
  45. #define NDEBUG_SELECTION 0x8000
  46. #define NDEBUG_USLEEP 0x10000
  47. #define NDEBUG_LAST_BYTE_SENT 0x20000
  48. #define NDEBUG_RESTART_SELECT 0x40000
  49. #define NDEBUG_EXTENDED 0x80000
  50. #define NDEBUG_C400_PREAD 0x100000
  51. #define NDEBUG_C400_PWRITE 0x200000
  52. #define NDEBUG_LISTS 0x400000
  53. #define NDEBUG_ANY 0xFFFFFFFFUL
  54. /* 
  55.  * The contents of the OUTPUT DATA register are asserted on the bus when
  56.  * either arbitration is occurring or the phase-indicating signals (
  57.  * IO, CD, MSG) in the TARGET COMMAND register and the ASSERT DATA
  58.  * bit in the INITIATOR COMMAND register is set.
  59.  */
  60. #define OUTPUT_DATA_REG         0 /* wo DATA lines on SCSI bus */
  61. #define CURRENT_SCSI_DATA_REG   0 /* ro same */
  62. #define INITIATOR_COMMAND_REG 1 /* rw */
  63. #define ICR_ASSERT_RST 0x80 /* rw Set to assert RST  */
  64. #define ICR_ARBITRATION_PROGRESS 0x40 /* ro Indicates arbitration complete */
  65. #define ICR_TRI_STATE 0x40 /* wo Set to tri-state drivers */
  66. #define ICR_ARBITRATION_LOST 0x20 /* ro Indicates arbitration lost */
  67. #define ICR_DIFF_ENABLE 0x20 /* wo Set to enable diff. drivers */
  68. #define ICR_ASSERT_ACK 0x10 /* rw ini Set to assert ACK */
  69. #define ICR_ASSERT_BSY 0x08 /* rw Set to assert BSY */
  70. #define ICR_ASSERT_SEL  0x04 /* rw Set to assert SEL */
  71. #define ICR_ASSERT_ATN 0x02 /* rw Set to assert ATN */
  72. #define ICR_ASSERT_DATA 0x01 /* rw SCSI_DATA_REG is asserted */
  73. #ifdef DIFFERENTIAL
  74. #define ICR_BASE ICR_DIFF_ENABLE
  75. #else
  76. #define ICR_BASE 0
  77. #endif
  78. #define MODE_REG 2
  79. /*
  80.  * Note : BLOCK_DMA code will keep DRQ asserted for the duration of the 
  81.  * transfer, causing the chip to hog the bus.  You probably don't want 
  82.  * this.
  83.  */
  84. #define MR_BLOCK_DMA_MODE 0x80 /* rw block mode DMA */
  85. #define MR_TARGET 0x40 /* rw target mode */
  86. #define MR_ENABLE_PAR_CHECK 0x20 /* rw enable parity checking */
  87. #define MR_ENABLE_PAR_INTR 0x10 /* rw enable bad parity interrupt */
  88. #define MR_ENABLE_EOP_INTR 0x08 /* rw enable eop interrupt */
  89. #define MR_MONITOR_BSY 0x04 /* rw enable int on unexpected bsy fail */
  90. #define MR_DMA_MODE 0x02 /* rw DMA / pseudo DMA mode */
  91. #define MR_ARBITRATE 0x01 /* rw start arbitration */
  92. #ifdef PARITY
  93. #define MR_BASE MR_ENABLE_PAR_CHECK
  94. #else
  95. #define MR_BASE 0
  96. #endif
  97. #define TARGET_COMMAND_REG 3
  98. #define TCR_LAST_BYTE_SENT 0x80 /* ro DMA done */
  99. #define TCR_ASSERT_REQ 0x08 /* tgt rw assert REQ */
  100. #define TCR_ASSERT_MSG 0x04 /* tgt rw assert MSG */
  101. #define TCR_ASSERT_CD 0x02 /* tgt rw assert CD */
  102. #define TCR_ASSERT_IO 0x01 /* tgt rw assert IO */
  103. #define STATUS_REG 4 /* ro */
  104. /*
  105.  * Note : a set bit indicates an active signal, driven by us or another 
  106.  * device.
  107.  */
  108. #define SR_RST 0x80
  109. #define SR_BSY 0x40
  110. #define SR_REQ 0x20
  111. #define SR_MSG 0x10
  112. #define SR_CD 0x08
  113. #define SR_IO 0x04
  114. #define SR_SEL 0x02
  115. #define SR_DBP 0x01
  116. /*
  117.  * Setting a bit in this register will cause an interrupt to be generated when 
  118.  * BSY is false and SEL true and this bit is asserted  on the bus.
  119.  */
  120. #define SELECT_ENABLE_REG 4 /* wo */
  121. #define BUS_AND_STATUS_REG 5 /* ro */
  122. #define BASR_END_DMA_TRANSFER 0x80 /* ro set on end of transfer */
  123. #define BASR_DRQ 0x40 /* ro mirror of DRQ pin */
  124. #define BASR_PARITY_ERROR 0x20 /* ro parity error detected */
  125. #define BASR_IRQ 0x10 /* ro mirror of IRQ pin */
  126. #define BASR_PHASE_MATCH 0x08 /* ro Set when MSG CD IO match TCR */
  127. #define BASR_BUSY_ERROR 0x04 /* ro Unexpected change to inactive state */
  128. #define BASR_ATN  0x02 /* ro BUS status */
  129. #define BASR_ACK 0x01 /* ro BUS status */
  130. /* Write any value to this register to start a DMA send */
  131. #define START_DMA_SEND_REG 5 /* wo */
  132. /* 
  133.  * Used in DMA transfer mode, data is latched from the SCSI bus on
  134.  * the falling edge of REQ (ini) or ACK (tgt)
  135.  */
  136. #define INPUT_DATA_REG 6 /* ro */
  137. /* Write any value to this register to start a DMA receive */
  138. #define START_DMA_TARGET_RECEIVE_REG 6 /* wo */
  139. /* Read this register to clear interrupt conditions */
  140. #define RESET_PARITY_INTERRUPT_REG 7 /* ro */
  141. /* Write any value to this register to start an ini mode DMA receive */
  142. #define START_DMA_INITIATOR_RECEIVE_REG 7 /* wo */
  143. #define C400_CONTROL_STATUS_REG NCR53C400_register_offset-8 /* rw */
  144. #define CSR_RESET              0x80 /* wo  Resets 53c400 */
  145. #define CSR_53C80_REG          0x80 /* ro  5380 registers busy */
  146. #define CSR_TRANS_DIR          0x40 /* rw  Data transfer direction */
  147. #define CSR_SCSI_BUFF_INTR     0x20 /* rw  Enable int on transfer ready */
  148. #define CSR_53C80_INTR         0x10 /* rw  Enable 53c80 interrupts */
  149. #define CSR_SHARED_INTR        0x08 /* rw  Interrupt sharing */
  150. #define CSR_HOST_BUF_NOT_RDY   0x04 /* ro  Is Host buffer ready */
  151. #define CSR_SCSI_BUF_RDY       0x02 /* ro  SCSI buffer read */
  152. #define CSR_GATED_53C80_IRQ    0x01 /* ro  Last block xferred */
  153. #if 0
  154. #define CSR_BASE CSR_SCSI_BUFF_INTR | CSR_53C80_INTR
  155. #else
  156. #define CSR_BASE CSR_53C80_INTR
  157. #endif
  158. /* Number of 128-byte blocks to be transferred */
  159. #define C400_BLOCK_COUNTER_REG   NCR53C400_register_offset-7 /* rw */
  160. /* Resume transfer after disconnect */
  161. #define C400_RESUME_TRANSFER_REG NCR53C400_register_offset-6 /* wo */
  162. /* Access to host buffer stack */
  163. #define C400_HOST_BUFFER         NCR53C400_register_offset-4 /* rw */
  164. /* Note : PHASE_* macros are based on the values of the STATUS register */
  165. #define PHASE_MASK  (SR_MSG | SR_CD | SR_IO)
  166. #define PHASE_DATAOUT 0
  167. #define PHASE_DATAIN SR_IO
  168. #define PHASE_CMDOUT SR_CD
  169. #define PHASE_STATIN (SR_CD | SR_IO)
  170. #define PHASE_MSGOUT (SR_MSG | SR_CD)
  171. #define PHASE_MSGIN (SR_MSG | SR_CD | SR_IO)
  172. #define PHASE_UNKNOWN 0xff
  173. /* 
  174.  * Convert status register phase to something we can use to set phase in 
  175.  * the target register so we can get phase mismatch interrupts on DMA 
  176.  * transfers.
  177.  */
  178. #define PHASE_SR_TO_TCR(phase) ((phase) >> 2)
  179. /*
  180.  * The internal should_disconnect() function returns these based on the 
  181.  * expected length of a disconnect if a device supports disconnect/
  182.  * reconnect.
  183.  */
  184. #define DISCONNECT_NONE 0
  185. #define DISCONNECT_TIME_TO_DATA 1
  186. #define DISCONNECT_LONG 2
  187. /* 
  188.  * These are "special" values for the tag parameter passed to NCR5380_select.
  189.  */
  190. #define TAG_NEXT -1 /* Use next free tag */
  191. #define TAG_NONE -2 /* 
  192.  * Establish I_T_L nexus instead of I_T_L_Q
  193.  * even on SCSI-II devices.
  194.  */
  195. /*
  196.  * These are "special" values for the irq and dma_channel fields of the 
  197.  * Scsi_Host structure
  198.  */
  199. #define IRQ_NONE 255
  200. #define DMA_NONE 255
  201. #define IRQ_AUTO 254
  202. #define DMA_AUTO 254
  203. #define PORT_AUTO 0xffff /* autoprobe io port for 53c400a */
  204. #define FLAG_HAS_LAST_BYTE_SENT 1 /* NCR53c81 or better */
  205. #define FLAG_CHECK_LAST_BYTE_SENT 2 /* Only test once */
  206. #define FLAG_NCR53C400 4 /* NCR53c400 */
  207. #define FLAG_NO_PSEUDO_DMA 8 /* Inhibit DMA */
  208. #define FLAG_DTC3181E 16 /* DTC3181E */
  209. #ifndef ASM
  210. struct NCR5380_hostdata {
  211. NCR5380_implementation_fields; /* implementation specific */
  212. unsigned char id_mask, id_higher_mask; /* 1 << id, all bits greater */
  213. unsigned char targets_present; /* targets we have connected
  214.    to, so we can call a select
  215.    failure a retryable condition */
  216. volatile unsigned char busy[8]; /* index = target, bit = lun */
  217. #if defined(REAL_DMA) || defined(REAL_DMA_POLL)
  218. volatile int dma_len; /* requested length of DMA */
  219. #endif
  220. volatile unsigned char last_message; /* last message OUT */
  221. volatile Scsi_Cmnd *connected; /* currently connected command */
  222. volatile Scsi_Cmnd *issue_queue; /* waiting to be issued */
  223. volatile Scsi_Cmnd *disconnected_queue; /* waiting for reconnect */
  224. volatile int restart_select; /* we have disconnected,
  225.    used to restart 
  226.    NCR5380_select() */
  227. volatile unsigned aborted:1; /* flag, says aborted */
  228. int flags;
  229. unsigned long time_expires; /* in jiffies, set prior to sleeping */
  230. struct Scsi_Host *next_timer;
  231. int select_time; /* timer in select for target response */
  232. volatile Scsi_Cmnd *selecting;
  233. #ifdef NCR5380_STATS
  234. unsigned timebase; /* Base for time calcs */
  235. long time_read[8]; /* time to do reads */
  236. long time_write[8]; /* time to do writes */
  237. unsigned long bytes_read[8]; /* bytes read */
  238. unsigned long bytes_write[8]; /* bytes written */
  239. unsigned pendingr;
  240. unsigned pendingw;
  241. #endif
  242. };
  243. #ifdef __KERNEL__
  244. static struct Scsi_Host *first_instance; /* linked list of 5380's */
  245. #define dprintk(a,b) do {} while(0)
  246. #define NCR5380_dprint(a,b) do {} while(0)
  247. #define NCR5380_dprint_phase(a,b) do {} while(0)
  248. #if defined(AUTOPROBE_IRQ)
  249. static int NCR5380_probe_irq(struct Scsi_Host *instance, int possible);
  250. #endif
  251. static void NCR5380_init(struct Scsi_Host *instance, int flags);
  252. static void NCR5380_information_transfer(struct Scsi_Host *instance);
  253. #ifndef DONT_USE_INTR
  254. static void NCR5380_intr(int irq, void *dev_id, struct pt_regs *regs);
  255. static void do_NCR5380_intr(int irq, void *dev_id, struct pt_regs *regs);
  256. #endif
  257. static void NCR5380_main(void);
  258. static void NCR5380_print_options(struct Scsi_Host *instance);
  259. static void NCR5380_print_phase(struct Scsi_Host *instance);
  260. static void NCR5380_print(struct Scsi_Host *instance);
  261. #ifndef NCR5380_abort
  262. static
  263. #endif
  264. int NCR5380_abort(Scsi_Cmnd * cmd);
  265. #ifndef NCR5380_reset
  266. static
  267. #endif
  268. int NCR5380_reset(Scsi_Cmnd * cmd, unsigned int reset_flags);
  269. #ifndef NCR5380_queue_command
  270. static
  271. #endif
  272. int NCR5380_queue_command(Scsi_Cmnd * cmd, void (*done) (Scsi_Cmnd *));
  273. static void NCR5380_reselect(struct Scsi_Host *instance);
  274. static int NCR5380_select(struct Scsi_Host *instance, Scsi_Cmnd * cmd, int tag);
  275. #if defined(PSEUDO_DMA) || defined(REAL_DMA) || defined(REAL_DMA_POLL)
  276. static int NCR5380_transfer_dma(struct Scsi_Host *instance, unsigned char *phase, int *count, unsigned char **data);
  277. #endif
  278. static int NCR5380_transfer_pio(struct Scsi_Host *instance, unsigned char *phase, int *count, unsigned char **data);
  279. #if (defined(REAL_DMA) || defined(REAL_DMA_POLL))
  280. #if defined(i386) || defined(__alpha__)
  281. /**
  282.  * NCR5380_pc_dma_setup - setup ISA DMA
  283.  * @instance: adapter to set up
  284.  * @ptr: block to transfer (virtual address)
  285.  * @count: number of bytes to transfer
  286.  * @mode: DMA controller mode to use
  287.  *
  288.  * Program the DMA controller ready to perform an ISA DMA transfer
  289.  * on this chip.
  290.  *
  291.  * Locks: takes and releases the ISA DMA lock.
  292.  */
  293.  
  294. static __inline__ int NCR5380_pc_dma_setup(struct Scsi_Host *instance, unsigned char *ptr, unsigned int count, unsigned char mode)
  295. {
  296. unsigned limit;
  297. unsigned long bus_addr = virt_to_bus(ptr);
  298. unsigned long flags;
  299. if (instance->dma_channel <= 3) {
  300. if (count > 65536)
  301. count = 65536;
  302. limit = 65536 - (bus_addr & 0xFFFF);
  303. } else {
  304. if (count > 65536 * 2)
  305. count = 65536 * 2;
  306. limit = 65536 * 2 - (bus_addr & 0x1FFFF);
  307. }
  308. if (count > limit)
  309. count = limit;
  310. if ((count & 1) || (bus_addr & 1))
  311. panic("scsi%d : attempted unaligned DMA transfern", instance->host_no);
  312. flags=claim_dma_lock();
  313. disable_dma(instance->dma_channel);
  314. clear_dma_ff(instance->dma_channel);
  315. set_dma_addr(instance->dma_channel, bus_addr);
  316. set_dma_count(instance->dma_channel, count);
  317. set_dma_mode(instance->dma_channel, mode);
  318. enable_dma(instance->dma_channel);
  319. release_dma_lock(flags);
  320. return count;
  321. }
  322. /**
  323.  * NCR5380_pc_dma_write_setup - setup ISA DMA write
  324.  * @instance: adapter to set up
  325.  * @ptr: block to transfer (virtual address)
  326.  * @count: number of bytes to transfer
  327.  *
  328.  * Program the DMA controller ready to perform an ISA DMA write to the
  329.  * SCSI controller.
  330.  *
  331.  * Locks: called routines take and release the ISA DMA lock.
  332.  */
  333. static __inline__ int NCR5380_pc_dma_write_setup(struct Scsi_Host *instance, unsigned char *src, unsigned int count)
  334. {
  335. return NCR5380_pc_dma_setup(instance, src, count, DMA_MODE_WRITE);
  336. }
  337. /**
  338.  * NCR5380_pc_dma_read_setup - setup ISA DMA read
  339.  * @instance: adapter to set up
  340.  * @ptr: block to transfer (virtual address)
  341.  * @count: number of bytes to transfer
  342.  *
  343.  * Program the DMA controller ready to perform an ISA DMA read from the
  344.  * SCSI controller.
  345.  *
  346.  * Locks: called routines take and release the ISA DMA lock.
  347.  */
  348. static __inline__ int NCR5380_pc_dma_read_setup(struct Scsi_Host *instance, unsigned char *src, unsigned int count)
  349. {
  350. return NCR5380_pc_dma_setup(instance, src, count, DMA_MODE_READ);
  351. }
  352. /**
  353.  * NCR5380_pc_dma_residual - return bytes left 
  354.  * @instance: adapter
  355.  *
  356.  * Reports the number of bytes left over after the DMA was terminated.
  357.  *
  358.  * Locks: takes and releases the ISA DMA lock.
  359.  */
  360. static __inline__ int NCR5380_pc_dma_residual(struct Scsi_Host *instance)
  361. {
  362. unsigned long flags;
  363. int tmp;
  364. flags = claim_dma_lock();
  365. clear_dma_ff(instance->dma_channel);
  366. tmp = get_dma_residue(instance->dma_channel);
  367. release_dma_lock(flags);
  368. return tmp;
  369. }
  370. #endif /* defined(i386) || defined(__alpha__) */
  371. #endif /* defined(REAL_DMA)  */
  372. #endif /* __KERNEL__ */
  373. #endif /* ndef ASM */
  374. #endif /* NCR5380_H */