37 #define NCR5380_PUBLIC_RELEASE 7
38 #define NCR53C400_PUBLIC_RELEASE 2
40 #define NDEBUG_ARBITRATION 0x1
41 #define NDEBUG_AUTOSENSE 0x2
42 #define NDEBUG_DMA 0x4
43 #define NDEBUG_HANDSHAKE 0x8
44 #define NDEBUG_INFORMATION 0x10
45 #define NDEBUG_INIT 0x20
46 #define NDEBUG_INTR 0x40
47 #define NDEBUG_LINKED 0x80
48 #define NDEBUG_MAIN 0x100
49 #define NDEBUG_NO_DATAOUT 0x200
50 #define NDEBUG_NO_WRITE 0x400
51 #define NDEBUG_PIO 0x800
52 #define NDEBUG_PSEUDO_DMA 0x1000
53 #define NDEBUG_QUEUES 0x2000
54 #define NDEBUG_RESELECTION 0x4000
55 #define NDEBUG_SELECTION 0x8000
56 #define NDEBUG_USLEEP 0x10000
57 #define NDEBUG_LAST_BYTE_SENT 0x20000
58 #define NDEBUG_RESTART_SELECT 0x40000
59 #define NDEBUG_EXTENDED 0x80000
60 #define NDEBUG_C400_PREAD 0x100000
61 #define NDEBUG_C400_PWRITE 0x200000
62 #define NDEBUG_LISTS 0x400000
64 #define NDEBUG_ANY 0xFFFFFFFFUL
73 #define OUTPUT_DATA_REG 0
74 #define CURRENT_SCSI_DATA_REG 0
76 #define INITIATOR_COMMAND_REG 1
77 #define ICR_ASSERT_RST 0x80
78 #define ICR_ARBITRATION_PROGRESS 0x40
79 #define ICR_TRI_STATE 0x40
80 #define ICR_ARBITRATION_LOST 0x20
81 #define ICR_DIFF_ENABLE 0x20
82 #define ICR_ASSERT_ACK 0x10
83 #define ICR_ASSERT_BSY 0x08
84 #define ICR_ASSERT_SEL 0x04
85 #define ICR_ASSERT_ATN 0x02
86 #define ICR_ASSERT_DATA 0x01
89 #define ICR_BASE ICR_DIFF_ENABLE
100 #define MR_BLOCK_DMA_MODE 0x80
101 #define MR_TARGET 0x40
102 #define MR_ENABLE_PAR_CHECK 0x20
103 #define MR_ENABLE_PAR_INTR 0x10
104 #define MR_ENABLE_EOP_INTR 0x08
105 #define MR_MONITOR_BSY 0x04
106 #define MR_DMA_MODE 0x02
107 #define MR_ARBITRATE 0x01
110 #define MR_BASE MR_ENABLE_PAR_CHECK
115 #define TARGET_COMMAND_REG 3
116 #define TCR_LAST_BYTE_SENT 0x80
117 #define TCR_ASSERT_REQ 0x08
118 #define TCR_ASSERT_MSG 0x04
119 #define TCR_ASSERT_CD 0x02
120 #define TCR_ASSERT_IO 0x01
140 #define SELECT_ENABLE_REG 4
142 #define BUS_AND_STATUS_REG 5
143 #define BASR_END_DMA_TRANSFER 0x80
144 #define BASR_DRQ 0x40
145 #define BASR_PARITY_ERROR 0x20
146 #define BASR_IRQ 0x10
147 #define BASR_PHASE_MATCH 0x08
148 #define BASR_BUSY_ERROR 0x04
149 #define BASR_ATN 0x02
150 #define BASR_ACK 0x01
153 #define START_DMA_SEND_REG 5
159 #define INPUT_DATA_REG 6
162 #define START_DMA_TARGET_RECEIVE_REG 6
165 #define RESET_PARITY_INTERRUPT_REG 7
168 #define START_DMA_INITIATOR_RECEIVE_REG 7
170 #define C400_CONTROL_STATUS_REG NCR53C400_register_offset-8
172 #define CSR_RESET 0x80
173 #define CSR_53C80_REG 0x80
174 #define CSR_TRANS_DIR 0x40
175 #define CSR_SCSI_BUFF_INTR 0x20
176 #define CSR_53C80_INTR 0x10
177 #define CSR_SHARED_INTR 0x08
178 #define CSR_HOST_BUF_NOT_RDY 0x04
179 #define CSR_SCSI_BUF_RDY 0x02
180 #define CSR_GATED_53C80_IRQ 0x01
183 #define CSR_BASE CSR_SCSI_BUFF_INTR | CSR_53C80_INTR
185 #define CSR_BASE CSR_53C80_INTR
189 #define C400_BLOCK_COUNTER_REG NCR53C400_register_offset-7
192 #define C400_RESUME_TRANSFER_REG NCR53C400_register_offset-6
195 #define C400_HOST_BUFFER NCR53C400_register_offset-4
199 #define PHASE_MASK (SR_MSG | SR_CD | SR_IO)
201 #define PHASE_DATAOUT 0
202 #define PHASE_DATAIN SR_IO
203 #define PHASE_CMDOUT SR_CD
204 #define PHASE_STATIN (SR_CD | SR_IO)
205 #define PHASE_MSGOUT (SR_MSG | SR_CD)
206 #define PHASE_MSGIN (SR_MSG | SR_CD | SR_IO)
207 #define PHASE_UNKNOWN 0xff
215 #define PHASE_SR_TO_TCR(phase) ((phase) >> 2)
223 #define DISCONNECT_NONE 0
224 #define DISCONNECT_TIME_TO_DATA 1
225 #define DISCONNECT_LONG 2
242 #define SCSI_IRQ_NONE 255
246 #define PORT_AUTO 0xffff
248 #define FLAG_HAS_LAST_BYTE_SENT 1
249 #define FLAG_CHECK_LAST_BYTE_SENT 2
250 #define FLAG_NCR53C400 4
251 #define FLAG_NO_PSEUDO_DMA 8
252 #define FLAG_DTC3181E 16
262 volatile unsigned char busy[8];
263 #if defined(REAL_DMA) || defined(REAL_DMA_POLL)
264 volatile int dma_len;
283 unsigned long bytes_read[8];
284 unsigned long bytes_write[8];
295 #define dprintk(a,b) do {} while(0)
296 #define NCR5380_dprint(a,b) do {} while(0)
297 #define NCR5380_dprint_phase(a,b) do {} while(0)
299 #if defined(AUTOPROBE_IRQ)
300 static int NCR5380_probe_irq(
struct Scsi_Host *instance,
int possible);
303 static void NCR5380_exit(
struct Scsi_Host *instance);
304 static void NCR5380_information_transfer(
struct Scsi_Host *instance);
305 #ifndef DONT_USE_INTR
311 static void NCR5380_print_phase(
struct Scsi_Host *instance);
312 static void NCR5380_print(
struct Scsi_Host *instance);
320 static void NCR5380_reselect(
struct Scsi_Host *instance);
322 #if defined(PSEUDO_DMA) || defined(REAL_DMA) || defined(REAL_DMA_POLL)
323 static int NCR5380_transfer_dma(
struct Scsi_Host *instance,
unsigned char *
phase,
int *
count,
unsigned char **
data);
325 static int NCR5380_transfer_pio(
struct Scsi_Host *instance,
unsigned char *
phase,
int *
count,
unsigned char **
data);
327 #if (defined(REAL_DMA) || defined(REAL_DMA_POLL))
329 #if defined(i386) || defined(__alpha__)
353 limit = 65536 - (bus_addr & 0xFFFF);
355 if (count > 65536 * 2)
357 limit = 65536 * 2 - (bus_addr & 0x1FFFF);
363 if ((count & 1) || (bus_addr & 1))
364 panic(
"scsi%d : attempted unaligned DMA transfer\n", instance->
host_no);
390 static __inline__ int NCR5380_pc_dma_write_setup(
struct Scsi_Host *instance,
unsigned char *
src,
unsigned int count)
392 return NCR5380_pc_dma_setup(instance, src, count,
DMA_MODE_WRITE);
407 static __inline__ int NCR5380_pc_dma_read_setup(
struct Scsi_Host *instance,
unsigned char *
src,
unsigned int count)
409 return NCR5380_pc_dma_setup(instance, src, count,
DMA_MODE_READ);