Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / drivers / scsi / a4000t.c
blobd4bda201774652d9f3df315fa182832abb52610c
1 /*
2 * Detection routine for the NCR53c710 based Amiga SCSI Controllers for Linux.
3 * Amiga Technologies A4000T SCSI controller.
5 * Written 1997 by Alan Hourihane <alanh@fairlite.demon.co.uk>
6 * plus modifications of the 53c7xx.c driver to support the Amiga.
8 * Rewritten to use 53c700.c by Kars de Jong <jongk@linux-m68k.org>
9 */
11 #include <linux/module.h>
12 #include <linux/platform_device.h>
13 #include <linux/init.h>
14 #include <linux/interrupt.h>
15 #include <asm/amigahw.h>
16 #include <asm/amigaints.h>
17 #include <scsi/scsi_host.h>
18 #include <scsi/scsi_transport_spi.h>
20 #include "53c700.h"
22 MODULE_AUTHOR("Alan Hourihane <alanh@fairlite.demon.co.uk> / Kars de Jong <jongk@linux-m68k.org>");
23 MODULE_DESCRIPTION("Amiga A4000T NCR53C710 driver");
24 MODULE_LICENSE("GPL");
27 static struct scsi_host_template a4000t_scsi_driver_template = {
28 .name = "A4000T builtin SCSI",
29 .proc_name = "A4000t",
30 .this_id = 7,
31 .module = THIS_MODULE,
34 static struct platform_device *a4000t_scsi_device;
36 #define A4000T_SCSI_ADDR 0xdd0040
38 static int __devinit a4000t_probe(struct device *dev)
40 struct Scsi_Host *host;
41 struct NCR_700_Host_Parameters *hostdata;
43 if (!(MACH_IS_AMIGA && AMIGAHW_PRESENT(A4000_SCSI)))
44 goto out;
46 if (!request_mem_region(A4000T_SCSI_ADDR, 0x1000,
47 "A4000T builtin SCSI"))
48 goto out;
50 hostdata = kzalloc(sizeof(struct NCR_700_Host_Parameters), GFP_KERNEL);
51 if (!hostdata) {
52 printk(KERN_ERR "a4000t-scsi: Failed to allocate host data\n");
53 goto out_release;
56 /* Fill in the required pieces of hostdata */
57 hostdata->base = (void __iomem *)ZTWO_VADDR(A4000T_SCSI_ADDR);
58 hostdata->clock = 50;
59 hostdata->chip710 = 1;
60 hostdata->dmode_extra = DMODE_FC2;
61 hostdata->dcntl_extra = EA_710;
63 /* and register the chip */
64 host = NCR_700_detect(&a4000t_scsi_driver_template, hostdata, dev);
65 if (!host) {
66 printk(KERN_ERR "a4000t-scsi: No host detected; "
67 "board configuration problem?\n");
68 goto out_free;
71 host->this_id = 7;
72 host->base = A4000T_SCSI_ADDR;
73 host->irq = IRQ_AMIGA_PORTS;
75 if (request_irq(host->irq, NCR_700_intr, IRQF_SHARED, "a4000t-scsi",
76 host)) {
77 printk(KERN_ERR "a4000t-scsi: request_irq failed\n");
78 goto out_put_host;
81 dev_set_drvdata(dev, host);
82 scsi_scan_host(host);
84 return 0;
86 out_put_host:
87 scsi_host_put(host);
88 out_free:
89 kfree(hostdata);
90 out_release:
91 release_mem_region(A4000T_SCSI_ADDR, 0x1000);
92 out:
93 return -ENODEV;
96 static __devexit int a4000t_device_remove(struct device *dev)
98 struct Scsi_Host *host = dev_get_drvdata(dev);
99 struct NCR_700_Host_Parameters *hostdata = shost_priv(host);
101 scsi_remove_host(host);
103 NCR_700_release(host);
104 kfree(hostdata);
105 free_irq(host->irq, host);
106 release_mem_region(A4000T_SCSI_ADDR, 0x1000);
108 return 0;
111 static struct device_driver a4000t_scsi_driver = {
112 .name = "a4000t-scsi",
113 .bus = &platform_bus_type,
114 .probe = a4000t_probe,
115 .remove = __devexit_p(a4000t_device_remove),
118 static int __init a4000t_scsi_init(void)
120 int err;
122 err = driver_register(&a4000t_scsi_driver);
123 if (err)
124 return err;
126 a4000t_scsi_device = platform_device_register_simple("a4000t-scsi",
127 -1, NULL, 0);
128 if (IS_ERR(a4000t_scsi_device)) {
129 driver_unregister(&a4000t_scsi_driver);
130 return PTR_ERR(a4000t_scsi_device);
133 return err;
136 static void __exit a4000t_scsi_exit(void)
138 platform_device_unregister(a4000t_scsi_device);
139 driver_unregister(&a4000t_scsi_driver);
142 module_init(a4000t_scsi_init);
143 module_exit(a4000t_scsi_exit);