1 /* -*- mode: c; c-basic-offset: 8 -*- */
5 * Copyright (C) 2001 by James.Bottomley@HansenPartnership.com
6 **-----------------------------------------------------------------------------
8 ** This program is free software; you can redistribute it and/or modify
9 ** it under the terms of the GNU General Public License as published by
10 ** the Free Software Foundation; either version 2 of the License, or
11 ** (at your option) any later version.
13 ** This program is distributed in the hope that it will be useful,
14 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ** GNU General Public License for more details.
18 ** You should have received a copy of the GNU General Public License
19 ** along with this program; if not, write to the Free Software
20 ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 **-----------------------------------------------------------------------------
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/init.h>
32 #include <linux/types.h>
33 #include <linux/stat.h>
35 #include <linux/blkdev.h>
36 #include <linux/sched.h>
37 #include <linux/ioport.h>
38 #include <linux/dma-mapping.h>
39 #include <linux/platform_device.h>
42 #include <asm/pgtable.h>
44 #include <asm/delay.h>
46 #include <scsi/scsi_host.h>
47 #include <scsi/scsi_device.h>
48 #include <scsi/scsi_transport.h>
49 #include <scsi/scsi_transport_spi.h>
53 MODULE_AUTHOR("Thomas Bogendörfer");
54 MODULE_DESCRIPTION("SNI RM 53c710 SCSI Driver");
55 MODULE_LICENSE("GPL");
56 MODULE_ALIAS("platform:snirm_53c710");
58 #define SNIRM710_CLOCK 32
60 static struct scsi_host_template snirm710_template
= {
61 .name
= "SNI RM SCSI 53c710",
62 .proc_name
= "snirm_53c710",
64 .module
= THIS_MODULE
,
67 static int __init
snirm710_probe(struct platform_device
*dev
)
70 struct NCR_700_Host_Parameters
*hostdata
;
71 struct Scsi_Host
*host
;
74 res
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
79 hostdata
= kzalloc(sizeof(*hostdata
), GFP_KERNEL
);
81 dev_printk(KERN_ERR
, dev
, "Failed to allocate host data\n");
85 hostdata
->dev
= &dev
->dev
;
86 dma_set_mask(&dev
->dev
, DMA_BIT_MASK(32));
87 hostdata
->base
= ioremap_nocache(base
, 0x100);
88 hostdata
->differential
= 0;
90 hostdata
->clock
= SNIRM710_CLOCK
;
91 hostdata
->force_le_on_be
= 1;
92 hostdata
->chip710
= 1;
93 hostdata
->burst_length
= 4;
95 host
= NCR_700_detect(&snirm710_template
, hostdata
, &dev
->dev
);
100 host
->irq
= platform_get_irq(dev
, 0);
101 if(request_irq(host
->irq
, NCR_700_intr
, IRQF_SHARED
, "snirm710", host
)) {
102 printk(KERN_ERR
"snirm710: request_irq failed!\n");
106 dev_set_drvdata(&dev
->dev
, host
);
107 scsi_scan_host(host
);
114 iounmap(hostdata
->base
);
119 static int __exit
snirm710_driver_remove(struct platform_device
*dev
)
121 struct Scsi_Host
*host
= dev_get_drvdata(&dev
->dev
);
122 struct NCR_700_Host_Parameters
*hostdata
=
123 (struct NCR_700_Host_Parameters
*)host
->hostdata
[0];
125 scsi_remove_host(host
);
126 NCR_700_release(host
);
127 free_irq(host
->irq
, host
);
128 iounmap(hostdata
->base
);
134 static struct platform_driver snirm710_driver
= {
135 .probe
= snirm710_probe
,
136 .remove
= __devexit_p(snirm710_driver_remove
),
138 .name
= "snirm_53c710",
139 .owner
= THIS_MODULE
,
143 static int __init
snirm710_init(void)
145 return platform_driver_register(&snirm710_driver
);
148 static void __exit
snirm710_exit(void)
150 platform_driver_unregister(&snirm710_driver
);
153 module_init(snirm710_init
);
154 module_exit(snirm710_exit
);