5 #define UNSAFE /* Leave interrupts enabled during pseudo-dma I/O */
6 #define xNDEBUG (NDEBUG_INTR+NDEBUG_RESELECTION+\
7 NDEBUG_SELECTION+NDEBUG_ARBITRATION)
8 #define DMA_WORKS_RIGHT
12 * DTC 3180/3280 driver, by
13 * Ray Van Tassle rayvt@comm.mot.com
16 * Trantor T128/T128F/T228 driver by...
20 * (Unix and Linux consulting and custom programming)
24 * DISTRIBUTION RELEASE 1.
26 * For more information, please consult
29 * SCSI Protocol Controller
35 * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
36 * for commands that return with a CHECK CONDITION status.
38 * PSEUDO_DMA - enables PSEUDO-DMA hardware, should give a 3-4X performance
39 * increase compared to polled I/O.
41 * PARITY - enable parity checking. Not supported.
43 * UNSAFE - leave interrupts enabled during pseudo-DMA transfers.
44 * You probably want this.
46 * The card is detected and initialized in one of several ways :
47 * 1. Autoprobe (default) - since the board is memory mapped,
48 * a BIOS signature is scanned for to locate the registers.
49 * An interrupt is triggered to autoprobe for the interrupt
52 * 2. With command line overrides - dtc=address,irq may be
53 * used on the LILO command line to override the defaults.
57 /*----------------------------------------------------------------*/
58 /* the following will set the monitor border color (useful to find
59 where something crashed or gets stuck at */
69 #define rtrc(i) {inb(0x3da); outb(0x31, 0x3c0); outb((i), 0x3c0);}
75 #include <asm/system.h>
76 #include <linux/module.h>
77 #include <linux/signal.h>
78 #include <linux/sched.h>
79 #include <linux/blkdev.h>
80 #include <linux/delay.h>
81 #include <linux/stat.h>
82 #include <linux/string.h>
83 #include <linux/init.h>
84 #include <linux/interrupt.h>
87 #include <scsi/scsi_host.h>
93 #define DTC_PUBLIC_RELEASE 2
95 /*#define DTCDEBUG 0x1*/
96 #define DTCDEBUG_INIT 0x1
97 #define DTCDEBUG_TRANSFER 0x2
100 * The DTC3180 & 3280 boards are memory mapped.
106 /* Offset from DTC_5380_OFFSET */
107 #define DTC_CONTROL_REG 0x100 /* rw */
108 #define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
109 #define CSR_DIR_READ 0x40 /* rw direction, 1 = read 0 = write */
111 #define CSR_RESET 0x80 /* wo Resets 53c400 */
112 #define CSR_5380_REG 0x80 /* ro 5380 registers can be accessed */
113 #define CSR_TRANS_DIR 0x40 /* rw Data transfer direction */
114 #define CSR_SCSI_BUFF_INTR 0x20 /* rw Enable int on transfer ready */
115 #define CSR_5380_INTR 0x10 /* rw Enable 5380 interrupts */
116 #define CSR_SHARED_INTR 0x08 /* rw Interrupt sharing */
117 #define CSR_HOST_BUF_NOT_RDY 0x04 /* ro Host buffer not ready */
118 #define CSR_SCSI_BUF_RDY 0x02 /* ro SCSI buffer ready */
119 #define CSR_GATED_5380_IRQ 0x01 /* ro Last block xferred */
120 #define CSR_INT_BASE (CSR_SCSI_BUFF_INTR | CSR_5380_INTR)
123 #define DTC_BLK_CNT 0x101 /* rw
124 * # of 128-byte blocks to transfer */
127 #define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
129 #define DTC_SWITCH_REG 0x3982 /* ro - DIP switches */
130 #define DTC_RESUME_XFER 0x3982 /* wo - resume data xfer
131 * after disconnect/reconnect*/
133 #define DTC_5380_OFFSET 0x3880 /* 8 registers here, see NCR5380.h */
135 /*!!!! for dtc, it's a 128 byte buffer at 3900 !!! */
136 #define DTC_DATA_BUF 0x3900 /* rw 128 bytes long */
138 static struct override
{
139 unsigned int address
;
143 [] __initdata
= OVERRIDE
;
152 #define NO_OVERRIDES (sizeof(overrides) / sizeof(struct override))
155 unsigned long address
;
157 } bases
[] __initdata
= {
164 #define NO_BASES (sizeof (bases) / sizeof (struct base))
166 static const struct signature
{
170 {"DATA TECHNOLOGY CORPORATION BIOS", 0x25},
173 #define NO_SIGNATURES (sizeof (signatures) / sizeof (struct signature))
177 * Function : dtc_setup(char *str, int *ints)
179 * Purpose : LILO command line initialization of the overrides array,
181 * Inputs : str - unused, ints - array of integer parameters with ints[0]
182 * equal to the number of ints.
186 static void __init
dtc_setup(char *str
, int *ints
)
188 static int commandline_current
= 0;
191 printk("dtc_setup: usage dtc=address,irq\n");
192 else if (commandline_current
< NO_OVERRIDES
) {
193 overrides
[commandline_current
].address
= ints
[1];
194 overrides
[commandline_current
].irq
= ints
[2];
195 for (i
= 0; i
< NO_BASES
; ++i
)
196 if (bases
[i
].address
== ints
[1]) {
200 ++commandline_current
;
206 * Function : int dtc_detect(Scsi_Host_Template * tpnt)
208 * Purpose : detects and initializes DTC 3180/3280 controllers
209 * that were autoprobed, overridden on the LILO command line,
210 * or specified at compile time.
212 * Inputs : tpnt - template for this SCSI adapter.
214 * Returns : 1 if a host adapter was found, 0 if not.
218 static int __init
dtc_detect(Scsi_Host_Template
* tpnt
)
220 static int current_override
= 0, current_base
= 0;
221 struct Scsi_Host
*instance
;
226 tpnt
->proc_name
= "dtc3x80";
227 tpnt
->proc_info
= &dtc_proc_info
;
229 for (count
= 0; current_override
< NO_OVERRIDES
; ++current_override
) {
233 if (overrides
[current_override
].address
) {
234 addr
= overrides
[current_override
].address
;
235 base
= ioremap(addr
, 0x2000);
239 for (; !addr
&& (current_base
< NO_BASES
); ++current_base
) {
240 #if (DTCDEBUG & DTCDEBUG_INIT)
241 printk("scsi-dtc : probing address %08x\n", bases
[current_base
].address
);
243 if (bases
[current_base
].noauto
)
245 base
= ioremap(bases
[current_base
].address
, 0x2000);
248 for (sig
= 0; sig
< NO_SIGNATURES
; ++sig
) {
249 if (check_signature(base
+ signatures
[sig
].offset
, signatures
[sig
].string
, strlen(signatures
[sig
].string
))) {
250 addr
= bases
[current_base
].address
;
251 #if (DTCDEBUG & DTCDEBUG_INIT)
252 printk("scsi-dtc : detected board.\n");
260 #if defined(DTCDEBUG) && (DTCDEBUG & DTCDEBUG_INIT)
261 printk("scsi-dtc : base = %08x\n", addr
);
268 instance
= scsi_register(tpnt
, sizeof(struct NCR5380_hostdata
));
269 if (instance
== NULL
)
272 instance
->base
= addr
;
273 ((struct NCR5380_hostdata
*)(instance
)->hostdata
)->base
= base
;
275 NCR5380_init(instance
, 0);
277 NCR5380_write(DTC_CONTROL_REG
, CSR_5380_INTR
); /* Enable int's */
278 if (overrides
[current_override
].irq
!= IRQ_AUTO
)
279 instance
->irq
= overrides
[current_override
].irq
;
281 instance
->irq
= NCR5380_probe_irq(instance
, DTC_IRQS
);
283 #ifndef DONT_USE_INTR
284 /* With interrupts enabled, it will sometimes hang when doing heavy
285 * reads. So better not enable them until I finger it out. */
286 if (instance
->irq
!= SCSI_IRQ_NONE
)
287 if (request_irq(instance
->irq
, dtc_intr
, SA_INTERRUPT
, "dtc", instance
)) {
288 printk(KERN_ERR
"scsi%d : IRQ%d not free, interrupts disabled\n", instance
->host_no
, instance
->irq
);
289 instance
->irq
= SCSI_IRQ_NONE
;
292 if (instance
->irq
== SCSI_IRQ_NONE
) {
293 printk(KERN_WARNING
"scsi%d : interrupts not enabled. for better interactive performance,\n", instance
->host_no
);
294 printk(KERN_WARNING
"scsi%d : please jumper the board for a free IRQ.\n", instance
->host_no
);
297 if (instance
->irq
!= SCSI_IRQ_NONE
)
298 printk(KERN_WARNING
"scsi%d : interrupts not used. Might as well not jumper it.\n", instance
->host_no
);
299 instance
->irq
= SCSI_IRQ_NONE
;
301 #if defined(DTCDEBUG) && (DTCDEBUG & DTCDEBUG_INIT)
302 printk("scsi%d : irq = %d\n", instance
->host_no
, instance
->irq
);
305 printk(KERN_INFO
"scsi%d : at 0x%05X", instance
->host_no
, (int) instance
->base
);
306 if (instance
->irq
== SCSI_IRQ_NONE
)
307 printk(" interrupts disabled");
309 printk(" irq %d", instance
->irq
);
310 printk(" options CAN_QUEUE=%d CMD_PER_LUN=%d release=%d", CAN_QUEUE
, CMD_PER_LUN
, DTC_PUBLIC_RELEASE
);
311 NCR5380_print_options(instance
);
321 * Function : int dtc_biosparam(Disk * disk, struct block_device *dev, int *ip)
323 * Purpose : Generates a BIOS / DOS compatible H-C-S mapping for
324 * the specified device / size.
326 * Inputs : size = size of device in sectors (512 bytes), dev = block device
327 * major / minor, ip[] = {heads, sectors, cylinders}
329 * Returns : always 0 (success), initializes ip
334 * XXX Most SCSI boards use this mapping, I could be incorrect. Some one
335 * using hard disks on a trantor should verify that this mapping corresponds
336 * to that used by the BIOS / ASPI driver by running the linux fdisk program
337 * and matching the H_C_S coordinates to what DOS uses.
340 static int dtc_biosparam(struct scsi_device
*sdev
, struct block_device
*dev
,
341 sector_t capacity
, int *ip
)
352 /****************************************************************
353 * Function : int NCR5380_pread (struct Scsi_Host *instance,
354 * unsigned char *dst, int len)
356 * Purpose : Fast 5380 pseudo-dma read function, reads len bytes to
359 * Inputs : dst = destination, len = length in bytes
361 * Returns : 0 on success, non zero on a failure such as a watchdog
365 static int dtc_maxi
= 0;
366 static int dtc_wmaxi
= 0;
368 static inline int NCR5380_pread(struct Scsi_Host
*instance
, unsigned char *dst
, int len
)
370 unsigned char *d
= dst
;
371 int i
; /* For counting time spent in the poll-loop */
372 NCR5380_local_declare();
373 NCR5380_setup(instance
);
376 NCR5380_read(RESET_PARITY_INTERRUPT_REG
);
377 NCR5380_write(MODE_REG
, MR_ENABLE_EOP_INTR
| MR_DMA_MODE
);
378 if (instance
->irq
== SCSI_IRQ_NONE
)
379 NCR5380_write(DTC_CONTROL_REG
, CSR_DIR_READ
);
381 NCR5380_write(DTC_CONTROL_REG
, CSR_DIR_READ
| CSR_INT_BASE
);
382 NCR5380_write(DTC_BLK_CNT
, len
>> 7); /* Block count */
386 while (NCR5380_read(DTC_CONTROL_REG
) & CSR_HOST_BUF_NOT_RDY
)
389 memcpy_fromio(d
, base
+ DTC_DATA_BUF
, 128);
393 /*** with int's on, it sometimes hangs after here.
394 * Looks like something makes HBNR go away. */
397 while (!(NCR5380_read(DTC_CONTROL_REG
) & D_CR_ACCESS
))
399 NCR5380_write(MODE_REG
, 0); /* Clear the operating mode */
401 NCR5380_read(RESET_PARITY_INTERRUPT_REG
);
407 /****************************************************************
408 * Function : int NCR5380_pwrite (struct Scsi_Host *instance,
409 * unsigned char *src, int len)
411 * Purpose : Fast 5380 pseudo-dma write function, transfers len bytes from
414 * Inputs : src = source, len = length in bytes
416 * Returns : 0 on success, non zero on a failure such as a watchdog
420 static inline int NCR5380_pwrite(struct Scsi_Host
*instance
, unsigned char *src
, int len
)
423 NCR5380_local_declare();
424 NCR5380_setup(instance
);
426 NCR5380_read(RESET_PARITY_INTERRUPT_REG
);
427 NCR5380_write(MODE_REG
, MR_ENABLE_EOP_INTR
| MR_DMA_MODE
);
428 /* set direction (write) */
429 if (instance
->irq
== SCSI_IRQ_NONE
)
430 NCR5380_write(DTC_CONTROL_REG
, 0);
432 NCR5380_write(DTC_CONTROL_REG
, CSR_5380_INTR
);
433 NCR5380_write(DTC_BLK_CNT
, len
>> 7); /* Block count */
434 for (i
= 0; len
> 0; ++i
) {
436 /* Poll until the host buffer can accept data. */
437 while (NCR5380_read(DTC_CONTROL_REG
) & CSR_HOST_BUF_NOT_RDY
)
440 memcpy_toio(base
+ DTC_DATA_BUF
, src
, 128);
445 while (!(NCR5380_read(DTC_CONTROL_REG
) & D_CR_ACCESS
))
448 /* Wait until the last byte has been sent to the disk */
449 while (!(NCR5380_read(TARGET_COMMAND_REG
) & TCR_LAST_BYTE_SENT
))
452 /* Check for parity error here. fixme. */
453 NCR5380_write(MODE_REG
, 0); /* Clear the operating mode */
460 MODULE_LICENSE("GPL");
464 static int dtc_release(struct Scsi_Host
*shost
)
466 NCR5380_local_declare();
467 NCR5380_setup(shost
);
469 free_irq(shost
->irq
, NULL
);
471 if (shost
->io_port
&& shost
->n_io_port
)
472 release_region(shost
->io_port
, shost
->n_io_port
);
473 scsi_unregister(shost
);
478 static Scsi_Host_Template driver_template
= {
479 .name
= "DTC 3180/3280 ",
480 .detect
= dtc_detect
,
481 .release
= dtc_release
,
482 .queuecommand
= dtc_queue_command
,
483 .eh_abort_handler
= dtc_abort
,
484 .eh_bus_reset_handler
= dtc_bus_reset
,
485 .eh_device_reset_handler
= dtc_device_reset
,
486 .eh_host_reset_handler
= dtc_host_reset
,
487 .bios_param
= dtc_biosparam
,
488 .can_queue
= CAN_QUEUE
,
490 .sg_tablesize
= SG_ALL
,
491 .cmd_per_lun
= CMD_PER_LUN
,
492 .use_clustering
= DISABLE_CLUSTERING
,
494 #include "scsi_module.c"