5 #define UNSAFE /* Leave interrupts enabled during pseudo-dma I/O */
6 #define DMA_WORKS_RIGHT
10 * DTC 3180/3280 driver, by
11 * Ray Van Tassle rayvt@comm.mot.com
14 * Trantor T128/T128F/T228 driver by...
18 * (Unix and Linux consulting and custom programming)
22 * DISTRIBUTION RELEASE 1.
24 * For more information, please consult
27 * SCSI Protocol Controller
33 * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
34 * for commands that return with a CHECK CONDITION status.
36 * PSEUDO_DMA - enables PSEUDO-DMA hardware, should give a 3-4X performance
37 * increase compared to polled I/O.
39 * PARITY - enable parity checking. Not supported.
41 * UNSAFE - leave interrupts enabled during pseudo-DMA transfers.
42 * You probably want this.
44 * The card is detected and initialized in one of several ways :
45 * 1. Autoprobe (default) - since the board is memory mapped,
46 * a BIOS signature is scanned for to locate the registers.
47 * An interrupt is triggered to autoprobe for the interrupt
50 * 2. With command line overrides - dtc=address,irq may be
51 * used on the LILO command line to override the defaults.
55 /*----------------------------------------------------------------*/
56 /* the following will set the monitor border color (useful to find
57 where something crashed or gets stuck at */
67 #define rtrc(i) {inb(0x3da); outb(0x31, 0x3c0); outb((i), 0x3c0);}
73 #include <linux/module.h>
74 #include <linux/signal.h>
75 #include <linux/blkdev.h>
76 #include <linux/delay.h>
77 #include <linux/stat.h>
78 #include <linux/string.h>
79 #include <linux/init.h>
80 #include <linux/interrupt.h>
83 #include <scsi/scsi_host.h>
89 #define DTC_PUBLIC_RELEASE 2
92 * The DTC3180 & 3280 boards are memory mapped.
98 /* Offset from DTC_5380_OFFSET */
99 #define DTC_CONTROL_REG 0x100 /* rw */
100 #define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
101 #define CSR_DIR_READ 0x40 /* rw direction, 1 = read 0 = write */
103 #define CSR_RESET 0x80 /* wo Resets 53c400 */
104 #define CSR_5380_REG 0x80 /* ro 5380 registers can be accessed */
105 #define CSR_TRANS_DIR 0x40 /* rw Data transfer direction */
106 #define CSR_SCSI_BUFF_INTR 0x20 /* rw Enable int on transfer ready */
107 #define CSR_5380_INTR 0x10 /* rw Enable 5380 interrupts */
108 #define CSR_SHARED_INTR 0x08 /* rw Interrupt sharing */
109 #define CSR_HOST_BUF_NOT_RDY 0x04 /* ro Host buffer not ready */
110 #define CSR_SCSI_BUF_RDY 0x02 /* ro SCSI buffer ready */
111 #define CSR_GATED_5380_IRQ 0x01 /* ro Last block xferred */
112 #define CSR_INT_BASE (CSR_SCSI_BUFF_INTR | CSR_5380_INTR)
115 #define DTC_BLK_CNT 0x101 /* rw
116 * # of 128-byte blocks to transfer */
119 #define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
121 #define DTC_SWITCH_REG 0x3982 /* ro - DIP switches */
122 #define DTC_RESUME_XFER 0x3982 /* wo - resume data xfer
123 * after disconnect/reconnect*/
125 #define DTC_5380_OFFSET 0x3880 /* 8 registers here, see NCR5380.h */
127 /*!!!! for dtc, it's a 128 byte buffer at 3900 !!! */
128 #define DTC_DATA_BUF 0x3900 /* rw 128 bytes long */
130 static struct override
{
131 unsigned int address
;
135 [] __initdata
= OVERRIDE
;
138 { 0, IRQ_AUTO
}, { 0, IRQ_AUTO
}, { 0, IRQ_AUTO
}, { 0, IRQ_AUTO
}
142 #define NO_OVERRIDES ARRAY_SIZE(overrides)
145 unsigned long address
;
147 } bases
[] __initdata
= {
154 #define NO_BASES ARRAY_SIZE(bases)
156 static const struct signature
{
160 {"DATA TECHNOLOGY CORPORATION BIOS", 0x25},
163 #define NO_SIGNATURES ARRAY_SIZE(signatures)
167 * Function : dtc_setup(char *str, int *ints)
169 * Purpose : LILO command line initialization of the overrides array,
171 * Inputs : str - unused, ints - array of integer parameters with ints[0]
172 * equal to the number of ints.
176 static void __init
dtc_setup(char *str
, int *ints
)
178 static int commandline_current
= 0;
181 printk("dtc_setup: usage dtc=address,irq\n");
182 else if (commandline_current
< NO_OVERRIDES
) {
183 overrides
[commandline_current
].address
= ints
[1];
184 overrides
[commandline_current
].irq
= ints
[2];
185 for (i
= 0; i
< NO_BASES
; ++i
)
186 if (bases
[i
].address
== ints
[1]) {
190 ++commandline_current
;
196 * Function : int dtc_detect(struct scsi_host_template * tpnt)
198 * Purpose : detects and initializes DTC 3180/3280 controllers
199 * that were autoprobed, overridden on the LILO command line,
200 * or specified at compile time.
202 * Inputs : tpnt - template for this SCSI adapter.
204 * Returns : 1 if a host adapter was found, 0 if not.
208 static int __init
dtc_detect(struct scsi_host_template
* tpnt
)
210 static int current_override
= 0, current_base
= 0;
211 struct Scsi_Host
*instance
;
216 tpnt
->proc_name
= "dtc3x80";
217 tpnt
->show_info
= dtc_show_info
;
218 tpnt
->write_info
= dtc_write_info
;
220 for (count
= 0; current_override
< NO_OVERRIDES
; ++current_override
) {
224 if (overrides
[current_override
].address
) {
225 addr
= overrides
[current_override
].address
;
226 base
= ioremap(addr
, 0x2000);
230 for (; !addr
&& (current_base
< NO_BASES
); ++current_base
) {
231 #if (DTCDEBUG & DTCDEBUG_INIT)
232 printk(KERN_DEBUG
"scsi-dtc : probing address %08x\n", bases
[current_base
].address
);
234 if (bases
[current_base
].noauto
)
236 base
= ioremap(bases
[current_base
].address
, 0x2000);
239 for (sig
= 0; sig
< NO_SIGNATURES
; ++sig
) {
240 if (check_signature(base
+ signatures
[sig
].offset
, signatures
[sig
].string
, strlen(signatures
[sig
].string
))) {
241 addr
= bases
[current_base
].address
;
242 #if (DTCDEBUG & DTCDEBUG_INIT)
243 printk(KERN_DEBUG
"scsi-dtc : detected board.\n");
251 #if defined(DTCDEBUG) && (DTCDEBUG & DTCDEBUG_INIT)
252 printk(KERN_DEBUG
"scsi-dtc : base = %08x\n", addr
);
259 instance
= scsi_register(tpnt
, sizeof(struct NCR5380_hostdata
));
260 if (instance
== NULL
)
263 instance
->base
= addr
;
264 ((struct NCR5380_hostdata
*)(instance
)->hostdata
)->base
= base
;
266 NCR5380_init(instance
, 0);
268 NCR5380_write(DTC_CONTROL_REG
, CSR_5380_INTR
); /* Enable int's */
269 if (overrides
[current_override
].irq
!= IRQ_AUTO
)
270 instance
->irq
= overrides
[current_override
].irq
;
272 instance
->irq
= NCR5380_probe_irq(instance
, DTC_IRQS
);
274 #ifndef DONT_USE_INTR
275 /* With interrupts enabled, it will sometimes hang when doing heavy
276 * reads. So better not enable them until I finger it out. */
277 if (instance
->irq
!= SCSI_IRQ_NONE
)
278 if (request_irq(instance
->irq
, dtc_intr
, 0,
280 printk(KERN_ERR
"scsi%d : IRQ%d not free, interrupts disabled\n", instance
->host_no
, instance
->irq
);
281 instance
->irq
= SCSI_IRQ_NONE
;
284 if (instance
->irq
== SCSI_IRQ_NONE
) {
285 printk(KERN_WARNING
"scsi%d : interrupts not enabled. for better interactive performance,\n", instance
->host_no
);
286 printk(KERN_WARNING
"scsi%d : please jumper the board for a free IRQ.\n", instance
->host_no
);
289 if (instance
->irq
!= SCSI_IRQ_NONE
)
290 printk(KERN_WARNING
"scsi%d : interrupts not used. Might as well not jumper it.\n", instance
->host_no
);
291 instance
->irq
= SCSI_IRQ_NONE
;
293 #if defined(DTCDEBUG) && (DTCDEBUG & DTCDEBUG_INIT)
294 printk("scsi%d : irq = %d\n", instance
->host_no
, instance
->irq
);
297 printk(KERN_INFO
"scsi%d : at 0x%05X", instance
->host_no
, (int) instance
->base
);
298 if (instance
->irq
== SCSI_IRQ_NONE
)
299 printk(" interrupts disabled");
301 printk(" irq %d", instance
->irq
);
302 printk(" options CAN_QUEUE=%d CMD_PER_LUN=%d release=%d", CAN_QUEUE
, CMD_PER_LUN
, DTC_PUBLIC_RELEASE
);
303 NCR5380_print_options(instance
);
313 * Function : int dtc_biosparam(Disk * disk, struct block_device *dev, int *ip)
315 * Purpose : Generates a BIOS / DOS compatible H-C-S mapping for
316 * the specified device / size.
318 * Inputs : size = size of device in sectors (512 bytes), dev = block device
319 * major / minor, ip[] = {heads, sectors, cylinders}
321 * Returns : always 0 (success), initializes ip
326 * XXX Most SCSI boards use this mapping, I could be incorrect. Some one
327 * using hard disks on a trantor should verify that this mapping corresponds
328 * to that used by the BIOS / ASPI driver by running the linux fdisk program
329 * and matching the H_C_S coordinates to what DOS uses.
332 static int dtc_biosparam(struct scsi_device
*sdev
, struct block_device
*dev
,
333 sector_t capacity
, int *ip
)
344 /****************************************************************
345 * Function : int NCR5380_pread (struct Scsi_Host *instance,
346 * unsigned char *dst, int len)
348 * Purpose : Fast 5380 pseudo-dma read function, reads len bytes to
351 * Inputs : dst = destination, len = length in bytes
353 * Returns : 0 on success, non zero on a failure such as a watchdog
357 static int dtc_maxi
= 0;
358 static int dtc_wmaxi
= 0;
360 static inline int NCR5380_pread(struct Scsi_Host
*instance
, unsigned char *dst
, int len
)
362 unsigned char *d
= dst
;
363 int i
; /* For counting time spent in the poll-loop */
364 NCR5380_local_declare();
365 NCR5380_setup(instance
);
368 NCR5380_read(RESET_PARITY_INTERRUPT_REG
);
369 NCR5380_write(MODE_REG
, MR_ENABLE_EOP_INTR
| MR_DMA_MODE
);
370 if (instance
->irq
== SCSI_IRQ_NONE
)
371 NCR5380_write(DTC_CONTROL_REG
, CSR_DIR_READ
);
373 NCR5380_write(DTC_CONTROL_REG
, CSR_DIR_READ
| CSR_INT_BASE
);
374 NCR5380_write(DTC_BLK_CNT
, len
>> 7); /* Block count */
378 while (NCR5380_read(DTC_CONTROL_REG
) & CSR_HOST_BUF_NOT_RDY
)
381 memcpy_fromio(d
, base
+ DTC_DATA_BUF
, 128);
385 /*** with int's on, it sometimes hangs after here.
386 * Looks like something makes HBNR go away. */
389 while (!(NCR5380_read(DTC_CONTROL_REG
) & D_CR_ACCESS
))
391 NCR5380_write(MODE_REG
, 0); /* Clear the operating mode */
393 NCR5380_read(RESET_PARITY_INTERRUPT_REG
);
399 /****************************************************************
400 * Function : int NCR5380_pwrite (struct Scsi_Host *instance,
401 * unsigned char *src, int len)
403 * Purpose : Fast 5380 pseudo-dma write function, transfers len bytes from
406 * Inputs : src = source, len = length in bytes
408 * Returns : 0 on success, non zero on a failure such as a watchdog
412 static inline int NCR5380_pwrite(struct Scsi_Host
*instance
, unsigned char *src
, int len
)
415 NCR5380_local_declare();
416 NCR5380_setup(instance
);
418 NCR5380_read(RESET_PARITY_INTERRUPT_REG
);
419 NCR5380_write(MODE_REG
, MR_ENABLE_EOP_INTR
| MR_DMA_MODE
);
420 /* set direction (write) */
421 if (instance
->irq
== SCSI_IRQ_NONE
)
422 NCR5380_write(DTC_CONTROL_REG
, 0);
424 NCR5380_write(DTC_CONTROL_REG
, CSR_5380_INTR
);
425 NCR5380_write(DTC_BLK_CNT
, len
>> 7); /* Block count */
426 for (i
= 0; len
> 0; ++i
) {
428 /* Poll until the host buffer can accept data. */
429 while (NCR5380_read(DTC_CONTROL_REG
) & CSR_HOST_BUF_NOT_RDY
)
432 memcpy_toio(base
+ DTC_DATA_BUF
, src
, 128);
437 while (!(NCR5380_read(DTC_CONTROL_REG
) & D_CR_ACCESS
))
440 /* Wait until the last byte has been sent to the disk */
441 while (!(NCR5380_read(TARGET_COMMAND_REG
) & TCR_LAST_BYTE_SENT
))
444 /* Check for parity error here. fixme. */
445 NCR5380_write(MODE_REG
, 0); /* Clear the operating mode */
452 MODULE_LICENSE("GPL");
456 static int dtc_release(struct Scsi_Host
*shost
)
458 NCR5380_local_declare();
459 NCR5380_setup(shost
);
461 free_irq(shost
->irq
, shost
);
463 if (shost
->io_port
&& shost
->n_io_port
)
464 release_region(shost
->io_port
, shost
->n_io_port
);
465 scsi_unregister(shost
);
470 static struct scsi_host_template driver_template
= {
471 .name
= "DTC 3180/3280 ",
472 .detect
= dtc_detect
,
473 .release
= dtc_release
,
474 .queuecommand
= dtc_queue_command
,
475 .eh_abort_handler
= dtc_abort
,
476 .eh_bus_reset_handler
= dtc_bus_reset
,
477 .bios_param
= dtc_biosparam
,
478 .can_queue
= CAN_QUEUE
,
480 .sg_tablesize
= SG_ALL
,
481 .cmd_per_lun
= CMD_PER_LUN
,
482 .use_clustering
= DISABLE_CLUSTERING
,
484 #include "scsi_module.c"