5 * DTC 3180/3280 driver, by
6 * Ray Van Tassle rayvt@comm.mot.com
9 * Trantor T128/T128F/T228 driver by...
13 * (Unix and Linux consulting and custom programming)
19 * The card is detected and initialized in one of several ways :
20 * 1. Autoprobe (default) - since the board is memory mapped,
21 * a BIOS signature is scanned for to locate the registers.
22 * An interrupt is triggered to autoprobe for the interrupt
25 * 2. With command line overrides - dtc=address,irq may be
26 * used on the LILO command line to override the defaults.
30 /*----------------------------------------------------------------*/
31 /* the following will set the monitor border color (useful to find
32 where something crashed or gets stuck at */
42 #define rtrc(i) {inb(0x3da); outb(0x31, 0x3c0); outb((i), 0x3c0);}
48 #include <linux/module.h>
49 #include <linux/blkdev.h>
50 #include <linux/string.h>
51 #include <linux/init.h>
52 #include <linux/interrupt.h>
54 #include <scsi/scsi_host.h>
61 * The DTC3180 & 3280 boards are memory mapped.
67 /* Offset from DTC_5380_OFFSET */
68 #define DTC_CONTROL_REG 0x100 /* rw */
69 #define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
70 #define CSR_DIR_READ 0x40 /* rw direction, 1 = read 0 = write */
72 #define CSR_RESET 0x80 /* wo Resets 53c400 */
73 #define CSR_5380_REG 0x80 /* ro 5380 registers can be accessed */
74 #define CSR_TRANS_DIR 0x40 /* rw Data transfer direction */
75 #define CSR_SCSI_BUFF_INTR 0x20 /* rw Enable int on transfer ready */
76 #define CSR_5380_INTR 0x10 /* rw Enable 5380 interrupts */
77 #define CSR_SHARED_INTR 0x08 /* rw Interrupt sharing */
78 #define CSR_HOST_BUF_NOT_RDY 0x04 /* ro Host buffer not ready */
79 #define CSR_SCSI_BUF_RDY 0x02 /* ro SCSI buffer ready */
80 #define CSR_GATED_5380_IRQ 0x01 /* ro Last block xferred */
81 #define CSR_INT_BASE (CSR_SCSI_BUFF_INTR | CSR_5380_INTR)
84 #define DTC_BLK_CNT 0x101 /* rw
85 * # of 128-byte blocks to transfer */
88 #define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
90 #define DTC_SWITCH_REG 0x3982 /* ro - DIP switches */
91 #define DTC_RESUME_XFER 0x3982 /* wo - resume data xfer
92 * after disconnect/reconnect*/
94 #define DTC_5380_OFFSET 0x3880 /* 8 registers here, see NCR5380.h */
96 /*!!!! for dtc, it's a 128 byte buffer at 3900 !!! */
97 #define DTC_DATA_BUF 0x3900 /* rw 128 bytes long */
99 static struct override
{
100 unsigned int address
;
104 [] __initdata
= OVERRIDE
;
107 { 0, IRQ_AUTO
}, { 0, IRQ_AUTO
}, { 0, IRQ_AUTO
}, { 0, IRQ_AUTO
}
111 #define NO_OVERRIDES ARRAY_SIZE(overrides)
114 unsigned long address
;
116 } bases
[] __initdata
= {
123 #define NO_BASES ARRAY_SIZE(bases)
125 static const struct signature
{
129 {"DATA TECHNOLOGY CORPORATION BIOS", 0x25},
132 #define NO_SIGNATURES ARRAY_SIZE(signatures)
136 * Function : dtc_setup(char *str, int *ints)
138 * Purpose : LILO command line initialization of the overrides array,
140 * Inputs : str - unused, ints - array of integer parameters with ints[0]
141 * equal to the number of ints.
145 static int __init
dtc_setup(char *str
)
147 static int commandline_current
;
151 get_options(str
, ARRAY_SIZE(ints
), ints
);
153 printk("dtc_setup: usage dtc=address,irq\n");
154 else if (commandline_current
< NO_OVERRIDES
) {
155 overrides
[commandline_current
].address
= ints
[1];
156 overrides
[commandline_current
].irq
= ints
[2];
157 for (i
= 0; i
< NO_BASES
; ++i
)
158 if (bases
[i
].address
== ints
[1]) {
162 ++commandline_current
;
167 __setup("dtc=", dtc_setup
);
171 * Function : int dtc_detect(struct scsi_host_template * tpnt)
173 * Purpose : detects and initializes DTC 3180/3280 controllers
174 * that were autoprobed, overridden on the LILO command line,
175 * or specified at compile time.
177 * Inputs : tpnt - template for this SCSI adapter.
179 * Returns : 1 if a host adapter was found, 0 if not.
183 static int __init
dtc_detect(struct scsi_host_template
* tpnt
)
185 static int current_override
, current_base
;
186 struct Scsi_Host
*instance
;
191 for (count
= 0; current_override
< NO_OVERRIDES
; ++current_override
) {
195 if (overrides
[current_override
].address
) {
196 addr
= overrides
[current_override
].address
;
197 base
= ioremap(addr
, 0x2000);
201 for (; !addr
&& (current_base
< NO_BASES
); ++current_base
) {
202 dprintk(NDEBUG_INIT
, "dtc: probing address 0x%08x\n",
203 (unsigned int)bases
[current_base
].address
);
204 if (bases
[current_base
].noauto
)
206 base
= ioremap(bases
[current_base
].address
, 0x2000);
209 for (sig
= 0; sig
< NO_SIGNATURES
; ++sig
) {
210 if (check_signature(base
+ signatures
[sig
].offset
, signatures
[sig
].string
, strlen(signatures
[sig
].string
))) {
211 addr
= bases
[current_base
].address
;
212 dprintk(NDEBUG_INIT
, "dtc: detected board\n");
219 dprintk(NDEBUG_INIT
, "dtc: addr = 0x%08x\n", addr
);
225 instance
= scsi_register(tpnt
, sizeof(struct NCR5380_hostdata
));
226 if (instance
== NULL
)
229 instance
->base
= addr
;
230 ((struct NCR5380_hostdata
*)(instance
)->hostdata
)->base
= base
;
232 if (NCR5380_init(instance
, FLAG_NO_DMA_FIXUP
))
235 NCR5380_maybe_reset_bus(instance
);
237 NCR5380_write(DTC_CONTROL_REG
, CSR_5380_INTR
); /* Enable int's */
238 if (overrides
[current_override
].irq
!= IRQ_AUTO
)
239 instance
->irq
= overrides
[current_override
].irq
;
241 instance
->irq
= NCR5380_probe_irq(instance
, DTC_IRQS
);
243 /* Compatibility with documented NCR5380 kernel parameters */
244 if (instance
->irq
== 255)
245 instance
->irq
= NO_IRQ
;
247 #ifndef DONT_USE_INTR
248 /* With interrupts enabled, it will sometimes hang when doing heavy
249 * reads. So better not enable them until I finger it out. */
250 if (instance
->irq
!= NO_IRQ
)
251 if (request_irq(instance
->irq
, dtc_intr
, 0,
253 printk(KERN_ERR
"scsi%d : IRQ%d not free, interrupts disabled\n", instance
->host_no
, instance
->irq
);
254 instance
->irq
= NO_IRQ
;
257 if (instance
->irq
== NO_IRQ
) {
258 printk(KERN_WARNING
"scsi%d : interrupts not enabled. for better interactive performance,\n", instance
->host_no
);
259 printk(KERN_WARNING
"scsi%d : please jumper the board for a free IRQ.\n", instance
->host_no
);
262 if (instance
->irq
!= NO_IRQ
)
263 printk(KERN_WARNING
"scsi%d : interrupts not used. Might as well not jumper it.\n", instance
->host_no
);
264 instance
->irq
= NO_IRQ
;
266 dprintk(NDEBUG_INIT
, "scsi%d : irq = %d\n",
267 instance
->host_no
, instance
->irq
);
275 scsi_unregister(instance
);
282 * Function : int dtc_biosparam(Disk * disk, struct block_device *dev, int *ip)
284 * Purpose : Generates a BIOS / DOS compatible H-C-S mapping for
285 * the specified device / size.
287 * Inputs : size = size of device in sectors (512 bytes), dev = block device
288 * major / minor, ip[] = {heads, sectors, cylinders}
290 * Returns : always 0 (success), initializes ip
295 * XXX Most SCSI boards use this mapping, I could be incorrect. Some one
296 * using hard disks on a trantor should verify that this mapping corresponds
297 * to that used by the BIOS / ASPI driver by running the linux fdisk program
298 * and matching the H_C_S coordinates to what DOS uses.
301 static int dtc_biosparam(struct scsi_device
*sdev
, struct block_device
*dev
,
302 sector_t capacity
, int *ip
)
313 /****************************************************************
314 * Function : int NCR5380_pread (struct Scsi_Host *instance,
315 * unsigned char *dst, int len)
317 * Purpose : Fast 5380 pseudo-dma read function, reads len bytes to
320 * Inputs : dst = destination, len = length in bytes
322 * Returns : 0 on success, non zero on a failure such as a watchdog
326 static inline int NCR5380_pread(struct Scsi_Host
*instance
, unsigned char *dst
, int len
)
328 unsigned char *d
= dst
;
329 int i
; /* For counting time spent in the poll-loop */
330 struct NCR5380_hostdata
*hostdata
= shost_priv(instance
);
333 if (instance
->irq
== NO_IRQ
)
334 NCR5380_write(DTC_CONTROL_REG
, CSR_DIR_READ
);
336 NCR5380_write(DTC_CONTROL_REG
, CSR_DIR_READ
| CSR_INT_BASE
);
337 NCR5380_write(DTC_BLK_CNT
, len
>> 7); /* Block count */
341 while (NCR5380_read(DTC_CONTROL_REG
) & CSR_HOST_BUF_NOT_RDY
)
344 memcpy_fromio(d
, hostdata
->base
+ DTC_DATA_BUF
, 128);
348 /*** with int's on, it sometimes hangs after here.
349 * Looks like something makes HBNR go away. */
352 while (!(NCR5380_read(DTC_CONTROL_REG
) & D_CR_ACCESS
))
355 if (i
> hostdata
->spin_max_r
)
356 hostdata
->spin_max_r
= i
;
360 /****************************************************************
361 * Function : int NCR5380_pwrite (struct Scsi_Host *instance,
362 * unsigned char *src, int len)
364 * Purpose : Fast 5380 pseudo-dma write function, transfers len bytes from
367 * Inputs : src = source, len = length in bytes
369 * Returns : 0 on success, non zero on a failure such as a watchdog
373 static inline int NCR5380_pwrite(struct Scsi_Host
*instance
, unsigned char *src
, int len
)
376 struct NCR5380_hostdata
*hostdata
= shost_priv(instance
);
378 if (instance
->irq
== NO_IRQ
)
379 NCR5380_write(DTC_CONTROL_REG
, 0);
381 NCR5380_write(DTC_CONTROL_REG
, CSR_5380_INTR
);
382 NCR5380_write(DTC_BLK_CNT
, len
>> 7); /* Block count */
383 for (i
= 0; len
> 0; ++i
) {
385 /* Poll until the host buffer can accept data. */
386 while (NCR5380_read(DTC_CONTROL_REG
) & CSR_HOST_BUF_NOT_RDY
)
389 memcpy_toio(hostdata
->base
+ DTC_DATA_BUF
, src
, 128);
394 while (!(NCR5380_read(DTC_CONTROL_REG
) & D_CR_ACCESS
))
397 /* Wait until the last byte has been sent to the disk */
398 while (!(NCR5380_read(TARGET_COMMAND_REG
) & TCR_LAST_BYTE_SENT
))
401 /* Check for parity error here. fixme. */
403 if (i
> hostdata
->spin_max_w
)
404 hostdata
->spin_max_w
= i
;
408 static int dtc_dma_xfer_len(struct scsi_cmnd
*cmd
)
410 int transfersize
= cmd
->transfersize
;
412 /* Limit transfers to 32K, for xx400 & xx406
413 * pseudoDMA that transfers in 128 bytes blocks.
415 if (transfersize
> 32 * 1024 && cmd
->SCp
.this_residual
&&
416 !(cmd
->SCp
.this_residual
% transfersize
))
417 transfersize
= 32 * 1024;
422 MODULE_LICENSE("GPL");
426 static int dtc_release(struct Scsi_Host
*shost
)
428 struct NCR5380_hostdata
*hostdata
= shost_priv(shost
);
430 if (shost
->irq
!= NO_IRQ
)
431 free_irq(shost
->irq
, shost
);
433 scsi_unregister(shost
);
434 iounmap(hostdata
->base
);
438 static struct scsi_host_template driver_template
= {
439 .name
= "DTC 3180/3280",
440 .detect
= dtc_detect
,
441 .release
= dtc_release
,
442 .proc_name
= "dtc3x80",
443 .show_info
= dtc_show_info
,
444 .write_info
= dtc_write_info
,
446 .queuecommand
= dtc_queue_command
,
447 .eh_abort_handler
= dtc_abort
,
448 .eh_bus_reset_handler
= dtc_bus_reset
,
449 .bios_param
= dtc_biosparam
,
452 .sg_tablesize
= SG_ALL
,
454 .use_clustering
= DISABLE_CLUSTERING
,
455 .cmd_size
= NCR5380_CMD_SIZE
,
458 #include "scsi_module.c"