Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Detection routine for the NCR53c710 based BVME6000 SCSI Controllers for Linux. |
| 3 | * |
| 4 | * Based on work by Alan Hourihane and Kars de Jong |
| 5 | * |
| 6 | * Rewritten to use 53c700.c by Richard Hirst <richard@sleepie.demon.co.uk> |
| 7 | */ |
| 8 | |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/blkdev.h> |
| 11 | #include <linux/device.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> |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 16 | #include <asm/bvme6000hw.h> |
| 17 | #include <scsi/scsi_host.h> |
| 18 | #include <scsi/scsi_device.h> |
| 19 | #include <scsi/scsi_transport.h> |
| 20 | #include <scsi/scsi_transport_spi.h> |
| 21 | |
| 22 | #include "53c700.h" |
| 23 | |
| 24 | MODULE_AUTHOR("Richard Hirst <richard@sleepie.demon.co.uk>"); |
| 25 | MODULE_DESCRIPTION("BVME6000 NCR53C710 driver"); |
| 26 | MODULE_LICENSE("GPL"); |
| 27 | |
| 28 | static struct scsi_host_template bvme6000_scsi_driver_template = { |
| 29 | .name = "BVME6000 NCR53c710 SCSI", |
| 30 | .proc_name = "BVME6000", |
| 31 | .this_id = 7, |
| 32 | .module = THIS_MODULE, |
| 33 | }; |
| 34 | |
| 35 | static struct platform_device *bvme6000_scsi_device; |
| 36 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 37 | static int |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 38 | bvme6000_probe(struct platform_device *dev) |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 39 | { |
Mariusz Kozlowski | bbfbbbc | 2007-08-11 10:13:24 +0200 | [diff] [blame] | 40 | struct Scsi_Host *host; |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 41 | struct NCR_700_Host_Parameters *hostdata; |
| 42 | |
| 43 | if (!MACH_IS_BVME6000) |
| 44 | goto out; |
| 45 | |
Mariusz Kozlowski | bbfbbbc | 2007-08-11 10:13:24 +0200 | [diff] [blame] | 46 | hostdata = kzalloc(sizeof(struct NCR_700_Host_Parameters), GFP_KERNEL); |
| 47 | if (!hostdata) { |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 48 | printk(KERN_ERR "bvme6000-scsi: " |
| 49 | "Failed to allocate host data\n"); |
| 50 | goto out; |
| 51 | } |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 52 | |
| 53 | /* Fill in the required pieces of hostdata */ |
| 54 | hostdata->base = (void __iomem *)BVME_NCR53C710_BASE; |
| 55 | hostdata->clock = 40; /* XXX - depends on the CPU clock! */ |
| 56 | hostdata->chip710 = 1; |
| 57 | hostdata->dmode_extra = DMODE_FC2; |
| 58 | hostdata->dcntl_extra = EA_710; |
| 59 | hostdata->ctest7_extra = CTEST7_TT1; |
| 60 | |
| 61 | /* and register the chip */ |
Geert Uytterhoeven | e5779a5 | 2009-03-11 09:23:52 +0100 | [diff] [blame] | 62 | host = NCR_700_detect(&bvme6000_scsi_driver_template, hostdata, |
| 63 | &dev->dev); |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 64 | if (!host) { |
| 65 | printk(KERN_ERR "bvme6000-scsi: No host detected; " |
| 66 | "board configuration problem?\n"); |
| 67 | goto out_free; |
| 68 | } |
| 69 | host->base = BVME_NCR53C710_BASE; |
| 70 | host->this_id = 7; |
| 71 | host->irq = BVME_IRQ_SCSI; |
| 72 | if (request_irq(BVME_IRQ_SCSI, NCR_700_intr, 0, "bvme6000-scsi", |
| 73 | host)) { |
| 74 | printk(KERN_ERR "bvme6000-scsi: request_irq failed\n"); |
| 75 | goto out_put_host; |
| 76 | } |
| 77 | |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 78 | platform_set_drvdata(dev, host); |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 79 | scsi_scan_host(host); |
| 80 | |
| 81 | return 0; |
| 82 | |
| 83 | out_put_host: |
| 84 | scsi_host_put(host); |
| 85 | out_free: |
| 86 | kfree(hostdata); |
| 87 | out: |
| 88 | return -ENODEV; |
| 89 | } |
| 90 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 91 | static int |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 92 | bvme6000_device_remove(struct platform_device *dev) |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 93 | { |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 94 | struct Scsi_Host *host = platform_get_drvdata(dev); |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 95 | struct NCR_700_Host_Parameters *hostdata = shost_priv(host); |
| 96 | |
| 97 | scsi_remove_host(host); |
| 98 | NCR_700_release(host); |
| 99 | kfree(hostdata); |
| 100 | free_irq(host->irq, host); |
| 101 | |
| 102 | return 0; |
| 103 | } |
| 104 | |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 105 | static struct platform_driver bvme6000_scsi_driver = { |
| 106 | .driver = { |
| 107 | .name = "bvme6000-scsi", |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 108 | }, |
| 109 | .probe = bvme6000_probe, |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 110 | .remove = bvme6000_device_remove, |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 111 | }; |
| 112 | |
| 113 | static int __init bvme6000_scsi_init(void) |
| 114 | { |
| 115 | int err; |
| 116 | |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 117 | err = platform_driver_register(&bvme6000_scsi_driver); |
Geert Uytterhoeven | 96249cf | 2007-06-19 09:47:28 +0200 | [diff] [blame] | 118 | if (err) |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 119 | return err; |
| 120 | |
| 121 | bvme6000_scsi_device = platform_device_register_simple("bvme6000-scsi", |
| 122 | -1, NULL, 0); |
| 123 | if (IS_ERR(bvme6000_scsi_device)) { |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 124 | platform_driver_unregister(&bvme6000_scsi_driver); |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 125 | return PTR_ERR(bvme6000_scsi_device); |
| 126 | } |
| 127 | |
| 128 | return 0; |
| 129 | } |
| 130 | |
| 131 | static void __exit bvme6000_scsi_exit(void) |
| 132 | { |
| 133 | platform_device_unregister(bvme6000_scsi_device); |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 134 | platform_driver_unregister(&bvme6000_scsi_driver); |
Kars de Jong | 8276b58 | 2007-06-17 14:47:06 +0200 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | module_init(bvme6000_scsi_init); |
| 138 | module_exit(bvme6000_scsi_exit); |