blob: 5e575afce134d80fab95f7642851f87e9c45b57b [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Kars de Jonga16efc12007-06-17 14:47:08 +02002/*
3 * Detection routine for the NCR53c710 based Amiga SCSI Controllers for Linux.
4 * Amiga Technologies A4000T SCSI controller.
5 *
6 * Written 1997 by Alan Hourihane <alanh@fairlite.demon.co.uk>
7 * plus modifications of the 53c7xx.c driver to support the Amiga.
8 *
9 * Rewritten to use 53c700.c by Kars de Jong <jongk@linux-m68k.org>
10 */
11
12#include <linux/module.h>
13#include <linux/platform_device.h>
14#include <linux/init.h>
15#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Geert Uytterhoeven96249cf2007-06-19 09:47:28 +020017#include <asm/amigahw.h>
Kars de Jonga16efc12007-06-17 14:47:08 +020018#include <asm/amigaints.h>
19#include <scsi/scsi_host.h>
20#include <scsi/scsi_transport_spi.h>
21
22#include "53c700.h"
23
Kars de Jonga16efc12007-06-17 14:47:08 +020024
25static struct scsi_host_template a4000t_scsi_driver_template = {
26 .name = "A4000T builtin SCSI",
27 .proc_name = "A4000t",
28 .this_id = 7,
29 .module = THIS_MODULE,
30};
31
Kars de Jonga16efc12007-06-17 14:47:08 +020032
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020033#define A4000T_SCSI_OFFSET 0x40
Kars de Jonga16efc12007-06-17 14:47:08 +020034
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020035static int __init amiga_a4000t_scsi_probe(struct platform_device *pdev)
Kars de Jonga16efc12007-06-17 14:47:08 +020036{
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020037 struct resource *res;
38 phys_addr_t scsi_addr;
Kars de Jonga16efc12007-06-17 14:47:08 +020039 struct NCR_700_Host_Parameters *hostdata;
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020040 struct Scsi_Host *host;
Kars de Jonga16efc12007-06-17 14:47:08 +020041
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020042 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
43 if (!res)
44 return -ENODEV;
Kars de Jonga16efc12007-06-17 14:47:08 +020045
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020046 if (!request_mem_region(res->start, resource_size(res),
Kars de Jonga16efc12007-06-17 14:47:08 +020047 "A4000T builtin SCSI"))
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020048 return -EBUSY;
Kars de Jonga16efc12007-06-17 14:47:08 +020049
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020050 hostdata = kzalloc(sizeof(struct NCR_700_Host_Parameters),
51 GFP_KERNEL);
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +020052 if (!hostdata) {
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020053 dev_err(&pdev->dev, "Failed to allocate host data\n");
Kars de Jonga16efc12007-06-17 14:47:08 +020054 goto out_release;
55 }
Kars de Jonga16efc12007-06-17 14:47:08 +020056
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020057 scsi_addr = res->start + A4000T_SCSI_OFFSET;
58
Kars de Jonga16efc12007-06-17 14:47:08 +020059 /* Fill in the required pieces of hostdata */
Geert Uytterhoeven6112ea02011-01-09 11:03:43 +010060 hostdata->base = ZTWO_VADDR(scsi_addr);
Kars de Jonga16efc12007-06-17 14:47:08 +020061 hostdata->clock = 50;
62 hostdata->chip710 = 1;
63 hostdata->dmode_extra = DMODE_FC2;
64 hostdata->dcntl_extra = EA_710;
65
66 /* and register the chip */
Geert Uytterhoevene5779a52009-03-11 09:23:52 +010067 host = NCR_700_detect(&a4000t_scsi_driver_template, hostdata,
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020068 &pdev->dev);
Kars de Jonga16efc12007-06-17 14:47:08 +020069 if (!host) {
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020070 dev_err(&pdev->dev,
71 "No host detected; board configuration problem?\n");
Kars de Jonga16efc12007-06-17 14:47:08 +020072 goto out_free;
73 }
74
75 host->this_id = 7;
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020076 host->base = scsi_addr;
Kars de Jonga16efc12007-06-17 14:47:08 +020077 host->irq = IRQ_AMIGA_PORTS;
78
79 if (request_irq(host->irq, NCR_700_intr, IRQF_SHARED, "a4000t-scsi",
80 host)) {
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020081 dev_err(&pdev->dev, "request_irq failed\n");
Kars de Jonga16efc12007-06-17 14:47:08 +020082 goto out_put_host;
83 }
84
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020085 platform_set_drvdata(pdev, host);
Kars de Jonga16efc12007-06-17 14:47:08 +020086 scsi_scan_host(host);
Kars de Jonga16efc12007-06-17 14:47:08 +020087 return 0;
88
89 out_put_host:
90 scsi_host_put(host);
91 out_free:
92 kfree(hostdata);
93 out_release:
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020094 release_mem_region(res->start, resource_size(res));
Kars de Jonga16efc12007-06-17 14:47:08 +020095 return -ENODEV;
96}
97
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +020098static int __exit amiga_a4000t_scsi_remove(struct platform_device *pdev)
Kars de Jonga16efc12007-06-17 14:47:08 +020099{
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +0200100 struct Scsi_Host *host = platform_get_drvdata(pdev);
Kars de Jonga16efc12007-06-17 14:47:08 +0200101 struct NCR_700_Host_Parameters *hostdata = shost_priv(host);
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +0200102 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Kars de Jonga16efc12007-06-17 14:47:08 +0200103
104 scsi_remove_host(host);
Kars de Jonga16efc12007-06-17 14:47:08 +0200105 NCR_700_release(host);
106 kfree(hostdata);
107 free_irq(host->irq, host);
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +0200108 release_mem_region(res->start, resource_size(res));
Kars de Jonga16efc12007-06-17 14:47:08 +0200109 return 0;
110}
111
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +0200112static struct platform_driver amiga_a4000t_scsi_driver = {
113 .remove = __exit_p(amiga_a4000t_scsi_remove),
114 .driver = {
115 .name = "amiga-a4000t-scsi",
Ming Lei7a192ec2009-02-06 23:40:12 +0800116 },
Kars de Jonga16efc12007-06-17 14:47:08 +0200117};
118
Jingoo Han70695ba2013-05-02 15:29:53 +0900119module_platform_driver_probe(amiga_a4000t_scsi_driver, amiga_a4000t_scsi_probe);
Geert Uytterhoevena24a6b222009-04-05 13:05:50 +0200120
121MODULE_AUTHOR("Alan Hourihane <alanh@fairlite.demon.co.uk> / "
122 "Kars de Jong <jongk@linux-m68k.org>");
123MODULE_DESCRIPTION("Amiga A4000T NCR53C710 driver");
124MODULE_LICENSE("GPL");
125MODULE_ALIAS("platform:amiga-a4000t-scsi");