2 * Generic Generic NCR5380 driver
4 * Copyright 1993, Drew Eckhardt
6 * (Unix and Linux consulting and custom programming)
10 * NCR53C400 extensions (c) 1994,1995,1996, Kevin Lentin
11 * K.Lentin@cs.monash.edu.au
13 * NCR53C400A extensions (c) 1996, Ingmar Baumgart
14 * ingmar@gonzo.schwaben.de
16 * DTC3181E extensions (c) 1997, Ronald van Cuijlenborg
17 * ronald.van.cuijlenborg@tip.nl or nutty@dds.nl
19 * Added ISAPNP support for DTC436 adapters,
20 * Thomas Sailer, sailer@ife.ee.ethz.ch
24 * For more information, please consult
27 * SCSI Protocol Controller
30 * NCR Microelectronics
31 * 1635 Aeroplaza Drive
32 * Colorado Springs, CO 80916
38 * TODO : flesh out DMA support, find some one actually using this (I have
39 * a memory mapped Trantor board that works fine)
45 * PARITY - enable parity checking. Not supported.
47 * SCSI2 - enable support for SCSI-II tagged queueing. Untested.
49 * USLEEP - enable support for devices that don't disconnect. Untested.
51 * The card is detected and initialized in one of several ways :
52 * 1. With command line overrides - NCR5380=port,irq may be
53 * used on the LILO command line to override the defaults.
55 * 2. With the GENERIC_NCR5380_OVERRIDE compile time define. This is
56 * specified as an array of address, irq, dma, board tuples. Ie, for
57 * one board at 0x350, IRQ5, no dma, I could say
58 * -DGENERIC_NCR5380_OVERRIDE={{0xcc000, 5, DMA_NONE, BOARD_NCR5380}}
60 * -1 should be specified for no or DMA interrupt, -2 to autoprobe for an
61 * IRQ line if overridden on the command line.
63 * 3. When included as a module, with arguments passed on the command line:
64 * ncr_irq=xx the interrupt
65 * ncr_addr=xx the port or base address (for port or memory
68 * ncr_5380=1 to set up for a NCR5380 board
69 * ncr_53c400=1 to set up for a NCR53C400 board
71 * modprobe g_NCR5380 ncr_irq=5 ncr_addr=0x350 ncr_5380=1
72 * for a port mapped NCR5380 board or
73 * modprobe g_NCR5380 ncr_irq=255 ncr_addr=0xc8000 ncr_53c400=1
74 * for a memory mapped NCR53C400 board with interrupts disabled.
76 * 255 should be specified for no or DMA interrupt, 254 to autoprobe for an
77 * IRQ line if overridden on the command line.
82 * $Log: generic_NCR5380.c,v $
85 /* settings for DTC3181E card with only Mustek scanner attached */
88 #define USLEEP_SLEEP 20
89 #define USLEEP_WAITLONG 500
95 #ifdef CONFIG_SCSI_GENERIC_NCR53C400
96 #define NCR53C400_PSEUDO_DMA 1
100 #undef NCR5380_STAT_LIMIT
103 #include <asm/system.h>
105 #include <linux/signal.h>
106 #include <linux/blkdev.h>
108 #include <scsi/scsi_host.h>
109 #include "g_NCR5380.h"
111 #include <linux/stat.h>
112 #include <linux/init.h>
113 #include <linux/ioport.h>
114 #include <linux/isapnp.h>
115 #include <linux/delay.h>
116 #include <linux/interrupt.h>
118 #define NCR_NOT_SET 0
119 static int ncr_irq = NCR_NOT_SET;
120 static int ncr_dma = NCR_NOT_SET;
121 static int ncr_addr = NCR_NOT_SET;
122 static int ncr_5380 = NCR_NOT_SET;
123 static int ncr_53c400 = NCR_NOT_SET;
124 static int ncr_53c400a = NCR_NOT_SET;
125 static int dtc_3181e = NCR_NOT_SET;
127 static struct override {
128 NCR5380_map_type NCR5380_map_name;
131 int board; /* Use NCR53c400, Ricoh, etc. extensions ? */
133 #ifdef GENERIC_NCR5380_OVERRIDE
134 [] __initdata = GENERIC_NCR5380_OVERRIDE;
136 [1] __initdata = { { 0,},};
139 #define NO_OVERRIDES ARRAY_SIZE(overrides)
144 * internal_setup - handle lilo command string override
145 * @board: BOARD_* identifier for the board
147 * @ints: numeric parameters
149 * Do LILO command line initialization of the overrides array. Display
155 static void __init internal_setup(int board, char *str, int *ints)
157 static int commandline_current = 0;
160 if (ints[0] != 2 && ints[0] != 3) {
161 printk(KERN_ERR "generic_NCR5380_setup : usage ncr5380=" STRVAL(NCR5380_map_name) ",irq,dma\n");
165 case BOARD_NCR53C400:
167 printk(KERN_ERR "generic_NCR53C400_setup : usage ncr53c400=" STRVAL(NCR5380_map_name) ",irq\n");
171 case BOARD_NCR53C400A:
173 printk(KERN_ERR "generic_NCR53C400A_setup : usage ncr53c400a=" STRVAL(NCR5380_map_name) ",irq\n");
179 printk("generic_DTC3181E_setup : usage dtc3181e=" STRVAL(NCR5380_map_name) ",irq\n");
185 if (commandline_current < NO_OVERRIDES) {
186 overrides[commandline_current].NCR5380_map_name = (NCR5380_map_type) ints[1];
187 overrides[commandline_current].irq = ints[2];
189 overrides[commandline_current].dma = ints[3];
191 overrides[commandline_current].dma = DMA_NONE;
192 overrides[commandline_current].board = board;
193 ++commandline_current;
199 * do_NCR53C80_setup - set up entry point
202 * Setup function invoked at boot to parse the ncr5380= command
206 static int __init do_NCR5380_setup(char *str)
210 get_options(str, ARRAY_SIZE(ints), ints);
211 internal_setup(BOARD_NCR5380, str, ints);
216 * do_NCR53C400_setup - set up entry point
218 * @ints: integer parameters from kernel setup code
220 * Setup function invoked at boot to parse the ncr53c400= command
224 static int __init do_NCR53C400_setup(char *str)
228 get_options(str, ARRAY_SIZE(ints), ints);
229 internal_setup(BOARD_NCR53C400, str, ints);
234 * do_NCR53C400A_setup - set up entry point
236 * @ints: integer parameters from kernel setup code
238 * Setup function invoked at boot to parse the ncr53c400a= command
242 static int __init do_NCR53C400A_setup(char *str)
246 get_options(str, ARRAY_SIZE(ints), ints);
247 internal_setup(BOARD_NCR53C400A, str, ints);
252 * do_DTC3181E_setup - set up entry point
254 * @ints: integer parameters from kernel setup code
256 * Setup function invoked at boot to parse the dtc3181e= command
260 static int __init do_DTC3181E_setup(char *str)
264 get_options(str, ARRAY_SIZE(ints), ints);
265 internal_setup(BOARD_DTC3181E, str, ints);
272 * generic_NCR5380_detect - look for NCR5380 controllers
273 * @tpnt: the scsi template
275 * Scan for the present of NCR5380, NCR53C400, NCR53C400A, DTC3181E
276 * and DTC436(ISAPnP) controllers. If overrides have been set we use
279 * The caller supplied NCR5380_init function is invoked from here, before
280 * the interrupt line is taken.
285 int __init generic_NCR5380_detect(struct scsi_host_template * tpnt)
287 static int current_override = 0;
290 unsigned long region_size = 16;
291 static unsigned int __initdata ncr_53c400a_ports[] = {
292 0x280, 0x290, 0x300, 0x310, 0x330, 0x340, 0x348, 0x350, 0
294 static unsigned int __initdata dtc_3181e_ports[] = {
295 0x220, 0x240, 0x280, 0x2a0, 0x2c0, 0x300, 0x320, 0x340, 0
298 struct Scsi_Host *instance;
299 #ifdef CONFIG_SCSI_G_NCR5380_MEM
304 if (ncr_irq != NCR_NOT_SET)
305 overrides[0].irq = ncr_irq;
306 if (ncr_dma != NCR_NOT_SET)
307 overrides[0].dma = ncr_dma;
308 if (ncr_addr != NCR_NOT_SET)
309 overrides[0].NCR5380_map_name = (NCR5380_map_type) ncr_addr;
310 if (ncr_5380 != NCR_NOT_SET)
311 overrides[0].board = BOARD_NCR5380;
312 else if (ncr_53c400 != NCR_NOT_SET)
313 overrides[0].board = BOARD_NCR53C400;
314 else if (ncr_53c400a != NCR_NOT_SET)
315 overrides[0].board = BOARD_NCR53C400A;
316 else if (dtc_3181e != NCR_NOT_SET)
317 overrides[0].board = BOARD_DTC3181E;
319 if (!current_override && isapnp_present()) {
320 struct pnp_dev *dev = NULL;
322 while ((dev = pnp_find_dev(NULL, ISAPNP_VENDOR('D', 'T', 'C'), ISAPNP_FUNCTION(0x436e), dev))) {
323 if (count >= NO_OVERRIDES)
325 if (pnp_device_attach(dev) < 0) {
326 printk(KERN_ERR "dtc436e probe: attach failed\n");
329 if (pnp_activate_dev(dev) < 0) {
330 printk(KERN_ERR "dtc436e probe: activate failed\n");
331 pnp_device_detach(dev);
334 if (!pnp_port_valid(dev, 0)) {
335 printk(KERN_ERR "dtc436e probe: no valid port\n");
336 pnp_device_detach(dev);
339 if (pnp_irq_valid(dev, 0))
340 overrides[count].irq = pnp_irq(dev, 0);
342 overrides[count].irq = SCSI_IRQ_NONE;
343 if (pnp_dma_valid(dev, 0))
344 overrides[count].dma = pnp_dma(dev, 0);
346 overrides[count].dma = DMA_NONE;
347 overrides[count].NCR5380_map_name = (NCR5380_map_type) pnp_port_start(dev, 0);
348 overrides[count].board = BOARD_DTC3181E;
353 tpnt->proc_name = "g_NCR5380";
355 for (count = 0; current_override < NO_OVERRIDES; ++current_override) {
356 if (!(overrides[current_override].NCR5380_map_name))
360 switch (overrides[current_override].board) {
362 flags = FLAG_NO_PSEUDO_DMA;
364 case BOARD_NCR53C400:
365 flags = FLAG_NCR53C400;
367 case BOARD_NCR53C400A:
368 flags = FLAG_NO_PSEUDO_DMA;
369 ports = ncr_53c400a_ports;
372 flags = FLAG_NO_PSEUDO_DMA | FLAG_DTC3181E;
373 ports = dtc_3181e_ports;
377 #ifndef CONFIG_SCSI_G_NCR5380_MEM
379 /* wakeup sequence for the NCR53C400A and DTC3181E */
381 /* Disable the adapter and look for a free io port */
389 if (overrides[current_override].NCR5380_map_name != PORT_AUTO)
390 for (i = 0; ports[i]; i++) {
391 if (!request_region(ports[i], 16, "ncr53c80"))
393 if (overrides[current_override].NCR5380_map_name == ports[i])
395 release_region(ports[i], 16);
397 for (i = 0; ports[i]; i++) {
398 if (!request_region(ports[i], 16, "ncr53c80"))
400 if (inb(ports[i]) == 0xff)
402 release_region(ports[i], 16);
405 /* At this point we have our region reserved */
411 outb(0x80 | i, 0x379); /* set io port to be used */
412 outb(0xc0, ports[i] + 9);
413 if (inb(ports[i] + 9) != 0x80)
416 overrides[current_override].NCR5380_map_name = ports[i];
422 /* Not a 53C400A style setup - just grab */
423 if(!(request_region(overrides[current_override].NCR5380_map_name, NCR5380_region_size, "ncr5380")))
425 region_size = NCR5380_region_size;
428 base = overrides[current_override].NCR5380_map_name;
429 if (!request_mem_region(base, NCR5380_region_size, "ncr5380"))
431 iomem = ioremap(base, NCR5380_region_size);
433 release_mem_region(base, NCR5380_region_size);
437 instance = scsi_register(tpnt, sizeof(struct NCR5380_hostdata));
438 if (instance == NULL) {
439 #ifndef CONFIG_SCSI_G_NCR5380_MEM
440 release_region(overrides[current_override].NCR5380_map_name, region_size);
443 release_mem_region(base, NCR5380_region_size);
448 instance->NCR5380_instance_name = overrides[current_override].NCR5380_map_name;
449 #ifndef CONFIG_SCSI_G_NCR5380_MEM
450 instance->n_io_port = region_size;
452 ((struct NCR5380_hostdata *)instance->hostdata).iomem = iomem;
455 NCR5380_init(instance, flags);
457 if (overrides[current_override].irq != IRQ_AUTO)
458 instance->irq = overrides[current_override].irq;
460 instance->irq = NCR5380_probe_irq(instance, 0xffff);
462 if (instance->irq != SCSI_IRQ_NONE)
463 if (request_irq(instance->irq, generic_NCR5380_intr, IRQF_DISABLED, "NCR5380", instance)) {
464 printk(KERN_WARNING "scsi%d : IRQ%d not free, interrupts disabled\n", instance->host_no, instance->irq);
465 instance->irq = SCSI_IRQ_NONE;
468 if (instance->irq == SCSI_IRQ_NONE) {
469 printk(KERN_INFO "scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no);
470 printk(KERN_INFO "scsi%d : please jumper the board for a free IRQ.\n", instance->host_no);
473 printk(KERN_INFO "scsi%d : at " STRVAL(NCR5380_map_name) " 0x%x", instance->host_no, (unsigned int) instance->NCR5380_instance_name);
474 if (instance->irq == SCSI_IRQ_NONE)
475 printk(" interrupts disabled");
477 printk(" irq %d", instance->irq);
478 printk(" options CAN_QUEUE=%d CMD_PER_LUN=%d release=%d", CAN_QUEUE, CMD_PER_LUN, GENERIC_NCR5380_PUBLIC_RELEASE);
479 NCR5380_print_options(instance);
489 * generic_NCR5380_info - reporting string
490 * @host: NCR5380 to report on
492 * Report driver information for the NCR5380
495 const char *generic_NCR5380_info(struct Scsi_Host *host)
497 static const char string[] = "Generic NCR5380/53C400 Driver";
502 * generic_NCR5380_release_resources - free resources
503 * @instance: host adapter to clean up
505 * Free the generic interface resources from this adapter.
510 int generic_NCR5380_release_resources(struct Scsi_Host *instance)
512 NCR5380_local_declare();
513 NCR5380_setup(instance);
515 if (instance->irq != SCSI_IRQ_NONE)
516 free_irq(instance->irq, NULL);
517 NCR5380_exit(instance);
519 #ifndef CONFIG_SCSI_G_NCR5380_MEM
520 release_region(instance->NCR5380_instance_name, instance->n_io_port);
522 iounmap(((struct NCR5380_hostdata *)instance->hostdata).iomem);
523 release_mem_region(instance->NCR5380_instance_name, NCR5380_region_size);
532 * generic_NCR5380_biosparam
533 * @disk: disk to compute geometry for
534 * @dev: device identifier for this disk
535 * @ip: sizes to fill in
537 * Generates a BIOS / DOS compatible H-C-S mapping for the specified
540 * XXX Most SCSI boards use this mapping, I could be incorrect. Someone
541 * using hard disks on a trantor should verify that this mapping
542 * corresponds to that used by the BIOS / ASPI driver by running the linux
543 * fdisk program and matching the H_C_S coordinates to what DOS uses.
549 generic_NCR5380_biosparam(struct scsi_device *sdev, struct block_device *bdev,
550 sector_t capacity, int *ip)
554 ip[2] = capacity >> 11;
559 #ifdef NCR53C400_PSEUDO_DMA
562 * NCR5380_pread - pseudo DMA read
563 * @instance: adapter to read from
564 * @dst: buffer to read into
565 * @len: buffer length
567 * Perform a psuedo DMA mode read from an NCR53C400 or equivalent
571 static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, int len)
573 int blocks = len / 128;
577 NCR5380_local_declare();
578 NCR5380_setup(instance);
580 NCR5380_write(C400_CONTROL_STATUS_REG, CSR_BASE | CSR_TRANS_DIR);
581 NCR5380_write(C400_BLOCK_COUNTER_REG, blocks);
583 if ((bl = NCR5380_read(C400_BLOCK_COUNTER_REG)) == 0) {
586 if (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ) {
587 printk(KERN_ERR "53C400r: Got 53C80_IRQ start=%d, blocks=%d\n", start, blocks);
590 while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY);
592 #ifndef CONFIG_SCSI_G_NCR5380_MEM
595 for (i = 0; i < 128; i++)
596 dst[start + i] = NCR5380_read(C400_HOST_BUFFER);
599 /* implies CONFIG_SCSI_G_NCR5380_MEM */
600 memcpy_fromio(dst + start, iomem + NCR53C400_host_buffer, 128);
607 while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY)
609 // FIXME - no timeout
612 #ifndef CONFIG_SCSI_G_NCR5380_MEM
615 for (i = 0; i < 128; i++)
616 dst[start + i] = NCR5380_read(C400_HOST_BUFFER);
619 /* implies CONFIG_SCSI_G_NCR5380_MEM */
620 memcpy_fromio(dst + start, iomem + NCR53C400_host_buffer, 128);
626 if (!(NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ))
627 printk("53C400r: no 53C80 gated irq after transfer");
631 * DON'T DO THIS - THEY NEVER ARRIVE!
633 printk("53C400r: Waiting for 53C80 registers\n");
634 while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_53C80_REG)
637 if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_END_DMA_TRANSFER))
638 printk(KERN_ERR "53C400r: no end dma signal\n");
640 NCR5380_write(MODE_REG, MR_BASE);
641 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
646 * NCR5380_write - pseudo DMA write
647 * @instance: adapter to read from
648 * @dst: buffer to read into
649 * @len: buffer length
651 * Perform a psuedo DMA mode read from an NCR53C400 or equivalent
655 static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, int len)
657 int blocks = len / 128;
662 NCR5380_local_declare();
663 NCR5380_setup(instance);
665 NCR5380_write(C400_CONTROL_STATUS_REG, CSR_BASE);
666 NCR5380_write(C400_BLOCK_COUNTER_REG, blocks);
668 if (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ) {
669 printk(KERN_ERR "53C400w: Got 53C80_IRQ start=%d, blocks=%d\n", start, blocks);
673 if ((bl = NCR5380_read(C400_BLOCK_COUNTER_REG)) == 0) {
676 while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY)
678 #ifndef CONFIG_SCSI_G_NCR5380_MEM
680 for (i = 0; i < 128; i++)
681 NCR5380_write(C400_HOST_BUFFER, src[start + i]);
684 /* implies CONFIG_SCSI_G_NCR5380_MEM */
685 memcpy_toio(iomem + NCR53C400_host_buffer, src + start, 128);
691 while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY)
692 ; // FIXME - no timeout
694 #ifndef CONFIG_SCSI_G_NCR5380_MEM
696 for (i = 0; i < 128; i++)
697 NCR5380_write(C400_HOST_BUFFER, src[start + i]);
700 /* implies CONFIG_SCSI_G_NCR5380_MEM */
701 memcpy_toio(iomem + NCR53C400_host_buffer, src + start, 128);
708 printk("53C400w: waiting for registers to be available\n");
709 THEY NEVER DO ! while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_53C80_REG);
710 printk("53C400w: Got em\n");
713 /* Let's wait for this instead - could be ugly */
714 /* All documentation says to check for this. Maybe my hardware is too
715 * fast. Waiting for it seems to work fine! KLL
717 while (!(i = NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ))
718 ; // FIXME - no timeout
721 * I know. i is certainly != 0 here but the loop is new. See previous
725 if (!((i = NCR5380_read(BUS_AND_STATUS_REG)) & BASR_END_DMA_TRANSFER))
726 printk(KERN_ERR "53C400w: No END OF DMA bit - WHOOPS! BASR=%0x\n", i);
728 printk(KERN_ERR "53C400w: no 53C80 gated irq after transfer (last block)\n");
731 if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_END_DMA_TRANSFER)) {
732 printk(KERN_ERR "53C400w: no end dma signal\n");
735 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT))
739 #endif /* PSEUDO_DMA */
742 * Include the NCR5380 core code that we build our driver around
747 #define PRINTP(x) len += sprintf(buffer+len, x)
750 static int sprint_opcode(char *buffer, int len, int opcode)
753 PRINTP("0x%02x " ANDP opcode);
757 static int sprint_command(char *buffer, int len, unsigned char *command)
759 int i, s, start = len;
760 len += sprint_opcode(buffer, len, command[0]);
761 for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
762 PRINTP("%02x " ANDP command[i]);
768 * sprintf_Scsi_Cmnd - print a scsi command
769 * @buffer: buffr to print into
770 * @len: buffer length
771 * @cmd: SCSI command block
773 * Print out the target and command data in hex
776 static int sprint_Scsi_Cmnd(char *buffer, int len, Scsi_Cmnd * cmd)
779 PRINTP("host number %d destination target %d, lun %d\n" ANDP cmd->device->host->host_no ANDP cmd->device->id ANDP cmd->device->lun);
780 PRINTP(" command = ");
781 len += sprint_command(buffer, len, cmd->cmnd);
786 * generic_NCR5380_proc_info - /proc for NCR5380 driver
787 * @buffer: buffer to print into
788 * @start: start position
789 * @offset: offset into buffer
791 * @hostno: instance to affect
794 * Provide the procfs information for the 5380 controller. We fill
795 * this with useful debugging information including the commands
796 * being executed, disconnected command queue and the statistical
799 * Locks: global cli/lock for queue walk
802 static int generic_NCR5380_proc_info(struct Scsi_Host *scsi_ptr, char *buffer, char **start, off_t offset, int length, int inout)
805 NCR5380_local_declare();
807 unsigned char status;
810 struct NCR5380_hostdata *hostdata;
812 struct scsi_device *dev;
815 NCR5380_setup(scsi_ptr);
816 hostdata = (struct NCR5380_hostdata *) scsi_ptr->hostdata;
818 spin_lock_irqsave(scsi_ptr->host_lock, flags);
819 PRINTP("SCSI host number %d : %s\n" ANDP scsi_ptr->host_no ANDP scsi_ptr->hostt->name);
820 PRINTP("Generic NCR5380 driver version %d\n" ANDP GENERIC_NCR5380_PUBLIC_RELEASE);
821 PRINTP("NCR5380 core version %d\n" ANDP NCR5380_PUBLIC_RELEASE);
823 PRINTP("NCR53C400 extension version %d\n" ANDP NCR53C400_PUBLIC_RELEASE);
824 PRINTP("NCR53C400 card%s detected\n" ANDP(((struct NCR5380_hostdata *) scsi_ptr->hostdata)->flags & FLAG_NCR53C400) ? "" : " not");
825 # if NCR53C400_PSEUDO_DMA
826 PRINTP("NCR53C400 pseudo DMA used\n");
829 PRINTP("NO NCR53C400 driver extensions\n");
831 PRINTP("Using %s mapping at %s 0x%lx, " ANDP STRVAL(NCR5380_map_config) ANDP STRVAL(NCR5380_map_name) ANDP scsi_ptr->NCR5380_instance_name);
832 if (scsi_ptr->irq == SCSI_IRQ_NONE)
833 PRINTP("no interrupt\n");
835 PRINTP("on interrupt %d\n" ANDP scsi_ptr->irq);
838 if (hostdata->connected || hostdata->issue_queue || hostdata->disconnected_queue)
839 PRINTP("There are commands pending, transfer rates may be crud\n");
840 if (hostdata->pendingr)
841 PRINTP(" %d pending reads" ANDP hostdata->pendingr);
842 if (hostdata->pendingw)
843 PRINTP(" %d pending writes" ANDP hostdata->pendingw);
844 if (hostdata->pendingr || hostdata->pendingw)
846 shost_for_each_device(dev, scsi_ptr) {
847 unsigned long br = hostdata->bytes_read[dev->id];
848 unsigned long bw = hostdata->bytes_write[dev->id];
849 long tr = hostdata->time_read[dev->id] / HZ;
850 long tw = hostdata->time_write[dev->id] / HZ;
852 PRINTP(" T:%d %s " ANDP dev->id ANDP scsi_device_type(dev->type));
853 for (i = 0; i < 8; i++)
854 if (dev->vendor[i] >= 0x20)
855 *(buffer + (len++)) = dev->vendor[i];
856 *(buffer + (len++)) = ' ';
857 for (i = 0; i < 16; i++)
858 if (dev->model[i] >= 0x20)
859 *(buffer + (len++)) = dev->model[i];
860 *(buffer + (len++)) = ' ';
861 for (i = 0; i < 4; i++)
862 if (dev->rev[i] >= 0x20)
863 *(buffer + (len++)) = dev->rev[i];
864 *(buffer + (len++)) = ' ';
866 PRINTP("\n%10ld kb read in %5ld secs" ANDP br / 1024 ANDP tr);
868 PRINTP(" @ %5ld bps" ANDP br / tr);
870 PRINTP("\n%10ld kb written in %5ld secs" ANDP bw / 1024 ANDP tw);
872 PRINTP(" @ %5ld bps" ANDP bw / tw);
877 status = NCR5380_read(STATUS_REG);
878 if (!(status & SR_REQ))
879 PRINTP("REQ not asserted, phase unknown.\n");
881 for (i = 0; (phases[i].value != PHASE_UNKNOWN) && (phases[i].value != (status & PHASE_MASK)); ++i);
882 PRINTP("Phase %s\n" ANDP phases[i].name);
885 if (!hostdata->connected) {
886 PRINTP("No currently connected command\n");
888 len += sprint_Scsi_Cmnd(buffer, len, (Scsi_Cmnd *) hostdata->connected);
891 PRINTP("issue_queue\n");
893 for (ptr = (Scsi_Cmnd *) hostdata->issue_queue; ptr; ptr = (Scsi_Cmnd *) ptr->host_scribble)
894 len += sprint_Scsi_Cmnd(buffer, len, ptr);
896 PRINTP("disconnected_queue\n");
898 for (ptr = (Scsi_Cmnd *) hostdata->disconnected_queue; ptr; ptr = (Scsi_Cmnd *) ptr->host_scribble)
899 len += sprint_Scsi_Cmnd(buffer, len, ptr);
901 *start = buffer + offset;
905 spin_unlock_irqrestore(scsi_ptr->host_lock, flags);
912 static struct scsi_host_template driver_template = {
913 .proc_info = generic_NCR5380_proc_info,
914 .name = "Generic NCR5380/NCR53C400 Scsi Driver",
915 .detect = generic_NCR5380_detect,
916 .release = generic_NCR5380_release_resources,
917 .info = generic_NCR5380_info,
918 .queuecommand = generic_NCR5380_queue_command,
919 .eh_abort_handler = generic_NCR5380_abort,
920 .eh_bus_reset_handler = generic_NCR5380_bus_reset,
921 .bios_param = NCR5380_BIOSPARAM,
922 .can_queue = CAN_QUEUE,
924 .sg_tablesize = SG_ALL,
925 .cmd_per_lun = CMD_PER_LUN,
926 .use_clustering = DISABLE_CLUSTERING,
928 #include <linux/module.h>
929 #include "scsi_module.c"
931 module_param(ncr_irq, int, 0);
932 module_param(ncr_dma, int, 0);
933 module_param(ncr_addr, int, 0);
934 module_param(ncr_5380, int, 0);
935 module_param(ncr_53c400, int, 0);
936 module_param(ncr_53c400a, int, 0);
937 module_param(dtc_3181e, int, 0);
938 MODULE_LICENSE("GPL");
941 static struct isapnp_device_id id_table[] __devinitdata = {
943 ISAPNP_ANY_ID, ISAPNP_ANY_ID,
944 ISAPNP_VENDOR('D', 'T', 'C'), ISAPNP_FUNCTION(0x436e),
949 MODULE_DEVICE_TABLE(isapnp, id_table);
952 __setup("ncr5380=", do_NCR5380_setup);
953 __setup("ncr53c400=", do_NCR53C400_setup);
954 __setup("ncr53c400a=", do_NCR53C400A_setup);
955 __setup("dtc3181e=", do_DTC3181E_setup);