Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Detection routine for the NCR53c710 based Amiga SCSI Controllers for Linux. |
| 3 | * Amiga Technologies A4000T SCSI controller. |
| 4 | * |
| 5 | * Written 1997 by Alan Hourihane <alanh@fairlite.demon.co.uk> |
| 6 | * plus modifications of the 53c7xx.c driver to support the Amiga. |
| 7 | * |
| 8 | * Rewritten to use 53c700.c by Kars de Jong <jongk@linux-m68k.org> |
| 9 | */ |
| 10 | |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/platform_device.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/interrupt.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
Geert Uytterhoeven | 96249cf | 2007-06-19 09:47:28 +0200 | [diff] [blame] | 16 | #include <asm/amigahw.h> |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 17 | #include <asm/amigaints.h> |
| 18 | #include <scsi/scsi_host.h> |
| 19 | #include <scsi/scsi_transport_spi.h> |
| 20 | |
| 21 | #include "53c700.h" |
| 22 | |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 23 | |
| 24 | static struct scsi_host_template a4000t_scsi_driver_template = { |
| 25 | .name = "A4000T builtin SCSI", |
| 26 | .proc_name = "A4000t", |
| 27 | .this_id = 7, |
| 28 | .module = THIS_MODULE, |
| 29 | }; |
| 30 | |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 31 | |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 32 | #define A4000T_SCSI_OFFSET 0x40 |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 33 | |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 34 | static int __init amiga_a4000t_scsi_probe(struct platform_device *pdev) |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 35 | { |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 36 | struct resource *res; |
| 37 | phys_addr_t scsi_addr; |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 38 | struct NCR_700_Host_Parameters *hostdata; |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 39 | struct Scsi_Host *host; |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 40 | |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 41 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 42 | if (!res) |
| 43 | return -ENODEV; |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 44 | |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 45 | if (!request_mem_region(res->start, resource_size(res), |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 46 | "A4000T builtin SCSI")) |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 47 | return -EBUSY; |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 48 | |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 49 | hostdata = kzalloc(sizeof(struct NCR_700_Host_Parameters), |
| 50 | GFP_KERNEL); |
Mariusz Kozlowski | bbfbbbc | 2007-08-11 10:13:24 +0200 | [diff] [blame] | 51 | if (!hostdata) { |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 52 | dev_err(&pdev->dev, "Failed to allocate host data\n"); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 53 | goto out_release; |
| 54 | } |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 55 | |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 56 | scsi_addr = res->start + A4000T_SCSI_OFFSET; |
| 57 | |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 58 | /* Fill in the required pieces of hostdata */ |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 59 | hostdata->base = (void __iomem *)ZTWO_VADDR(scsi_addr); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 60 | hostdata->clock = 50; |
| 61 | hostdata->chip710 = 1; |
| 62 | hostdata->dmode_extra = DMODE_FC2; |
| 63 | hostdata->dcntl_extra = EA_710; |
| 64 | |
| 65 | /* and register the chip */ |
Geert Uytterhoeven | e5779a5 | 2009-03-11 09:23:52 +0100 | [diff] [blame] | 66 | host = NCR_700_detect(&a4000t_scsi_driver_template, hostdata, |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 67 | &pdev->dev); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 68 | if (!host) { |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 69 | dev_err(&pdev->dev, |
| 70 | "No host detected; board configuration problem?\n"); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 71 | goto out_free; |
| 72 | } |
| 73 | |
| 74 | host->this_id = 7; |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 75 | host->base = scsi_addr; |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 76 | host->irq = IRQ_AMIGA_PORTS; |
| 77 | |
| 78 | if (request_irq(host->irq, NCR_700_intr, IRQF_SHARED, "a4000t-scsi", |
| 79 | host)) { |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 80 | dev_err(&pdev->dev, "request_irq failed\n"); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 81 | goto out_put_host; |
| 82 | } |
| 83 | |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 84 | platform_set_drvdata(pdev, host); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 85 | scsi_scan_host(host); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 86 | return 0; |
| 87 | |
| 88 | out_put_host: |
| 89 | scsi_host_put(host); |
| 90 | out_free: |
| 91 | kfree(hostdata); |
| 92 | out_release: |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 93 | release_mem_region(res->start, resource_size(res)); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 94 | return -ENODEV; |
| 95 | } |
| 96 | |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 97 | static int __exit amiga_a4000t_scsi_remove(struct platform_device *pdev) |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 98 | { |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 99 | struct Scsi_Host *host = platform_get_drvdata(pdev); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 100 | struct NCR_700_Host_Parameters *hostdata = shost_priv(host); |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 101 | struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 102 | |
| 103 | scsi_remove_host(host); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 104 | NCR_700_release(host); |
| 105 | kfree(hostdata); |
| 106 | free_irq(host->irq, host); |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 107 | release_mem_region(res->start, resource_size(res)); |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 108 | return 0; |
| 109 | } |
| 110 | |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 111 | static struct platform_driver amiga_a4000t_scsi_driver = { |
| 112 | .remove = __exit_p(amiga_a4000t_scsi_remove), |
| 113 | .driver = { |
| 114 | .name = "amiga-a4000t-scsi", |
| 115 | .owner = THIS_MODULE, |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 116 | }, |
Kars de Jong | a16efc1 | 2007-06-17 14:47:08 +0200 | [diff] [blame] | 117 | }; |
| 118 | |
Jingoo Han | 70695ba | 2013-05-02 15:29:53 +0900 | [diff] [blame] | 119 | module_platform_driver_probe(amiga_a4000t_scsi_driver, amiga_a4000t_scsi_probe); |
Geert Uytterhoeven | a24a6b22 | 2009-04-05 13:05:50 +0200 | [diff] [blame] | 120 | |
| 121 | MODULE_AUTHOR("Alan Hourihane <alanh@fairlite.demon.co.uk> / " |
| 122 | "Kars de Jong <jongk@linux-m68k.org>"); |
| 123 | MODULE_DESCRIPTION("Amiga A4000T NCR53C710 driver"); |
| 124 | MODULE_LICENSE("GPL"); |
| 125 | MODULE_ALIAS("platform:amiga-a4000t-scsi"); |