blob: 010d9b13aae7d20a369ba1158b0d9b09915fccfc [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)
Finn Thain0ad0eff2016-01-03 16:05:21 +1100233 goto out_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 instance->base = addr;
236 ((struct NCR5380_hostdata *)(instance)->hostdata)->base = base;
237
Finn Thain0ad0eff2016-01-03 16:05:21 +1100238 if (NCR5380_init(instance, 0))
239 goto out_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Finn Thainb6488f92016-01-03 16:05:08 +1100241 NCR5380_maybe_reset_bus(instance);
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR); /* Enable int's */
244 if (overrides[current_override].irq != IRQ_AUTO)
245 instance->irq = overrides[current_override].irq;
246 else
247 instance->irq = NCR5380_probe_irq(instance, DTC_IRQS);
248
Finn Thain22f5f102014-11-12 16:11:56 +1100249 /* Compatibility with documented NCR5380 kernel parameters */
250 if (instance->irq == 255)
251 instance->irq = NO_IRQ;
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253#ifndef DONT_USE_INTR
254 /* With interrupts enabled, it will sometimes hang when doing heavy
255 * reads. So better not enable them until I finger it out. */
Finn Thain22f5f102014-11-12 16:11:56 +1100256 if (instance->irq != NO_IRQ)
Michael Opdenacker4909cc22014-03-05 06:09:41 +0100257 if (request_irq(instance->irq, dtc_intr, 0,
Jeff Garzik1e641662007-11-11 19:52:05 -0500258 "dtc", instance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 printk(KERN_ERR "scsi%d : IRQ%d not free, interrupts disabled\n", instance->host_no, instance->irq);
Finn Thain22f5f102014-11-12 16:11:56 +1100260 instance->irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
262
Finn Thain22f5f102014-11-12 16:11:56 +1100263 if (instance->irq == NO_IRQ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 printk(KERN_WARNING "scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no);
265 printk(KERN_WARNING "scsi%d : please jumper the board for a free IRQ.\n", instance->host_no);
266 }
267#else
Finn Thain22f5f102014-11-12 16:11:56 +1100268 if (instance->irq != NO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 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 +1100270 instance->irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271#endif
Finn Thain2f7dba92016-01-03 16:05:04 +1100272 dprintk(NDEBUG_INIT, "scsi%d : irq = %d\n",
273 instance->host_no, instance->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 ++current_override;
276 ++count;
277 }
278 return count;
Finn Thain0ad0eff2016-01-03 16:05:21 +1100279
280out_unregister:
281 scsi_unregister(instance);
282out_unmap:
283 iounmap(base);
284 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
287/*
288 * Function : int dtc_biosparam(Disk * disk, struct block_device *dev, int *ip)
289 *
290 * Purpose : Generates a BIOS / DOS compatible H-C-S mapping for
291 * the specified device / size.
292 *
293 * Inputs : size = size of device in sectors (512 bytes), dev = block device
294 * major / minor, ip[] = {heads, sectors, cylinders}
295 *
296 * Returns : always 0 (success), initializes ip
297 *
298*/
299
300/*
301 * XXX Most SCSI boards use this mapping, I could be incorrect. Some one
302 * using hard disks on a trantor should verify that this mapping corresponds
303 * to that used by the BIOS / ASPI driver by running the linux fdisk program
304 * and matching the H_C_S coordinates to what DOS uses.
305*/
306
307static int dtc_biosparam(struct scsi_device *sdev, struct block_device *dev,
308 sector_t capacity, int *ip)
309{
310 int size = capacity;
311
312 ip[0] = 64;
313 ip[1] = 32;
314 ip[2] = size >> 11;
315 return 0;
316}
317
318
319/****************************************************************
320 * Function : int NCR5380_pread (struct Scsi_Host *instance,
321 * unsigned char *dst, int len)
322 *
323 * Purpose : Fast 5380 pseudo-dma read function, reads len bytes to
324 * dst
325 *
326 * Inputs : dst = destination, len = length in bytes
327 *
328 * Returns : 0 on success, non zero on a failure such as a watchdog
329 * timeout.
330*/
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, int len)
333{
334 unsigned char *d = dst;
335 int i; /* For counting time spent in the poll-loop */
Finn Thaina9c2dc42014-11-12 16:11:59 +1100336 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 i = 0;
339 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
340 NCR5380_write(MODE_REG, MR_ENABLE_EOP_INTR | MR_DMA_MODE);
Finn Thain22f5f102014-11-12 16:11:56 +1100341 if (instance->irq == NO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ);
343 else
344 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ | CSR_INT_BASE);
345 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
346 rtrc(1);
347 while (len > 0) {
348 rtrc(2);
349 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
350 ++i;
351 rtrc(3);
Finn Thain54d8fe42016-01-03 16:05:06 +1100352 memcpy_fromio(d, hostdata->base + DTC_DATA_BUF, 128);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 d += 128;
354 len -= 128;
355 rtrc(7);
356 /*** with int's on, it sometimes hangs after here.
357 * Looks like something makes HBNR go away. */
358 }
359 rtrc(4);
360 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
361 ++i;
362 NCR5380_write(MODE_REG, 0); /* Clear the operating mode */
363 rtrc(0);
364 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
Finn Thaina9c2dc42014-11-12 16:11:59 +1100365 if (i > hostdata->spin_max_r)
366 hostdata->spin_max_r = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return (0);
368}
369
370/****************************************************************
371 * Function : int NCR5380_pwrite (struct Scsi_Host *instance,
372 * unsigned char *src, int len)
373 *
374 * Purpose : Fast 5380 pseudo-dma write function, transfers len bytes from
375 * src
376 *
377 * Inputs : src = source, len = length in bytes
378 *
379 * Returns : 0 on success, non zero on a failure such as a watchdog
380 * timeout.
381*/
382
383static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, int len)
384{
385 int i;
Finn Thaina9c2dc42014-11-12 16:11:59 +1100386 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
389 NCR5380_write(MODE_REG, MR_ENABLE_EOP_INTR | MR_DMA_MODE);
390 /* set direction (write) */
Finn Thain22f5f102014-11-12 16:11:56 +1100391 if (instance->irq == NO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 NCR5380_write(DTC_CONTROL_REG, 0);
393 else
394 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR);
395 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
396 for (i = 0; len > 0; ++i) {
397 rtrc(5);
398 /* Poll until the host buffer can accept data. */
399 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
400 ++i;
401 rtrc(3);
Finn Thain54d8fe42016-01-03 16:05:06 +1100402 memcpy_toio(hostdata->base + DTC_DATA_BUF, src, 128);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 src += 128;
404 len -= 128;
405 }
406 rtrc(4);
407 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
408 ++i;
409 rtrc(6);
410 /* Wait until the last byte has been sent to the disk */
411 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT))
412 ++i;
413 rtrc(7);
414 /* Check for parity error here. fixme. */
415 NCR5380_write(MODE_REG, 0); /* Clear the operating mode */
416 rtrc(0);
Finn Thaina9c2dc42014-11-12 16:11:59 +1100417 if (i > hostdata->spin_max_w)
418 hostdata->spin_max_w = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return (0);
420}
421
Finn Thainff3d4572016-01-03 16:05:25 +1100422static int dtc_dma_xfer_len(struct scsi_cmnd *cmd)
423{
424 int transfersize = cmd->transfersize;
425
426 /* Limit transfers to 32K, for xx400 & xx406
427 * pseudoDMA that transfers in 128 bytes blocks.
428 */
429 if (transfersize > 32 * 1024 && cmd->SCp.this_residual &&
430 !(cmd->SCp.this_residual % transfersize))
431 transfersize = 32 * 1024;
432
433 return transfersize;
434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436MODULE_LICENSE("GPL");
437
438#include "NCR5380.c"
439
440static int dtc_release(struct Scsi_Host *shost)
441{
Finn Thain54d8fe42016-01-03 16:05:06 +1100442 struct NCR5380_hostdata *hostdata = shost_priv(shost);
443
Finn Thain22f5f102014-11-12 16:11:56 +1100444 if (shost->irq != NO_IRQ)
Jeff Garzik1e641662007-11-11 19:52:05 -0500445 free_irq(shost->irq, shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 NCR5380_exit(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 scsi_unregister(shost);
Finn Thain54d8fe42016-01-03 16:05:06 +1100448 iounmap(hostdata->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return 0;
450}
451
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100452static struct scsi_host_template driver_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 .name = "DTC 3180/3280 ",
454 .detect = dtc_detect,
455 .release = dtc_release,
Finn Thain4d3d2a52014-11-12 16:11:52 +1100456 .proc_name = "dtc3x80",
457 .show_info = dtc_show_info,
458 .write_info = dtc_write_info,
Finn Thain8c325132014-11-12 16:11:58 +1100459 .info = dtc_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 .queuecommand = dtc_queue_command,
461 .eh_abort_handler = dtc_abort,
462 .eh_bus_reset_handler = dtc_bus_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 .bios_param = dtc_biosparam,
464 .can_queue = CAN_QUEUE,
465 .this_id = 7,
466 .sg_tablesize = SG_ALL,
467 .cmd_per_lun = CMD_PER_LUN,
468 .use_clustering = DISABLE_CLUSTERING,
469};
470#include "scsi_module.c"