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, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/interrupt.h>
22 #include <linux/netdevice.h>
23 #include <linux/delay.h>
24 #include <linux/irq.h>
26 #include <linux/can/dev.h>
27 #include <linux/can/platform/sja1000.h>
31 #define DRV_NAME "sja1000_isa"
35 MODULE_AUTHOR("Wolfgang Grandegger <wg@grandegger.com>");
36 MODULE_DESCRIPTION("Socket-CAN driver for SJA1000 on the ISA bus");
37 MODULE_LICENSE("GPL v2");
39 #define CLK_DEFAULT 16000000 /* 16 MHz */
40 #define CDR_DEFAULT (CDR_CBP | CDR_CLK_OFF)
41 #define OCR_DEFAULT OCR_TX0_PUSHPULL
43 static unsigned long port
[MAXDEV
];
44 static unsigned long mem
[MAXDEV
];
45 static int irq
[MAXDEV
];
46 static int clk
[MAXDEV
];
47 static unsigned char cdr
[MAXDEV
] = {[0 ... (MAXDEV
- 1)] = 0xff};
48 static unsigned char ocr
[MAXDEV
] = {[0 ... (MAXDEV
- 1)] = 0xff};
49 static int indirect
[MAXDEV
] = {[0 ... (MAXDEV
- 1)] = -1};
51 module_param_array(port
, ulong
, NULL
, S_IRUGO
);
52 MODULE_PARM_DESC(port
, "I/O port number");
54 module_param_array(mem
, ulong
, NULL
, S_IRUGO
);
55 MODULE_PARM_DESC(mem
, "I/O memory address");
57 module_param_array(indirect
, int, NULL
, S_IRUGO
);
58 MODULE_PARM_DESC(indirect
, "Indirect access via address and data port");
60 module_param_array(irq
, int, NULL
, S_IRUGO
);
61 MODULE_PARM_DESC(irq
, "IRQ number");
63 module_param_array(clk
, int, NULL
, S_IRUGO
);
64 MODULE_PARM_DESC(clk
, "External oscillator clock frequency "
65 "(default=16000000 [16 MHz])");
67 module_param_array(cdr
, byte
, NULL
, S_IRUGO
);
68 MODULE_PARM_DESC(cdr
, "Clock divider register "
69 "(default=0x48 [CDR_CBP | CDR_CLK_OFF])");
71 module_param_array(ocr
, byte
, NULL
, S_IRUGO
);
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 base
= (unsigned long)priv
->reg_base
;
108 return inb(base
+ 1);
111 static void sja1000_isa_port_write_reg_indirect(const struct sja1000_priv
*priv
,
114 unsigned long base
= (unsigned long)priv
->reg_base
;
120 static int sja1000_isa_probe(struct platform_device
*pdev
)
122 struct net_device
*dev
;
123 struct sja1000_priv
*priv
;
124 void __iomem
*base
= NULL
;
125 int iosize
= SJA1000_IOSIZE
;
129 dev_dbg(&pdev
->dev
, "probing idx=%d: port=%#lx, mem=%#lx, irq=%d\n",
130 idx
, port
[idx
], mem
[idx
], irq
[idx
]);
133 if (!request_mem_region(mem
[idx
], iosize
, DRV_NAME
)) {
137 base
= ioremap_nocache(mem
[idx
], iosize
);
143 if (indirect
[idx
] > 0 ||
144 (indirect
[idx
] == -1 && indirect
[0] > 0))
145 iosize
= SJA1000_IOSIZE_INDIRECT
;
146 if (!request_region(port
[idx
], iosize
, DRV_NAME
)) {
152 dev
= alloc_sja1000dev(0);
157 priv
= netdev_priv(dev
);
160 priv
->irq_flags
= IRQF_SHARED
;
162 priv
->reg_base
= base
;
163 dev
->base_addr
= mem
[idx
];
164 priv
->read_reg
= sja1000_isa_mem_read_reg
;
165 priv
->write_reg
= sja1000_isa_mem_write_reg
;
167 priv
->reg_base
= (void __iomem
*)port
[idx
];
168 dev
->base_addr
= port
[idx
];
170 if (iosize
== SJA1000_IOSIZE_INDIRECT
) {
171 priv
->read_reg
= sja1000_isa_port_read_reg_indirect
;
172 priv
->write_reg
= sja1000_isa_port_write_reg_indirect
;
174 priv
->read_reg
= sja1000_isa_port_read_reg
;
175 priv
->write_reg
= sja1000_isa_port_write_reg
;
180 priv
->can
.clock
.freq
= clk
[idx
] / 2;
182 priv
->can
.clock
.freq
= clk
[0] / 2;
184 priv
->can
.clock
.freq
= CLK_DEFAULT
/ 2;
186 if (ocr
[idx
] != 0xff)
187 priv
->ocr
= ocr
[idx
];
188 else if (ocr
[0] != 0xff)
191 priv
->ocr
= OCR_DEFAULT
;
193 if (cdr
[idx
] != 0xff)
194 priv
->cdr
= cdr
[idx
];
195 else if (cdr
[0] != 0xff)
198 priv
->cdr
= CDR_DEFAULT
;
200 platform_set_drvdata(pdev
, dev
);
201 SET_NETDEV_DEV(dev
, &pdev
->dev
);
203 err
= register_sja1000dev(dev
);
205 dev_err(&pdev
->dev
, "registering %s failed (err=%d)\n",
210 dev_info(&pdev
->dev
, "%s device registered (reg_base=0x%p, irq=%d)\n",
211 DRV_NAME
, priv
->reg_base
, dev
->irq
);
219 release_mem_region(mem
[idx
], iosize
);
221 release_region(port
[idx
], iosize
);
226 static int sja1000_isa_remove(struct platform_device
*pdev
)
228 struct net_device
*dev
= platform_get_drvdata(pdev
);
229 struct sja1000_priv
*priv
= netdev_priv(dev
);
232 unregister_sja1000dev(dev
);
235 iounmap(priv
->reg_base
);
236 release_mem_region(mem
[idx
], SJA1000_IOSIZE
);
238 if (priv
->read_reg
== sja1000_isa_port_read_reg_indirect
)
239 release_region(port
[idx
], SJA1000_IOSIZE_INDIRECT
);
241 release_region(port
[idx
], SJA1000_IOSIZE
);
243 free_sja1000dev(dev
);
248 static struct platform_driver sja1000_isa_driver
= {
249 .probe
= sja1000_isa_probe
,
250 .remove
= sja1000_isa_remove
,
253 .owner
= THIS_MODULE
,
257 static int __init
sja1000_isa_init(void)
261 for (idx
= 0; idx
< MAXDEV
; idx
++) {
262 if ((port
[idx
] || mem
[idx
]) && irq
[idx
]) {
263 sja1000_isa_devs
[idx
] =
264 platform_device_alloc(DRV_NAME
, idx
);
265 if (!sja1000_isa_devs
[idx
]) {
267 goto exit_free_devices
;
269 err
= platform_device_add(sja1000_isa_devs
[idx
]);
271 platform_device_put(sja1000_isa_devs
[idx
]);
272 goto exit_free_devices
;
274 pr_debug("%s: platform device %d: port=%#lx, mem=%#lx, "
276 DRV_NAME
, idx
, port
[idx
], mem
[idx
], irq
[idx
]);
277 } else if (idx
== 0 || port
[idx
] || mem
[idx
]) {
278 pr_err("%s: insufficient parameters supplied\n",
281 goto exit_free_devices
;
285 err
= platform_driver_register(&sja1000_isa_driver
);
287 goto exit_free_devices
;
289 pr_info("Legacy %s driver for max. %d devices registered\n",
296 if (sja1000_isa_devs
[idx
])
297 platform_device_unregister(sja1000_isa_devs
[idx
]);
303 static void __exit
sja1000_isa_exit(void)
307 platform_driver_unregister(&sja1000_isa_driver
);
308 for (idx
= 0; idx
< MAXDEV
; idx
++) {
309 if (sja1000_isa_devs
[idx
])
310 platform_device_unregister(sja1000_isa_devs
[idx
]);
314 module_init(sja1000_isa_init
);
315 module_exit(sja1000_isa_exit
);