blob: 38325f979b9046643af6a7f7eac53627720ea828 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#define PSEUDO_DMA
3#define DONT_USE_INTR
4#define UNSAFE /* Leave interrupts enabled during pseudo-dma I/O */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#define DMA_WORKS_RIGHT
6
7
8/*
9 * DTC 3180/3280 driver, by
10 * Ray Van Tassle rayvt@comm.mot.com
11 *
12 * taken from ...
13 * Trantor T128/T128F/T228 driver by...
14 *
15 * Drew Eckhardt
16 * Visionary Computing
17 * (Unix and Linux consulting and custom programming)
18 * drew@colorado.edu
19 * +1 (303) 440-4894
Finn Thain3f9e9862014-11-12 16:11:55 +110020 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * 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
27 * line.
28 *
29 * 2. With command line overrides - dtc=address,irq may be
30 * used on the LILO command line to override the defaults.
31 *
32*/
33
34/*----------------------------------------------------------------*/
35/* the following will set the monitor border color (useful to find
36 where something crashed or gets stuck at */
37/* 1 = blue
38 2 = green
39 3 = cyan
40 4 = red
41 5 = magenta
42 6 = yellow
43 7 = white
44*/
45#if 0
46#define rtrc(i) {inb(0x3da); outb(0x31, 0x3c0); outb((i), 0x3c0);}
47#else
48#define rtrc(i) {}
49#endif
50
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/module.h>
53#include <linux/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#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>
Matthew Wilcox53d5ed62006-10-11 01:22:01 -070060#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <scsi/scsi_host.h>
62#include "dtc.h"
63#define AUTOPROBE_IRQ
64#include "NCR5380.h"
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * The DTC3180 & 3280 boards are memory mapped.
68 *
69 */
70
71/*
72 */
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 */
77
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)
88
89
90#define DTC_BLK_CNT 0x101 /* rw
91 * # of 128-byte blocks to transfer */
92
93
94#define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
95
96#define DTC_SWITCH_REG 0x3982 /* ro - DIP switches */
97#define DTC_RESUME_XFER 0x3982 /* wo - resume data xfer
98 * after disconnect/reconnect*/
99
100#define DTC_5380_OFFSET 0x3880 /* 8 registers here, see NCR5380.h */
101
102/*!!!! for dtc, it's a 128 byte buffer at 3900 !!! */
103#define DTC_DATA_BUF 0x3900 /* rw 128 bytes long */
104
105static struct override {
106 unsigned int address;
107 int irq;
108} overrides
109#ifdef OVERRIDE
110[] __initdata = OVERRIDE;
111#else
Alan Cox1fbe8522007-08-10 14:50:41 -0700112[4] __initdata = {
113 { 0, IRQ_AUTO }, { 0, IRQ_AUTO }, { 0, IRQ_AUTO }, { 0, IRQ_AUTO }
114};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#endif
116
Tobias Klauser6391a112006-06-08 22:23:48 -0700117#define NO_OVERRIDES ARRAY_SIZE(overrides)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119static struct base {
120 unsigned long address;
121 int noauto;
Tobias Klauser6391a112006-06-08 22:23:48 -0700122} bases[] __initdata = {
123 { 0xcc000, 0 },
124 { 0xc8000, 0 },
125 { 0xdc000, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 { 0xd8000, 0 }
127};
128
Tobias Klauser6391a112006-06-08 22:23:48 -0700129#define NO_BASES ARRAY_SIZE(bases)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131static const struct signature {
132 const char *string;
133 int offset;
Tobias Klauser6391a112006-06-08 22:23:48 -0700134} signatures[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 {"DATA TECHNOLOGY CORPORATION BIOS", 0x25},
136};
137
Tobias Klauser6391a112006-06-08 22:23:48 -0700138#define NO_SIGNATURES ARRAY_SIZE(signatures)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140#ifndef MODULE
141/*
142 * Function : dtc_setup(char *str, int *ints)
143 *
144 * Purpose : LILO command line initialization of the overrides array,
Tobias Klauser6391a112006-06-08 22:23:48 -0700145 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 * Inputs : str - unused, ints - array of integer parameters with ints[0]
147 * equal to the number of ints.
148 *
Alan Cox1fbe8522007-08-10 14:50:41 -0700149 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Finn Thain925e4612014-11-12 16:11:49 +1100151static int __init dtc_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Finn Thaind5f7e652016-01-03 16:05:03 +1100153 static int commandline_current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 int i;
Finn Thain925e4612014-11-12 16:11:49 +1100155 int ints[10];
156
157 get_options(str, ARRAY_SIZE(ints), ints);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (ints[0] != 2)
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]) {
165 bases[i].noauto = 1;
166 break;
167 }
168 ++commandline_current;
169 }
Finn Thain925e4612014-11-12 16:11:49 +1100170 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
Finn Thain925e4612014-11-12 16:11:49 +1100172
173__setup("dtc=", dtc_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#endif
175
176/*
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100177 * Function : int dtc_detect(struct scsi_host_template * tpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 *
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.
182 *
183 * Inputs : tpnt - template for this SCSI adapter.
184 *
185 * Returns : 1 if a host adapter was found, 0 if not.
186 *
187*/
188
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100189static int __init dtc_detect(struct scsi_host_template * tpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Finn Thaind5f7e652016-01-03 16:05:03 +1100191 static int current_override, current_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct Scsi_Host *instance;
193 unsigned int addr;
194 void __iomem *base;
195 int sig, count;
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 for (count = 0; current_override < NO_OVERRIDES; ++current_override) {
198 addr = 0;
199 base = NULL;
200
201 if (overrides[current_override].address) {
202 addr = overrides[current_override].address;
203 base = ioremap(addr, 0x2000);
204 if (!base)
205 addr = 0;
206 } else
207 for (; !addr && (current_base < NO_BASES); ++current_base) {
Finn Thain2f7dba92016-01-03 16:05:04 +1100208 dprintk(NDEBUG_INIT, "dtc: probing address 0x%08x\n",
209 (unsigned int)bases[current_base].address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (bases[current_base].noauto)
211 continue;
212 base = ioremap(bases[current_base].address, 0x2000);
213 if (!base)
214 continue;
215 for (sig = 0; sig < NO_SIGNATURES; ++sig) {
216 if (check_signature(base + signatures[sig].offset, signatures[sig].string, strlen(signatures[sig].string))) {
217 addr = bases[current_base].address;
Finn Thain2f7dba92016-01-03 16:05:04 +1100218 dprintk(NDEBUG_INIT, "dtc: detected board\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 goto found;
220 }
221 }
222 iounmap(base);
223 }
224
Finn Thain2f7dba92016-01-03 16:05:04 +1100225 dprintk(NDEBUG_INIT, "dtc: addr = 0x%08x\n", addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 if (!addr)
228 break;
229
230found:
231 instance = scsi_register(tpnt, sizeof(struct NCR5380_hostdata));
232 if (instance == NULL)
233 break;
234
235 instance->base = addr;
236 ((struct NCR5380_hostdata *)(instance)->hostdata)->base = base;
237
238 NCR5380_init(instance, 0);
239
240 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR); /* Enable int's */
241 if (overrides[current_override].irq != IRQ_AUTO)
242 instance->irq = overrides[current_override].irq;
243 else
244 instance->irq = NCR5380_probe_irq(instance, DTC_IRQS);
245
Finn Thain22f5f102014-11-12 16:11:56 +1100246 /* Compatibility with documented NCR5380 kernel parameters */
247 if (instance->irq == 255)
248 instance->irq = NO_IRQ;
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#ifndef DONT_USE_INTR
251 /* With interrupts enabled, it will sometimes hang when doing heavy
252 * reads. So better not enable them until I finger it out. */
Finn Thain22f5f102014-11-12 16:11:56 +1100253 if (instance->irq != NO_IRQ)
Michael Opdenacker4909cc22014-03-05 06:09:41 +0100254 if (request_irq(instance->irq, dtc_intr, 0,
Jeff Garzik1e641662007-11-11 19:52:05 -0500255 "dtc", instance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 printk(KERN_ERR "scsi%d : IRQ%d not free, interrupts disabled\n", instance->host_no, instance->irq);
Finn Thain22f5f102014-11-12 16:11:56 +1100257 instance->irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
259
Finn Thain22f5f102014-11-12 16:11:56 +1100260 if (instance->irq == NO_IRQ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 printk(KERN_WARNING "scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no);
262 printk(KERN_WARNING "scsi%d : please jumper the board for a free IRQ.\n", instance->host_no);
263 }
264#else
Finn Thain22f5f102014-11-12 16:11:56 +1100265 if (instance->irq != NO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 printk(KERN_WARNING "scsi%d : interrupts not used. Might as well not jumper it.\n", instance->host_no);
Finn Thain22f5f102014-11-12 16:11:56 +1100267 instance->irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268#endif
Finn Thain2f7dba92016-01-03 16:05:04 +1100269 dprintk(NDEBUG_INIT, "scsi%d : irq = %d\n",
270 instance->host_no, instance->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 ++current_override;
273 ++count;
274 }
275 return count;
276}
277
278/*
279 * Function : int dtc_biosparam(Disk * disk, struct block_device *dev, int *ip)
280 *
281 * Purpose : Generates a BIOS / DOS compatible H-C-S mapping for
282 * the specified device / size.
283 *
284 * Inputs : size = size of device in sectors (512 bytes), dev = block device
285 * major / minor, ip[] = {heads, sectors, cylinders}
286 *
287 * Returns : always 0 (success), initializes ip
288 *
289*/
290
291/*
292 * XXX Most SCSI boards use this mapping, I could be incorrect. Some one
293 * using hard disks on a trantor should verify that this mapping corresponds
294 * to that used by the BIOS / ASPI driver by running the linux fdisk program
295 * and matching the H_C_S coordinates to what DOS uses.
296*/
297
298static int dtc_biosparam(struct scsi_device *sdev, struct block_device *dev,
299 sector_t capacity, int *ip)
300{
301 int size = capacity;
302
303 ip[0] = 64;
304 ip[1] = 32;
305 ip[2] = size >> 11;
306 return 0;
307}
308
309
310/****************************************************************
311 * Function : int NCR5380_pread (struct Scsi_Host *instance,
312 * unsigned char *dst, int len)
313 *
314 * Purpose : Fast 5380 pseudo-dma read function, reads len bytes to
315 * dst
316 *
317 * Inputs : dst = destination, len = length in bytes
318 *
319 * Returns : 0 on success, non zero on a failure such as a watchdog
320 * timeout.
321*/
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, int len)
324{
325 unsigned char *d = dst;
326 int i; /* For counting time spent in the poll-loop */
Finn Thaina9c2dc42014-11-12 16:11:59 +1100327 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 NCR5380_local_declare();
329 NCR5380_setup(instance);
330
331 i = 0;
332 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
333 NCR5380_write(MODE_REG, MR_ENABLE_EOP_INTR | MR_DMA_MODE);
Finn Thain22f5f102014-11-12 16:11:56 +1100334 if (instance->irq == NO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ);
336 else
337 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ | CSR_INT_BASE);
338 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
339 rtrc(1);
340 while (len > 0) {
341 rtrc(2);
342 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
343 ++i;
344 rtrc(3);
345 memcpy_fromio(d, base + DTC_DATA_BUF, 128);
346 d += 128;
347 len -= 128;
348 rtrc(7);
349 /*** with int's on, it sometimes hangs after here.
350 * Looks like something makes HBNR go away. */
351 }
352 rtrc(4);
353 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
354 ++i;
355 NCR5380_write(MODE_REG, 0); /* Clear the operating mode */
356 rtrc(0);
357 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
Finn Thaina9c2dc42014-11-12 16:11:59 +1100358 if (i > hostdata->spin_max_r)
359 hostdata->spin_max_r = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return (0);
361}
362
363/****************************************************************
364 * Function : int NCR5380_pwrite (struct Scsi_Host *instance,
365 * unsigned char *src, int len)
366 *
367 * Purpose : Fast 5380 pseudo-dma write function, transfers len bytes from
368 * src
369 *
370 * Inputs : src = source, len = length in bytes
371 *
372 * Returns : 0 on success, non zero on a failure such as a watchdog
373 * timeout.
374*/
375
376static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, int len)
377{
378 int i;
Finn Thaina9c2dc42014-11-12 16:11:59 +1100379 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 NCR5380_local_declare();
381 NCR5380_setup(instance);
382
383 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
384 NCR5380_write(MODE_REG, MR_ENABLE_EOP_INTR | MR_DMA_MODE);
385 /* set direction (write) */
Finn Thain22f5f102014-11-12 16:11:56 +1100386 if (instance->irq == NO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 NCR5380_write(DTC_CONTROL_REG, 0);
388 else
389 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR);
390 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
391 for (i = 0; len > 0; ++i) {
392 rtrc(5);
393 /* Poll until the host buffer can accept data. */
394 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
395 ++i;
396 rtrc(3);
397 memcpy_toio(base + DTC_DATA_BUF, src, 128);
398 src += 128;
399 len -= 128;
400 }
401 rtrc(4);
402 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
403 ++i;
404 rtrc(6);
405 /* Wait until the last byte has been sent to the disk */
406 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT))
407 ++i;
408 rtrc(7);
409 /* Check for parity error here. fixme. */
410 NCR5380_write(MODE_REG, 0); /* Clear the operating mode */
411 rtrc(0);
Finn Thaina9c2dc42014-11-12 16:11:59 +1100412 if (i > hostdata->spin_max_w)
413 hostdata->spin_max_w = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return (0);
415}
416
417MODULE_LICENSE("GPL");
418
419#include "NCR5380.c"
420
421static int dtc_release(struct Scsi_Host *shost)
422{
423 NCR5380_local_declare();
424 NCR5380_setup(shost);
Finn Thain22f5f102014-11-12 16:11:56 +1100425 if (shost->irq != NO_IRQ)
Jeff Garzik1e641662007-11-11 19:52:05 -0500426 free_irq(shost->irq, shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 NCR5380_exit(shost);
428 if (shost->io_port && shost->n_io_port)
429 release_region(shost->io_port, shost->n_io_port);
430 scsi_unregister(shost);
431 iounmap(base);
432 return 0;
433}
434
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100435static struct scsi_host_template driver_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 .name = "DTC 3180/3280 ",
437 .detect = dtc_detect,
438 .release = dtc_release,
Finn Thain4d3d2a52014-11-12 16:11:52 +1100439 .proc_name = "dtc3x80",
440 .show_info = dtc_show_info,
441 .write_info = dtc_write_info,
Finn Thain8c325132014-11-12 16:11:58 +1100442 .info = dtc_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 .queuecommand = dtc_queue_command,
444 .eh_abort_handler = dtc_abort,
445 .eh_bus_reset_handler = dtc_bus_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 .bios_param = dtc_biosparam,
447 .can_queue = CAN_QUEUE,
448 .this_id = 7,
449 .sg_tablesize = SG_ALL,
450 .cmd_per_lun = CMD_PER_LUN,
451 .use_clustering = DISABLE_CLUSTERING,
452};
453#include "scsi_module.c"