2 * Detection routine for the NCR53c710 based Amiga SCSI Controllers for Linux.
3 * Amiga MacroSystemUS WarpEngine SCSI controller.
4 * Amiga Technologies A4000T SCSI controller.
5 * Amiga Technologies/DKB A4091 SCSI controller.
7 * Written 1997 by Alan Hourihane <alanh@fairlite.demon.co.uk>
8 * plus modifications of the 53c7xx.c driver to support the Amiga.
10 #include <linux/types.h>
12 #include <linux/blkdev.h>
13 #include <linux/sched.h>
14 #include <linux/zorro.h>
15 #include <linux/stat.h>
17 #include <asm/setup.h>
19 #include <asm/pgtable.h>
20 #include <asm/amigaints.h>
21 #include <asm/amigahw.h>
26 #include <scsi/scsi_host.h>
31 static int amiga7xx_register_one(struct scsi_host_template *tpnt,
32 unsigned long address)
37 if (!request_mem_region(address, 0x1000, "ncr53c710"))
40 address = (unsigned long)z_ioremap(address, 0x1000);
41 options = OPTION_MEMORY_MAPPED | OPTION_DEBUG_TEST1 | OPTION_INTFLY |
42 OPTION_SYNCHRONOUS | OPTION_ALWAYS_SYNCHRONOUS |
44 clock = 50000000; /* 50 MHz SCSI Clock */
45 ncr53c7xx_init(tpnt, 0, 710, address, 0, IRQ_AMIGA_PORTS, DMA_NONE,
56 int absolute; /* offset is absolute address */
57 } amiga7xx_table[] = {
58 { .id = ZORRO_PROD_PHASE5_BLIZZARD_603E_PLUS, .offset = 0xf40000,
60 { .id = ZORRO_PROD_MACROSYSTEMS_WARP_ENGINE_40xx, .offset = 0x40000 },
61 { .id = ZORRO_PROD_CBM_A4091_1, .offset = 0x800000 },
62 { .id = ZORRO_PROD_CBM_A4091_2, .offset = 0x800000 },
63 { .id = ZORRO_PROD_GVP_GFORCE_040_060, .offset = 0x40000 },
67 static int __init amiga7xx_zorro_detect(struct scsi_host_template *tpnt)
70 struct zorro_dev *z = NULL;
71 unsigned long address;
73 while ((z = zorro_find_device(ZORRO_WILDCARD, z))) {
74 for (i = 0; amiga7xx_table[i].id; i++)
75 if (z->id == amiga7xx_table[i].id)
77 if (!amiga7xx_table[i].id)
79 if (amiga7xx_table[i].absolute)
80 address = amiga7xx_table[i].offset;
82 address = z->resource.start + amiga7xx_table[i].offset;
83 num += amiga7xx_register_one(tpnt, address);
88 #endif /* CONFIG_ZORRO */
91 int __init amiga7xx_detect(struct scsi_host_template *tpnt)
93 static unsigned char called = 0;
96 if (called || !MACH_IS_AMIGA)
99 tpnt->proc_name = "Amiga7xx";
101 if (AMIGAHW_PRESENT(A4000_SCSI))
102 num += amiga7xx_register_one(tpnt, 0xdd0040);
105 num += amiga7xx_zorro_detect(tpnt);
112 static int amiga7xx_release(struct Scsi_Host *shost)
115 free_irq(shost->irq, NULL);
116 if (shost->dma_channel != 0xff)
117 free_dma(shost->dma_channel);
118 if (shost->io_port && shost->n_io_port)
119 release_region(shost->io_port, shost->n_io_port);
120 scsi_unregister(shost);
124 static struct scsi_host_template driver_template = {
125 .name = "Amiga NCR53c710 SCSI",
126 .detect = amiga7xx_detect,
127 .release = amiga7xx_release,
128 .queuecommand = NCR53c7xx_queue_command,
129 .abort = NCR53c7xx_abort,
130 .reset = NCR53c7xx_reset,
135 .use_clustering = DISABLE_CLUSTERING
139 #include "scsi_module.c"