[NET]: Nuke SET_MODULE_OWNER macro.
[safe/jmp/linux-2.6] / drivers / net / tokenring / madgemc.c
1 /*
2  *  madgemc.c: Driver for the Madge Smart 16/4 MC16 MCA token ring card.
3  *
4  *  Written 2000 by Adam Fritzler
5  *
6  *  This software may be used and distributed according to the terms
7  *  of the GNU General Public License, incorporated herein by reference.
8  *
9  *  This driver module supports the following cards:
10  *      - Madge Smart 16/4 Ringnode MC16
11  *      - Madge Smart 16/4 Ringnode MC32 (??)
12  *
13  *  Maintainer(s):
14  *    AF        Adam Fritzler           mid@auk.cx
15  *
16  *  Modification History:
17  *      16-Jan-00       AF      Created
18  *
19  */
20 static const char version[] = "madgemc.c: v0.91 23/01/2000 by Adam Fritzler\n";
21
22 #include <linux/module.h>
23 #include <linux/mca.h>
24 #include <linux/kernel.h>
25 #include <linux/errno.h>
26 #include <linux/init.h>
27 #include <linux/netdevice.h>
28 #include <linux/trdevice.h>
29
30 #include <asm/system.h>
31 #include <asm/io.h>
32 #include <asm/irq.h>
33
34 #include "tms380tr.h"
35 #include "madgemc.h"            /* Madge-specific constants */
36
37 #define MADGEMC_IO_EXTENT 32
38 #define MADGEMC_SIF_OFFSET 0x08
39
40 struct card_info {
41         /*
42          * These are read from the BIA ROM.
43          */
44         unsigned int manid;
45         unsigned int cardtype;
46         unsigned int cardrev;
47         unsigned int ramsize;
48         
49         /*
50          * These are read from the MCA POS registers.  
51          */
52         unsigned int burstmode:2;
53         unsigned int fairness:1; /* 0 = Fair, 1 = Unfair */
54         unsigned int arblevel:4;
55         unsigned int ringspeed:2; /* 0 = 4mb, 1 = 16, 2 = Auto/none */
56         unsigned int cabletype:1; /* 0 = RJ45, 1 = DB9 */
57 };
58
59 static int madgemc_open(struct net_device *dev);
60 static int madgemc_close(struct net_device *dev);
61 static int madgemc_chipset_init(struct net_device *dev);
62 static void madgemc_read_rom(struct net_device *dev, struct card_info *card);
63 static unsigned short madgemc_setnselout_pins(struct net_device *dev);
64 static void madgemc_setcabletype(struct net_device *dev, int type);
65
66 static int madgemc_mcaproc(char *buf, int slot, void *d);
67
68 static void madgemc_setregpage(struct net_device *dev, int page);
69 static void madgemc_setsifsel(struct net_device *dev, int val);
70 static void madgemc_setint(struct net_device *dev, int val);
71
72 static irqreturn_t madgemc_interrupt(int irq, void *dev_id);
73
74 /*
75  * These work around paging, however they don't guarentee you're on the
76  * right page.
77  */
78 #define SIFREADB(reg) (inb(dev->base_addr + ((reg<0x8)?reg:reg-0x8)))
79 #define SIFWRITEB(val, reg) (outb(val, dev->base_addr + ((reg<0x8)?reg:reg-0x8)))
80 #define SIFREADW(reg) (inw(dev->base_addr + ((reg<0x8)?reg:reg-0x8)))
81 #define SIFWRITEW(val, reg) (outw(val, dev->base_addr + ((reg<0x8)?reg:reg-0x8)))
82
83 /*
84  * Read a byte-length value from the register.
85  */
86 static unsigned short madgemc_sifreadb(struct net_device *dev, unsigned short reg)
87 {
88         unsigned short ret;
89         if (reg<0x8)    
90                 ret = SIFREADB(reg);
91         else {
92                 madgemc_setregpage(dev, 1);     
93                 ret = SIFREADB(reg);
94                 madgemc_setregpage(dev, 0);
95         }
96         return ret;
97 }
98
99 /*
100  * Write a byte-length value to a register.
101  */
102 static void madgemc_sifwriteb(struct net_device *dev, unsigned short val, unsigned short reg)
103 {
104         if (reg<0x8)
105                 SIFWRITEB(val, reg);
106         else {
107                 madgemc_setregpage(dev, 1);
108                 SIFWRITEB(val, reg);
109                 madgemc_setregpage(dev, 0);
110         }
111         return;
112 }
113
114 /*
115  * Read a word-length value from a register
116  */
117 static unsigned short madgemc_sifreadw(struct net_device *dev, unsigned short reg)
118 {
119         unsigned short ret;
120         if (reg<0x8)    
121                 ret = SIFREADW(reg);
122         else {
123                 madgemc_setregpage(dev, 1);     
124                 ret = SIFREADW(reg);
125                 madgemc_setregpage(dev, 0);
126         }
127         return ret;
128 }
129
130 /*
131  * Write a word-length value to a register.
132  */
133 static void madgemc_sifwritew(struct net_device *dev, unsigned short val, unsigned short reg)
134 {
135         if (reg<0x8)
136                 SIFWRITEW(val, reg);
137         else {
138                 madgemc_setregpage(dev, 1);
139                 SIFWRITEW(val, reg);
140                 madgemc_setregpage(dev, 0);
141         }
142         return;
143 }
144
145
146
147 static int __devinit madgemc_probe(struct device *device)
148 {       
149         static int versionprinted;
150         struct net_device *dev;
151         struct net_local *tp;
152         struct card_info *card;
153         struct mca_device *mdev = to_mca_device(device);
154         int ret = 0, i = 0;
155
156         if (versionprinted++ == 0)
157                 printk("%s", version);
158
159         if(mca_device_claimed(mdev))
160                 return -EBUSY;
161         mca_device_set_claim(mdev, 1);
162
163         dev = alloc_trdev(sizeof(struct net_local));
164         if (!dev) {
165                 printk("madgemc: unable to allocate dev space\n");
166                 mca_device_set_claim(mdev, 0);
167                 ret = -ENOMEM;
168                 goto getout;
169         }
170
171         dev->dma = 0;
172
173         card = kmalloc(sizeof(struct card_info), GFP_KERNEL);
174         if (card==NULL) {
175                 printk("madgemc: unable to allocate card struct\n");
176                 ret = -ENOMEM;
177                 goto getout1;
178         }
179
180         /*
181          * Parse configuration information.  This all comes
182          * directly from the publicly available @002d.ADF.
183          * Get it from Madge or your local ADF library.
184          */
185
186         /*
187          * Base address 
188          */
189         dev->base_addr = 0x0a20 + 
190                 ((mdev->pos[2] & MC16_POS2_ADDR2)?0x0400:0) +
191                 ((mdev->pos[0] & MC16_POS0_ADDR1)?0x1000:0) +
192                 ((mdev->pos[3] & MC16_POS3_ADDR3)?0x2000:0);
193
194         /*
195          * Interrupt line
196          */
197         switch(mdev->pos[0] >> 6) { /* upper two bits */
198                 case 0x1: dev->irq = 3; break;
199                 case 0x2: dev->irq = 9; break; /* IRQ 2 = IRQ 9 */
200                 case 0x3: dev->irq = 10; break;
201                 default: dev->irq = 0; break;
202         }
203
204         if (dev->irq == 0) {
205                 printk("%s: invalid IRQ\n", dev->name);
206                 ret = -EBUSY;
207                 goto getout2;
208         }
209
210         if (!request_region(dev->base_addr, MADGEMC_IO_EXTENT, 
211                            "madgemc")) {
212                 printk(KERN_INFO "madgemc: unable to setup Smart MC in slot %d because of I/O base conflict at 0x%04lx\n", mdev->slot, dev->base_addr);
213                 dev->base_addr += MADGEMC_SIF_OFFSET;
214                 ret = -EBUSY;
215                 goto getout2;
216         }
217         dev->base_addr += MADGEMC_SIF_OFFSET;
218         
219         /*
220          * Arbitration Level
221          */
222         card->arblevel = ((mdev->pos[0] >> 1) & 0x7) + 8;
223
224         /*
225          * Burst mode and Fairness
226          */
227         card->burstmode = ((mdev->pos[2] >> 6) & 0x3);
228         card->fairness = ((mdev->pos[2] >> 4) & 0x1);
229
230         /*
231          * Ring Speed
232          */
233         if ((mdev->pos[1] >> 2)&0x1)
234                 card->ringspeed = 2; /* not selected */
235         else if ((mdev->pos[2] >> 5) & 0x1)
236                 card->ringspeed = 1; /* 16Mb */
237         else
238                 card->ringspeed = 0; /* 4Mb */
239
240         /* 
241          * Cable type
242          */
243         if ((mdev->pos[1] >> 6)&0x1)
244                 card->cabletype = 1; /* STP/DB9 */
245         else
246                 card->cabletype = 0; /* UTP/RJ-45 */
247
248
249         /* 
250          * ROM Info. This requires us to actually twiddle
251          * bits on the card, so we must ensure above that 
252          * the base address is free of conflict (request_region above).
253          */
254         madgemc_read_rom(dev, card);
255                 
256         if (card->manid != 0x4d) { /* something went wrong */
257                 printk(KERN_INFO "%s: Madge MC ROM read failed (unknown manufacturer ID %02x)\n", dev->name, card->manid);
258                 goto getout3;
259         }
260                 
261         if ((card->cardtype != 0x08) && (card->cardtype != 0x0d)) {
262                 printk(KERN_INFO "%s: Madge MC ROM read failed (unknown card ID %02x)\n", dev->name, card->cardtype);
263                 ret = -EIO;
264                 goto getout3;
265         }
266                
267         /* All cards except Rev 0 and 1 MC16's have 256kb of RAM */
268         if ((card->cardtype == 0x08) && (card->cardrev <= 0x01))
269                 card->ramsize = 128;
270         else
271                 card->ramsize = 256;
272
273         printk("%s: %s Rev %d at 0x%04lx IRQ %d\n", 
274                dev->name, 
275                (card->cardtype == 0x08)?MADGEMC16_CARDNAME:
276                MADGEMC32_CARDNAME, card->cardrev, 
277                dev->base_addr, dev->irq);
278
279         if (card->cardtype == 0x0d)
280                 printk("%s:     Warning: MC32 support is experimental and highly untested\n", dev->name);
281         
282         if (card->ringspeed==2) { /* Unknown */
283                 printk("%s:     Warning: Ring speed not set in POS -- Please run the reference disk and set it!\n", dev->name);
284                 card->ringspeed = 1; /* default to 16mb */
285         }
286                 
287         printk("%s:     RAM Size: %dKB\n", dev->name, card->ramsize);
288
289         printk("%s:     Ring Speed: %dMb/sec on %s\n", dev->name, 
290                (card->ringspeed)?16:4, 
291                card->cabletype?"STP/DB9":"UTP/RJ-45");
292         printk("%s:     Arbitration Level: %d\n", dev->name, 
293                card->arblevel);
294
295         printk("%s:     Burst Mode: ", dev->name);
296         switch(card->burstmode) {
297                 case 0: printk("Cycle steal"); break;
298                 case 1: printk("Limited burst"); break;
299                 case 2: printk("Delayed release"); break;
300                 case 3: printk("Immediate release"); break;
301         }
302         printk(" (%s)\n", (card->fairness)?"Unfair":"Fair");
303
304
305         /* 
306          * Enable SIF before we assign the interrupt handler,
307          * just in case we get spurious interrupts that need
308          * handling.
309          */ 
310         outb(0, dev->base_addr + MC_CONTROL_REG0); /* sanity */
311         madgemc_setsifsel(dev, 1);
312         if (request_irq(dev->irq, madgemc_interrupt, IRQF_SHARED,
313                        "madgemc", dev)) {
314                 ret = -EBUSY;
315                 goto getout3;
316         }
317
318         madgemc_chipset_init(dev); /* enables interrupts! */
319         madgemc_setcabletype(dev, card->cabletype);
320
321         /* Setup MCA structures */
322         mca_device_set_name(mdev, (card->cardtype == 0x08)?MADGEMC16_CARDNAME:MADGEMC32_CARDNAME);
323         mca_set_adapter_procfn(mdev->slot, madgemc_mcaproc, dev);
324
325         printk("%s:     Ring Station Address: ", dev->name);
326         printk("%2.2x", dev->dev_addr[0]);
327         for (i = 1; i < 6; i++)
328                 printk(":%2.2x", dev->dev_addr[i]);
329         printk("\n");
330
331         if (tmsdev_init(dev, device)) {
332                 printk("%s: unable to get memory for dev->priv.\n", 
333                        dev->name);
334                 ret = -ENOMEM;
335                 goto getout4;
336         }
337         tp = netdev_priv(dev);
338
339         /* 
340          * The MC16 is physically a 32bit card.  However, Madge
341          * insists on calling it 16bit, so I'll assume here that
342          * they know what they're talking about.  Cut off DMA
343          * at 16mb.
344          */
345         tp->setnselout = madgemc_setnselout_pins;
346         tp->sifwriteb = madgemc_sifwriteb;
347         tp->sifreadb = madgemc_sifreadb;
348         tp->sifwritew = madgemc_sifwritew;
349         tp->sifreadw = madgemc_sifreadw;
350         tp->DataRate = (card->ringspeed)?SPEED_16:SPEED_4;
351
352         memcpy(tp->ProductID, "Madge MCA 16/4    ", PROD_ID_SIZE + 1);
353
354         dev->open = madgemc_open;
355         dev->stop = madgemc_close;
356
357         tp->tmspriv = card;
358         dev_set_drvdata(device, dev);
359
360         if (register_netdev(dev) == 0)
361                 return 0;
362
363         dev_set_drvdata(device, NULL);
364         ret = -ENOMEM;
365 getout4:
366         free_irq(dev->irq, dev);
367 getout3:
368         release_region(dev->base_addr-MADGEMC_SIF_OFFSET, 
369                        MADGEMC_IO_EXTENT); 
370 getout2:
371         kfree(card);
372 getout1:
373         free_netdev(dev);
374 getout:
375         mca_device_set_claim(mdev, 0);
376         return ret;
377 }
378
379 /*
380  * Handle interrupts generated by the card
381  *
382  * The MicroChannel Madge cards need slightly more handling
383  * after an interrupt than other TMS380 cards do.
384  *
385  * First we must make sure it was this card that generated the
386  * interrupt (since interrupt sharing is allowed).  Then,
387  * because we're using level-triggered interrupts (as is
388  * standard on MCA), we must toggle the interrupt line
389  * on the card in order to claim and acknowledge the interrupt.
390  * Once that is done, the interrupt should be handlable in
391  * the normal tms380tr_interrupt() routine.
392  *
393  * There's two ways we can check to see if the interrupt is ours,
394  * both with their own disadvantages...
395  *
396  * 1)   Read in the SIFSTS register from the TMS controller.  This
397  *      is guarenteed to be accurate, however, there's a fairly
398  *      large performance penalty for doing so: the Madge chips
399  *      must request the register from the Eagle, the Eagle must
400  *      read them from its internal bus, and then take the route
401  *      back out again, for a 16bit read.  
402  *
403  * 2)   Use the MC_CONTROL_REG0_SINTR bit from the Madge ASICs.
404  *      The major disadvantage here is that the accuracy of the
405  *      bit is in question.  However, it cuts out the extra read
406  *      cycles it takes to read the Eagle's SIF, as its only an
407  *      8bit read, and theoretically the Madge bit is directly
408  *      connected to the interrupt latch coming out of the Eagle
409  *      hardware (that statement is not verified).  
410  *
411  * I can't determine which of these methods has the best win.  For now,
412  * we make a compromise.  Use the Madge way for the first interrupt,
413  * which should be the fast-path, and then once we hit the first 
414  * interrupt, keep on trying using the SIF method until we've
415  * exhausted all contiguous interrupts.
416  *
417  */
418 static irqreturn_t madgemc_interrupt(int irq, void *dev_id)
419 {
420         int pending,reg1;
421         struct net_device *dev;
422
423         if (!dev_id) {
424                 printk("madgemc_interrupt: was not passed a dev_id!\n");
425                 return IRQ_NONE;
426         }
427
428         dev = (struct net_device *)dev_id;
429
430         /* Make sure its really us. -- the Madge way */
431         pending = inb(dev->base_addr + MC_CONTROL_REG0);
432         if (!(pending & MC_CONTROL_REG0_SINTR))
433                 return IRQ_NONE; /* not our interrupt */
434
435         /*
436          * Since we're level-triggered, we may miss the rising edge
437          * of the next interrupt while we're off handling this one,
438          * so keep checking until the SIF verifies that it has nothing
439          * left for us to do.
440          */
441         pending = STS_SYSTEM_IRQ;
442         do {
443                 if (pending & STS_SYSTEM_IRQ) {
444
445                         /* Toggle the interrupt to reset the latch on card */
446                         reg1 = inb(dev->base_addr + MC_CONTROL_REG1);
447                         outb(reg1 ^ MC_CONTROL_REG1_SINTEN, 
448                              dev->base_addr + MC_CONTROL_REG1);
449                         outb(reg1, dev->base_addr + MC_CONTROL_REG1);
450
451                         /* Continue handling as normal */
452                         tms380tr_interrupt(irq, dev_id);
453
454                         pending = SIFREADW(SIFSTS); /* restart - the SIF way */
455
456                 } else
457                         return IRQ_HANDLED; 
458         } while (1);
459
460         return IRQ_HANDLED; /* not reachable */
461 }
462
463 /*
464  * Set the card to the prefered ring speed.
465  *
466  * Unlike newer cards, the MC16/32 have their speed selection
467  * circuit connected to the Madge ASICs and not to the TMS380
468  * NSELOUT pins. Set the ASIC bits correctly here, and return 
469  * zero to leave the TMS NSELOUT bits unaffected.
470  *
471  */
472 unsigned short madgemc_setnselout_pins(struct net_device *dev)
473 {
474         unsigned char reg1;
475         struct net_local *tp = netdev_priv(dev);
476         
477         reg1 = inb(dev->base_addr + MC_CONTROL_REG1);
478
479         if(tp->DataRate == SPEED_16)
480                 reg1 |= MC_CONTROL_REG1_SPEED_SEL; /* add for 16mb */
481         else if (reg1 & MC_CONTROL_REG1_SPEED_SEL)
482                 reg1 ^= MC_CONTROL_REG1_SPEED_SEL; /* remove for 4mb */
483         outb(reg1, dev->base_addr + MC_CONTROL_REG1);
484
485         return 0; /* no change */
486 }
487
488 /*
489  * Set the register page.  This equates to the SRSX line
490  * on the TMS380Cx6.
491  *
492  * Register selection is normally done via three contiguous
493  * bits.  However, some boards (such as the MC16/32) use only
494  * two bits, plus a separate bit in the glue chip.  This
495  * sets the SRSX bit (the top bit).  See page 4-17 in the
496  * Yellow Book for which registers are affected.
497  *
498  */
499 static void madgemc_setregpage(struct net_device *dev, int page)
500 {       
501         static int reg1;
502
503         reg1 = inb(dev->base_addr + MC_CONTROL_REG1);
504         if ((page == 0) && (reg1 & MC_CONTROL_REG1_SRSX)) {
505                 outb(reg1 ^ MC_CONTROL_REG1_SRSX, 
506                      dev->base_addr + MC_CONTROL_REG1);
507         }
508         else if (page == 1) {
509                 outb(reg1 | MC_CONTROL_REG1_SRSX, 
510                      dev->base_addr + MC_CONTROL_REG1);
511         }
512         reg1 = inb(dev->base_addr + MC_CONTROL_REG1);
513
514         return;
515 }
516
517 /*
518  * The SIF registers are not mapped into register space by default
519  * Set this to 1 to map them, 0 to map the BIA ROM.
520  *
521  */
522 static void madgemc_setsifsel(struct net_device *dev, int val)
523 {
524         unsigned int reg0;
525
526         reg0 = inb(dev->base_addr + MC_CONTROL_REG0);
527         if ((val == 0) && (reg0 & MC_CONTROL_REG0_SIFSEL)) {
528                 outb(reg0 ^ MC_CONTROL_REG0_SIFSEL, 
529                      dev->base_addr + MC_CONTROL_REG0);
530         } else if (val == 1) {
531                 outb(reg0 | MC_CONTROL_REG0_SIFSEL, 
532                      dev->base_addr + MC_CONTROL_REG0);
533         }       
534         reg0 = inb(dev->base_addr + MC_CONTROL_REG0);
535
536         return;
537 }
538
539 /*
540  * Enable SIF interrupts
541  *
542  * This does not enable interrupts in the SIF, but rather
543  * enables SIF interrupts to be passed onto the host.
544  *
545  */
546 static void madgemc_setint(struct net_device *dev, int val)
547 {
548         unsigned int reg1;
549
550         reg1 = inb(dev->base_addr + MC_CONTROL_REG1);
551         if ((val == 0) && (reg1 & MC_CONTROL_REG1_SINTEN)) {
552                 outb(reg1 ^ MC_CONTROL_REG1_SINTEN, 
553                      dev->base_addr + MC_CONTROL_REG1);
554         } else if (val == 1) {
555                 outb(reg1 | MC_CONTROL_REG1_SINTEN, 
556                      dev->base_addr + MC_CONTROL_REG1);
557         }
558
559         return;
560 }
561
562 /*
563  * Cable type is set via control register 7. Bit zero high
564  * for UTP, low for STP.
565  */
566 static void madgemc_setcabletype(struct net_device *dev, int type)
567 {
568         outb((type==0)?MC_CONTROL_REG7_CABLEUTP:MC_CONTROL_REG7_CABLESTP,
569              dev->base_addr + MC_CONTROL_REG7);
570 }
571
572 /*
573  * Enable the functions of the Madge chipset needed for
574  * full working order. 
575  */
576 static int madgemc_chipset_init(struct net_device *dev)
577 {
578         outb(0, dev->base_addr + MC_CONTROL_REG1); /* pull SRESET low */
579         tms380tr_wait(100); /* wait for card to reset */
580
581         /* bring back into normal operating mode */
582         outb(MC_CONTROL_REG1_NSRESET, dev->base_addr + MC_CONTROL_REG1);
583
584         /* map SIF registers */
585         madgemc_setsifsel(dev, 1);
586
587         /* enable SIF interrupts */
588         madgemc_setint(dev, 1); 
589
590         return 0;
591 }
592
593 /*
594  * Disable the board, and put back into power-up state.
595  */
596 static void madgemc_chipset_close(struct net_device *dev)
597 {
598         /* disable interrupts */
599         madgemc_setint(dev, 0);
600         /* unmap SIF registers */
601         madgemc_setsifsel(dev, 0);
602
603         return;
604 }
605
606 /*
607  * Read the card type (MC16 or MC32) from the card.
608  *
609  * The configuration registers are stored in two separate
610  * pages.  Pages are flipped by clearing bit 3 of CONTROL_REG0 (PAGE)
611  * for page zero, or setting bit 3 for page one.
612  *
613  * Page zero contains the following data:
614  *      Byte 0: Manufacturer ID (0x4D -- ASCII "M")
615  *      Byte 1: Card type:
616  *                      0x08 for MC16
617  *                      0x0D for MC32
618  *      Byte 2: Card revision
619  *      Byte 3: Mirror of POS config register 0
620  *      Byte 4: Mirror of POS 1
621  *      Byte 5: Mirror of POS 2
622  *
623  * Page one contains the following data:
624  *      Byte 0: Unused
625  *      Byte 1-6: BIA, MSB to LSB.
626  *
627  * Note that to read the BIA, we must unmap the SIF registers
628  * by clearing bit 2 of CONTROL_REG0 (SIFSEL), as the data
629  * will reside in the same logical location.  For this reason,
630  * _never_ read the BIA while the Eagle processor is running!
631  * The SIF will be completely inaccessible until the BIA operation
632  * is complete.
633  *
634  */
635 static void madgemc_read_rom(struct net_device *dev, struct card_info *card)
636 {
637         unsigned long ioaddr;
638         unsigned char reg0, reg1, tmpreg0, i;
639
640         ioaddr = dev->base_addr;
641
642         reg0 = inb(ioaddr + MC_CONTROL_REG0);
643         reg1 = inb(ioaddr + MC_CONTROL_REG1);
644
645         /* Switch to page zero and unmap SIF */
646         tmpreg0 = reg0 & ~(MC_CONTROL_REG0_PAGE + MC_CONTROL_REG0_SIFSEL);
647         outb(tmpreg0, ioaddr + MC_CONTROL_REG0);
648         
649         card->manid = inb(ioaddr + MC_ROM_MANUFACTURERID);
650         card->cardtype = inb(ioaddr + MC_ROM_ADAPTERID);
651         card->cardrev = inb(ioaddr + MC_ROM_REVISION);
652
653         /* Switch to rom page one */
654         outb(tmpreg0 | MC_CONTROL_REG0_PAGE, ioaddr + MC_CONTROL_REG0);
655
656         /* Read BIA */
657         dev->addr_len = 6;
658         for (i = 0; i < 6; i++)
659                 dev->dev_addr[i] = inb(ioaddr + MC_ROM_BIA_START + i);
660         
661         /* Restore original register values */
662         outb(reg0, ioaddr + MC_CONTROL_REG0);
663         outb(reg1, ioaddr + MC_CONTROL_REG1);
664         
665         return;
666 }
667
668 static int madgemc_open(struct net_device *dev)
669 {  
670         /*
671          * Go ahead and reinitialize the chipset again, just to 
672          * make sure we didn't get left in a bad state.
673          */
674         madgemc_chipset_init(dev);
675         tms380tr_open(dev);
676         return 0;
677 }
678
679 static int madgemc_close(struct net_device *dev)
680 {
681         tms380tr_close(dev);
682         madgemc_chipset_close(dev);
683         return 0;
684 }
685
686 /*
687  * Give some details available from /proc/mca/slotX
688  */
689 static int madgemc_mcaproc(char *buf, int slot, void *d) 
690 {       
691         struct net_device *dev = (struct net_device *)d;
692         struct net_local *tp = netdev_priv(dev);
693         struct card_info *curcard = tp->tmspriv;
694         int len = 0;
695         
696         len += sprintf(buf+len, "-------\n");
697         if (curcard) {
698                 struct net_local *tp = netdev_priv(dev);
699                 int i;
700                 
701                 len += sprintf(buf+len, "Card Revision: %d\n", curcard->cardrev);
702                 len += sprintf(buf+len, "RAM Size: %dkb\n", curcard->ramsize);
703                 len += sprintf(buf+len, "Cable type: %s\n", (curcard->cabletype)?"STP/DB9":"UTP/RJ-45");
704                 len += sprintf(buf+len, "Configured ring speed: %dMb/sec\n", (curcard->ringspeed)?16:4);
705                 len += sprintf(buf+len, "Running ring speed: %dMb/sec\n", (tp->DataRate==SPEED_16)?16:4);
706                 len += sprintf(buf+len, "Device: %s\n", dev->name);
707                 len += sprintf(buf+len, "IO Port: 0x%04lx\n", dev->base_addr);
708                 len += sprintf(buf+len, "IRQ: %d\n", dev->irq);
709                 len += sprintf(buf+len, "Arbitration Level: %d\n", curcard->arblevel);
710                 len += sprintf(buf+len, "Burst Mode: ");
711                 switch(curcard->burstmode) {
712                 case 0: len += sprintf(buf+len, "Cycle steal"); break;
713                 case 1: len += sprintf(buf+len, "Limited burst"); break;
714                 case 2: len += sprintf(buf+len, "Delayed release"); break;
715                 case 3: len += sprintf(buf+len, "Immediate release"); break;
716                 }
717                 len += sprintf(buf+len, " (%s)\n", (curcard->fairness)?"Unfair":"Fair");
718                 
719                 len += sprintf(buf+len, "Ring Station Address: ");
720                 len += sprintf(buf+len, "%2.2x", dev->dev_addr[0]);
721                 for (i = 1; i < 6; i++)
722                         len += sprintf(buf+len, " %2.2x", dev->dev_addr[i]);
723                 len += sprintf(buf+len, "\n");
724         } else 
725                 len += sprintf(buf+len, "Card not configured\n");
726
727         return len;
728 }
729
730 static int __devexit madgemc_remove(struct device *device)
731 {
732         struct net_device *dev = dev_get_drvdata(device);
733         struct net_local *tp;
734         struct card_info *card;
735
736         BUG_ON(!dev);
737
738         tp = netdev_priv(dev);
739         card = tp->tmspriv;
740         kfree(card);
741         tp->tmspriv = NULL;
742
743         unregister_netdev(dev);
744         release_region(dev->base_addr-MADGEMC_SIF_OFFSET, MADGEMC_IO_EXTENT);
745         free_irq(dev->irq, dev);
746         tmsdev_term(dev);
747         free_netdev(dev);
748         dev_set_drvdata(device, NULL);
749
750         return 0;
751 }
752
753 static short madgemc_adapter_ids[] __initdata = {
754         0x002d,
755         0x0000
756 };
757
758 static struct mca_driver madgemc_driver = {
759         .id_table = madgemc_adapter_ids,
760         .driver = {
761                 .name = "madgemc",
762                 .bus = &mca_bus_type,
763                 .probe = madgemc_probe,
764                 .remove = __devexit_p(madgemc_remove),
765         },
766 };
767
768 static int __init madgemc_init (void)
769 {
770         return mca_register_driver (&madgemc_driver);
771 }
772
773 static void __exit madgemc_exit (void)
774 {
775         mca_unregister_driver (&madgemc_driver);
776 }
777
778 module_init(madgemc_init);
779 module_exit(madgemc_exit);
780
781 MODULE_LICENSE("GPL");
782