blob: 1beefdbcbea8c76fdd6304dd074c607e1e521b47 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#define PSEUDO_DMA
2#define DONT_USE_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4/*
5 * DTC 3180/3280 driver, by
6 * Ray Van Tassle rayvt@comm.mot.com
7 *
8 * taken from ...
9 * Trantor T128/T128F/T228 driver by...
10 *
11 * Drew Eckhardt
12 * Visionary Computing
13 * (Unix and Linux consulting and custom programming)
14 * drew@colorado.edu
15 * +1 (303) 440-4894
Finn Thain3f9e9862014-11-12 16:11:55 +110016 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * 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
23 * line.
24 *
25 * 2. With command line overrides - dtc=address,irq may be
26 * used on the LILO command line to override the defaults.
27 *
28*/
29
30/*----------------------------------------------------------------*/
31/* the following will set the monitor border color (useful to find
32 where something crashed or gets stuck at */
33/* 1 = blue
34 2 = green
35 3 = cyan
36 4 = red
37 5 = magenta
38 6 = yellow
39 7 = white
40*/
41#if 0
42#define rtrc(i) {inb(0x3da); outb(0x31, 0x3c0); outb((i), 0x3c0);}
43#else
44#define rtrc(i) {}
45#endif
46
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/module.h>
49#include <linux/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/blkdev.h>
51#include <linux/delay.h>
52#include <linux/stat.h>
53#include <linux/string.h>
54#include <linux/init.h>
55#include <linux/interrupt.h>
Matthew Wilcox53d5ed62006-10-11 01:22:01 -070056#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <scsi/scsi_host.h>
58#include "dtc.h"
59#define AUTOPROBE_IRQ
60#include "NCR5380.h"
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/*
63 * The DTC3180 & 3280 boards are memory mapped.
64 *
65 */
66
67/*
68 */
69/* Offset from DTC_5380_OFFSET */
70#define DTC_CONTROL_REG 0x100 /* rw */
71#define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
72#define CSR_DIR_READ 0x40 /* rw direction, 1 = read 0 = write */
73
74#define CSR_RESET 0x80 /* wo Resets 53c400 */
75#define CSR_5380_REG 0x80 /* ro 5380 registers can be accessed */
76#define CSR_TRANS_DIR 0x40 /* rw Data transfer direction */
77#define CSR_SCSI_BUFF_INTR 0x20 /* rw Enable int on transfer ready */
78#define CSR_5380_INTR 0x10 /* rw Enable 5380 interrupts */
79#define CSR_SHARED_INTR 0x08 /* rw Interrupt sharing */
80#define CSR_HOST_BUF_NOT_RDY 0x04 /* ro Host buffer not ready */
81#define CSR_SCSI_BUF_RDY 0x02 /* ro SCSI buffer ready */
82#define CSR_GATED_5380_IRQ 0x01 /* ro Last block xferred */
83#define CSR_INT_BASE (CSR_SCSI_BUFF_INTR | CSR_5380_INTR)
84
85
86#define DTC_BLK_CNT 0x101 /* rw
87 * # of 128-byte blocks to transfer */
88
89
90#define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
91
92#define DTC_SWITCH_REG 0x3982 /* ro - DIP switches */
93#define DTC_RESUME_XFER 0x3982 /* wo - resume data xfer
94 * after disconnect/reconnect*/
95
96#define DTC_5380_OFFSET 0x3880 /* 8 registers here, see NCR5380.h */
97
98/*!!!! for dtc, it's a 128 byte buffer at 3900 !!! */
99#define DTC_DATA_BUF 0x3900 /* rw 128 bytes long */
100
101static struct override {
102 unsigned int address;
103 int irq;
104} overrides
105#ifdef OVERRIDE
106[] __initdata = OVERRIDE;
107#else
Alan Cox1fbe8522007-08-10 14:50:41 -0700108[4] __initdata = {
109 { 0, IRQ_AUTO }, { 0, IRQ_AUTO }, { 0, IRQ_AUTO }, { 0, IRQ_AUTO }
110};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#endif
112
Tobias Klauser6391a112006-06-08 22:23:48 -0700113#define NO_OVERRIDES ARRAY_SIZE(overrides)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115static struct base {
116 unsigned long address;
117 int noauto;
Tobias Klauser6391a112006-06-08 22:23:48 -0700118} bases[] __initdata = {
119 { 0xcc000, 0 },
120 { 0xc8000, 0 },
121 { 0xdc000, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 { 0xd8000, 0 }
123};
124
Tobias Klauser6391a112006-06-08 22:23:48 -0700125#define NO_BASES ARRAY_SIZE(bases)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127static const struct signature {
128 const char *string;
129 int offset;
Tobias Klauser6391a112006-06-08 22:23:48 -0700130} signatures[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 {"DATA TECHNOLOGY CORPORATION BIOS", 0x25},
132};
133
Tobias Klauser6391a112006-06-08 22:23:48 -0700134#define NO_SIGNATURES ARRAY_SIZE(signatures)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136#ifndef MODULE
137/*
138 * Function : dtc_setup(char *str, int *ints)
139 *
140 * Purpose : LILO command line initialization of the overrides array,
Tobias Klauser6391a112006-06-08 22:23:48 -0700141 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 * Inputs : str - unused, ints - array of integer parameters with ints[0]
143 * equal to the number of ints.
144 *
Alan Cox1fbe8522007-08-10 14:50:41 -0700145 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Finn Thain925e4612014-11-12 16:11:49 +1100147static int __init dtc_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Finn Thaind5f7e652016-01-03 16:05:03 +1100149 static int commandline_current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 int i;
Finn Thain925e4612014-11-12 16:11:49 +1100151 int ints[10];
152
153 get_options(str, ARRAY_SIZE(ints), ints);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (ints[0] != 2)
155 printk("dtc_setup: usage dtc=address,irq\n");
156 else if (commandline_current < NO_OVERRIDES) {
157 overrides[commandline_current].address = ints[1];
158 overrides[commandline_current].irq = ints[2];
159 for (i = 0; i < NO_BASES; ++i)
160 if (bases[i].address == ints[1]) {
161 bases[i].noauto = 1;
162 break;
163 }
164 ++commandline_current;
165 }
Finn Thain925e4612014-11-12 16:11:49 +1100166 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
Finn Thain925e4612014-11-12 16:11:49 +1100168
169__setup("dtc=", dtc_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#endif
171
172/*
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100173 * Function : int dtc_detect(struct scsi_host_template * tpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 *
175 * Purpose : detects and initializes DTC 3180/3280 controllers
176 * that were autoprobed, overridden on the LILO command line,
177 * or specified at compile time.
178 *
179 * Inputs : tpnt - template for this SCSI adapter.
180 *
181 * Returns : 1 if a host adapter was found, 0 if not.
182 *
183*/
184
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100185static int __init dtc_detect(struct scsi_host_template * tpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Finn Thaind5f7e652016-01-03 16:05:03 +1100187 static int current_override, current_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 struct Scsi_Host *instance;
189 unsigned int addr;
190 void __iomem *base;
191 int sig, count;
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 for (count = 0; current_override < NO_OVERRIDES; ++current_override) {
194 addr = 0;
195 base = NULL;
196
197 if (overrides[current_override].address) {
198 addr = overrides[current_override].address;
199 base = ioremap(addr, 0x2000);
200 if (!base)
201 addr = 0;
202 } else
203 for (; !addr && (current_base < NO_BASES); ++current_base) {
Finn Thain2f7dba92016-01-03 16:05:04 +1100204 dprintk(NDEBUG_INIT, "dtc: probing address 0x%08x\n",
205 (unsigned int)bases[current_base].address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (bases[current_base].noauto)
207 continue;
208 base = ioremap(bases[current_base].address, 0x2000);
209 if (!base)
210 continue;
211 for (sig = 0; sig < NO_SIGNATURES; ++sig) {
212 if (check_signature(base + signatures[sig].offset, signatures[sig].string, strlen(signatures[sig].string))) {
213 addr = bases[current_base].address;
Finn Thain2f7dba92016-01-03 16:05:04 +1100214 dprintk(NDEBUG_INIT, "dtc: detected board\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 goto found;
216 }
217 }
218 iounmap(base);
219 }
220
Finn Thain2f7dba92016-01-03 16:05:04 +1100221 dprintk(NDEBUG_INIT, "dtc: addr = 0x%08x\n", addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 if (!addr)
224 break;
225
226found:
227 instance = scsi_register(tpnt, sizeof(struct NCR5380_hostdata));
228 if (instance == NULL)
Finn Thain0ad0eff2016-01-03 16:05:21 +1100229 goto out_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 instance->base = addr;
232 ((struct NCR5380_hostdata *)(instance)->hostdata)->base = base;
233
Finn Thain55181be2016-01-03 16:05:42 +1100234 if (NCR5380_init(instance, FLAG_NO_DMA_FIXUP))
Finn Thain0ad0eff2016-01-03 16:05:21 +1100235 goto out_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Finn Thainb6488f92016-01-03 16:05:08 +1100237 NCR5380_maybe_reset_bus(instance);
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR); /* Enable int's */
240 if (overrides[current_override].irq != IRQ_AUTO)
241 instance->irq = overrides[current_override].irq;
242 else
243 instance->irq = NCR5380_probe_irq(instance, DTC_IRQS);
244
Finn Thain22f5f102014-11-12 16:11:56 +1100245 /* Compatibility with documented NCR5380 kernel parameters */
246 if (instance->irq == 255)
247 instance->irq = NO_IRQ;
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#ifndef DONT_USE_INTR
250 /* With interrupts enabled, it will sometimes hang when doing heavy
251 * reads. So better not enable them until I finger it out. */
Finn Thain22f5f102014-11-12 16:11:56 +1100252 if (instance->irq != NO_IRQ)
Michael Opdenacker4909cc22014-03-05 06:09:41 +0100253 if (request_irq(instance->irq, dtc_intr, 0,
Jeff Garzik1e641662007-11-11 19:52:05 -0500254 "dtc", instance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 printk(KERN_ERR "scsi%d : IRQ%d not free, interrupts disabled\n", instance->host_no, instance->irq);
Finn Thain22f5f102014-11-12 16:11:56 +1100256 instance->irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
258
Finn Thain22f5f102014-11-12 16:11:56 +1100259 if (instance->irq == NO_IRQ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 printk(KERN_WARNING "scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no);
261 printk(KERN_WARNING "scsi%d : please jumper the board for a free IRQ.\n", instance->host_no);
262 }
263#else
Finn Thain22f5f102014-11-12 16:11:56 +1100264 if (instance->irq != NO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 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 +1100266 instance->irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267#endif
Finn Thain2f7dba92016-01-03 16:05:04 +1100268 dprintk(NDEBUG_INIT, "scsi%d : irq = %d\n",
269 instance->host_no, instance->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 ++current_override;
272 ++count;
273 }
274 return count;
Finn Thain0ad0eff2016-01-03 16:05:21 +1100275
276out_unregister:
277 scsi_unregister(instance);
278out_unmap:
279 iounmap(base);
280 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283/*
284 * Function : int dtc_biosparam(Disk * disk, struct block_device *dev, int *ip)
285 *
286 * Purpose : Generates a BIOS / DOS compatible H-C-S mapping for
287 * the specified device / size.
288 *
289 * Inputs : size = size of device in sectors (512 bytes), dev = block device
290 * major / minor, ip[] = {heads, sectors, cylinders}
291 *
292 * Returns : always 0 (success), initializes ip
293 *
294*/
295
296/*
297 * XXX Most SCSI boards use this mapping, I could be incorrect. Some one
298 * using hard disks on a trantor should verify that this mapping corresponds
299 * to that used by the BIOS / ASPI driver by running the linux fdisk program
300 * and matching the H_C_S coordinates to what DOS uses.
301*/
302
303static int dtc_biosparam(struct scsi_device *sdev, struct block_device *dev,
304 sector_t capacity, int *ip)
305{
306 int size = capacity;
307
308 ip[0] = 64;
309 ip[1] = 32;
310 ip[2] = size >> 11;
311 return 0;
312}
313
314
315/****************************************************************
316 * Function : int NCR5380_pread (struct Scsi_Host *instance,
317 * unsigned char *dst, int len)
318 *
319 * Purpose : Fast 5380 pseudo-dma read function, reads len bytes to
320 * dst
321 *
322 * Inputs : dst = destination, len = length in bytes
323 *
324 * Returns : 0 on success, non zero on a failure such as a watchdog
325 * timeout.
326*/
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, int len)
329{
330 unsigned char *d = dst;
331 int i; /* For counting time spent in the poll-loop */
Finn Thaina9c2dc42014-11-12 16:11:59 +1100332 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 i = 0;
Finn Thain22f5f102014-11-12 16:11:56 +1100335 if (instance->irq == NO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ);
337 else
338 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ | CSR_INT_BASE);
339 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
340 rtrc(1);
341 while (len > 0) {
342 rtrc(2);
343 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
344 ++i;
345 rtrc(3);
Finn Thain54d8fe42016-01-03 16:05:06 +1100346 memcpy_fromio(d, hostdata->base + DTC_DATA_BUF, 128);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 d += 128;
348 len -= 128;
349 rtrc(7);
350 /*** with int's on, it sometimes hangs after here.
351 * Looks like something makes HBNR go away. */
352 }
353 rtrc(4);
354 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
355 ++i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 rtrc(0);
Finn Thaina9c2dc42014-11-12 16:11:59 +1100357 if (i > hostdata->spin_max_r)
358 hostdata->spin_max_r = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return (0);
360}
361
362/****************************************************************
363 * Function : int NCR5380_pwrite (struct Scsi_Host *instance,
364 * unsigned char *src, int len)
365 *
366 * Purpose : Fast 5380 pseudo-dma write function, transfers len bytes from
367 * src
368 *
369 * Inputs : src = source, len = length in bytes
370 *
371 * Returns : 0 on success, non zero on a failure such as a watchdog
372 * timeout.
373*/
374
375static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, int len)
376{
377 int i;
Finn Thaina9c2dc42014-11-12 16:11:59 +1100378 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Finn Thain22f5f102014-11-12 16:11:56 +1100380 if (instance->irq == NO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 NCR5380_write(DTC_CONTROL_REG, 0);
382 else
383 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR);
384 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
385 for (i = 0; len > 0; ++i) {
386 rtrc(5);
387 /* Poll until the host buffer can accept data. */
388 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
389 ++i;
390 rtrc(3);
Finn Thain54d8fe42016-01-03 16:05:06 +1100391 memcpy_toio(hostdata->base + DTC_DATA_BUF, src, 128);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 src += 128;
393 len -= 128;
394 }
395 rtrc(4);
396 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
397 ++i;
398 rtrc(6);
399 /* Wait until the last byte has been sent to the disk */
400 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT))
401 ++i;
402 rtrc(7);
403 /* Check for parity error here. fixme. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 rtrc(0);
Finn Thaina9c2dc42014-11-12 16:11:59 +1100405 if (i > hostdata->spin_max_w)
406 hostdata->spin_max_w = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return (0);
408}
409
Finn Thainff3d4572016-01-03 16:05:25 +1100410static int dtc_dma_xfer_len(struct scsi_cmnd *cmd)
411{
412 int transfersize = cmd->transfersize;
413
414 /* Limit transfers to 32K, for xx400 & xx406
415 * pseudoDMA that transfers in 128 bytes blocks.
416 */
417 if (transfersize > 32 * 1024 && cmd->SCp.this_residual &&
418 !(cmd->SCp.this_residual % transfersize))
419 transfersize = 32 * 1024;
420
421 return transfersize;
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424MODULE_LICENSE("GPL");
425
426#include "NCR5380.c"
427
428static int dtc_release(struct Scsi_Host *shost)
429{
Finn Thain54d8fe42016-01-03 16:05:06 +1100430 struct NCR5380_hostdata *hostdata = shost_priv(shost);
431
Finn Thain22f5f102014-11-12 16:11:56 +1100432 if (shost->irq != NO_IRQ)
Jeff Garzik1e641662007-11-11 19:52:05 -0500433 free_irq(shost->irq, shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 NCR5380_exit(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 scsi_unregister(shost);
Finn Thain54d8fe42016-01-03 16:05:06 +1100436 iounmap(hostdata->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return 0;
438}
439
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100440static struct scsi_host_template driver_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 .name = "DTC 3180/3280 ",
442 .detect = dtc_detect,
443 .release = dtc_release,
Finn Thain4d3d2a52014-11-12 16:11:52 +1100444 .proc_name = "dtc3x80",
445 .show_info = dtc_show_info,
446 .write_info = dtc_write_info,
Finn Thain8c325132014-11-12 16:11:58 +1100447 .info = dtc_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 .queuecommand = dtc_queue_command,
449 .eh_abort_handler = dtc_abort,
450 .eh_bus_reset_handler = dtc_bus_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 .bios_param = dtc_biosparam,
452 .can_queue = CAN_QUEUE,
453 .this_id = 7,
454 .sg_tablesize = SG_ALL,
455 .cmd_per_lun = CMD_PER_LUN,
456 .use_clustering = DISABLE_CLUSTERING,
457};
458#include "scsi_module.c"