ncr5380: Remove NCR5380_local_declare and NCR5380_setup macros
[deliverable/linux.git] / drivers / scsi / g_NCR5380.c
1 /*
2 * Generic Generic NCR5380 driver
3 *
4 * Copyright 1993, Drew Eckhardt
5 * Visionary Computing
6 * (Unix and Linux consulting and custom programming)
7 * drew@colorado.edu
8 * +1 (303) 440-4894
9 *
10 * NCR53C400 extensions (c) 1994,1995,1996, Kevin Lentin
11 * K.Lentin@cs.monash.edu.au
12 *
13 * NCR53C400A extensions (c) 1996, Ingmar Baumgart
14 * ingmar@gonzo.schwaben.de
15 *
16 * DTC3181E extensions (c) 1997, Ronald van Cuijlenborg
17 * ronald.van.cuijlenborg@tip.nl or nutty@dds.nl
18 *
19 * Added ISAPNP support for DTC436 adapters,
20 * Thomas Sailer, sailer@ife.ee.ethz.ch
21 */
22
23 /*
24 * TODO : flesh out DMA support, find some one actually using this (I have
25 * a memory mapped Trantor board that works fine)
26 */
27
28 /*
29 * The card is detected and initialized in one of several ways :
30 * 1. With command line overrides - NCR5380=port,irq may be
31 * used on the LILO command line to override the defaults.
32 *
33 * 2. With the GENERIC_NCR5380_OVERRIDE compile time define. This is
34 * specified as an array of address, irq, dma, board tuples. Ie, for
35 * one board at 0x350, IRQ5, no dma, I could say
36 * -DGENERIC_NCR5380_OVERRIDE={{0xcc000, 5, DMA_NONE, BOARD_NCR5380}}
37 *
38 * -1 should be specified for no or DMA interrupt, -2 to autoprobe for an
39 * IRQ line if overridden on the command line.
40 *
41 * 3. When included as a module, with arguments passed on the command line:
42 * ncr_irq=xx the interrupt
43 * ncr_addr=xx the port or base address (for port or memory
44 * mapped, resp.)
45 * ncr_dma=xx the DMA
46 * ncr_5380=1 to set up for a NCR5380 board
47 * ncr_53c400=1 to set up for a NCR53C400 board
48 * e.g.
49 * modprobe g_NCR5380 ncr_irq=5 ncr_addr=0x350 ncr_5380=1
50 * for a port mapped NCR5380 board or
51 * modprobe g_NCR5380 ncr_irq=255 ncr_addr=0xc8000 ncr_53c400=1
52 * for a memory mapped NCR53C400 board with interrupts disabled.
53 *
54 * 255 should be specified for no or DMA interrupt, 254 to autoprobe for an
55 * IRQ line if overridden on the command line.
56 *
57 */
58
59 /* settings for DTC3181E card with only Mustek scanner attached */
60 #define USLEEP_POLL msecs_to_jiffies(10)
61 #define USLEEP_SLEEP msecs_to_jiffies(200)
62 #define USLEEP_WAITLONG msecs_to_jiffies(5000)
63
64 #define AUTOPROBE_IRQ
65
66 #ifdef CONFIG_SCSI_GENERIC_NCR53C400
67 #define NCR53C400_PSEUDO_DMA 1
68 #define PSEUDO_DMA
69 #define NCR53C400
70 #endif
71
72 #include <asm/io.h>
73 #include <linux/signal.h>
74 #include <linux/blkdev.h>
75 #include <scsi/scsi_host.h>
76 #include "g_NCR5380.h"
77 #include "NCR5380.h"
78 #include <linux/stat.h>
79 #include <linux/init.h>
80 #include <linux/ioport.h>
81 #include <linux/isapnp.h>
82 #include <linux/delay.h>
83 #include <linux/interrupt.h>
84
85 static int ncr_irq;
86 static int ncr_dma;
87 static int ncr_addr;
88 static int ncr_5380;
89 static int ncr_53c400;
90 static int ncr_53c400a;
91 static int dtc_3181e;
92
93 static struct override {
94 NCR5380_map_type NCR5380_map_name;
95 int irq;
96 int dma;
97 int board; /* Use NCR53c400, Ricoh, etc. extensions ? */
98 } overrides
99 #ifdef GENERIC_NCR5380_OVERRIDE
100 [] __initdata = GENERIC_NCR5380_OVERRIDE;
101 #else
102 [1] __initdata = { { 0,},};
103 #endif
104
105 #define NO_OVERRIDES ARRAY_SIZE(overrides)
106
107 #ifndef MODULE
108
109 /**
110 * internal_setup - handle lilo command string override
111 * @board: BOARD_* identifier for the board
112 * @str: unused
113 * @ints: numeric parameters
114 *
115 * Do LILO command line initialization of the overrides array. Display
116 * errors when needed
117 *
118 * Locks: none
119 */
120
121 static void __init internal_setup(int board, char *str, int *ints)
122 {
123 static int commandline_current;
124 switch (board) {
125 case BOARD_NCR5380:
126 if (ints[0] != 2 && ints[0] != 3) {
127 printk(KERN_ERR "generic_NCR5380_setup : usage ncr5380=" STRVAL(NCR5380_map_name) ",irq,dma\n");
128 return;
129 }
130 break;
131 case BOARD_NCR53C400:
132 if (ints[0] != 2) {
133 printk(KERN_ERR "generic_NCR53C400_setup : usage ncr53c400=" STRVAL(NCR5380_map_name) ",irq\n");
134 return;
135 }
136 break;
137 case BOARD_NCR53C400A:
138 if (ints[0] != 2) {
139 printk(KERN_ERR "generic_NCR53C400A_setup : usage ncr53c400a=" STRVAL(NCR5380_map_name) ",irq\n");
140 return;
141 }
142 break;
143 case BOARD_DTC3181E:
144 if (ints[0] != 2) {
145 printk("generic_DTC3181E_setup : usage dtc3181e=" STRVAL(NCR5380_map_name) ",irq\n");
146 return;
147 }
148 break;
149 }
150
151 if (commandline_current < NO_OVERRIDES) {
152 overrides[commandline_current].NCR5380_map_name = (NCR5380_map_type) ints[1];
153 overrides[commandline_current].irq = ints[2];
154 if (ints[0] == 3)
155 overrides[commandline_current].dma = ints[3];
156 else
157 overrides[commandline_current].dma = DMA_NONE;
158 overrides[commandline_current].board = board;
159 ++commandline_current;
160 }
161 }
162
163
164 /**
165 * do_NCR53C80_setup - set up entry point
166 * @str: unused
167 *
168 * Setup function invoked at boot to parse the ncr5380= command
169 * line.
170 */
171
172 static int __init do_NCR5380_setup(char *str)
173 {
174 int ints[10];
175
176 get_options(str, ARRAY_SIZE(ints), ints);
177 internal_setup(BOARD_NCR5380, str, ints);
178 return 1;
179 }
180
181 /**
182 * do_NCR53C400_setup - set up entry point
183 * @str: unused
184 * @ints: integer parameters from kernel setup code
185 *
186 * Setup function invoked at boot to parse the ncr53c400= command
187 * line.
188 */
189
190 static int __init do_NCR53C400_setup(char *str)
191 {
192 int ints[10];
193
194 get_options(str, ARRAY_SIZE(ints), ints);
195 internal_setup(BOARD_NCR53C400, str, ints);
196 return 1;
197 }
198
199 /**
200 * do_NCR53C400A_setup - set up entry point
201 * @str: unused
202 * @ints: integer parameters from kernel setup code
203 *
204 * Setup function invoked at boot to parse the ncr53c400a= command
205 * line.
206 */
207
208 static int __init do_NCR53C400A_setup(char *str)
209 {
210 int ints[10];
211
212 get_options(str, ARRAY_SIZE(ints), ints);
213 internal_setup(BOARD_NCR53C400A, str, ints);
214 return 1;
215 }
216
217 /**
218 * do_DTC3181E_setup - set up entry point
219 * @str: unused
220 * @ints: integer parameters from kernel setup code
221 *
222 * Setup function invoked at boot to parse the dtc3181e= command
223 * line.
224 */
225
226 static int __init do_DTC3181E_setup(char *str)
227 {
228 int ints[10];
229
230 get_options(str, ARRAY_SIZE(ints), ints);
231 internal_setup(BOARD_DTC3181E, str, ints);
232 return 1;
233 }
234
235 #endif
236
237 /**
238 * generic_NCR5380_detect - look for NCR5380 controllers
239 * @tpnt: the scsi template
240 *
241 * Scan for the present of NCR5380, NCR53C400, NCR53C400A, DTC3181E
242 * and DTC436(ISAPnP) controllers. If overrides have been set we use
243 * them.
244 *
245 * The caller supplied NCR5380_init function is invoked from here, before
246 * the interrupt line is taken.
247 *
248 * Locks: none
249 */
250
251 static int __init generic_NCR5380_detect(struct scsi_host_template *tpnt)
252 {
253 static int current_override;
254 int count;
255 unsigned int *ports;
256 #ifndef SCSI_G_NCR5380_MEM
257 int i;
258 unsigned long region_size = 16;
259 #endif
260 static unsigned int __initdata ncr_53c400a_ports[] = {
261 0x280, 0x290, 0x300, 0x310, 0x330, 0x340, 0x348, 0x350, 0
262 };
263 static unsigned int __initdata dtc_3181e_ports[] = {
264 0x220, 0x240, 0x280, 0x2a0, 0x2c0, 0x300, 0x320, 0x340, 0
265 };
266 int flags = 0;
267 struct Scsi_Host *instance;
268 #ifdef SCSI_G_NCR5380_MEM
269 unsigned long base;
270 void __iomem *iomem;
271 #endif
272
273 if (ncr_irq)
274 overrides[0].irq = ncr_irq;
275 if (ncr_dma)
276 overrides[0].dma = ncr_dma;
277 if (ncr_addr)
278 overrides[0].NCR5380_map_name = (NCR5380_map_type) ncr_addr;
279 if (ncr_5380)
280 overrides[0].board = BOARD_NCR5380;
281 else if (ncr_53c400)
282 overrides[0].board = BOARD_NCR53C400;
283 else if (ncr_53c400a)
284 overrides[0].board = BOARD_NCR53C400A;
285 else if (dtc_3181e)
286 overrides[0].board = BOARD_DTC3181E;
287 #ifndef SCSI_G_NCR5380_MEM
288 if (!current_override && isapnp_present()) {
289 struct pnp_dev *dev = NULL;
290 count = 0;
291 while ((dev = pnp_find_dev(NULL, ISAPNP_VENDOR('D', 'T', 'C'), ISAPNP_FUNCTION(0x436e), dev))) {
292 if (count >= NO_OVERRIDES)
293 break;
294 if (pnp_device_attach(dev) < 0)
295 continue;
296 if (pnp_activate_dev(dev) < 0) {
297 printk(KERN_ERR "dtc436e probe: activate failed\n");
298 pnp_device_detach(dev);
299 continue;
300 }
301 if (!pnp_port_valid(dev, 0)) {
302 printk(KERN_ERR "dtc436e probe: no valid port\n");
303 pnp_device_detach(dev);
304 continue;
305 }
306 if (pnp_irq_valid(dev, 0))
307 overrides[count].irq = pnp_irq(dev, 0);
308 else
309 overrides[count].irq = NO_IRQ;
310 if (pnp_dma_valid(dev, 0))
311 overrides[count].dma = pnp_dma(dev, 0);
312 else
313 overrides[count].dma = DMA_NONE;
314 overrides[count].NCR5380_map_name = (NCR5380_map_type) pnp_port_start(dev, 0);
315 overrides[count].board = BOARD_DTC3181E;
316 count++;
317 }
318 }
319 #endif
320 tpnt->proc_name = "g_NCR5380";
321
322 for (count = 0; current_override < NO_OVERRIDES; ++current_override) {
323 if (!(overrides[current_override].NCR5380_map_name))
324 continue;
325
326 ports = NULL;
327 switch (overrides[current_override].board) {
328 case BOARD_NCR5380:
329 flags = FLAG_NO_PSEUDO_DMA;
330 break;
331 case BOARD_NCR53C400:
332 flags = FLAG_NCR53C400;
333 break;
334 case BOARD_NCR53C400A:
335 flags = FLAG_NO_PSEUDO_DMA;
336 ports = ncr_53c400a_ports;
337 break;
338 case BOARD_DTC3181E:
339 flags = FLAG_NO_PSEUDO_DMA | FLAG_DTC3181E;
340 ports = dtc_3181e_ports;
341 break;
342 }
343
344 #ifndef SCSI_G_NCR5380_MEM
345 if (ports) {
346 /* wakeup sequence for the NCR53C400A and DTC3181E */
347
348 /* Disable the adapter and look for a free io port */
349 outb(0x59, 0x779);
350 outb(0xb9, 0x379);
351 outb(0xc5, 0x379);
352 outb(0xae, 0x379);
353 outb(0xa6, 0x379);
354 outb(0x00, 0x379);
355
356 if (overrides[current_override].NCR5380_map_name != PORT_AUTO)
357 for (i = 0; ports[i]; i++) {
358 if (!request_region(ports[i], 16, "ncr53c80"))
359 continue;
360 if (overrides[current_override].NCR5380_map_name == ports[i])
361 break;
362 release_region(ports[i], 16);
363 } else
364 for (i = 0; ports[i]; i++) {
365 if (!request_region(ports[i], 16, "ncr53c80"))
366 continue;
367 if (inb(ports[i]) == 0xff)
368 break;
369 release_region(ports[i], 16);
370 }
371 if (ports[i]) {
372 /* At this point we have our region reserved */
373 outb(0x59, 0x779);
374 outb(0xb9, 0x379);
375 outb(0xc5, 0x379);
376 outb(0xae, 0x379);
377 outb(0xa6, 0x379);
378 outb(0x80 | i, 0x379); /* set io port to be used */
379 outb(0xc0, ports[i] + 9);
380 if (inb(ports[i] + 9) != 0x80)
381 continue;
382 else
383 overrides[current_override].NCR5380_map_name = ports[i];
384 } else
385 continue;
386 }
387 else
388 {
389 /* Not a 53C400A style setup - just grab */
390 if(!(request_region(overrides[current_override].NCR5380_map_name, NCR5380_region_size, "ncr5380")))
391 continue;
392 region_size = NCR5380_region_size;
393 }
394 #else
395 base = overrides[current_override].NCR5380_map_name;
396 if (!request_mem_region(base, NCR5380_region_size, "ncr5380"))
397 continue;
398 iomem = ioremap(base, NCR5380_region_size);
399 if (!iomem) {
400 release_mem_region(base, NCR5380_region_size);
401 continue;
402 }
403 #endif
404 instance = scsi_register(tpnt, sizeof(struct NCR5380_hostdata));
405 if (instance == NULL) {
406 #ifndef SCSI_G_NCR5380_MEM
407 release_region(overrides[current_override].NCR5380_map_name, region_size);
408 #else
409 iounmap(iomem);
410 release_mem_region(base, NCR5380_region_size);
411 #endif
412 continue;
413 }
414
415 instance->NCR5380_instance_name = overrides[current_override].NCR5380_map_name;
416 #ifndef SCSI_G_NCR5380_MEM
417 instance->n_io_port = region_size;
418 #else
419 ((struct NCR5380_hostdata *)instance->hostdata)->iomem = iomem;
420 #endif
421
422 NCR5380_init(instance, flags);
423
424 if (overrides[current_override].irq != IRQ_AUTO)
425 instance->irq = overrides[current_override].irq;
426 else
427 instance->irq = NCR5380_probe_irq(instance, 0xffff);
428
429 /* Compatibility with documented NCR5380 kernel parameters */
430 if (instance->irq == 255)
431 instance->irq = NO_IRQ;
432
433 if (instance->irq != NO_IRQ)
434 if (request_irq(instance->irq, generic_NCR5380_intr,
435 0, "NCR5380", instance)) {
436 printk(KERN_WARNING "scsi%d : IRQ%d not free, interrupts disabled\n", instance->host_no, instance->irq);
437 instance->irq = NO_IRQ;
438 }
439
440 if (instance->irq == NO_IRQ) {
441 printk(KERN_INFO "scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no);
442 printk(KERN_INFO "scsi%d : please jumper the board for a free IRQ.\n", instance->host_no);
443 }
444
445 ++current_override;
446 ++count;
447 }
448 return count;
449 }
450
451 /**
452 * generic_NCR5380_release_resources - free resources
453 * @instance: host adapter to clean up
454 *
455 * Free the generic interface resources from this adapter.
456 *
457 * Locks: none
458 */
459
460 static int generic_NCR5380_release_resources(struct Scsi_Host *instance)
461 {
462 if (instance->irq != NO_IRQ)
463 free_irq(instance->irq, instance);
464 NCR5380_exit(instance);
465
466 #ifndef SCSI_G_NCR5380_MEM
467 release_region(instance->NCR5380_instance_name, instance->n_io_port);
468 #else
469 iounmap(((struct NCR5380_hostdata *)instance->hostdata)->iomem);
470 release_mem_region(instance->NCR5380_instance_name, NCR5380_region_size);
471 #endif
472
473
474 return 0;
475 }
476
477 #ifdef BIOSPARAM
478 /**
479 * generic_NCR5380_biosparam
480 * @disk: disk to compute geometry for
481 * @dev: device identifier for this disk
482 * @ip: sizes to fill in
483 *
484 * Generates a BIOS / DOS compatible H-C-S mapping for the specified
485 * device / size.
486 *
487 * XXX Most SCSI boards use this mapping, I could be incorrect. Someone
488 * using hard disks on a trantor should verify that this mapping
489 * corresponds to that used by the BIOS / ASPI driver by running the linux
490 * fdisk program and matching the H_C_S coordinates to what DOS uses.
491 *
492 * Locks: none
493 */
494
495 static int
496 generic_NCR5380_biosparam(struct scsi_device *sdev, struct block_device *bdev,
497 sector_t capacity, int *ip)
498 {
499 ip[0] = 64;
500 ip[1] = 32;
501 ip[2] = capacity >> 11;
502 return 0;
503 }
504 #endif
505
506 #ifdef NCR53C400_PSEUDO_DMA
507
508 /**
509 * NCR5380_pread - pseudo DMA read
510 * @instance: adapter to read from
511 * @dst: buffer to read into
512 * @len: buffer length
513 *
514 * Perform a pseudo DMA mode read from an NCR53C400 or equivalent
515 * controller
516 */
517
518 static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, int len)
519 {
520 #ifdef SCSI_G_NCR5380_MEM
521 struct NCR5380_hostdata *hostdata = shost_priv(instance);
522 #endif
523 int blocks = len / 128;
524 int start = 0;
525 int bl;
526
527 NCR5380_write(C400_CONTROL_STATUS_REG, CSR_BASE | CSR_TRANS_DIR);
528 NCR5380_write(C400_BLOCK_COUNTER_REG, blocks);
529 while (1) {
530 if ((bl = NCR5380_read(C400_BLOCK_COUNTER_REG)) == 0) {
531 break;
532 }
533 if (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ) {
534 printk(KERN_ERR "53C400r: Got 53C80_IRQ start=%d, blocks=%d\n", start, blocks);
535 return -1;
536 }
537 while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY);
538
539 #ifndef SCSI_G_NCR5380_MEM
540 {
541 int i;
542 for (i = 0; i < 128; i++)
543 dst[start + i] = NCR5380_read(C400_HOST_BUFFER);
544 }
545 #else
546 /* implies SCSI_G_NCR5380_MEM */
547 memcpy_fromio(dst + start,
548 hostdata->iomem + NCR53C400_host_buffer, 128);
549 #endif
550 start += 128;
551 blocks--;
552 }
553
554 if (blocks) {
555 while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY)
556 {
557 // FIXME - no timeout
558 }
559
560 #ifndef SCSI_G_NCR5380_MEM
561 {
562 int i;
563 for (i = 0; i < 128; i++)
564 dst[start + i] = NCR5380_read(C400_HOST_BUFFER);
565 }
566 #else
567 /* implies SCSI_G_NCR5380_MEM */
568 memcpy_fromio(dst + start,
569 hostdata->iomem + NCR53C400_host_buffer, 128);
570 #endif
571 start += 128;
572 blocks--;
573 }
574
575 if (!(NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ))
576 printk("53C400r: no 53C80 gated irq after transfer");
577
578 #if 0
579 /*
580 * DON'T DO THIS - THEY NEVER ARRIVE!
581 */
582 printk("53C400r: Waiting for 53C80 registers\n");
583 while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_53C80_REG)
584 ;
585 #endif
586 if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_END_DMA_TRANSFER))
587 printk(KERN_ERR "53C400r: no end dma signal\n");
588
589 NCR5380_write(MODE_REG, MR_BASE);
590 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
591 return 0;
592 }
593
594 /**
595 * NCR5380_write - pseudo DMA write
596 * @instance: adapter to read from
597 * @dst: buffer to read into
598 * @len: buffer length
599 *
600 * Perform a pseudo DMA mode read from an NCR53C400 or equivalent
601 * controller
602 */
603
604 static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, int len)
605 {
606 #ifdef SCSI_G_NCR5380_MEM
607 struct NCR5380_hostdata *hostdata = shost_priv(instance);
608 #endif
609 int blocks = len / 128;
610 int start = 0;
611 int bl;
612 int i;
613
614 NCR5380_write(C400_CONTROL_STATUS_REG, CSR_BASE);
615 NCR5380_write(C400_BLOCK_COUNTER_REG, blocks);
616 while (1) {
617 if (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ) {
618 printk(KERN_ERR "53C400w: Got 53C80_IRQ start=%d, blocks=%d\n", start, blocks);
619 return -1;
620 }
621
622 if ((bl = NCR5380_read(C400_BLOCK_COUNTER_REG)) == 0) {
623 break;
624 }
625 while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY)
626 ; // FIXME - timeout
627 #ifndef SCSI_G_NCR5380_MEM
628 {
629 for (i = 0; i < 128; i++)
630 NCR5380_write(C400_HOST_BUFFER, src[start + i]);
631 }
632 #else
633 /* implies SCSI_G_NCR5380_MEM */
634 memcpy_toio(hostdata->iomem + NCR53C400_host_buffer,
635 src + start, 128);
636 #endif
637 start += 128;
638 blocks--;
639 }
640 if (blocks) {
641 while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY)
642 ; // FIXME - no timeout
643
644 #ifndef SCSI_G_NCR5380_MEM
645 {
646 for (i = 0; i < 128; i++)
647 NCR5380_write(C400_HOST_BUFFER, src[start + i]);
648 }
649 #else
650 /* implies SCSI_G_NCR5380_MEM */
651 memcpy_toio(hostdata->iomem + NCR53C400_host_buffer,
652 src + start, 128);
653 #endif
654 start += 128;
655 blocks--;
656 }
657
658 #if 0
659 printk("53C400w: waiting for registers to be available\n");
660 THEY NEVER DO ! while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_53C80_REG);
661 printk("53C400w: Got em\n");
662 #endif
663
664 /* Let's wait for this instead - could be ugly */
665 /* All documentation says to check for this. Maybe my hardware is too
666 * fast. Waiting for it seems to work fine! KLL
667 */
668 while (!(i = NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ))
669 ; // FIXME - no timeout
670
671 /*
672 * I know. i is certainly != 0 here but the loop is new. See previous
673 * comment.
674 */
675 if (i) {
676 if (!((i = NCR5380_read(BUS_AND_STATUS_REG)) & BASR_END_DMA_TRANSFER))
677 printk(KERN_ERR "53C400w: No END OF DMA bit - WHOOPS! BASR=%0x\n", i);
678 } else
679 printk(KERN_ERR "53C400w: no 53C80 gated irq after transfer (last block)\n");
680
681 #if 0
682 if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_END_DMA_TRANSFER)) {
683 printk(KERN_ERR "53C400w: no end dma signal\n");
684 }
685 #endif
686 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT))
687 ; // TIMEOUT
688 return 0;
689 }
690 #endif /* PSEUDO_DMA */
691
692 /*
693 * Include the NCR5380 core code that we build our driver around
694 */
695
696 #include "NCR5380.c"
697
698 static struct scsi_host_template driver_template = {
699 .show_info = generic_NCR5380_show_info,
700 .name = "Generic NCR5380/NCR53C400 SCSI",
701 .detect = generic_NCR5380_detect,
702 .release = generic_NCR5380_release_resources,
703 .info = generic_NCR5380_info,
704 .queuecommand = generic_NCR5380_queue_command,
705 .eh_abort_handler = generic_NCR5380_abort,
706 .eh_bus_reset_handler = generic_NCR5380_bus_reset,
707 .bios_param = NCR5380_BIOSPARAM,
708 .can_queue = CAN_QUEUE,
709 .this_id = 7,
710 .sg_tablesize = SG_ALL,
711 .cmd_per_lun = CMD_PER_LUN,
712 .use_clustering = DISABLE_CLUSTERING,
713 };
714 #include <linux/module.h>
715 #include "scsi_module.c"
716
717 module_param(ncr_irq, int, 0);
718 module_param(ncr_dma, int, 0);
719 module_param(ncr_addr, int, 0);
720 module_param(ncr_5380, int, 0);
721 module_param(ncr_53c400, int, 0);
722 module_param(ncr_53c400a, int, 0);
723 module_param(dtc_3181e, int, 0);
724 MODULE_LICENSE("GPL");
725
726 #if !defined(SCSI_G_NCR5380_MEM) && defined(MODULE)
727 static struct isapnp_device_id id_table[] = {
728 {
729 ISAPNP_ANY_ID, ISAPNP_ANY_ID,
730 ISAPNP_VENDOR('D', 'T', 'C'), ISAPNP_FUNCTION(0x436e),
731 0},
732 {0}
733 };
734
735 MODULE_DEVICE_TABLE(isapnp, id_table);
736 #endif
737
738 __setup("ncr5380=", do_NCR5380_setup);
739 __setup("ncr53c400=", do_NCR53C400_setup);
740 __setup("ncr53c400a=", do_NCR53C400A_setup);
741 __setup("dtc3181e=", do_DTC3181E_setup);
This page took 0.052048 seconds and 6 git commands to generate.