arcnet: Convert printk to pr_<level>
[cascardo/linux.git] / drivers / net / arcnet / com90xx.c
1 /*
2  * Linux ARCnet driver - COM90xx chipset (memory-mapped buffers)
3  *
4  * Written 1994-1999 by Avery Pennarun.
5  * Written 1999 by Martin Mares <mj@ucw.cz>.
6  * Derived from skeleton.c by Donald Becker.
7  *
8  * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
9  *  for sponsoring the further development of this driver.
10  *
11  * **********************
12  *
13  * The original copyright of skeleton.c was as follows:
14  *
15  * skeleton.c Written 1993 by Donald Becker.
16  * Copyright 1993 United States Government as represented by the
17  * Director, National Security Agency.  This software may only be used
18  * and distributed according to the terms of the GNU General Public License as
19  * modified by SRC, incorporated herein by reference.
20  *
21  * **********************
22  *
23  * For more details, see drivers/net/arcnet.c
24  *
25  * **********************
26  */
27
28 #define pr_fmt(fmt) "arcnet:" KBUILD_MODNAME ": " fmt
29
30 #include <linux/module.h>
31 #include <linux/moduleparam.h>
32 #include <linux/init.h>
33 #include <linux/interrupt.h>
34 #include <linux/ioport.h>
35 #include <linux/delay.h>
36 #include <linux/netdevice.h>
37 #include <linux/slab.h>
38 #include <linux/io.h>
39 #include <linux/arcdevice.h>
40
41 /* Define this to speed up the autoprobe by assuming if only one io port and
42  * shmem are left in the list at Stage 5, they must correspond to each
43  * other.
44  *
45  * This is undefined by default because it might not always be true, and the
46  * extra check makes the autoprobe even more careful.  Speed demons can turn
47  * it on - I think it should be fine if you only have one ARCnet card
48  * installed.
49  *
50  * If no ARCnet cards are installed, this delay never happens anyway and thus
51  * the option has no effect.
52  */
53 #undef FAST_PROBE
54
55 /* Internal function declarations */
56 static int com90xx_found(int ioaddr, int airq, u_long shmem, void __iomem *);
57 static void com90xx_command(struct net_device *dev, int command);
58 static int com90xx_status(struct net_device *dev);
59 static void com90xx_setmask(struct net_device *dev, int mask);
60 static int com90xx_reset(struct net_device *dev, int really_reset);
61 static void com90xx_copy_to_card(struct net_device *dev, int bufnum, int offset,
62                                  void *buf, int count);
63 static void com90xx_copy_from_card(struct net_device *dev, int bufnum, int offset,
64                                    void *buf, int count);
65
66 /* Known ARCnet cards */
67
68 static struct net_device *cards[16];
69 static int numcards;
70
71 /* Handy defines for ARCnet specific stuff */
72
73 /* The number of low I/O ports used by the card */
74 #define ARCNET_TOTAL_SIZE       16
75
76 /* Amount of I/O memory used by the card */
77 #define BUFFER_SIZE (512)
78 #define MIRROR_SIZE (BUFFER_SIZE * 4)
79
80 /* COM 9026 controller chip --> ARCnet register addresses */
81 #define _INTMASK        (ioaddr + 0)    /* writable */
82 #define _STATUS         (ioaddr + 0)    /* readable */
83 #define _COMMAND        (ioaddr + 1)    /* writable, returns random vals on read (?) */
84 #define _CONFIG         (ioaddr + 2)    /* Configuration register */
85 #define _RESET          (ioaddr + 8)    /* software reset (on read) */
86 #define _MEMDATA        (ioaddr + 12)   /* Data port for IO-mapped memory */
87 #define _ADDR_HI        (ioaddr + 15)   /* Control registers for said */
88 #define _ADDR_LO        (ioaddr + 14)
89
90 #undef ASTATUS
91 #undef ACOMMAND
92 #undef AINTMASK
93
94 #define ASTATUS()       inb(_STATUS)
95 #define ACOMMAND(cmd)   outb((cmd), _COMMAND)
96 #define AINTMASK(msk)   outb((msk), _INTMASK)
97
98 static int com90xx_skip_probe __initdata = 0;
99
100 /* Module parameters */
101
102 static int io;                  /* use the insmod io= irq= shmem= options */
103 static int irq;
104 static int shmem;
105 static char device[9];          /* use eg. device=arc1 to change name */
106
107 module_param(io, int, 0);
108 module_param(irq, int, 0);
109 module_param(shmem, int, 0);
110 module_param_string(device, device, sizeof(device), 0);
111
112 static void __init com90xx_probe(void)
113 {
114         int count, status, ioaddr, numprint, airq, openparen = 0;
115         unsigned long airqmask;
116         int ports[(0x3f0 - 0x200) / 16 + 1] = { 0 };
117         unsigned long *shmems;
118         void __iomem **iomem;
119         int numports, numshmems, *port;
120         u_long *p;
121         int index;
122
123         if (!io && !irq && !shmem && !*device && com90xx_skip_probe)
124                 return;
125
126         shmems = kzalloc(((0x100000 - 0xa0000) / 0x800) * sizeof(unsigned long),
127                          GFP_KERNEL);
128         if (!shmems)
129                 return;
130         iomem = kzalloc(((0x100000 - 0xa0000) / 0x800) * sizeof(void __iomem *),
131                         GFP_KERNEL);
132         if (!iomem) {
133                 kfree(shmems);
134                 return;
135         }
136
137         if (BUGLVL(D_NORMAL))
138                 pr_info("%s\n", "COM90xx chipset support");
139
140         /* set up the arrays where we'll store the possible probe addresses */
141         numports = numshmems = 0;
142         if (io)
143                 ports[numports++] = io;
144         else
145                 for (count = 0x200; count <= 0x3f0; count += 16)
146                         ports[numports++] = count;
147         if (shmem)
148                 shmems[numshmems++] = shmem;
149         else
150                 for (count = 0xA0000; count <= 0xFF800; count += 2048)
151                         shmems[numshmems++] = count;
152
153         /* Stage 1: abandon any reserved ports, or ones with status==0xFF
154          * (empty), and reset any others by reading the reset port.
155          */
156         numprint = -1;
157         for (port = &ports[0]; port - ports < numports; port++) {
158                 numprint++;
159                 numprint %= 8;
160                 if (!numprint) {
161                         arc_cont(D_INIT, "\n");
162                         arc_cont(D_INIT, "S1: ");
163                 }
164                 arc_cont(D_INIT, "%Xh ", *port);
165
166                 ioaddr = *port;
167
168                 if (!request_region(*port, ARCNET_TOTAL_SIZE, "arcnet (90xx)")) {
169                         arc_cont(D_INIT_REASONS, "(request_region)\n");
170                         arc_cont(D_INIT_REASONS, "S1: ");
171                         if (BUGLVL(D_INIT_REASONS))
172                                 numprint = 0;
173                         *port-- = ports[--numports];
174                         continue;
175                 }
176                 if (ASTATUS() == 0xFF) {
177                         arc_cont(D_INIT_REASONS, "(empty)\n");
178                         arc_cont(D_INIT_REASONS, "S1: ");
179                         if (BUGLVL(D_INIT_REASONS))
180                                 numprint = 0;
181                         release_region(*port, ARCNET_TOTAL_SIZE);
182                         *port-- = ports[--numports];
183                         continue;
184                 }
185                 inb(_RESET);    /* begin resetting card */
186
187                 arc_cont(D_INIT_REASONS, "\n");
188                 arc_cont(D_INIT_REASONS, "S1: ");
189                 if (BUGLVL(D_INIT_REASONS))
190                         numprint = 0;
191         }
192         arc_cont(D_INIT, "\n");
193
194         if (!numports) {
195                 arc_cont(D_NORMAL, "S1: No ARCnet cards found.\n");
196                 kfree(shmems);
197                 kfree(iomem);
198                 return;
199         }
200         /* Stage 2: we have now reset any possible ARCnet cards, so we can't
201          * do anything until they finish.  If D_INIT, print the list of
202          * cards that are left.
203          */
204         numprint = -1;
205         for (port = &ports[0]; port < ports + numports; port++) {
206                 numprint++;
207                 numprint %= 8;
208                 if (!numprint) {
209                         arc_cont(D_INIT, "\n");
210                         arc_cont(D_INIT, "S2: ");
211                 }
212                 arc_cont(D_INIT, "%Xh ", *port);
213         }
214         arc_cont(D_INIT, "\n");
215         mdelay(RESETtime);
216
217         /* Stage 3: abandon any shmem addresses that don't have the signature
218          * 0xD1 byte in the right place, or are read-only.
219          */
220         numprint = -1;
221         for (index = 0, p = &shmems[0]; index < numshmems; p++, index++) {
222                 void __iomem *base;
223
224                 numprint++;
225                 numprint %= 8;
226                 if (!numprint) {
227                         arc_cont(D_INIT, "\n");
228                         arc_cont(D_INIT, "S3: ");
229                 }
230                 arc_cont(D_INIT, "%lXh ", *p);
231
232                 if (!request_mem_region(*p, MIRROR_SIZE, "arcnet (90xx)")) {
233                         arc_cont(D_INIT_REASONS, "(request_mem_region)\n");
234                         arc_cont(D_INIT_REASONS, "Stage 3: ");
235                         if (BUGLVL(D_INIT_REASONS))
236                                 numprint = 0;
237                         goto out;
238                 }
239                 base = ioremap(*p, MIRROR_SIZE);
240                 if (!base) {
241                         arc_cont(D_INIT_REASONS, "(ioremap)\n");
242                         arc_cont(D_INIT_REASONS, "Stage 3: ");
243                         if (BUGLVL(D_INIT_REASONS))
244                                 numprint = 0;
245                         goto out1;
246                 }
247                 if (readb(base) != TESTvalue) {
248                         arc_cont(D_INIT_REASONS, "(%02Xh != %02Xh)\n",
249                                  readb(base), TESTvalue);
250                         arc_cont(D_INIT_REASONS, "S3: ");
251                         if (BUGLVL(D_INIT_REASONS))
252                                 numprint = 0;
253                         goto out2;
254                 }
255                 /* By writing 0x42 to the TESTvalue location, we also make
256                  * sure no "mirror" shmem areas show up - if they occur
257                  * in another pass through this loop, they will be discarded
258                  * because *cptr != TESTvalue.
259                  */
260                 writeb(0x42, base);
261                 if (readb(base) != 0x42) {
262                         arc_cont(D_INIT_REASONS, "(read only)\n");
263                         arc_cont(D_INIT_REASONS, "S3: ");
264                         goto out2;
265                 }
266                 arc_cont(D_INIT_REASONS, "\n");
267                 arc_cont(D_INIT_REASONS, "S3: ");
268                 if (BUGLVL(D_INIT_REASONS))
269                         numprint = 0;
270                 iomem[index] = base;
271                 continue;
272         out2:
273                 iounmap(base);
274         out1:
275                 release_mem_region(*p, MIRROR_SIZE);
276         out:
277                 *p-- = shmems[--numshmems];
278                 index--;
279         }
280         arc_cont(D_INIT, "\n");
281
282         if (!numshmems) {
283                 arc_cont(D_NORMAL, "S3: No ARCnet cards found.\n");
284                 for (port = &ports[0]; port < ports + numports; port++)
285                         release_region(*port, ARCNET_TOTAL_SIZE);
286                 kfree(shmems);
287                 kfree(iomem);
288                 return;
289         }
290         /* Stage 4: something of a dummy, to report the shmems that are
291          * still possible after stage 3.
292          */
293         numprint = -1;
294         for (p = &shmems[0]; p < shmems + numshmems; p++) {
295                 numprint++;
296                 numprint %= 8;
297                 if (!numprint) {
298                         arc_cont(D_INIT, "\n");
299                         arc_cont(D_INIT, "S4: ");
300                 }
301                 arc_cont(D_INIT, "%lXh ", *p);
302         }
303         arc_cont(D_INIT, "\n");
304
305         /* Stage 5: for any ports that have the correct status, can disable
306          * the RESET flag, and (if no irq is given) generate an autoirq,
307          * register an ARCnet device.
308          *
309          * Currently, we can only register one device per probe, so quit
310          * after the first one is found.
311          */
312         numprint = -1;
313         for (port = &ports[0]; port < ports + numports; port++) {
314                 int found = 0;
315
316                 numprint++;
317                 numprint %= 8;
318                 if (!numprint) {
319                         arc_cont(D_INIT, "\n");
320                         arc_cont(D_INIT, "S5: ");
321                 }
322                 arc_cont(D_INIT, "%Xh ", *port);
323
324                 ioaddr = *port;
325                 status = ASTATUS();
326
327                 if ((status & 0x9D)
328                     != (NORXflag | RECONflag | TXFREEflag | RESETflag)) {
329                         arc_cont(D_INIT_REASONS, "(status=%Xh)\n", status);
330                         arc_cont(D_INIT_REASONS, "S5: ");
331                         if (BUGLVL(D_INIT_REASONS))
332                                 numprint = 0;
333                         release_region(*port, ARCNET_TOTAL_SIZE);
334                         *port-- = ports[--numports];
335                         continue;
336                 }
337                 ACOMMAND(CFLAGScmd | RESETclear | CONFIGclear);
338                 status = ASTATUS();
339                 if (status & RESETflag) {
340                         arc_cont(D_INIT_REASONS, " (eternal reset, status=%Xh)\n",
341                                  status);
342                         arc_cont(D_INIT_REASONS, "S5: ");
343                         if (BUGLVL(D_INIT_REASONS))
344                                 numprint = 0;
345                         release_region(*port, ARCNET_TOTAL_SIZE);
346                         *port-- = ports[--numports];
347                         continue;
348                 }
349                 /* skip this completely if an IRQ was given, because maybe
350                  * we're on a machine that locks during autoirq!
351                  */
352                 if (!irq) {
353                         /* if we do this, we're sure to get an IRQ since the
354                          * card has just reset and the NORXflag is on until
355                          * we tell it to start receiving.
356                          */
357                         airqmask = probe_irq_on();
358                         AINTMASK(NORXflag);
359                         udelay(1);
360                         AINTMASK(0);
361                         airq = probe_irq_off(airqmask);
362
363                         if (airq <= 0) {
364                                 arc_cont(D_INIT_REASONS, "(airq=%d)\n", airq);
365                                 arc_cont(D_INIT_REASONS, "S5: ");
366                                 if (BUGLVL(D_INIT_REASONS))
367                                         numprint = 0;
368                                 release_region(*port, ARCNET_TOTAL_SIZE);
369                                 *port-- = ports[--numports];
370                                 continue;
371                         }
372                 } else {
373                         airq = irq;
374                 }
375
376                 arc_cont(D_INIT, "(%d,", airq);
377                 openparen = 1;
378
379                 /* Everything seems okay.  But which shmem, if any, puts
380                  * back its signature byte when the card is reset?
381                  *
382                  * If there are multiple cards installed, there might be
383                  * multiple shmems still in the list.
384                  */
385 #ifdef FAST_PROBE
386                 if (numports > 1 || numshmems > 1) {
387                         inb(_RESET);
388                         mdelay(RESETtime);
389                 } else {
390                         /* just one shmem and port, assume they match */
391                         writeb(TESTvalue, iomem[0]);
392                 }
393 #else
394                 inb(_RESET);
395                 mdelay(RESETtime);
396 #endif
397
398                 for (index = 0; index < numshmems; index++) {
399                         u_long ptr = shmems[index];
400                         void __iomem *base = iomem[index];
401
402                         if (readb(base) == TESTvalue) { /* found one */
403                                 arc_cont(D_INIT, "%lXh)\n", *p);
404                                 openparen = 0;
405
406                                 /* register the card */
407                                 if (com90xx_found(*port, airq, ptr, base) == 0)
408                                         found = 1;
409                                 numprint = -1;
410
411                                 /* remove shmem from the list */
412                                 shmems[index] = shmems[--numshmems];
413                                 iomem[index] = iomem[numshmems];
414                                 break;  /* go to the next I/O port */
415                         } else {
416                                 arc_cont(D_INIT_REASONS, "%Xh-", readb(base));
417                         }
418                 }
419
420                 if (openparen) {
421                         if (BUGLVL(D_INIT))
422                                 pr_cont("no matching shmem)\n");
423                         if (BUGLVL(D_INIT_REASONS)) {
424                                 pr_cont("S5: ");
425                                 numprint = 0;
426                         }
427                 }
428                 if (!found)
429                         release_region(*port, ARCNET_TOTAL_SIZE);
430                 *port-- = ports[--numports];
431         }
432
433         if (BUGLVL(D_INIT_REASONS))
434                 pr_cont("\n");
435
436         /* Now put back TESTvalue on all leftover shmems. */
437         for (index = 0; index < numshmems; index++) {
438                 writeb(TESTvalue, iomem[index]);
439                 iounmap(iomem[index]);
440                 release_mem_region(shmems[index], MIRROR_SIZE);
441         }
442         kfree(shmems);
443         kfree(iomem);
444 }
445
446 static int check_mirror(unsigned long addr, size_t size)
447 {
448         void __iomem *p;
449         int res = -1;
450
451         if (!request_mem_region(addr, size, "arcnet (90xx)"))
452                 return -1;
453
454         p = ioremap(addr, size);
455         if (p) {
456                 if (readb(p) == TESTvalue)
457                         res = 1;
458                 else
459                         res = 0;
460                 iounmap(p);
461         }
462
463         release_mem_region(addr, size);
464         return res;
465 }
466
467 /* Set up the struct net_device associated with this card.  Called after
468  * probing succeeds.
469  */
470 static int __init com90xx_found(int ioaddr, int airq, u_long shmem, void __iomem *p)
471 {
472         struct net_device *dev = NULL;
473         struct arcnet_local *lp;
474         u_long first_mirror, last_mirror;
475         int mirror_size;
476
477         /* allocate struct net_device */
478         dev = alloc_arcdev(device);
479         if (!dev) {
480                 arc_cont(D_NORMAL, "com90xx: Can't allocate device!\n");
481                 iounmap(p);
482                 release_mem_region(shmem, MIRROR_SIZE);
483                 return -ENOMEM;
484         }
485         lp = netdev_priv(dev);
486         /* find the real shared memory start/end points, including mirrors */
487
488         /* guess the actual size of one "memory mirror" - the number of
489          * bytes between copies of the shared memory.  On most cards, it's
490          * 2k (or there are no mirrors at all) but on some, it's 4k.
491          */
492         mirror_size = MIRROR_SIZE;
493         if (readb(p) == TESTvalue &&
494             check_mirror(shmem - MIRROR_SIZE, MIRROR_SIZE) == 0 &&
495             check_mirror(shmem - 2 * MIRROR_SIZE, MIRROR_SIZE) == 1)
496                 mirror_size = 2 * MIRROR_SIZE;
497
498         first_mirror = shmem - mirror_size;
499         while (check_mirror(first_mirror, mirror_size) == 1)
500                 first_mirror -= mirror_size;
501         first_mirror += mirror_size;
502
503         last_mirror = shmem + mirror_size;
504         while (check_mirror(last_mirror, mirror_size) == 1)
505                 last_mirror += mirror_size;
506         last_mirror -= mirror_size;
507
508         dev->mem_start = first_mirror;
509         dev->mem_end = last_mirror + MIRROR_SIZE - 1;
510
511         iounmap(p);
512         release_mem_region(shmem, MIRROR_SIZE);
513
514         if (!request_mem_region(dev->mem_start, dev->mem_end - dev->mem_start + 1, "arcnet (90xx)"))
515                 goto err_free_dev;
516
517         /* reserve the irq */
518         if (request_irq(airq, arcnet_interrupt, 0, "arcnet (90xx)", dev)) {
519                 arc_printk(D_NORMAL, dev, "Can't get IRQ %d!\n", airq);
520                 goto err_release_mem;
521         }
522         dev->irq = airq;
523
524         /* Initialize the rest of the device structure. */
525         lp->card_name = "COM90xx";
526         lp->hw.command = com90xx_command;
527         lp->hw.status = com90xx_status;
528         lp->hw.intmask = com90xx_setmask;
529         lp->hw.reset = com90xx_reset;
530         lp->hw.owner = THIS_MODULE;
531         lp->hw.copy_to_card = com90xx_copy_to_card;
532         lp->hw.copy_from_card = com90xx_copy_from_card;
533         lp->mem_start = ioremap(dev->mem_start, dev->mem_end - dev->mem_start + 1);
534         if (!lp->mem_start) {
535                 arc_printk(D_NORMAL, dev, "Can't remap device memory!\n");
536                 goto err_free_irq;
537         }
538
539         /* get and check the station ID from offset 1 in shmem */
540         dev->dev_addr[0] = readb(lp->mem_start + 1);
541
542         dev->base_addr = ioaddr;
543
544         arc_printk(D_NORMAL, dev, "COM90xx station %02Xh found at %03lXh, IRQ %d, ShMem %lXh (%ld*%xh).\n",
545                    dev->dev_addr[0],
546                    dev->base_addr, dev->irq, dev->mem_start,
547                    (dev->mem_end - dev->mem_start + 1) / mirror_size,
548                    mirror_size);
549
550         if (register_netdev(dev))
551                 goto err_unmap;
552
553         cards[numcards++] = dev;
554         return 0;
555
556 err_unmap:
557         iounmap(lp->mem_start);
558 err_free_irq:
559         free_irq(dev->irq, dev);
560 err_release_mem:
561         release_mem_region(dev->mem_start, dev->mem_end - dev->mem_start + 1);
562 err_free_dev:
563         free_netdev(dev);
564         return -EIO;
565 }
566
567 static void com90xx_command(struct net_device *dev, int cmd)
568 {
569         short ioaddr = dev->base_addr;
570
571         ACOMMAND(cmd);
572 }
573
574 static int com90xx_status(struct net_device *dev)
575 {
576         short ioaddr = dev->base_addr;
577
578         return ASTATUS();
579 }
580
581 static void com90xx_setmask(struct net_device *dev, int mask)
582 {
583         short ioaddr = dev->base_addr;
584
585         AINTMASK(mask);
586 }
587
588 /* Do a hardware reset on the card, and set up necessary registers.
589  *
590  * This should be called as little as possible, because it disrupts the
591  * token on the network (causes a RECON) and requires a significant delay.
592  *
593  * However, it does make sure the card is in a defined state.
594  */
595 static int com90xx_reset(struct net_device *dev, int really_reset)
596 {
597         struct arcnet_local *lp = netdev_priv(dev);
598         short ioaddr = dev->base_addr;
599
600         arc_printk(D_INIT, dev, "Resetting (status=%02Xh)\n", ASTATUS());
601
602         if (really_reset) {
603                 /* reset the card */
604                 inb(_RESET);
605                 mdelay(RESETtime);
606         }
607         ACOMMAND(CFLAGScmd | RESETclear);       /* clear flags & end reset */
608         ACOMMAND(CFLAGScmd | CONFIGclear);
609
610         /* don't do this until we verify that it doesn't hurt older cards! */
611         /* outb(inb(_CONFIG) | ENABLE16flag, _CONFIG); */
612
613         /* verify that the ARCnet signature byte is present */
614         if (readb(lp->mem_start) != TESTvalue) {
615                 if (really_reset)
616                         arc_printk(D_NORMAL, dev, "reset failed: TESTvalue not present.\n");
617                 return 1;
618         }
619         /* enable extended (512-byte) packets */
620         ACOMMAND(CONFIGcmd | EXTconf);
621
622         /* clean out all the memory to make debugging make more sense :) */
623         if (BUGLVL(D_DURING))
624                 memset_io(lp->mem_start, 0x42, 2048);
625
626         /* done!  return success. */
627         return 0;
628 }
629
630 static void com90xx_copy_to_card(struct net_device *dev, int bufnum, int offset,
631                                  void *buf, int count)
632 {
633         struct arcnet_local *lp = netdev_priv(dev);
634         void __iomem *memaddr = lp->mem_start + bufnum * 512 + offset;
635
636         TIME(dev, "memcpy_toio", count, memcpy_toio(memaddr, buf, count));
637 }
638
639 static void com90xx_copy_from_card(struct net_device *dev, int bufnum, int offset,
640                                    void *buf, int count)
641 {
642         struct arcnet_local *lp = netdev_priv(dev);
643         void __iomem *memaddr = lp->mem_start + bufnum * 512 + offset;
644
645         TIME(dev, "memcpy_fromio", count, memcpy_fromio(buf, memaddr, count));
646 }
647
648 MODULE_LICENSE("GPL");
649
650 static int __init com90xx_init(void)
651 {
652         if (irq == 2)
653                 irq = 9;
654         com90xx_probe();
655         if (!numcards)
656                 return -EIO;
657         return 0;
658 }
659
660 static void __exit com90xx_exit(void)
661 {
662         struct net_device *dev;
663         struct arcnet_local *lp;
664         int count;
665
666         for (count = 0; count < numcards; count++) {
667                 dev = cards[count];
668                 lp = netdev_priv(dev);
669
670                 unregister_netdev(dev);
671                 free_irq(dev->irq, dev);
672                 iounmap(lp->mem_start);
673                 release_region(dev->base_addr, ARCNET_TOTAL_SIZE);
674                 release_mem_region(dev->mem_start, dev->mem_end - dev->mem_start + 1);
675                 free_netdev(dev);
676         }
677 }
678
679 module_init(com90xx_init);
680 module_exit(com90xx_exit);
681
682 #ifndef MODULE
683 static int __init com90xx_setup(char *s)
684 {
685         int ints[8];
686
687         s = get_options(s, 8, ints);
688         if (!ints[0] && !*s) {
689                 pr_notice("Disabled\n");
690                 return 1;
691         }
692
693         switch (ints[0]) {
694         default:                /* ERROR */
695                 pr_err("Too many arguments\n");
696         case 3:         /* Mem address */
697                 shmem = ints[3];
698         case 2:         /* IRQ */
699                 irq = ints[2];
700         case 1:         /* IO address */
701                 io = ints[1];
702         }
703
704         if (*s)
705                 snprintf(device, sizeof(device), "%s", s);
706
707         return 1;
708 }
709
710 __setup("com90xx=", com90xx_setup);
711 #endif