blob: e890b08efbd8b64f2233012a9c451ee922d31679 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2#define AUTOSENSE
3#define PSEUDO_DMA
4#define DONT_USE_INTR
5#define UNSAFE /* Leave interrupts enabled during pseudo-dma I/O */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#define DMA_WORKS_RIGHT
7
8
9/*
10 * DTC 3180/3280 driver, by
11 * Ray Van Tassle rayvt@comm.mot.com
12 *
13 * taken from ...
14 * Trantor T128/T128F/T228 driver by...
15 *
16 * Drew Eckhardt
17 * Visionary Computing
18 * (Unix and Linux consulting and custom programming)
19 * drew@colorado.edu
20 * +1 (303) 440-4894
21 *
22 * DISTRIBUTION RELEASE 1.
23 *
24 * For more information, please consult
25 *
26 * NCR 5380 Family
27 * SCSI Protocol Controller
28 * Databook
29*/
30
31/*
32 * Options :
33 * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
34 * for commands that return with a CHECK CONDITION status.
35 *
36 * PSEUDO_DMA - enables PSEUDO-DMA hardware, should give a 3-4X performance
37 * increase compared to polled I/O.
38 *
39 * PARITY - enable parity checking. Not supported.
40 *
41 * UNSAFE - leave interrupts enabled during pseudo-DMA transfers.
42 * You probably want this.
43 *
44 * The card is detected and initialized in one of several ways :
45 * 1. Autoprobe (default) - since the board is memory mapped,
46 * a BIOS signature is scanned for to locate the registers.
47 * An interrupt is triggered to autoprobe for the interrupt
48 * line.
49 *
50 * 2. With command line overrides - dtc=address,irq may be
51 * used on the LILO command line to override the defaults.
52 *
53*/
54
55/*----------------------------------------------------------------*/
56/* the following will set the monitor border color (useful to find
57 where something crashed or gets stuck at */
58/* 1 = blue
59 2 = green
60 3 = cyan
61 4 = red
62 5 = magenta
63 6 = yellow
64 7 = white
65*/
66#if 0
67#define rtrc(i) {inb(0x3da); outb(0x31, 0x3c0); outb((i), 0x3c0);}
68#else
69#define rtrc(i) {}
70#endif
71
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <linux/module.h>
74#include <linux/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/blkdev.h>
76#include <linux/delay.h>
77#include <linux/stat.h>
78#include <linux/string.h>
79#include <linux/init.h>
80#include <linux/interrupt.h>
Matthew Wilcox53d5ed62006-10-11 01:22:01 -070081#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include "scsi.h"
83#include <scsi/scsi_host.h>
84#include "dtc.h"
85#define AUTOPROBE_IRQ
86#include "NCR5380.h"
87
88
89#define DTC_PUBLIC_RELEASE 2
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/*
92 * The DTC3180 & 3280 boards are memory mapped.
93 *
94 */
95
96/*
97 */
98/* Offset from DTC_5380_OFFSET */
99#define DTC_CONTROL_REG 0x100 /* rw */
100#define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
101#define CSR_DIR_READ 0x40 /* rw direction, 1 = read 0 = write */
102
103#define CSR_RESET 0x80 /* wo Resets 53c400 */
104#define CSR_5380_REG 0x80 /* ro 5380 registers can be accessed */
105#define CSR_TRANS_DIR 0x40 /* rw Data transfer direction */
106#define CSR_SCSI_BUFF_INTR 0x20 /* rw Enable int on transfer ready */
107#define CSR_5380_INTR 0x10 /* rw Enable 5380 interrupts */
108#define CSR_SHARED_INTR 0x08 /* rw Interrupt sharing */
109#define CSR_HOST_BUF_NOT_RDY 0x04 /* ro Host buffer not ready */
110#define CSR_SCSI_BUF_RDY 0x02 /* ro SCSI buffer ready */
111#define CSR_GATED_5380_IRQ 0x01 /* ro Last block xferred */
112#define CSR_INT_BASE (CSR_SCSI_BUFF_INTR | CSR_5380_INTR)
113
114
115#define DTC_BLK_CNT 0x101 /* rw
116 * # of 128-byte blocks to transfer */
117
118
119#define D_CR_ACCESS 0x80 /* ro set=can access 3280 registers */
120
121#define DTC_SWITCH_REG 0x3982 /* ro - DIP switches */
122#define DTC_RESUME_XFER 0x3982 /* wo - resume data xfer
123 * after disconnect/reconnect*/
124
125#define DTC_5380_OFFSET 0x3880 /* 8 registers here, see NCR5380.h */
126
127/*!!!! for dtc, it's a 128 byte buffer at 3900 !!! */
128#define DTC_DATA_BUF 0x3900 /* rw 128 bytes long */
129
130static struct override {
131 unsigned int address;
132 int irq;
133} overrides
134#ifdef OVERRIDE
135[] __initdata = OVERRIDE;
136#else
Alan Cox1fbe8522007-08-10 14:50:41 -0700137[4] __initdata = {
138 { 0, IRQ_AUTO }, { 0, IRQ_AUTO }, { 0, IRQ_AUTO }, { 0, IRQ_AUTO }
139};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#endif
141
Tobias Klauser6391a112006-06-08 22:23:48 -0700142#define NO_OVERRIDES ARRAY_SIZE(overrides)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144static struct base {
145 unsigned long address;
146 int noauto;
Tobias Klauser6391a112006-06-08 22:23:48 -0700147} bases[] __initdata = {
148 { 0xcc000, 0 },
149 { 0xc8000, 0 },
150 { 0xdc000, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 { 0xd8000, 0 }
152};
153
Tobias Klauser6391a112006-06-08 22:23:48 -0700154#define NO_BASES ARRAY_SIZE(bases)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156static const struct signature {
157 const char *string;
158 int offset;
Tobias Klauser6391a112006-06-08 22:23:48 -0700159} signatures[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 {"DATA TECHNOLOGY CORPORATION BIOS", 0x25},
161};
162
Tobias Klauser6391a112006-06-08 22:23:48 -0700163#define NO_SIGNATURES ARRAY_SIZE(signatures)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165#ifndef MODULE
166/*
167 * Function : dtc_setup(char *str, int *ints)
168 *
169 * Purpose : LILO command line initialization of the overrides array,
Tobias Klauser6391a112006-06-08 22:23:48 -0700170 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * Inputs : str - unused, ints - array of integer parameters with ints[0]
172 * equal to the number of ints.
173 *
Alan Cox1fbe8522007-08-10 14:50:41 -0700174 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Finn Thain925e4612014-11-12 16:11:49 +1100176static int __init dtc_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 static int commandline_current = 0;
179 int i;
Finn Thain925e4612014-11-12 16:11:49 +1100180 int ints[10];
181
182 get_options(str, ARRAY_SIZE(ints), ints);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (ints[0] != 2)
184 printk("dtc_setup: usage dtc=address,irq\n");
185 else if (commandline_current < NO_OVERRIDES) {
186 overrides[commandline_current].address = ints[1];
187 overrides[commandline_current].irq = ints[2];
188 for (i = 0; i < NO_BASES; ++i)
189 if (bases[i].address == ints[1]) {
190 bases[i].noauto = 1;
191 break;
192 }
193 ++commandline_current;
194 }
Finn Thain925e4612014-11-12 16:11:49 +1100195 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
Finn Thain925e4612014-11-12 16:11:49 +1100197
198__setup("dtc=", dtc_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#endif
200
201/*
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100202 * Function : int dtc_detect(struct scsi_host_template * tpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *
204 * Purpose : detects and initializes DTC 3180/3280 controllers
205 * that were autoprobed, overridden on the LILO command line,
206 * or specified at compile time.
207 *
208 * Inputs : tpnt - template for this SCSI adapter.
209 *
210 * Returns : 1 if a host adapter was found, 0 if not.
211 *
212*/
213
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100214static int __init dtc_detect(struct scsi_host_template * tpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 static int current_override = 0, current_base = 0;
217 struct Scsi_Host *instance;
218 unsigned int addr;
219 void __iomem *base;
220 int sig, count;
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 for (count = 0; current_override < NO_OVERRIDES; ++current_override) {
223 addr = 0;
224 base = NULL;
225
226 if (overrides[current_override].address) {
227 addr = overrides[current_override].address;
228 base = ioremap(addr, 0x2000);
229 if (!base)
230 addr = 0;
231 } else
232 for (; !addr && (current_base < NO_BASES); ++current_base) {
233#if (DTCDEBUG & DTCDEBUG_INIT)
Alan Cox1fbe8522007-08-10 14:50:41 -0700234 printk(KERN_DEBUG "scsi-dtc : probing address %08x\n", bases[current_base].address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235#endif
236 if (bases[current_base].noauto)
237 continue;
238 base = ioremap(bases[current_base].address, 0x2000);
239 if (!base)
240 continue;
241 for (sig = 0; sig < NO_SIGNATURES; ++sig) {
242 if (check_signature(base + signatures[sig].offset, signatures[sig].string, strlen(signatures[sig].string))) {
243 addr = bases[current_base].address;
244#if (DTCDEBUG & DTCDEBUG_INIT)
Alan Cox5307b1e2007-09-20 15:12:11 +0100245 printk(KERN_DEBUG "scsi-dtc : detected board.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246#endif
247 goto found;
248 }
249 }
250 iounmap(base);
251 }
252
253#if defined(DTCDEBUG) && (DTCDEBUG & DTCDEBUG_INIT)
Alan Cox1fbe8522007-08-10 14:50:41 -0700254 printk(KERN_DEBUG "scsi-dtc : base = %08x\n", addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255#endif
256
257 if (!addr)
258 break;
259
260found:
261 instance = scsi_register(tpnt, sizeof(struct NCR5380_hostdata));
262 if (instance == NULL)
263 break;
264
265 instance->base = addr;
266 ((struct NCR5380_hostdata *)(instance)->hostdata)->base = base;
267
268 NCR5380_init(instance, 0);
269
270 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR); /* Enable int's */
271 if (overrides[current_override].irq != IRQ_AUTO)
272 instance->irq = overrides[current_override].irq;
273 else
274 instance->irq = NCR5380_probe_irq(instance, DTC_IRQS);
275
276#ifndef DONT_USE_INTR
277 /* With interrupts enabled, it will sometimes hang when doing heavy
278 * reads. So better not enable them until I finger it out. */
279 if (instance->irq != SCSI_IRQ_NONE)
Michael Opdenacker4909cc22014-03-05 06:09:41 +0100280 if (request_irq(instance->irq, dtc_intr, 0,
Jeff Garzik1e641662007-11-11 19:52:05 -0500281 "dtc", instance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 printk(KERN_ERR "scsi%d : IRQ%d not free, interrupts disabled\n", instance->host_no, instance->irq);
283 instance->irq = SCSI_IRQ_NONE;
284 }
285
286 if (instance->irq == SCSI_IRQ_NONE) {
287 printk(KERN_WARNING "scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no);
288 printk(KERN_WARNING "scsi%d : please jumper the board for a free IRQ.\n", instance->host_no);
289 }
290#else
291 if (instance->irq != SCSI_IRQ_NONE)
292 printk(KERN_WARNING "scsi%d : interrupts not used. Might as well not jumper it.\n", instance->host_no);
293 instance->irq = SCSI_IRQ_NONE;
294#endif
295#if defined(DTCDEBUG) && (DTCDEBUG & DTCDEBUG_INIT)
296 printk("scsi%d : irq = %d\n", instance->host_no, instance->irq);
297#endif
298
299 printk(KERN_INFO "scsi%d : at 0x%05X", instance->host_no, (int) instance->base);
300 if (instance->irq == SCSI_IRQ_NONE)
301 printk(" interrupts disabled");
302 else
303 printk(" irq %d", instance->irq);
304 printk(" options CAN_QUEUE=%d CMD_PER_LUN=%d release=%d", CAN_QUEUE, CMD_PER_LUN, DTC_PUBLIC_RELEASE);
305 NCR5380_print_options(instance);
306 printk("\n");
307
308 ++current_override;
309 ++count;
310 }
311 return count;
312}
313
314/*
315 * Function : int dtc_biosparam(Disk * disk, struct block_device *dev, int *ip)
316 *
317 * Purpose : Generates a BIOS / DOS compatible H-C-S mapping for
318 * the specified device / size.
319 *
320 * Inputs : size = size of device in sectors (512 bytes), dev = block device
321 * major / minor, ip[] = {heads, sectors, cylinders}
322 *
323 * Returns : always 0 (success), initializes ip
324 *
325*/
326
327/*
328 * XXX Most SCSI boards use this mapping, I could be incorrect. Some one
329 * using hard disks on a trantor should verify that this mapping corresponds
330 * to that used by the BIOS / ASPI driver by running the linux fdisk program
331 * and matching the H_C_S coordinates to what DOS uses.
332*/
333
334static int dtc_biosparam(struct scsi_device *sdev, struct block_device *dev,
335 sector_t capacity, int *ip)
336{
337 int size = capacity;
338
339 ip[0] = 64;
340 ip[1] = 32;
341 ip[2] = size >> 11;
342 return 0;
343}
344
345
346/****************************************************************
347 * Function : int NCR5380_pread (struct Scsi_Host *instance,
348 * unsigned char *dst, int len)
349 *
350 * Purpose : Fast 5380 pseudo-dma read function, reads len bytes to
351 * dst
352 *
353 * Inputs : dst = destination, len = length in bytes
354 *
355 * Returns : 0 on success, non zero on a failure such as a watchdog
356 * timeout.
357*/
358
359static int dtc_maxi = 0;
360static int dtc_wmaxi = 0;
361
362static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, int len)
363{
364 unsigned char *d = dst;
365 int i; /* For counting time spent in the poll-loop */
366 NCR5380_local_declare();
367 NCR5380_setup(instance);
368
369 i = 0;
370 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
371 NCR5380_write(MODE_REG, MR_ENABLE_EOP_INTR | MR_DMA_MODE);
372 if (instance->irq == SCSI_IRQ_NONE)
373 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ);
374 else
375 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ | CSR_INT_BASE);
376 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
377 rtrc(1);
378 while (len > 0) {
379 rtrc(2);
380 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
381 ++i;
382 rtrc(3);
383 memcpy_fromio(d, base + DTC_DATA_BUF, 128);
384 d += 128;
385 len -= 128;
386 rtrc(7);
387 /*** with int's on, it sometimes hangs after here.
388 * Looks like something makes HBNR go away. */
389 }
390 rtrc(4);
391 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
392 ++i;
393 NCR5380_write(MODE_REG, 0); /* Clear the operating mode */
394 rtrc(0);
395 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
396 if (i > dtc_maxi)
397 dtc_maxi = i;
398 return (0);
399}
400
401/****************************************************************
402 * Function : int NCR5380_pwrite (struct Scsi_Host *instance,
403 * unsigned char *src, int len)
404 *
405 * Purpose : Fast 5380 pseudo-dma write function, transfers len bytes from
406 * src
407 *
408 * Inputs : src = source, len = length in bytes
409 *
410 * Returns : 0 on success, non zero on a failure such as a watchdog
411 * timeout.
412*/
413
414static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, int len)
415{
416 int i;
417 NCR5380_local_declare();
418 NCR5380_setup(instance);
419
420 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
421 NCR5380_write(MODE_REG, MR_ENABLE_EOP_INTR | MR_DMA_MODE);
422 /* set direction (write) */
423 if (instance->irq == SCSI_IRQ_NONE)
424 NCR5380_write(DTC_CONTROL_REG, 0);
425 else
426 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR);
427 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
428 for (i = 0; len > 0; ++i) {
429 rtrc(5);
430 /* Poll until the host buffer can accept data. */
431 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
432 ++i;
433 rtrc(3);
434 memcpy_toio(base + DTC_DATA_BUF, src, 128);
435 src += 128;
436 len -= 128;
437 }
438 rtrc(4);
439 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
440 ++i;
441 rtrc(6);
442 /* Wait until the last byte has been sent to the disk */
443 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT))
444 ++i;
445 rtrc(7);
446 /* Check for parity error here. fixme. */
447 NCR5380_write(MODE_REG, 0); /* Clear the operating mode */
448 rtrc(0);
449 if (i > dtc_wmaxi)
450 dtc_wmaxi = i;
451 return (0);
452}
453
454MODULE_LICENSE("GPL");
455
456#include "NCR5380.c"
457
458static int dtc_release(struct Scsi_Host *shost)
459{
460 NCR5380_local_declare();
461 NCR5380_setup(shost);
462 if (shost->irq)
Jeff Garzik1e641662007-11-11 19:52:05 -0500463 free_irq(shost->irq, shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 NCR5380_exit(shost);
465 if (shost->io_port && shost->n_io_port)
466 release_region(shost->io_port, shost->n_io_port);
467 scsi_unregister(shost);
468 iounmap(base);
469 return 0;
470}
471
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100472static struct scsi_host_template driver_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 .name = "DTC 3180/3280 ",
474 .detect = dtc_detect,
475 .release = dtc_release,
Finn Thain4d3d2a52014-11-12 16:11:52 +1100476 .proc_name = "dtc3x80",
477 .show_info = dtc_show_info,
478 .write_info = dtc_write_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 .queuecommand = dtc_queue_command,
480 .eh_abort_handler = dtc_abort,
481 .eh_bus_reset_handler = dtc_bus_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 .bios_param = dtc_biosparam,
483 .can_queue = CAN_QUEUE,
484 .this_id = 7,
485 .sg_tablesize = SG_ALL,
486 .cmd_per_lun = CMD_PER_LUN,
487 .use_clustering = DISABLE_CLUSTERING,
488};
489#include "scsi_module.c"