4 #define UNSAFE /* Leave interrupts enabled during pseudo-dma I/O */
5 #define DMA_WORKS_RIGHT
9 * DTC 3180/3280 driver, by
10 * Ray Van Tassle rayvt@comm.mot.com
13 * Trantor T128/T128F/T228 driver by...
17 * (Unix and Linux consulting and custom programming)
23 * The card is detected and initialized in one of several ways :
24 * 1. Autoprobe (default) - since the board is memory mapped,
25 * a BIOS signature is scanned for to locate the registers.
26 * An interrupt is triggered to autoprobe for the interrupt
29 * 2. With command line overrides - dtc=address,irq may be
30 * used on the LILO command line to override the defaults.
34 /*----------------------------------------------------------------*/
35 /* the following will set the monitor border color (useful to find
36 where something crashed or gets stuck at */
46 #define rtrc(i) {inb(0x3da); outb(0x31, 0x3c0); outb((i), 0x3c0);}
52 #include <linux/module.h>
53 #include <linux/signal.h>
54 #include <linux/blkdev.h>
55 #include <linux/delay.h>
56 #include <linux/stat.h>
57 #include <linux/string.h>
58 #include <linux/init.h>
59 #include <linux/interrupt.h>
61 #include <scsi/scsi_host.h>
67 * The DTC3180 & 3280 boards are memory mapped.
73 /* Offset from DTC_5380_OFFSET */
74 #define DTC_CONTROL_REG 0x100 /* rw */
75 #define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
76 #define CSR_DIR_READ 0x40 /* rw direction, 1 = read 0 = write */
78 #define CSR_RESET 0x80 /* wo Resets 53c400 */
79 #define CSR_5380_REG 0x80 /* ro 5380 registers can be accessed */
80 #define CSR_TRANS_DIR 0x40 /* rw Data transfer direction */
81 #define CSR_SCSI_BUFF_INTR 0x20 /* rw Enable int on transfer ready */
82 #define CSR_5380_INTR 0x10 /* rw Enable 5380 interrupts */
83 #define CSR_SHARED_INTR 0x08 /* rw Interrupt sharing */
84 #define CSR_HOST_BUF_NOT_RDY 0x04 /* ro Host buffer not ready */
85 #define CSR_SCSI_BUF_RDY 0x02 /* ro SCSI buffer ready */
86 #define CSR_GATED_5380_IRQ 0x01 /* ro Last block xferred */
87 #define CSR_INT_BASE (CSR_SCSI_BUFF_INTR | CSR_5380_INTR)
90 #define DTC_BLK_CNT 0x101 /* rw
91 * # of 128-byte blocks to transfer */
94 #define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
96 #define DTC_SWITCH_REG 0x3982 /* ro - DIP switches */
97 #define DTC_RESUME_XFER 0x3982 /* wo - resume data xfer
98 * after disconnect/reconnect*/
100 #define DTC_5380_OFFSET 0x3880 /* 8 registers here, see NCR5380.h */
102 /*!!!! for dtc, it's a 128 byte buffer at 3900 !!! */
103 #define DTC_DATA_BUF 0x3900 /* rw 128 bytes long */
105 static struct override {
106 unsigned int address;
110 [] __initdata = OVERRIDE;
113 { 0, IRQ_AUTO }, { 0, IRQ_AUTO }, { 0, IRQ_AUTO }, { 0, IRQ_AUTO }
117 #define NO_OVERRIDES ARRAY_SIZE(overrides)
120 unsigned long address;
122 } bases[] __initdata = {
129 #define NO_BASES ARRAY_SIZE(bases)
131 static const struct signature {
135 {"DATA TECHNOLOGY CORPORATION BIOS", 0x25},
138 #define NO_SIGNATURES ARRAY_SIZE(signatures)
142 * Function : dtc_setup(char *str, int *ints)
144 * Purpose : LILO command line initialization of the overrides array,
146 * Inputs : str - unused, ints - array of integer parameters with ints[0]
147 * equal to the number of ints.
151 static int __init dtc_setup(char *str)
153 static int commandline_current = 0;
157 get_options(str, ARRAY_SIZE(ints), ints);
159 printk("dtc_setup: usage dtc=address,irq\n");
160 else if (commandline_current < NO_OVERRIDES) {
161 overrides[commandline_current].address = ints[1];
162 overrides[commandline_current].irq = ints[2];
163 for (i = 0; i < NO_BASES; ++i)
164 if (bases[i].address == ints[1]) {
168 ++commandline_current;
173 __setup("dtc=", dtc_setup);
177 * Function : int dtc_detect(struct scsi_host_template * tpnt)
179 * Purpose : detects and initializes DTC 3180/3280 controllers
180 * that were autoprobed, overridden on the LILO command line,
181 * or specified at compile time.
183 * Inputs : tpnt - template for this SCSI adapter.
185 * Returns : 1 if a host adapter was found, 0 if not.
189 static int __init dtc_detect(struct scsi_host_template * tpnt)
191 static int current_override = 0, current_base = 0;
192 struct Scsi_Host *instance;
197 for (count = 0; current_override < NO_OVERRIDES; ++current_override) {
201 if (overrides[current_override].address) {
202 addr = overrides[current_override].address;
203 base = ioremap(addr, 0x2000);
207 for (; !addr && (current_base < NO_BASES); ++current_base) {
208 #if (DTCDEBUG & DTCDEBUG_INIT)
209 printk(KERN_DEBUG "scsi-dtc : probing address %08x\n", bases[current_base].address);
211 if (bases[current_base].noauto)
213 base = ioremap(bases[current_base].address, 0x2000);
216 for (sig = 0; sig < NO_SIGNATURES; ++sig) {
217 if (check_signature(base + signatures[sig].offset, signatures[sig].string, strlen(signatures[sig].string))) {
218 addr = bases[current_base].address;
219 #if (DTCDEBUG & DTCDEBUG_INIT)
220 printk(KERN_DEBUG "scsi-dtc : detected board.\n");
228 #if defined(DTCDEBUG) && (DTCDEBUG & DTCDEBUG_INIT)
229 printk(KERN_DEBUG "scsi-dtc : base = %08x\n", addr);
236 instance = scsi_register(tpnt, sizeof(struct NCR5380_hostdata));
237 if (instance == NULL)
240 instance->base = addr;
241 ((struct NCR5380_hostdata *)(instance)->hostdata)->base = base;
243 NCR5380_init(instance, 0);
245 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR); /* Enable int's */
246 if (overrides[current_override].irq != IRQ_AUTO)
247 instance->irq = overrides[current_override].irq;
249 instance->irq = NCR5380_probe_irq(instance, DTC_IRQS);
251 /* Compatibility with documented NCR5380 kernel parameters */
252 if (instance->irq == 255)
253 instance->irq = NO_IRQ;
255 #ifndef DONT_USE_INTR
256 /* With interrupts enabled, it will sometimes hang when doing heavy
257 * reads. So better not enable them until I finger it out. */
258 if (instance->irq != NO_IRQ)
259 if (request_irq(instance->irq, dtc_intr, 0,
261 printk(KERN_ERR "scsi%d : IRQ%d not free, interrupts disabled\n", instance->host_no, instance->irq);
262 instance->irq = NO_IRQ;
265 if (instance->irq == NO_IRQ) {
266 printk(KERN_WARNING "scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no);
267 printk(KERN_WARNING "scsi%d : please jumper the board for a free IRQ.\n", instance->host_no);
270 if (instance->irq != NO_IRQ)
271 printk(KERN_WARNING "scsi%d : interrupts not used. Might as well not jumper it.\n", instance->host_no);
272 instance->irq = NO_IRQ;
274 #if defined(DTCDEBUG) && (DTCDEBUG & DTCDEBUG_INIT)
275 printk("scsi%d : irq = %d\n", instance->host_no, instance->irq);
285 * Function : int dtc_biosparam(Disk * disk, struct block_device *dev, int *ip)
287 * Purpose : Generates a BIOS / DOS compatible H-C-S mapping for
288 * the specified device / size.
290 * Inputs : size = size of device in sectors (512 bytes), dev = block device
291 * major / minor, ip[] = {heads, sectors, cylinders}
293 * Returns : always 0 (success), initializes ip
298 * XXX Most SCSI boards use this mapping, I could be incorrect. Some one
299 * using hard disks on a trantor should verify that this mapping corresponds
300 * to that used by the BIOS / ASPI driver by running the linux fdisk program
301 * and matching the H_C_S coordinates to what DOS uses.
304 static int dtc_biosparam(struct scsi_device *sdev, struct block_device *dev,
305 sector_t capacity, int *ip)
316 /****************************************************************
317 * Function : int NCR5380_pread (struct Scsi_Host *instance,
318 * unsigned char *dst, int len)
320 * Purpose : Fast 5380 pseudo-dma read function, reads len bytes to
323 * Inputs : dst = destination, len = length in bytes
325 * Returns : 0 on success, non zero on a failure such as a watchdog
329 static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, int len)
331 unsigned char *d = dst;
332 int i; /* For counting time spent in the poll-loop */
333 struct NCR5380_hostdata *hostdata = shost_priv(instance);
334 NCR5380_local_declare();
335 NCR5380_setup(instance);
338 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
339 NCR5380_write(MODE_REG, MR_ENABLE_EOP_INTR | MR_DMA_MODE);
340 if (instance->irq == NO_IRQ)
341 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ);
343 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ | CSR_INT_BASE);
344 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
348 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
351 memcpy_fromio(d, base + DTC_DATA_BUF, 128);
355 /*** with int's on, it sometimes hangs after here.
356 * Looks like something makes HBNR go away. */
359 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
361 NCR5380_write(MODE_REG, 0); /* Clear the operating mode */
363 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
364 if (i > hostdata->spin_max_r)
365 hostdata->spin_max_r = i;
369 /****************************************************************
370 * Function : int NCR5380_pwrite (struct Scsi_Host *instance,
371 * unsigned char *src, int len)
373 * Purpose : Fast 5380 pseudo-dma write function, transfers len bytes from
376 * Inputs : src = source, len = length in bytes
378 * Returns : 0 on success, non zero on a failure such as a watchdog
382 static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, int len)
385 struct NCR5380_hostdata *hostdata = shost_priv(instance);
386 NCR5380_local_declare();
387 NCR5380_setup(instance);
389 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
390 NCR5380_write(MODE_REG, MR_ENABLE_EOP_INTR | MR_DMA_MODE);
391 /* set direction (write) */
392 if (instance->irq == NO_IRQ)
393 NCR5380_write(DTC_CONTROL_REG, 0);
395 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR);
396 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
397 for (i = 0; len > 0; ++i) {
399 /* Poll until the host buffer can accept data. */
400 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
403 memcpy_toio(base + DTC_DATA_BUF, src, 128);
408 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
411 /* Wait until the last byte has been sent to the disk */
412 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT))
415 /* Check for parity error here. fixme. */
416 NCR5380_write(MODE_REG, 0); /* Clear the operating mode */
418 if (i > hostdata->spin_max_w)
419 hostdata->spin_max_w = i;
423 MODULE_LICENSE("GPL");
427 static int dtc_release(struct Scsi_Host *shost)
429 NCR5380_local_declare();
430 NCR5380_setup(shost);
431 if (shost->irq != NO_IRQ)
432 free_irq(shost->irq, shost);
434 if (shost->io_port && shost->n_io_port)
435 release_region(shost->io_port, shost->n_io_port);
436 scsi_unregister(shost);
441 static struct scsi_host_template driver_template = {
442 .name = "DTC 3180/3280 ",
443 .detect = dtc_detect,
444 .release = dtc_release,
445 .proc_name = "dtc3x80",
446 .show_info = dtc_show_info,
447 .write_info = dtc_write_info,
449 .queuecommand = dtc_queue_command,
450 .eh_abort_handler = dtc_abort,
451 .eh_bus_reset_handler = dtc_bus_reset,
452 .bios_param = dtc_biosparam,
453 .can_queue = CAN_QUEUE,
455 .sg_tablesize = SG_ALL,
456 .cmd_per_lun = CMD_PER_LUN,
457 .use_clustering = DISABLE_CLUSTERING,
459 #include "scsi_module.c"