ncr5380: Remove useless prototypes
[linux-2.6-block.git] / drivers / scsi / dtc.c
CommitLineData
1da177e4
LT
1
2#define AUTOSENSE
3#define PSEUDO_DMA
4#define DONT_USE_INTR
5#define UNSAFE /* Leave interrupts enabled during pseudo-dma I/O */
1da177e4
LT
6#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
1da177e4
LT
73#include <linux/module.h>
74#include <linux/signal.h>
1da177e4
LT
75#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>
53d5ed62 81#include <linux/io.h>
1da177e4
LT
82#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
1da177e4
LT
91/*
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
1fbe8529
AC
137[4] __initdata = {
138 { 0, IRQ_AUTO }, { 0, IRQ_AUTO }, { 0, IRQ_AUTO }, { 0, IRQ_AUTO }
139};
1da177e4
LT
140#endif
141
6391a113 142#define NO_OVERRIDES ARRAY_SIZE(overrides)
1da177e4
LT
143
144static struct base {
145 unsigned long address;
146 int noauto;
6391a113
TK
147} bases[] __initdata = {
148 { 0xcc000, 0 },
149 { 0xc8000, 0 },
150 { 0xdc000, 0 },
1da177e4
LT
151 { 0xd8000, 0 }
152};
153
6391a113 154#define NO_BASES ARRAY_SIZE(bases)
1da177e4
LT
155
156static const struct signature {
157 const char *string;
158 int offset;
6391a113 159} signatures[] = {
1da177e4
LT
160 {"DATA TECHNOLOGY CORPORATION BIOS", 0x25},
161};
162
6391a113 163#define NO_SIGNATURES ARRAY_SIZE(signatures)
1da177e4
LT
164
165#ifndef MODULE
166/*
167 * Function : dtc_setup(char *str, int *ints)
168 *
169 * Purpose : LILO command line initialization of the overrides array,
6391a113 170 *
1da177e4
LT
171 * Inputs : str - unused, ints - array of integer parameters with ints[0]
172 * equal to the number of ints.
173 *
1fbe8529 174 */
1da177e4 175
925e4610 176static int __init dtc_setup(char *str)
1da177e4
LT
177{
178 static int commandline_current = 0;
179 int i;
925e4610
FT
180 int ints[10];
181
182 get_options(str, ARRAY_SIZE(ints), ints);
1da177e4
LT
183 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 }
925e4610 195 return 1;
1da177e4 196}
925e4610
FT
197
198__setup("dtc=", dtc_setup);
1da177e4
LT
199#endif
200
201/*
d0be4a7d 202 * Function : int dtc_detect(struct scsi_host_template * tpnt)
1da177e4
LT
203 *
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
d0be4a7d 214static int __init dtc_detect(struct scsi_host_template * tpnt)
1da177e4
LT
215{
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
222 tpnt->proc_name = "dtc3x80";
dd7ab71b
AV
223 tpnt->show_info = dtc_show_info;
224 tpnt->write_info = dtc_write_info;
1da177e4
LT
225
226 for (count = 0; current_override < NO_OVERRIDES; ++current_override) {
227 addr = 0;
228 base = NULL;
229
230 if (overrides[current_override].address) {
231 addr = overrides[current_override].address;
232 base = ioremap(addr, 0x2000);
233 if (!base)
234 addr = 0;
235 } else
236 for (; !addr && (current_base < NO_BASES); ++current_base) {
237#if (DTCDEBUG & DTCDEBUG_INIT)
1fbe8529 238 printk(KERN_DEBUG "scsi-dtc : probing address %08x\n", bases[current_base].address);
1da177e4
LT
239#endif
240 if (bases[current_base].noauto)
241 continue;
242 base = ioremap(bases[current_base].address, 0x2000);
243 if (!base)
244 continue;
245 for (sig = 0; sig < NO_SIGNATURES; ++sig) {
246 if (check_signature(base + signatures[sig].offset, signatures[sig].string, strlen(signatures[sig].string))) {
247 addr = bases[current_base].address;
248#if (DTCDEBUG & DTCDEBUG_INIT)
5307b1e8 249 printk(KERN_DEBUG "scsi-dtc : detected board.\n");
1da177e4
LT
250#endif
251 goto found;
252 }
253 }
254 iounmap(base);
255 }
256
257#if defined(DTCDEBUG) && (DTCDEBUG & DTCDEBUG_INIT)
1fbe8529 258 printk(KERN_DEBUG "scsi-dtc : base = %08x\n", addr);
1da177e4
LT
259#endif
260
261 if (!addr)
262 break;
263
264found:
265 instance = scsi_register(tpnt, sizeof(struct NCR5380_hostdata));
266 if (instance == NULL)
267 break;
268
269 instance->base = addr;
270 ((struct NCR5380_hostdata *)(instance)->hostdata)->base = base;
271
272 NCR5380_init(instance, 0);
273
274 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR); /* Enable int's */
275 if (overrides[current_override].irq != IRQ_AUTO)
276 instance->irq = overrides[current_override].irq;
277 else
278 instance->irq = NCR5380_probe_irq(instance, DTC_IRQS);
279
280#ifndef DONT_USE_INTR
281 /* With interrupts enabled, it will sometimes hang when doing heavy
282 * reads. So better not enable them until I finger it out. */
283 if (instance->irq != SCSI_IRQ_NONE)
4909cc2b 284 if (request_irq(instance->irq, dtc_intr, 0,
1e641664 285 "dtc", instance)) {
1da177e4
LT
286 printk(KERN_ERR "scsi%d : IRQ%d not free, interrupts disabled\n", instance->host_no, instance->irq);
287 instance->irq = SCSI_IRQ_NONE;
288 }
289
290 if (instance->irq == SCSI_IRQ_NONE) {
291 printk(KERN_WARNING "scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no);
292 printk(KERN_WARNING "scsi%d : please jumper the board for a free IRQ.\n", instance->host_no);
293 }
294#else
295 if (instance->irq != SCSI_IRQ_NONE)
296 printk(KERN_WARNING "scsi%d : interrupts not used. Might as well not jumper it.\n", instance->host_no);
297 instance->irq = SCSI_IRQ_NONE;
298#endif
299#if defined(DTCDEBUG) && (DTCDEBUG & DTCDEBUG_INIT)
300 printk("scsi%d : irq = %d\n", instance->host_no, instance->irq);
301#endif
302
303 printk(KERN_INFO "scsi%d : at 0x%05X", instance->host_no, (int) instance->base);
304 if (instance->irq == SCSI_IRQ_NONE)
305 printk(" interrupts disabled");
306 else
307 printk(" irq %d", instance->irq);
308 printk(" options CAN_QUEUE=%d CMD_PER_LUN=%d release=%d", CAN_QUEUE, CMD_PER_LUN, DTC_PUBLIC_RELEASE);
309 NCR5380_print_options(instance);
310 printk("\n");
311
312 ++current_override;
313 ++count;
314 }
315 return count;
316}
317
318/*
319 * Function : int dtc_biosparam(Disk * disk, struct block_device *dev, int *ip)
320 *
321 * Purpose : Generates a BIOS / DOS compatible H-C-S mapping for
322 * the specified device / size.
323 *
324 * Inputs : size = size of device in sectors (512 bytes), dev = block device
325 * major / minor, ip[] = {heads, sectors, cylinders}
326 *
327 * Returns : always 0 (success), initializes ip
328 *
329*/
330
331/*
332 * XXX Most SCSI boards use this mapping, I could be incorrect. Some one
333 * using hard disks on a trantor should verify that this mapping corresponds
334 * to that used by the BIOS / ASPI driver by running the linux fdisk program
335 * and matching the H_C_S coordinates to what DOS uses.
336*/
337
338static int dtc_biosparam(struct scsi_device *sdev, struct block_device *dev,
339 sector_t capacity, int *ip)
340{
341 int size = capacity;
342
343 ip[0] = 64;
344 ip[1] = 32;
345 ip[2] = size >> 11;
346 return 0;
347}
348
349
350/****************************************************************
351 * Function : int NCR5380_pread (struct Scsi_Host *instance,
352 * unsigned char *dst, int len)
353 *
354 * Purpose : Fast 5380 pseudo-dma read function, reads len bytes to
355 * dst
356 *
357 * Inputs : dst = destination, len = length in bytes
358 *
359 * Returns : 0 on success, non zero on a failure such as a watchdog
360 * timeout.
361*/
362
363static int dtc_maxi = 0;
364static int dtc_wmaxi = 0;
365
366static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, int len)
367{
368 unsigned char *d = dst;
369 int i; /* For counting time spent in the poll-loop */
370 NCR5380_local_declare();
371 NCR5380_setup(instance);
372
373 i = 0;
374 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
375 NCR5380_write(MODE_REG, MR_ENABLE_EOP_INTR | MR_DMA_MODE);
376 if (instance->irq == SCSI_IRQ_NONE)
377 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ);
378 else
379 NCR5380_write(DTC_CONTROL_REG, CSR_DIR_READ | CSR_INT_BASE);
380 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
381 rtrc(1);
382 while (len > 0) {
383 rtrc(2);
384 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
385 ++i;
386 rtrc(3);
387 memcpy_fromio(d, base + DTC_DATA_BUF, 128);
388 d += 128;
389 len -= 128;
390 rtrc(7);
391 /*** with int's on, it sometimes hangs after here.
392 * Looks like something makes HBNR go away. */
393 }
394 rtrc(4);
395 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
396 ++i;
397 NCR5380_write(MODE_REG, 0); /* Clear the operating mode */
398 rtrc(0);
399 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
400 if (i > dtc_maxi)
401 dtc_maxi = i;
402 return (0);
403}
404
405/****************************************************************
406 * Function : int NCR5380_pwrite (struct Scsi_Host *instance,
407 * unsigned char *src, int len)
408 *
409 * Purpose : Fast 5380 pseudo-dma write function, transfers len bytes from
410 * src
411 *
412 * Inputs : src = source, len = length in bytes
413 *
414 * Returns : 0 on success, non zero on a failure such as a watchdog
415 * timeout.
416*/
417
418static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, int len)
419{
420 int i;
421 NCR5380_local_declare();
422 NCR5380_setup(instance);
423
424 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
425 NCR5380_write(MODE_REG, MR_ENABLE_EOP_INTR | MR_DMA_MODE);
426 /* set direction (write) */
427 if (instance->irq == SCSI_IRQ_NONE)
428 NCR5380_write(DTC_CONTROL_REG, 0);
429 else
430 NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR);
431 NCR5380_write(DTC_BLK_CNT, len >> 7); /* Block count */
432 for (i = 0; len > 0; ++i) {
433 rtrc(5);
434 /* Poll until the host buffer can accept data. */
435 while (NCR5380_read(DTC_CONTROL_REG) & CSR_HOST_BUF_NOT_RDY)
436 ++i;
437 rtrc(3);
438 memcpy_toio(base + DTC_DATA_BUF, src, 128);
439 src += 128;
440 len -= 128;
441 }
442 rtrc(4);
443 while (!(NCR5380_read(DTC_CONTROL_REG) & D_CR_ACCESS))
444 ++i;
445 rtrc(6);
446 /* Wait until the last byte has been sent to the disk */
447 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT))
448 ++i;
449 rtrc(7);
450 /* Check for parity error here. fixme. */
451 NCR5380_write(MODE_REG, 0); /* Clear the operating mode */
452 rtrc(0);
453 if (i > dtc_wmaxi)
454 dtc_wmaxi = i;
455 return (0);
456}
457
458MODULE_LICENSE("GPL");
459
460#include "NCR5380.c"
461
462static int dtc_release(struct Scsi_Host *shost)
463{
464 NCR5380_local_declare();
465 NCR5380_setup(shost);
466 if (shost->irq)
1e641664 467 free_irq(shost->irq, shost);
1da177e4
LT
468 NCR5380_exit(shost);
469 if (shost->io_port && shost->n_io_port)
470 release_region(shost->io_port, shost->n_io_port);
471 scsi_unregister(shost);
472 iounmap(base);
473 return 0;
474}
475
d0be4a7d 476static struct scsi_host_template driver_template = {
1da177e4
LT
477 .name = "DTC 3180/3280 ",
478 .detect = dtc_detect,
479 .release = dtc_release,
480 .queuecommand = dtc_queue_command,
481 .eh_abort_handler = dtc_abort,
482 .eh_bus_reset_handler = dtc_bus_reset,
1da177e4
LT
483 .bios_param = dtc_biosparam,
484 .can_queue = CAN_QUEUE,
485 .this_id = 7,
486 .sg_tablesize = SG_ALL,
487 .cmd_per_lun = CMD_PER_LUN,
488 .use_clustering = DISABLE_CLUSTERING,
489};
490#include "scsi_module.c"