2 * Copyright (C) 2009 Wolfgang Grandegger <wg@grandegger.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the version 2 of the GNU General Public License
6 * as published by the Free Software Foundation
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, see <http://www.gnu.org/licenses/>.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/platform_device.h>
20 #include <linux/interrupt.h>
21 #include <linux/netdevice.h>
22 #include <linux/delay.h>
23 #include <linux/irq.h>
25 #include <linux/can/dev.h>
26 #include <linux/can/platform/sja1000.h>
30 #define DRV_NAME "sja1000_isa"
34 MODULE_AUTHOR("Wolfgang Grandegger <wg@grandegger.com>");
35 MODULE_DESCRIPTION("Socket-CAN driver for SJA1000 on the ISA bus");
36 MODULE_LICENSE("GPL v2");
38 #define CLK_DEFAULT 16000000 /* 16 MHz */
39 #define CDR_DEFAULT (CDR_CBP | CDR_CLK_OFF)
40 #define OCR_DEFAULT OCR_TX0_PUSHPULL
42 static unsigned long port[MAXDEV];
43 static unsigned long mem[MAXDEV];
44 static int irq[MAXDEV];
45 static int clk[MAXDEV];
46 static unsigned char cdr[MAXDEV] = {[0 ... (MAXDEV - 1)] = 0xff};
47 static unsigned char ocr[MAXDEV] = {[0 ... (MAXDEV - 1)] = 0xff};
48 static int indirect[MAXDEV] = {[0 ... (MAXDEV - 1)] = -1};
49 static spinlock_t indirect_lock[MAXDEV]; /* lock for indirect access mode */
51 module_param_hw_array(port, ulong, ioport, NULL, 0444);
52 MODULE_PARM_DESC(port, "I/O port number");
54 module_param_hw_array(mem, ulong, iomem, NULL, 0444);
55 MODULE_PARM_DESC(mem, "I/O memory address");
57 module_param_hw_array(indirect, int, ioport, NULL, 0444);
58 MODULE_PARM_DESC(indirect, "Indirect access via address and data port");
60 module_param_hw_array(irq, int, irq, NULL, 0444);
61 MODULE_PARM_DESC(irq, "IRQ number");
63 module_param_array(clk, int, NULL, 0444);
64 MODULE_PARM_DESC(clk, "External oscillator clock frequency "
65 "(default=16000000 [16 MHz])");
67 module_param_array(cdr, byte, NULL, 0444);
68 MODULE_PARM_DESC(cdr, "Clock divider register "
69 "(default=0x48 [CDR_CBP | CDR_CLK_OFF])");
71 module_param_array(ocr, byte, NULL, 0444);
72 MODULE_PARM_DESC(ocr, "Output control register "
73 "(default=0x18 [OCR_TX0_PUSHPULL])");
75 #define SJA1000_IOSIZE 0x20
76 #define SJA1000_IOSIZE_INDIRECT 0x02
78 static struct platform_device *sja1000_isa_devs[MAXDEV];
80 static u8 sja1000_isa_mem_read_reg(const struct sja1000_priv *priv, int reg)
82 return readb(priv->reg_base + reg);
85 static void sja1000_isa_mem_write_reg(const struct sja1000_priv *priv,
88 writeb(val, priv->reg_base + reg);
91 static u8 sja1000_isa_port_read_reg(const struct sja1000_priv *priv, int reg)
93 return inb((unsigned long)priv->reg_base + reg);
96 static void sja1000_isa_port_write_reg(const struct sja1000_priv *priv,
99 outb(val, (unsigned long)priv->reg_base + reg);
102 static u8 sja1000_isa_port_read_reg_indirect(const struct sja1000_priv *priv,
105 unsigned long flags, base = (unsigned long)priv->reg_base;
108 spin_lock_irqsave(&indirect_lock[priv->dev->dev_id], flags);
110 readval = inb(base + 1);
111 spin_unlock_irqrestore(&indirect_lock[priv->dev->dev_id], flags);
116 static void sja1000_isa_port_write_reg_indirect(const struct sja1000_priv *priv,
119 unsigned long flags, base = (unsigned long)priv->reg_base;
121 spin_lock_irqsave(&indirect_lock[priv->dev->dev_id], flags);
124 spin_unlock_irqrestore(&indirect_lock[priv->dev->dev_id], flags);
127 static int sja1000_isa_probe(struct platform_device *pdev)
129 struct net_device *dev;
130 struct sja1000_priv *priv;
131 void __iomem *base = NULL;
132 int iosize = SJA1000_IOSIZE;
136 dev_dbg(&pdev->dev, "probing idx=%d: port=%#lx, mem=%#lx, irq=%d\n",
137 idx, port[idx], mem[idx], irq[idx]);
140 if (!request_mem_region(mem[idx], iosize, DRV_NAME)) {
144 base = ioremap_nocache(mem[idx], iosize);
150 if (indirect[idx] > 0 ||
151 (indirect[idx] == -1 && indirect[0] > 0))
152 iosize = SJA1000_IOSIZE_INDIRECT;
153 if (!request_region(port[idx], iosize, DRV_NAME)) {
159 dev = alloc_sja1000dev(0);
164 priv = netdev_priv(dev);
167 priv->irq_flags = IRQF_SHARED;
169 priv->reg_base = base;
170 dev->base_addr = mem[idx];
171 priv->read_reg = sja1000_isa_mem_read_reg;
172 priv->write_reg = sja1000_isa_mem_write_reg;
174 priv->reg_base = (void __iomem *)port[idx];
175 dev->base_addr = port[idx];
177 if (iosize == SJA1000_IOSIZE_INDIRECT) {
178 priv->read_reg = sja1000_isa_port_read_reg_indirect;
179 priv->write_reg = sja1000_isa_port_write_reg_indirect;
180 spin_lock_init(&indirect_lock[idx]);
182 priv->read_reg = sja1000_isa_port_read_reg;
183 priv->write_reg = sja1000_isa_port_write_reg;
188 priv->can.clock.freq = clk[idx] / 2;
190 priv->can.clock.freq = clk[0] / 2;
192 priv->can.clock.freq = CLK_DEFAULT / 2;
194 if (ocr[idx] != 0xff)
195 priv->ocr = ocr[idx];
196 else if (ocr[0] != 0xff)
199 priv->ocr = OCR_DEFAULT;
201 if (cdr[idx] != 0xff)
202 priv->cdr = cdr[idx];
203 else if (cdr[0] != 0xff)
206 priv->cdr = CDR_DEFAULT;
208 platform_set_drvdata(pdev, dev);
209 SET_NETDEV_DEV(dev, &pdev->dev);
212 err = register_sja1000dev(dev);
214 dev_err(&pdev->dev, "registering %s failed (err=%d)\n",
219 dev_info(&pdev->dev, "%s device registered (reg_base=0x%p, irq=%d)\n",
220 DRV_NAME, priv->reg_base, dev->irq);
224 free_sja1000dev(dev);
230 release_mem_region(mem[idx], iosize);
232 release_region(port[idx], iosize);
237 static int sja1000_isa_remove(struct platform_device *pdev)
239 struct net_device *dev = platform_get_drvdata(pdev);
240 struct sja1000_priv *priv = netdev_priv(dev);
243 unregister_sja1000dev(dev);
246 iounmap(priv->reg_base);
247 release_mem_region(mem[idx], SJA1000_IOSIZE);
249 if (priv->read_reg == sja1000_isa_port_read_reg_indirect)
250 release_region(port[idx], SJA1000_IOSIZE_INDIRECT);
252 release_region(port[idx], SJA1000_IOSIZE);
254 free_sja1000dev(dev);
259 static struct platform_driver sja1000_isa_driver = {
260 .probe = sja1000_isa_probe,
261 .remove = sja1000_isa_remove,
267 static int __init sja1000_isa_init(void)
271 for (idx = 0; idx < MAXDEV; idx++) {
272 if ((port[idx] || mem[idx]) && irq[idx]) {
273 sja1000_isa_devs[idx] =
274 platform_device_alloc(DRV_NAME, idx);
275 if (!sja1000_isa_devs[idx]) {
277 goto exit_free_devices;
279 err = platform_device_add(sja1000_isa_devs[idx]);
281 platform_device_put(sja1000_isa_devs[idx]);
282 goto exit_free_devices;
284 pr_debug("%s: platform device %d: port=%#lx, mem=%#lx, "
286 DRV_NAME, idx, port[idx], mem[idx], irq[idx]);
287 } else if (idx == 0 || port[idx] || mem[idx]) {
288 pr_err("%s: insufficient parameters supplied\n",
291 goto exit_free_devices;
295 err = platform_driver_register(&sja1000_isa_driver);
297 goto exit_free_devices;
299 pr_info("Legacy %s driver for max. %d devices registered\n",
306 if (sja1000_isa_devs[idx])
307 platform_device_unregister(sja1000_isa_devs[idx]);
313 static void __exit sja1000_isa_exit(void)
317 platform_driver_unregister(&sja1000_isa_driver);
318 for (idx = 0; idx < MAXDEV; idx++) {
319 if (sja1000_isa_devs[idx])
320 platform_device_unregister(sja1000_isa_devs[idx]);
324 module_init(sja1000_isa_init);
325 module_exit(sja1000_isa_exit);