1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * sim710.c - Copyright (C) 1999 Richard Hirst <richard@sleepie.demon.co.uk>
5 *----------------------------------------------------------------------------
6 *----------------------------------------------------------------------------
8 * MCA card detection code by Trent McNair. (now deleted)
9 * Fixes to not explicitly nul bss data from Xavier Bestel.
10 * Some multiboard fixes from Rolf Eike Beer.
11 * Auto probing of EISA config space from Trevor Hemsley.
13 * Rewritten to use 53c700.c by James.Bottomley@SteelEye.com
16 #include <linux/module.h>
17 #include <linux/slab.h>
19 #include <linux/blkdev.h>
20 #include <linux/device.h>
21 #include <linux/init.h>
22 #include <linux/eisa.h>
23 #include <linux/interrupt.h>
24 #include <scsi/scsi_host.h>
25 #include <scsi/scsi_device.h>
26 #include <scsi/scsi_transport.h>
27 #include <scsi/scsi_transport_spi.h>
32 /* Must be enough for EISA */
34 static __u8 __initdata id_array
[MAX_SLOTS
] = { [0 ... MAX_SLOTS
-1] = 7 };
36 static char *sim710
; /* command line passed by insmod */
38 MODULE_AUTHOR("Richard Hirst");
39 MODULE_DESCRIPTION("Simple NCR53C710 driver");
40 MODULE_LICENSE("GPL");
42 module_param(sim710
, charp
, 0);
51 param_setup(char *str
)
53 char *pos
= str
, *next
;
56 while(pos
!= NULL
&& (next
= strchr(pos
, ':')) != NULL
) {
57 int val
= (int)simple_strtoul(++next
, NULL
, 0);
59 if(!strncmp(pos
, "slot:", 5))
61 else if(!strncmp(pos
, "id:", 3)) {
63 printk(KERN_WARNING
"sim710: Must specify slot for id parameter\n");
64 } else if(slot
>= MAX_SLOTS
) {
65 printk(KERN_WARNING
"sim710: Illegal slot %d for id %d\n", slot
, val
);
70 if((pos
= strchr(pos
, ARG_SEP
)) != NULL
)
75 __setup("sim710=", param_setup
);
77 static struct scsi_host_template sim710_driver_template
= {
78 .name
= "LSI (Symbios) 710 EISA",
79 .proc_name
= "sim710",
81 .module
= THIS_MODULE
,
84 static int sim710_probe_common(struct device
*dev
, unsigned long base_addr
,
85 int irq
, int clock
, int differential
,
88 struct Scsi_Host
* host
= NULL
;
89 struct NCR_700_Host_Parameters
*hostdata
=
90 kzalloc(sizeof(struct NCR_700_Host_Parameters
), GFP_KERNEL
);
92 printk(KERN_NOTICE
"sim710: %s\n", dev_name(dev
));
93 printk(KERN_NOTICE
"sim710: irq = %d, clock = %d, base = 0x%lx, scsi_id = %d\n",
94 irq
, clock
, base_addr
, scsi_id
);
96 if(hostdata
== NULL
) {
97 printk(KERN_ERR
"sim710: Failed to allocate host data\n");
101 if(request_region(base_addr
, 64, "sim710") == NULL
) {
102 printk(KERN_ERR
"sim710: Failed to reserve IO region 0x%lx\n",
107 /* Fill in the three required pieces of hostdata */
108 hostdata
->base
= ioport_map(base_addr
, 64);
109 hostdata
->differential
= differential
;
110 hostdata
->clock
= clock
;
111 hostdata
->chip710
= 1;
112 hostdata
->burst_length
= 8;
114 /* and register the chip */
115 if((host
= NCR_700_detect(&sim710_driver_template
, hostdata
, dev
))
117 printk(KERN_ERR
"sim710: No host detected; card configuration problem?\n");
120 host
->this_id
= scsi_id
;
121 host
->base
= base_addr
;
123 if (request_irq(irq
, NCR_700_intr
, IRQF_SHARED
, "sim710", host
)) {
124 printk(KERN_ERR
"sim710: request_irq failed\n");
128 dev_set_drvdata(dev
, host
);
129 scsi_scan_host(host
);
136 release_region(base_addr
, 64);
143 static int sim710_device_remove(struct device
*dev
)
145 struct Scsi_Host
*host
= dev_get_drvdata(dev
);
146 struct NCR_700_Host_Parameters
*hostdata
=
147 (struct NCR_700_Host_Parameters
*)host
->hostdata
[0];
149 scsi_remove_host(host
);
150 NCR_700_release(host
);
152 free_irq(host
->irq
, host
);
153 release_region(host
->base
, 64);
158 static struct eisa_device_id sim710_eisa_ids
[] = {
164 MODULE_DEVICE_TABLE(eisa
, sim710_eisa_ids
);
166 static int sim710_eisa_probe(struct device
*dev
)
168 struct eisa_device
*edev
= to_eisa_device(dev
);
169 unsigned long io_addr
= edev
->base_addr
;
170 char eisa_cpq_irqs
[] = { 11, 14, 15, 10, 9, 0 };
171 char eisa_hwp_irqs
[] = { 3, 4, 5, 7, 12, 10, 11, 0};
173 unsigned char irq_index
;
174 unsigned char irq
, differential
= 0, scsi_id
= 7;
176 if(strcmp(edev
->id
.sig
, "HWP0C80") == 0) {
178 eisa_irqs
= eisa_hwp_irqs
;
179 irq_index
= (inb(io_addr
+ 0xc85) & 0x7) - 1;
181 val
= inb(io_addr
+ 0x4);
182 scsi_id
= ffs(val
) - 1;
184 if(scsi_id
> 7 || (val
& ~(1<<scsi_id
)) != 0) {
185 printk(KERN_ERR
"sim710.c, EISA card %s has incorrect scsi_id, setting to 7\n", dev_name(dev
));
189 eisa_irqs
= eisa_cpq_irqs
;
190 irq_index
= inb(io_addr
+ 0xc88) & 0x07;
193 if(irq_index
>= strlen(eisa_irqs
)) {
194 printk("sim710.c: irq nasty\n");
198 irq
= eisa_irqs
[irq_index
];
200 return sim710_probe_common(dev
, io_addr
, irq
, 50,
201 differential
, scsi_id
);
204 static struct eisa_driver sim710_eisa_driver
= {
205 .id_table
= sim710_eisa_ids
,
208 .probe
= sim710_eisa_probe
,
209 .remove
= sim710_device_remove
,
212 #endif /* CONFIG_EISA */
214 static int __init
sim710_init(void)
224 err
= eisa_driver_register(&sim710_eisa_driver
);
226 /* FIXME: what we'd really like to return here is -ENODEV if
227 * no devices have actually been found. Instead, the err
228 * above actually only reports problems with kobject_register,
229 * so for the moment return success */
234 static void __exit
sim710_exit(void)
237 eisa_driver_unregister(&sim710_eisa_driver
);
241 module_init(sim710_init
);
242 module_exit(sim710_exit
);