blob: 6ec36f9975ba597ebe1d5f78c76bd00959c807ca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux ARCnet driver - COM90xx chipset (IO-mapped buffers)
Joe Perchescb334642015-05-05 10:05:47 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Written 1997 by David Woodhouse.
5 * Written 1994-1999 by Avery Pennarun.
6 * Written 1999-2000 by Martin Mares <mj@ucw.cz>.
7 * Derived from skeleton.c by Donald Becker.
8 *
9 * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
10 * for sponsoring the further development of this driver.
11 *
12 * **********************
13 *
14 * The original copyright of skeleton.c was as follows:
15 *
16 * skeleton.c Written 1993 by Donald Becker.
17 * Copyright 1993 United States Government as represented by the
18 * Director, National Security Agency. This software may only be used
19 * and distributed according to the terms of the GNU General Public License as
20 * modified by SRC, incorporated herein by reference.
21 *
22 * **********************
23 *
24 * For more details, see drivers/net/arcnet.c
25 *
26 * **********************
27 */
28#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/moduleparam.h>
31#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/delay.h>
33#include <linux/netdevice.h>
34#include <linux/bootmem.h>
35#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000036#include <linux/interrupt.h>
Joe Perches5e7ef912015-05-05 10:05:51 -070037#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/arcdevice.h>
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define VERSION "arcnet: COM90xx IO-mapped mode support (by David Woodhouse et el.)\n"
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/* Internal function declarations */
43
44static int com90io_found(struct net_device *dev);
45static void com90io_command(struct net_device *dev, int command);
46static int com90io_status(struct net_device *dev);
47static void com90io_setmask(struct net_device *dev, int mask);
48static int com90io_reset(struct net_device *dev, int really_reset);
49static void com90io_copy_to_card(struct net_device *dev, int bufnum, int offset,
50 void *buf, int count);
51static void com90io_copy_from_card(struct net_device *dev, int bufnum, int offset,
52 void *buf, int count);
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/* Handy defines for ARCnet specific stuff */
55
56/* The number of low I/O ports used by the card. */
57#define ARCNET_TOTAL_SIZE 16
58
59/* COM 9026 controller chip --> ARCnet register addresses */
Joe Perchescb334642015-05-05 10:05:47 -070060#define _INTMASK (ioaddr + 0) /* writable */
61#define _STATUS (ioaddr + 0) /* readable */
62#define _COMMAND (ioaddr + 1) /* writable, returns random vals on read (?) */
63#define _RESET (ioaddr + 8) /* software reset (on read) */
64#define _MEMDATA (ioaddr + 12) /* Data port for IO-mapped memory */
65#define _ADDR_HI (ioaddr + 15) /* Control registers for said */
66#define _ADDR_LO (ioaddr + 14)
67#define _CONFIG (ioaddr + 2) /* Configuration register */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#undef ASTATUS
70#undef ACOMMAND
71#undef AINTMASK
72
73#define ASTATUS() inb(_STATUS)
Joe Perchescb334642015-05-05 10:05:47 -070074#define ACOMMAND(cmd) outb((cmd), _COMMAND)
75#define AINTMASK(msk) outb((msk), _INTMASK)
76#define SETCONF() outb((lp->config), _CONFIG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/****************************************************************************
79 * *
80 * IO-mapped operation routines *
81 * *
82 ****************************************************************************/
83
84#undef ONE_AT_A_TIME_TX
85#undef ONE_AT_A_TIME_RX
86
87static u_char get_buffer_byte(struct net_device *dev, unsigned offset)
88{
89 int ioaddr = dev->base_addr;
90
91 outb(offset >> 8, _ADDR_HI);
92 outb(offset & 0xff, _ADDR_LO);
93
94 return inb(_MEMDATA);
95}
96
97#ifdef ONE_AT_A_TIME_TX
98static void put_buffer_byte(struct net_device *dev, unsigned offset, u_char datum)
99{
100 int ioaddr = dev->base_addr;
101
102 outb(offset >> 8, _ADDR_HI);
103 outb(offset & 0xff, _ADDR_LO);
104
105 outb(datum, _MEMDATA);
106}
107
108#endif
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static void get_whole_buffer(struct net_device *dev, unsigned offset, unsigned length, char *dest)
111{
112 int ioaddr = dev->base_addr;
113
114 outb((offset >> 8) | AUTOINCflag, _ADDR_HI);
115 outb(offset & 0xff, _ADDR_LO);
116
117 while (length--)
118#ifdef ONE_AT_A_TIME_RX
119 *(dest++) = get_buffer_byte(dev, offset++);
120#else
121 *(dest++) = inb(_MEMDATA);
122#endif
123}
124
125static void put_whole_buffer(struct net_device *dev, unsigned offset, unsigned length, char *dest)
126{
127 int ioaddr = dev->base_addr;
128
129 outb((offset >> 8) | AUTOINCflag, _ADDR_HI);
130 outb(offset & 0xff, _ADDR_LO);
131
132 while (length--)
133#ifdef ONE_AT_A_TIME_TX
134 put_buffer_byte(dev, offset++, *(dest++));
135#else
136 outb(*(dest++), _MEMDATA);
137#endif
138}
139
Joe Perchesf2f0a162015-05-05 10:05:52 -0700140/* We cannot probe for an IO mapped card either, although we can check that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 * it's where we were told it was, and even autoirq
142 */
143static int __init com90io_probe(struct net_device *dev)
144{
145 int ioaddr = dev->base_addr, status;
146 unsigned long airqmask;
147
148 BUGLVL(D_NORMAL) printk(VERSION);
149 BUGLVL(D_NORMAL) printk("E-mail me if you actually test this driver, please!\n");
150
151 if (!ioaddr) {
Joe Perches3b4e5552015-05-05 10:05:50 -0700152 BUGMSG(D_NORMAL, "No autoprobe for IO mapped cards; you must specify the base address!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return -ENODEV;
154 }
155 if (!request_region(ioaddr, ARCNET_TOTAL_SIZE, "com90io probe")) {
Peter Osterlundfb911ee2005-09-13 01:25:15 -0700156 BUGMSG(D_INIT_REASONS, "IO request_region %x-%x failed.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 ioaddr, ioaddr + ARCNET_TOTAL_SIZE - 1);
158 return -ENXIO;
159 }
160 if (ASTATUS() == 0xFF) {
161 BUGMSG(D_INIT_REASONS, "IO address %x empty\n", ioaddr);
162 goto err_out;
163 }
164 inb(_RESET);
165 mdelay(RESETtime);
166
167 status = ASTATUS();
168
169 if ((status & 0x9D) != (NORXflag | RECONflag | TXFREEflag | RESETflag)) {
170 BUGMSG(D_INIT_REASONS, "Status invalid (%Xh).\n", status);
171 goto err_out;
172 }
173 BUGMSG(D_INIT_REASONS, "Status after reset: %X\n", status);
174
175 ACOMMAND(CFLAGScmd | RESETclear | CONFIGclear);
176
177 BUGMSG(D_INIT_REASONS, "Status after reset acknowledged: %X\n", status);
178
179 status = ASTATUS();
180
181 if (status & RESETflag) {
182 BUGMSG(D_INIT_REASONS, "Eternal reset (status=%Xh)\n", status);
183 goto err_out;
184 }
185 outb((0x16 | IOMAPflag) & ~ENABLE16flag, _CONFIG);
186
187 /* Read first loc'n of memory */
188
189 outb(AUTOINCflag, _ADDR_HI);
190 outb(0, _ADDR_LO);
191
192 if ((status = inb(_MEMDATA)) != 0xd1) {
Joe Perches3b4e5552015-05-05 10:05:50 -0700193 BUGMSG(D_INIT_REASONS, "Signature byte not found (%Xh instead).\n",
194 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 goto err_out;
196 }
197 if (!dev->irq) {
Joe Perchesf2f0a162015-05-05 10:05:52 -0700198 /* if we do this, we're sure to get an IRQ since the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * card has just reset and the NORXflag is on until
200 * we tell it to start receiving.
201 */
202
203 airqmask = probe_irq_on();
204 outb(NORXflag, _INTMASK);
205 udelay(1);
206 outb(0, _INTMASK);
207 dev->irq = probe_irq_off(airqmask);
208
Dan Carpenter0a6efc72010-07-17 07:21:28 +0000209 if ((int)dev->irq <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 BUGMSG(D_INIT_REASONS, "Autoprobe IRQ failed\n");
211 goto err_out;
212 }
213 }
214 release_region(ioaddr, ARCNET_TOTAL_SIZE); /* end of probing */
215 return com90io_found(dev);
216
217err_out:
218 release_region(ioaddr, ARCNET_TOTAL_SIZE);
219 return -ENODEV;
220}
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/* Set up the struct net_device associated with this card. Called after
223 * probing succeeds.
224 */
225static int __init com90io_found(struct net_device *dev)
226{
227 struct arcnet_local *lp;
228 int ioaddr = dev->base_addr;
229 int err;
230
231 /* Reserve the irq */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800232 if (request_irq(dev->irq, arcnet_interrupt, 0, "arcnet (COM90xx-IO)", dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 BUGMSG(D_NORMAL, "Can't get IRQ %d!\n", dev->irq);
234 return -ENODEV;
235 }
Peter Osterlundfb911ee2005-09-13 01:25:15 -0700236 /* Reserve the I/O region */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (!request_region(dev->base_addr, ARCNET_TOTAL_SIZE, "arcnet (COM90xx-IO)")) {
238 free_irq(dev->irq, dev);
239 return -EBUSY;
240 }
241
Wang Chen454d7c92008-11-12 23:37:49 -0800242 lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 lp->card_name = "COM90xx I/O";
244 lp->hw.command = com90io_command;
245 lp->hw.status = com90io_status;
246 lp->hw.intmask = com90io_setmask;
247 lp->hw.reset = com90io_reset;
248 lp->hw.owner = THIS_MODULE;
249 lp->hw.copy_to_card = com90io_copy_to_card;
250 lp->hw.copy_from_card = com90io_copy_from_card;
251
252 lp->config = (0x16 | IOMAPflag) & ~ENABLE16flag;
253 SETCONF();
254
255 /* get and check the station ID from offset 1 in shmem */
256
257 dev->dev_addr[0] = get_buffer_byte(dev, 1);
258
259 err = register_netdev(dev);
260 if (err) {
261 outb((inb(_CONFIG) & ~IOMAPflag), _CONFIG);
262 free_irq(dev->irq, dev);
263 release_region(dev->base_addr, ARCNET_TOTAL_SIZE);
264 return err;
265 }
266
267 BUGMSG(D_NORMAL, "COM90IO: station %02Xh found at %03lXh, IRQ %d.\n",
268 dev->dev_addr[0], dev->base_addr, dev->irq);
269
270 return 0;
271}
272
Joe Perchesf2f0a162015-05-05 10:05:52 -0700273/* Do a hardware reset on the card, and set up necessary registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 *
275 * This should be called as little as possible, because it disrupts the
276 * token on the network (causes a RECON) and requires a significant delay.
277 *
278 * However, it does make sure the card is in a defined state.
279 */
280static int com90io_reset(struct net_device *dev, int really_reset)
281{
Wang Chen454d7c92008-11-12 23:37:49 -0800282 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 short ioaddr = dev->base_addr;
284
285 BUGMSG(D_INIT, "Resetting %s (status=%02Xh)\n", dev->name, ASTATUS());
286
287 if (really_reset) {
288 /* reset the card */
289 inb(_RESET);
290 mdelay(RESETtime);
291 }
292 /* Set the thing to IO-mapped, 8-bit mode */
293 lp->config = (0x1C | IOMAPflag) & ~ENABLE16flag;
294 SETCONF();
295
296 ACOMMAND(CFLAGScmd | RESETclear); /* clear flags & end reset */
297 ACOMMAND(CFLAGScmd | CONFIGclear);
298
299 /* verify that the ARCnet signature byte is present */
300 if (get_buffer_byte(dev, 0) != TESTvalue) {
301 BUGMSG(D_NORMAL, "reset failed: TESTvalue not present.\n");
302 return 1;
303 }
304 /* enable extended (512-byte) packets */
305 ACOMMAND(CONFIGcmd | EXTconf);
306
307 /* done! return success. */
308 return 0;
309}
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static void com90io_command(struct net_device *dev, int cmd)
312{
313 short ioaddr = dev->base_addr;
314
315 ACOMMAND(cmd);
316}
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318static int com90io_status(struct net_device *dev)
319{
320 short ioaddr = dev->base_addr;
321
322 return ASTATUS();
323}
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325static void com90io_setmask(struct net_device *dev, int mask)
326{
327 short ioaddr = dev->base_addr;
328
329 AINTMASK(mask);
330}
331
332static void com90io_copy_to_card(struct net_device *dev, int bufnum, int offset,
333 void *buf, int count)
334{
335 TIME("put_whole_buffer", count, put_whole_buffer(dev, bufnum * 512 + offset, count, buf));
336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338static void com90io_copy_from_card(struct net_device *dev, int bufnum, int offset,
339 void *buf, int count)
340{
341 TIME("get_whole_buffer", count, get_whole_buffer(dev, bufnum * 512 + offset, count, buf));
342}
343
344static int io; /* use the insmod io= irq= shmem= options */
345static int irq;
346static char device[9]; /* use eg. device=arc1 to change name */
347
348module_param(io, int, 0);
349module_param(irq, int, 0);
350module_param_string(device, device, sizeof(device), 0);
351MODULE_LICENSE("GPL");
352
353#ifndef MODULE
354static int __init com90io_setup(char *s)
355{
356 int ints[4];
Joe Perches01a1d5a2015-05-05 10:05:48 -0700357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 s = get_options(s, 4, ints);
359 if (!ints[0])
360 return 0;
361 switch (ints[0]) {
362 default: /* ERROR */
363 printk("com90io: Too many arguments.\n");
364 case 2: /* IRQ */
365 irq = ints[2];
366 case 1: /* IO address */
367 io = ints[1];
368 }
369 if (*s)
370 snprintf(device, sizeof(device), "%s", s);
371 return 1;
372}
373__setup("com90io=", com90io_setup);
374#endif
375
376static struct net_device *my_dev;
377
378static int __init com90io_init(void)
379{
380 struct net_device *dev;
381 int err;
382
383 dev = alloc_arcdev(device);
384 if (!dev)
385 return -ENOMEM;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 dev->base_addr = io;
388 dev->irq = irq;
389 if (dev->irq == 2)
390 dev->irq = 9;
391
392 err = com90io_probe(dev);
393
394 if (err) {
395 free_netdev(dev);
396 return err;
397 }
398
399 my_dev = dev;
400 return 0;
401}
402
403static void __exit com90io_exit(void)
404{
405 struct net_device *dev = my_dev;
406 int ioaddr = dev->base_addr;
407
408 unregister_netdev(dev);
409
410 /* Set the thing back to MMAP mode, in case the old driver is loaded later */
411 outb((inb(_CONFIG) & ~IOMAPflag), _CONFIG);
412
413 free_irq(dev->irq, dev);
414 release_region(dev->base_addr, ARCNET_TOTAL_SIZE);
415 free_netdev(dev);
416}
417
418module_init(com90io_init)
419module_exit(com90io_exit)