]> git.karo-electronics.de Git - linux-beck.git/blob - drivers/net/pcmcia/nmclan_cs.c
pcmcia: convert net pcmcia drivers to use new CIS helpers
[linux-beck.git] / drivers / net / pcmcia / nmclan_cs.c
1 /* ----------------------------------------------------------------------------
2 Linux PCMCIA ethernet adapter driver for the New Media Ethernet LAN.
3   nmclan_cs.c,v 0.16 1995/07/01 06:42:17 rpao Exp rpao
4
5   The Ethernet LAN uses the Advanced Micro Devices (AMD) Am79C940 Media
6   Access Controller for Ethernet (MACE).  It is essentially the Am2150
7   PCMCIA Ethernet card contained in the Am2150 Demo Kit.
8
9 Written by Roger C. Pao <rpao@paonet.org>
10   Copyright 1995 Roger C. Pao
11   Linux 2.5 cleanups Copyright Red Hat 2003
12
13   This software may be used and distributed according to the terms of
14   the GNU General Public License.
15
16 Ported to Linux 1.3.* network driver environment by
17   Matti Aarnio <mea@utu.fi>
18
19 References
20
21   Am2150 Technical Reference Manual, Revision 1.0, August 17, 1993
22   Am79C940 (MACE) Data Sheet, 1994
23   Am79C90 (C-LANCE) Data Sheet, 1994
24   Linux PCMCIA Programmer's Guide v1.17
25   /usr/src/linux/net/inet/dev.c, Linux kernel 1.2.8
26
27   Eric Mears, New Media Corporation
28   Tom Pollard, New Media Corporation
29   Dean Siasoyco, New Media Corporation
30   Ken Lesniak, Silicon Graphics, Inc. <lesniak@boston.sgi.com>
31   Donald Becker <becker@scyld.com>
32   David Hinds <dahinds@users.sourceforge.net>
33
34   The Linux client driver is based on the 3c589_cs.c client driver by
35   David Hinds.
36
37   The Linux network driver outline is based on the 3c589_cs.c driver,
38   the 8390.c driver, and the example skeleton.c kernel code, which are
39   by Donald Becker.
40
41   The Am2150 network driver hardware interface code is based on the
42   OS/9000 driver for the New Media Ethernet LAN by Eric Mears.
43
44   Special thanks for testing and help in debugging this driver goes
45   to Ken Lesniak.
46
47 -------------------------------------------------------------------------------
48 Driver Notes and Issues
49 -------------------------------------------------------------------------------
50
51 1. Developed on a Dell 320SLi
52    PCMCIA Card Services 2.6.2
53    Linux dell 1.2.10 #1 Thu Jun 29 20:23:41 PDT 1995 i386
54
55 2. rc.pcmcia may require loading pcmcia_core with io_speed=300:
56    'insmod pcmcia_core.o io_speed=300'.
57    This will avoid problems with fast systems which causes rx_framecnt
58    to return random values.
59
60 3. If hot extraction does not work for you, use 'ifconfig eth0 down'
61    before extraction.
62
63 4. There is a bad slow-down problem in this driver.
64
65 5. Future: Multicast processing.  In the meantime, do _not_ compile your
66    kernel with multicast ip enabled.
67
68 -------------------------------------------------------------------------------
69 History
70 -------------------------------------------------------------------------------
71 Log: nmclan_cs.c,v
72  * 2.5.75-ac1 2003/07/11 Alan Cox <alan@lxorguk.ukuu.org.uk>
73  * Fixed hang on card eject as we probe it
74  * Cleaned up to use new style locking.
75  *
76  * Revision 0.16  1995/07/01  06:42:17  rpao
77  * Bug fix: nmclan_reset() called CardServices incorrectly.
78  *
79  * Revision 0.15  1995/05/24  08:09:47  rpao
80  * Re-implement MULTI_TX dev->tbusy handling.
81  *
82  * Revision 0.14  1995/05/23  03:19:30  rpao
83  * Added, in nmclan_config(), "tuple.Attributes = 0;".
84  * Modified MACE ID check to ignore chip revision level.
85  * Avoid tx_free_frames race condition between _start_xmit and _interrupt.
86  *
87  * Revision 0.13  1995/05/18  05:56:34  rpao
88  * Statistics changes.
89  * Bug fix: nmclan_reset did not enable TX and RX: call restore_multicast_list.
90  * Bug fix: mace_interrupt checks ~MACE_IMR_DEFAULT.  Fixes driver lockup.
91  *
92  * Revision 0.12  1995/05/14  00:12:23  rpao
93  * Statistics overhaul.
94  *
95
96 95/05/13 rpao   V0.10a
97                 Bug fix: MACE statistics counters used wrong I/O ports.
98                 Bug fix: mace_interrupt() needed to allow statistics to be
99                 processed without RX or TX interrupts pending.
100 95/05/11 rpao   V0.10
101                 Multiple transmit request processing.
102                 Modified statistics to use MACE counters where possible.
103 95/05/10 rpao   V0.09 Bug fix: Must use IO_DATA_PATH_WIDTH_AUTO.
104                 *Released
105 95/05/10 rpao   V0.08
106                 Bug fix: Make all non-exported functions private by using
107                 static keyword.
108                 Bug fix: Test IntrCnt _before_ reading MACE_IR.
109 95/05/10 rpao   V0.07 Statistics.
110 95/05/09 rpao   V0.06 Fix rx_framecnt problem by addition of PCIC wait states.
111
112 ---------------------------------------------------------------------------- */
113
114 #define DRV_NAME        "nmclan_cs"
115 #define DRV_VERSION     "0.16"
116
117
118 /* ----------------------------------------------------------------------------
119 Conditional Compilation Options
120 ---------------------------------------------------------------------------- */
121
122 #define MULTI_TX                        0
123 #define RESET_ON_TIMEOUT                1
124 #define TX_INTERRUPTABLE                1
125 #define RESET_XILINX                    0
126
127 /* ----------------------------------------------------------------------------
128 Include Files
129 ---------------------------------------------------------------------------- */
130
131 #include <linux/module.h>
132 #include <linux/kernel.h>
133 #include <linux/init.h>
134 #include <linux/ptrace.h>
135 #include <linux/slab.h>
136 #include <linux/string.h>
137 #include <linux/timer.h>
138 #include <linux/interrupt.h>
139 #include <linux/in.h>
140 #include <linux/delay.h>
141 #include <linux/ethtool.h>
142 #include <linux/netdevice.h>
143 #include <linux/etherdevice.h>
144 #include <linux/skbuff.h>
145 #include <linux/if_arp.h>
146 #include <linux/ioport.h>
147 #include <linux/bitops.h>
148
149 #include <pcmcia/cs_types.h>
150 #include <pcmcia/cs.h>
151 #include <pcmcia/cisreg.h>
152 #include <pcmcia/cistpl.h>
153 #include <pcmcia/ds.h>
154
155 #include <asm/uaccess.h>
156 #include <asm/io.h>
157 #include <asm/system.h>
158
159 /* ----------------------------------------------------------------------------
160 Defines
161 ---------------------------------------------------------------------------- */
162
163 #define ETHER_ADDR_LEN                  ETH_ALEN
164                                         /* 6 bytes in an Ethernet Address */
165 #define MACE_LADRF_LEN                  8
166                                         /* 8 bytes in Logical Address Filter */
167
168 /* Loop Control Defines */
169 #define MACE_MAX_IR_ITERATIONS          10
170 #define MACE_MAX_RX_ITERATIONS          12
171         /*
172         TBD: Dean brought this up, and I assumed the hardware would
173         handle it:
174
175         If MACE_MAX_RX_ITERATIONS is > 1, rx_framecnt may still be
176         non-zero when the isr exits.  We may not get another interrupt
177         to process the remaining packets for some time.
178         */
179
180 /*
181 The Am2150 has a Xilinx XC3042 field programmable gate array (FPGA)
182 which manages the interface between the MACE and the PCMCIA bus.  It
183 also includes buffer management for the 32K x 8 SRAM to control up to
184 four transmit and 12 receive frames at a time.
185 */
186 #define AM2150_MAX_TX_FRAMES            4
187 #define AM2150_MAX_RX_FRAMES            12
188
189 /* Am2150 Ethernet Card I/O Mapping */
190 #define AM2150_RCV                      0x00
191 #define AM2150_XMT                      0x04
192 #define AM2150_XMT_SKIP                 0x09
193 #define AM2150_RCV_NEXT                 0x0A
194 #define AM2150_RCV_FRAME_COUNT          0x0B
195 #define AM2150_MACE_BANK                0x0C
196 #define AM2150_MACE_BASE                0x10
197
198 /* MACE Registers */
199 #define MACE_RCVFIFO                    0
200 #define MACE_XMTFIFO                    1
201 #define MACE_XMTFC                      2
202 #define MACE_XMTFS                      3
203 #define MACE_XMTRC                      4
204 #define MACE_RCVFC                      5
205 #define MACE_RCVFS                      6
206 #define MACE_FIFOFC                     7
207 #define MACE_IR                         8
208 #define MACE_IMR                        9
209 #define MACE_PR                         10
210 #define MACE_BIUCC                      11
211 #define MACE_FIFOCC                     12
212 #define MACE_MACCC                      13
213 #define MACE_PLSCC                      14
214 #define MACE_PHYCC                      15
215 #define MACE_CHIPIDL                    16
216 #define MACE_CHIPIDH                    17
217 #define MACE_IAC                        18
218 /* Reserved */
219 #define MACE_LADRF                      20
220 #define MACE_PADR                       21
221 /* Reserved */
222 /* Reserved */
223 #define MACE_MPC                        24
224 /* Reserved */
225 #define MACE_RNTPC                      26
226 #define MACE_RCVCC                      27
227 /* Reserved */
228 #define MACE_UTR                        29
229 #define MACE_RTR1                       30
230 #define MACE_RTR2                       31
231
232 /* MACE Bit Masks */
233 #define MACE_XMTRC_EXDEF                0x80
234 #define MACE_XMTRC_XMTRC                0x0F
235
236 #define MACE_XMTFS_XMTSV                0x80
237 #define MACE_XMTFS_UFLO                 0x40
238 #define MACE_XMTFS_LCOL                 0x20
239 #define MACE_XMTFS_MORE                 0x10
240 #define MACE_XMTFS_ONE                  0x08
241 #define MACE_XMTFS_DEFER                0x04
242 #define MACE_XMTFS_LCAR                 0x02
243 #define MACE_XMTFS_RTRY                 0x01
244
245 #define MACE_RCVFS_RCVSTS               0xF000
246 #define MACE_RCVFS_OFLO                 0x8000
247 #define MACE_RCVFS_CLSN                 0x4000
248 #define MACE_RCVFS_FRAM                 0x2000
249 #define MACE_RCVFS_FCS                  0x1000
250
251 #define MACE_FIFOFC_RCVFC               0xF0
252 #define MACE_FIFOFC_XMTFC               0x0F
253
254 #define MACE_IR_JAB                     0x80
255 #define MACE_IR_BABL                    0x40
256 #define MACE_IR_CERR                    0x20
257 #define MACE_IR_RCVCCO                  0x10
258 #define MACE_IR_RNTPCO                  0x08
259 #define MACE_IR_MPCO                    0x04
260 #define MACE_IR_RCVINT                  0x02
261 #define MACE_IR_XMTINT                  0x01
262
263 #define MACE_MACCC_PROM                 0x80
264 #define MACE_MACCC_DXMT2PD              0x40
265 #define MACE_MACCC_EMBA                 0x20
266 #define MACE_MACCC_RESERVED             0x10
267 #define MACE_MACCC_DRCVPA               0x08
268 #define MACE_MACCC_DRCVBC               0x04
269 #define MACE_MACCC_ENXMT                0x02
270 #define MACE_MACCC_ENRCV                0x01
271
272 #define MACE_PHYCC_LNKFL                0x80
273 #define MACE_PHYCC_DLNKTST              0x40
274 #define MACE_PHYCC_REVPOL               0x20
275 #define MACE_PHYCC_DAPC                 0x10
276 #define MACE_PHYCC_LRT                  0x08
277 #define MACE_PHYCC_ASEL                 0x04
278 #define MACE_PHYCC_RWAKE                0x02
279 #define MACE_PHYCC_AWAKE                0x01
280
281 #define MACE_IAC_ADDRCHG                0x80
282 #define MACE_IAC_PHYADDR                0x04
283 #define MACE_IAC_LOGADDR                0x02
284
285 #define MACE_UTR_RTRE                   0x80
286 #define MACE_UTR_RTRD                   0x40
287 #define MACE_UTR_RPA                    0x20
288 #define MACE_UTR_FCOLL                  0x10
289 #define MACE_UTR_RCVFCSE                0x08
290 #define MACE_UTR_LOOP_INCL_MENDEC       0x06
291 #define MACE_UTR_LOOP_NO_MENDEC         0x04
292 #define MACE_UTR_LOOP_EXTERNAL          0x02
293 #define MACE_UTR_LOOP_NONE              0x00
294 #define MACE_UTR_RESERVED               0x01
295
296 /* Switch MACE register bank (only 0 and 1 are valid) */
297 #define MACEBANK(win_num) outb((win_num), ioaddr + AM2150_MACE_BANK)
298
299 #define MACE_IMR_DEFAULT \
300   (0xFF - \
301     ( \
302       MACE_IR_CERR | \
303       MACE_IR_RCVCCO | \
304       MACE_IR_RNTPCO | \
305       MACE_IR_MPCO | \
306       MACE_IR_RCVINT | \
307       MACE_IR_XMTINT \
308     ) \
309   )
310 #undef MACE_IMR_DEFAULT
311 #define MACE_IMR_DEFAULT 0x00 /* New statistics handling: grab everything */
312
313 #define TX_TIMEOUT              ((400*HZ)/1000)
314
315 /* ----------------------------------------------------------------------------
316 Type Definitions
317 ---------------------------------------------------------------------------- */
318
319 typedef struct _mace_statistics {
320     /* MACE_XMTFS */
321     int xmtsv;
322     int uflo;
323     int lcol;
324     int more;
325     int one;
326     int defer;
327     int lcar;
328     int rtry;
329
330     /* MACE_XMTRC */
331     int exdef;
332     int xmtrc;
333
334     /* RFS1--Receive Status (RCVSTS) */
335     int oflo;
336     int clsn;
337     int fram;
338     int fcs;
339
340     /* RFS2--Runt Packet Count (RNTPC) */
341     int rfs_rntpc;
342
343     /* RFS3--Receive Collision Count (RCVCC) */
344     int rfs_rcvcc;
345
346     /* MACE_IR */
347     int jab;
348     int babl;
349     int cerr;
350     int rcvcco;
351     int rntpco;
352     int mpco;
353
354     /* MACE_MPC */
355     int mpc;
356
357     /* MACE_RNTPC */
358     int rntpc;
359
360     /* MACE_RCVCC */
361     int rcvcc;
362 } mace_statistics;
363
364 typedef struct _mace_private {
365         struct pcmcia_device    *p_dev;
366     dev_node_t node;
367     struct net_device_stats linux_stats; /* Linux statistics counters */
368     mace_statistics mace_stats; /* MACE chip statistics counters */
369
370     /* restore_multicast_list() state variables */
371     int multicast_ladrf[MACE_LADRF_LEN]; /* Logical address filter */
372     int multicast_num_addrs;
373
374     char tx_free_frames; /* Number of free transmit frame buffers */
375     char tx_irq_disabled; /* MACE TX interrupt disabled */
376     
377     spinlock_t bank_lock; /* Must be held if you step off bank 0 */
378 } mace_private;
379
380 /* ----------------------------------------------------------------------------
381 Private Global Variables
382 ---------------------------------------------------------------------------- */
383
384 #ifdef PCMCIA_DEBUG
385 static char rcsid[] =
386 "nmclan_cs.c,v 0.16 1995/07/01 06:42:17 rpao Exp rpao";
387 static char *version =
388 DRV_NAME " " DRV_VERSION " (Roger C. Pao)";
389 #endif
390
391 static const char *if_names[]={
392     "Auto", "10baseT", "BNC",
393 };
394
395 /* ----------------------------------------------------------------------------
396 Parameters
397         These are the parameters that can be set during loading with
398         'insmod'.
399 ---------------------------------------------------------------------------- */
400
401 MODULE_DESCRIPTION("New Media PCMCIA ethernet driver");
402 MODULE_LICENSE("GPL");
403
404 #define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0)
405
406 /* 0=auto, 1=10baseT, 2 = 10base2, default=auto */
407 INT_MODULE_PARM(if_port, 0);
408
409 #ifdef PCMCIA_DEBUG
410 INT_MODULE_PARM(pc_debug, PCMCIA_DEBUG);
411 #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
412 #else
413 #define DEBUG(n, args...)
414 #endif
415
416 /* ----------------------------------------------------------------------------
417 Function Prototypes
418 ---------------------------------------------------------------------------- */
419
420 static int nmclan_config(struct pcmcia_device *link);
421 static void nmclan_release(struct pcmcia_device *link);
422
423 static void nmclan_reset(struct net_device *dev);
424 static int mace_config(struct net_device *dev, struct ifmap *map);
425 static int mace_open(struct net_device *dev);
426 static int mace_close(struct net_device *dev);
427 static netdev_tx_t mace_start_xmit(struct sk_buff *skb,
428                                          struct net_device *dev);
429 static void mace_tx_timeout(struct net_device *dev);
430 static irqreturn_t mace_interrupt(int irq, void *dev_id);
431 static struct net_device_stats *mace_get_stats(struct net_device *dev);
432 static int mace_rx(struct net_device *dev, unsigned char RxCnt);
433 static void restore_multicast_list(struct net_device *dev);
434 static void set_multicast_list(struct net_device *dev);
435 static const struct ethtool_ops netdev_ethtool_ops;
436
437
438 static void nmclan_detach(struct pcmcia_device *p_dev);
439
440 static const struct net_device_ops mace_netdev_ops = {
441         .ndo_open               = mace_open,
442         .ndo_stop               = mace_close,
443         .ndo_start_xmit         = mace_start_xmit,
444         .ndo_tx_timeout         = mace_tx_timeout,
445         .ndo_set_config         = mace_config,
446         .ndo_get_stats          = mace_get_stats,
447         .ndo_set_multicast_list = set_multicast_list,
448         .ndo_change_mtu         = eth_change_mtu,
449         .ndo_set_mac_address    = eth_mac_addr,
450         .ndo_validate_addr      = eth_validate_addr,
451 };
452
453 /* ----------------------------------------------------------------------------
454 nmclan_attach
455         Creates an "instance" of the driver, allocating local data
456         structures for one device.  The device is registered with Card
457         Services.
458 ---------------------------------------------------------------------------- */
459
460 static int nmclan_probe(struct pcmcia_device *link)
461 {
462     mace_private *lp;
463     struct net_device *dev;
464
465     DEBUG(0, "nmclan_attach()\n");
466     DEBUG(1, "%s\n", rcsid);
467
468     /* Create new ethernet device */
469     dev = alloc_etherdev(sizeof(mace_private));
470     if (!dev)
471             return -ENOMEM;
472     lp = netdev_priv(dev);
473     lp->p_dev = link;
474     link->priv = dev;
475     
476     spin_lock_init(&lp->bank_lock);
477     link->io.NumPorts1 = 32;
478     link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
479     link->io.IOAddrLines = 5;
480     link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT;
481     link->irq.IRQInfo1 = IRQ_LEVEL_ID;
482     link->irq.Handler = &mace_interrupt;
483     link->irq.Instance = dev;
484     link->conf.Attributes = CONF_ENABLE_IRQ;
485     link->conf.IntType = INT_MEMORY_AND_IO;
486     link->conf.ConfigIndex = 1;
487     link->conf.Present = PRESENT_OPTION;
488
489     lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
490
491     dev->netdev_ops = &mace_netdev_ops;
492     SET_ETHTOOL_OPS(dev, &netdev_ethtool_ops);
493     dev->watchdog_timeo = TX_TIMEOUT;
494
495     return nmclan_config(link);
496 } /* nmclan_attach */
497
498 /* ----------------------------------------------------------------------------
499 nmclan_detach
500         This deletes a driver "instance".  The device is de-registered
501         with Card Services.  If it has been released, all local data
502         structures are freed.  Otherwise, the structures will be freed
503         when the device is released.
504 ---------------------------------------------------------------------------- */
505
506 static void nmclan_detach(struct pcmcia_device *link)
507 {
508     struct net_device *dev = link->priv;
509
510     DEBUG(0, "nmclan_detach(0x%p)\n", link);
511
512     if (link->dev_node)
513         unregister_netdev(dev);
514
515     nmclan_release(link);
516
517     free_netdev(dev);
518 } /* nmclan_detach */
519
520 /* ----------------------------------------------------------------------------
521 mace_read
522         Reads a MACE register.  This is bank independent; however, the
523         caller must ensure that this call is not interruptable.  We are
524         assuming that during normal operation, the MACE is always in
525         bank 0.
526 ---------------------------------------------------------------------------- */
527 static int mace_read(mace_private *lp, unsigned int ioaddr, int reg)
528 {
529   int data = 0xFF;
530   unsigned long flags;
531
532   switch (reg >> 4) {
533     case 0: /* register 0-15 */
534       data = inb(ioaddr + AM2150_MACE_BASE + reg);
535       break;
536     case 1: /* register 16-31 */
537       spin_lock_irqsave(&lp->bank_lock, flags);
538       MACEBANK(1);
539       data = inb(ioaddr + AM2150_MACE_BASE + (reg & 0x0F));
540       MACEBANK(0);
541       spin_unlock_irqrestore(&lp->bank_lock, flags);
542       break;
543   }
544   return (data & 0xFF);
545 } /* mace_read */
546
547 /* ----------------------------------------------------------------------------
548 mace_write
549         Writes to a MACE register.  This is bank independent; however,
550         the caller must ensure that this call is not interruptable.  We
551         are assuming that during normal operation, the MACE is always in
552         bank 0.
553 ---------------------------------------------------------------------------- */
554 static void mace_write(mace_private *lp, unsigned int ioaddr, int reg,
555                        int data)
556 {
557   unsigned long flags;
558
559   switch (reg >> 4) {
560     case 0: /* register 0-15 */
561       outb(data & 0xFF, ioaddr + AM2150_MACE_BASE + reg);
562       break;
563     case 1: /* register 16-31 */
564       spin_lock_irqsave(&lp->bank_lock, flags);
565       MACEBANK(1);
566       outb(data & 0xFF, ioaddr + AM2150_MACE_BASE + (reg & 0x0F));
567       MACEBANK(0);
568       spin_unlock_irqrestore(&lp->bank_lock, flags);
569       break;
570   }
571 } /* mace_write */
572
573 /* ----------------------------------------------------------------------------
574 mace_init
575         Resets the MACE chip.
576 ---------------------------------------------------------------------------- */
577 static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr)
578 {
579   int i;
580   int ct = 0;
581
582   /* MACE Software reset */
583   mace_write(lp, ioaddr, MACE_BIUCC, 1);
584   while (mace_read(lp, ioaddr, MACE_BIUCC) & 0x01) {
585     /* Wait for reset bit to be cleared automatically after <= 200ns */;
586     if(++ct > 500)
587     {
588         printk(KERN_ERR "mace: reset failed, card removed ?\n");
589         return -1;
590     }
591     udelay(1);
592   }
593   mace_write(lp, ioaddr, MACE_BIUCC, 0);
594
595   /* The Am2150 requires that the MACE FIFOs operate in burst mode. */
596   mace_write(lp, ioaddr, MACE_FIFOCC, 0x0F);
597
598   mace_write(lp,ioaddr, MACE_RCVFC, 0); /* Disable Auto Strip Receive */
599   mace_write(lp, ioaddr, MACE_IMR, 0xFF); /* Disable all interrupts until _open */
600
601   /*
602    * Bit 2-1 PORTSEL[1-0] Port Select.
603    * 00 AUI/10Base-2
604    * 01 10Base-T
605    * 10 DAI Port (reserved in Am2150)
606    * 11 GPSI
607    * For this card, only the first two are valid.
608    * So, PLSCC should be set to
609    * 0x00 for 10Base-2
610    * 0x02 for 10Base-T
611    * Or just set ASEL in PHYCC below!
612    */
613   switch (if_port) {
614     case 1:
615       mace_write(lp, ioaddr, MACE_PLSCC, 0x02);
616       break;
617     case 2:
618       mace_write(lp, ioaddr, MACE_PLSCC, 0x00);
619       break;
620     default:
621       mace_write(lp, ioaddr, MACE_PHYCC, /* ASEL */ 4);
622       /* ASEL Auto Select.  When set, the PORTSEL[1-0] bits are overridden,
623          and the MACE device will automatically select the operating media
624          interface port. */
625       break;
626   }
627
628   mace_write(lp, ioaddr, MACE_IAC, MACE_IAC_ADDRCHG | MACE_IAC_PHYADDR);
629   /* Poll ADDRCHG bit */
630   ct = 0;
631   while (mace_read(lp, ioaddr, MACE_IAC) & MACE_IAC_ADDRCHG)
632   {
633         if(++ ct > 500)
634         {
635                 printk(KERN_ERR "mace: ADDRCHG timeout, card removed ?\n");
636                 return -1;
637         }
638   }
639   /* Set PADR register */
640   for (i = 0; i < ETHER_ADDR_LEN; i++)
641     mace_write(lp, ioaddr, MACE_PADR, enet_addr[i]);
642
643   /* MAC Configuration Control Register should be written last */
644   /* Let set_multicast_list set this. */
645   /* mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV); */
646   mace_write(lp, ioaddr, MACE_MACCC, 0x00);
647   return 0;
648 } /* mace_init */
649
650 /* ----------------------------------------------------------------------------
651 nmclan_config
652         This routine is scheduled to run after a CARD_INSERTION event
653         is received, to configure the PCMCIA socket, and to make the
654         ethernet device available to the system.
655 ---------------------------------------------------------------------------- */
656
657 #define CS_CHECK(fn, ret) \
658   do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
659
660 static int nmclan_config(struct pcmcia_device *link)
661 {
662   struct net_device *dev = link->priv;
663   mace_private *lp = netdev_priv(dev);
664   u8 *buf;
665   size_t len;
666   int i, last_ret, last_fn;
667   unsigned int ioaddr;
668
669   DEBUG(0, "nmclan_config(0x%p)\n", link);
670
671   CS_CHECK(RequestIO, pcmcia_request_io(link, &link->io));
672   CS_CHECK(RequestIRQ, pcmcia_request_irq(link, &link->irq));
673   CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link, &link->conf));
674   dev->irq = link->irq.AssignedIRQ;
675   dev->base_addr = link->io.BasePort1;
676
677   ioaddr = dev->base_addr;
678
679   /* Read the ethernet address from the CIS. */
680   len = pcmcia_get_tuple(link, 0x80, &buf);
681   if (!buf || len < ETHER_ADDR_LEN) {
682           kfree(buf);
683           goto failed;
684   }
685   memcpy(dev->dev_addr, buf, ETHER_ADDR_LEN);
686   kfree(buf);
687
688   /* Verify configuration by reading the MACE ID. */
689   {
690     char sig[2];
691
692     sig[0] = mace_read(lp, ioaddr, MACE_CHIPIDL);
693     sig[1] = mace_read(lp, ioaddr, MACE_CHIPIDH);
694     if ((sig[0] == 0x40) && ((sig[1] & 0x0F) == 0x09)) {
695       DEBUG(0, "nmclan_cs configured: mace id=%x %x\n",
696             sig[0], sig[1]);
697     } else {
698       printk(KERN_NOTICE "nmclan_cs: mace id not found: %x %x should"
699              " be 0x40 0x?9\n", sig[0], sig[1]);
700       return -ENODEV;
701     }
702   }
703
704   if(mace_init(lp, ioaddr, dev->dev_addr) == -1)
705         goto failed;
706
707   /* The if_port symbol can be set when the module is loaded */
708   if (if_port <= 2)
709     dev->if_port = if_port;
710   else
711     printk(KERN_NOTICE "nmclan_cs: invalid if_port requested\n");
712
713   link->dev_node = &lp->node;
714   SET_NETDEV_DEV(dev, &handle_to_dev(link));
715
716   i = register_netdev(dev);
717   if (i != 0) {
718     printk(KERN_NOTICE "nmclan_cs: register_netdev() failed\n");
719     link->dev_node = NULL;
720     goto failed;
721   }
722
723   strcpy(lp->node.dev_name, dev->name);
724
725   printk(KERN_INFO "%s: nmclan: port %#3lx, irq %d, %s port,"
726          " hw_addr %pM\n",
727          dev->name, dev->base_addr, dev->irq, if_names[dev->if_port],
728          dev->dev_addr);
729   return 0;
730
731 cs_failed:
732         cs_error(link, last_fn, last_ret);
733 failed:
734         nmclan_release(link);
735         return -ENODEV;
736 } /* nmclan_config */
737
738 /* ----------------------------------------------------------------------------
739 nmclan_release
740         After a card is removed, nmclan_release() will unregister the
741         net device, and release the PCMCIA configuration.  If the device
742         is still open, this will be postponed until it is closed.
743 ---------------------------------------------------------------------------- */
744 static void nmclan_release(struct pcmcia_device *link)
745 {
746         DEBUG(0, "nmclan_release(0x%p)\n", link);
747         pcmcia_disable_device(link);
748 }
749
750 static int nmclan_suspend(struct pcmcia_device *link)
751 {
752         struct net_device *dev = link->priv;
753
754         if (link->open)
755                 netif_device_detach(dev);
756
757         return 0;
758 }
759
760 static int nmclan_resume(struct pcmcia_device *link)
761 {
762         struct net_device *dev = link->priv;
763
764         if (link->open) {
765                 nmclan_reset(dev);
766                 netif_device_attach(dev);
767         }
768
769         return 0;
770 }
771
772
773 /* ----------------------------------------------------------------------------
774 nmclan_reset
775         Reset and restore all of the Xilinx and MACE registers.
776 ---------------------------------------------------------------------------- */
777 static void nmclan_reset(struct net_device *dev)
778 {
779   mace_private *lp = netdev_priv(dev);
780
781 #if RESET_XILINX
782   struct pcmcia_device *link = &lp->link;
783   conf_reg_t reg;
784   u_long OrigCorValue; 
785
786   /* Save original COR value */
787   reg.Function = 0;
788   reg.Action = CS_READ;
789   reg.Offset = CISREG_COR;
790   reg.Value = 0;
791   pcmcia_access_configuration_register(link, &reg);
792   OrigCorValue = reg.Value;
793
794   /* Reset Xilinx */
795   reg.Action = CS_WRITE;
796   reg.Offset = CISREG_COR;
797   DEBUG(1, "nmclan_reset: OrigCorValue=0x%lX, resetting...\n",
798         OrigCorValue);
799   reg.Value = COR_SOFT_RESET;
800   pcmcia_access_configuration_register(link, &reg);
801   /* Need to wait for 20 ms for PCMCIA to finish reset. */
802
803   /* Restore original COR configuration index */
804   reg.Value = COR_LEVEL_REQ | (OrigCorValue & COR_CONFIG_MASK);
805   pcmcia_access_configuration_register(link, &reg);
806   /* Xilinx is now completely reset along with the MACE chip. */
807   lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
808
809 #endif /* #if RESET_XILINX */
810
811   /* Xilinx is now completely reset along with the MACE chip. */
812   lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
813
814   /* Reinitialize the MACE chip for operation. */
815   mace_init(lp, dev->base_addr, dev->dev_addr);
816   mace_write(lp, dev->base_addr, MACE_IMR, MACE_IMR_DEFAULT);
817
818   /* Restore the multicast list and enable TX and RX. */
819   restore_multicast_list(dev);
820 } /* nmclan_reset */
821
822 /* ----------------------------------------------------------------------------
823 mace_config
824         [Someone tell me what this is supposed to do?  Is if_port a defined
825         standard?  If so, there should be defines to indicate 1=10Base-T,
826         2=10Base-2, etc. including limited automatic detection.]
827 ---------------------------------------------------------------------------- */
828 static int mace_config(struct net_device *dev, struct ifmap *map)
829 {
830   if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
831     if (map->port <= 2) {
832       dev->if_port = map->port;
833       printk(KERN_INFO "%s: switched to %s port\n", dev->name,
834              if_names[dev->if_port]);
835     } else
836       return -EINVAL;
837   }
838   return 0;
839 } /* mace_config */
840
841 /* ----------------------------------------------------------------------------
842 mace_open
843         Open device driver.
844 ---------------------------------------------------------------------------- */
845 static int mace_open(struct net_device *dev)
846 {
847   unsigned int ioaddr = dev->base_addr;
848   mace_private *lp = netdev_priv(dev);
849   struct pcmcia_device *link = lp->p_dev;
850
851   if (!pcmcia_dev_present(link))
852     return -ENODEV;
853
854   link->open++;
855
856   MACEBANK(0);
857
858   netif_start_queue(dev);
859   nmclan_reset(dev);
860
861   return 0; /* Always succeed */
862 } /* mace_open */
863
864 /* ----------------------------------------------------------------------------
865 mace_close
866         Closes device driver.
867 ---------------------------------------------------------------------------- */
868 static int mace_close(struct net_device *dev)
869 {
870   unsigned int ioaddr = dev->base_addr;
871   mace_private *lp = netdev_priv(dev);
872   struct pcmcia_device *link = lp->p_dev;
873
874   DEBUG(2, "%s: shutting down ethercard.\n", dev->name);
875
876   /* Mask off all interrupts from the MACE chip. */
877   outb(0xFF, ioaddr + AM2150_MACE_BASE + MACE_IMR);
878
879   link->open--;
880   netif_stop_queue(dev);
881
882   return 0;
883 } /* mace_close */
884
885 static void netdev_get_drvinfo(struct net_device *dev,
886                                struct ethtool_drvinfo *info)
887 {
888         strcpy(info->driver, DRV_NAME);
889         strcpy(info->version, DRV_VERSION);
890         sprintf(info->bus_info, "PCMCIA 0x%lx", dev->base_addr);
891 }
892
893 #ifdef PCMCIA_DEBUG
894 static u32 netdev_get_msglevel(struct net_device *dev)
895 {
896         return pc_debug;
897 }
898
899 static void netdev_set_msglevel(struct net_device *dev, u32 level)
900 {
901         pc_debug = level;
902 }
903 #endif /* PCMCIA_DEBUG */
904
905 static const struct ethtool_ops netdev_ethtool_ops = {
906         .get_drvinfo            = netdev_get_drvinfo,
907 #ifdef PCMCIA_DEBUG
908         .get_msglevel           = netdev_get_msglevel,
909         .set_msglevel           = netdev_set_msglevel,
910 #endif /* PCMCIA_DEBUG */
911 };
912
913 /* ----------------------------------------------------------------------------
914 mace_start_xmit
915         This routine begins the packet transmit function.  When completed,
916         it will generate a transmit interrupt.
917
918         According to /usr/src/linux/net/inet/dev.c, if _start_xmit
919         returns 0, the "packet is now solely the responsibility of the
920         driver."  If _start_xmit returns non-zero, the "transmission
921         failed, put skb back into a list."
922 ---------------------------------------------------------------------------- */
923
924 static void mace_tx_timeout(struct net_device *dev)
925 {
926   mace_private *lp = netdev_priv(dev);
927   struct pcmcia_device *link = lp->p_dev;
928
929   printk(KERN_NOTICE "%s: transmit timed out -- ", dev->name);
930 #if RESET_ON_TIMEOUT
931   printk("resetting card\n");
932   pcmcia_reset_card(link->socket);
933 #else /* #if RESET_ON_TIMEOUT */
934   printk("NOT resetting card\n");
935 #endif /* #if RESET_ON_TIMEOUT */
936   dev->trans_start = jiffies;
937   netif_wake_queue(dev);
938 }
939
940 static netdev_tx_t mace_start_xmit(struct sk_buff *skb,
941                                          struct net_device *dev)
942 {
943   mace_private *lp = netdev_priv(dev);
944   unsigned int ioaddr = dev->base_addr;
945
946   netif_stop_queue(dev);
947
948   DEBUG(3, "%s: mace_start_xmit(length = %ld) called.\n",
949         dev->name, (long)skb->len);
950
951 #if (!TX_INTERRUPTABLE)
952   /* Disable MACE TX interrupts. */
953   outb(MACE_IMR_DEFAULT | MACE_IR_XMTINT,
954     ioaddr + AM2150_MACE_BASE + MACE_IMR);
955   lp->tx_irq_disabled=1;
956 #endif /* #if (!TX_INTERRUPTABLE) */
957
958   {
959     /* This block must not be interrupted by another transmit request!
960        mace_tx_timeout will take care of timer-based retransmissions from
961        the upper layers.  The interrupt handler is guaranteed never to
962        service a transmit interrupt while we are in here.
963     */
964
965     lp->linux_stats.tx_bytes += skb->len;
966     lp->tx_free_frames--;
967
968     /* WARNING: Write the _exact_ number of bytes written in the header! */
969     /* Put out the word header [must be an outw()] . . . */
970     outw(skb->len, ioaddr + AM2150_XMT);
971     /* . . . and the packet [may be any combination of outw() and outb()] */
972     outsw(ioaddr + AM2150_XMT, skb->data, skb->len >> 1);
973     if (skb->len & 1) {
974       /* Odd byte transfer */
975       outb(skb->data[skb->len-1], ioaddr + AM2150_XMT);
976     }
977
978     dev->trans_start = jiffies;
979
980 #if MULTI_TX
981     if (lp->tx_free_frames > 0)
982       netif_start_queue(dev);
983 #endif /* #if MULTI_TX */
984   }
985
986 #if (!TX_INTERRUPTABLE)
987   /* Re-enable MACE TX interrupts. */
988   lp->tx_irq_disabled=0;
989   outb(MACE_IMR_DEFAULT, ioaddr + AM2150_MACE_BASE + MACE_IMR);
990 #endif /* #if (!TX_INTERRUPTABLE) */
991
992   dev_kfree_skb(skb);
993
994   return NETDEV_TX_OK;
995 } /* mace_start_xmit */
996
997 /* ----------------------------------------------------------------------------
998 mace_interrupt
999         The interrupt handler.
1000 ---------------------------------------------------------------------------- */
1001 static irqreturn_t mace_interrupt(int irq, void *dev_id)
1002 {
1003   struct net_device *dev = (struct net_device *) dev_id;
1004   mace_private *lp = netdev_priv(dev);
1005   unsigned int ioaddr;
1006   int status;
1007   int IntrCnt = MACE_MAX_IR_ITERATIONS;
1008
1009   if (dev == NULL) {
1010     DEBUG(2, "mace_interrupt(): irq 0x%X for unknown device.\n",
1011           irq);
1012     return IRQ_NONE;
1013   }
1014
1015   ioaddr = dev->base_addr;
1016
1017   if (lp->tx_irq_disabled) {
1018     printk(
1019       (lp->tx_irq_disabled?
1020        KERN_NOTICE "%s: Interrupt with tx_irq_disabled "
1021        "[isr=%02X, imr=%02X]\n": 
1022        KERN_NOTICE "%s: Re-entering the interrupt handler "
1023        "[isr=%02X, imr=%02X]\n"),
1024       dev->name,
1025       inb(ioaddr + AM2150_MACE_BASE + MACE_IR),
1026       inb(ioaddr + AM2150_MACE_BASE + MACE_IMR)
1027     );
1028     /* WARNING: MACE_IR has been read! */
1029     return IRQ_NONE;
1030   }
1031
1032   if (!netif_device_present(dev)) {
1033     DEBUG(2, "%s: interrupt from dead card\n", dev->name);
1034     return IRQ_NONE;
1035   }
1036
1037   do {
1038     /* WARNING: MACE_IR is a READ/CLEAR port! */
1039     status = inb(ioaddr + AM2150_MACE_BASE + MACE_IR);
1040
1041     DEBUG(3, "mace_interrupt: irq 0x%X status 0x%X.\n", irq, status);
1042
1043     if (status & MACE_IR_RCVINT) {
1044       mace_rx(dev, MACE_MAX_RX_ITERATIONS);
1045     }
1046
1047     if (status & MACE_IR_XMTINT) {
1048       unsigned char fifofc;
1049       unsigned char xmtrc;
1050       unsigned char xmtfs;
1051
1052       fifofc = inb(ioaddr + AM2150_MACE_BASE + MACE_FIFOFC);
1053       if ((fifofc & MACE_FIFOFC_XMTFC)==0) {
1054         lp->linux_stats.tx_errors++;
1055         outb(0xFF, ioaddr + AM2150_XMT_SKIP);
1056       }
1057
1058       /* Transmit Retry Count (XMTRC, reg 4) */
1059       xmtrc = inb(ioaddr + AM2150_MACE_BASE + MACE_XMTRC);
1060       if (xmtrc & MACE_XMTRC_EXDEF) lp->mace_stats.exdef++;
1061       lp->mace_stats.xmtrc += (xmtrc & MACE_XMTRC_XMTRC);
1062
1063       if (
1064         (xmtfs = inb(ioaddr + AM2150_MACE_BASE + MACE_XMTFS)) &
1065         MACE_XMTFS_XMTSV /* Transmit Status Valid */
1066       ) {
1067         lp->mace_stats.xmtsv++;
1068
1069         if (xmtfs & ~MACE_XMTFS_XMTSV) {
1070           if (xmtfs & MACE_XMTFS_UFLO) {
1071             /* Underflow.  Indicates that the Transmit FIFO emptied before
1072                the end of frame was reached. */
1073             lp->mace_stats.uflo++;
1074           }
1075           if (xmtfs & MACE_XMTFS_LCOL) {
1076             /* Late Collision */
1077             lp->mace_stats.lcol++;
1078           }
1079           if (xmtfs & MACE_XMTFS_MORE) {
1080             /* MORE than one retry was needed */
1081             lp->mace_stats.more++;
1082           }
1083           if (xmtfs & MACE_XMTFS_ONE) {
1084             /* Exactly ONE retry occurred */
1085             lp->mace_stats.one++;
1086           }
1087           if (xmtfs & MACE_XMTFS_DEFER) {
1088             /* Transmission was defered */
1089             lp->mace_stats.defer++;
1090           }
1091           if (xmtfs & MACE_XMTFS_LCAR) {
1092             /* Loss of carrier */
1093             lp->mace_stats.lcar++;
1094           }
1095           if (xmtfs & MACE_XMTFS_RTRY) {
1096             /* Retry error: transmit aborted after 16 attempts */
1097             lp->mace_stats.rtry++;
1098           }
1099         } /* if (xmtfs & ~MACE_XMTFS_XMTSV) */
1100
1101       } /* if (xmtfs & MACE_XMTFS_XMTSV) */
1102
1103       lp->linux_stats.tx_packets++;
1104       lp->tx_free_frames++;
1105       netif_wake_queue(dev);
1106     } /* if (status & MACE_IR_XMTINT) */
1107
1108     if (status & ~MACE_IMR_DEFAULT & ~MACE_IR_RCVINT & ~MACE_IR_XMTINT) {
1109       if (status & MACE_IR_JAB) {
1110         /* Jabber Error.  Excessive transmit duration (20-150ms). */
1111         lp->mace_stats.jab++;
1112       }
1113       if (status & MACE_IR_BABL) {
1114         /* Babble Error.  >1518 bytes transmitted. */
1115         lp->mace_stats.babl++;
1116       }
1117       if (status & MACE_IR_CERR) {
1118         /* Collision Error.  CERR indicates the absence of the
1119            Signal Quality Error Test message after a packet
1120            transmission. */
1121         lp->mace_stats.cerr++;
1122       }
1123       if (status & MACE_IR_RCVCCO) {
1124         /* Receive Collision Count Overflow; */
1125         lp->mace_stats.rcvcco++;
1126       }
1127       if (status & MACE_IR_RNTPCO) {
1128         /* Runt Packet Count Overflow */
1129         lp->mace_stats.rntpco++;
1130       }
1131       if (status & MACE_IR_MPCO) {
1132         /* Missed Packet Count Overflow */
1133         lp->mace_stats.mpco++;
1134       }
1135     } /* if (status & ~MACE_IMR_DEFAULT & ~MACE_IR_RCVINT & ~MACE_IR_XMTINT) */
1136
1137   } while ((status & ~MACE_IMR_DEFAULT) && (--IntrCnt));
1138
1139   return IRQ_HANDLED;
1140 } /* mace_interrupt */
1141
1142 /* ----------------------------------------------------------------------------
1143 mace_rx
1144         Receives packets.
1145 ---------------------------------------------------------------------------- */
1146 static int mace_rx(struct net_device *dev, unsigned char RxCnt)
1147 {
1148   mace_private *lp = netdev_priv(dev);
1149   unsigned int ioaddr = dev->base_addr;
1150   unsigned char rx_framecnt;
1151   unsigned short rx_status;
1152
1153   while (
1154     ((rx_framecnt = inb(ioaddr + AM2150_RCV_FRAME_COUNT)) > 0) &&
1155     (rx_framecnt <= 12) && /* rx_framecnt==0xFF if card is extracted. */
1156     (RxCnt--)
1157   ) {
1158     rx_status = inw(ioaddr + AM2150_RCV);
1159
1160     DEBUG(3, "%s: in mace_rx(), framecnt 0x%X, rx_status"
1161           " 0x%X.\n", dev->name, rx_framecnt, rx_status);
1162
1163     if (rx_status & MACE_RCVFS_RCVSTS) { /* Error, update stats. */
1164       lp->linux_stats.rx_errors++;
1165       if (rx_status & MACE_RCVFS_OFLO) {
1166         lp->mace_stats.oflo++;
1167       }
1168       if (rx_status & MACE_RCVFS_CLSN) {
1169         lp->mace_stats.clsn++;
1170       }
1171       if (rx_status & MACE_RCVFS_FRAM) {
1172         lp->mace_stats.fram++;
1173       }
1174       if (rx_status & MACE_RCVFS_FCS) {
1175         lp->mace_stats.fcs++;
1176       }
1177     } else {
1178       short pkt_len = (rx_status & ~MACE_RCVFS_RCVSTS) - 4;
1179         /* Auto Strip is off, always subtract 4 */
1180       struct sk_buff *skb;
1181
1182       lp->mace_stats.rfs_rntpc += inb(ioaddr + AM2150_RCV);
1183         /* runt packet count */
1184       lp->mace_stats.rfs_rcvcc += inb(ioaddr + AM2150_RCV);
1185         /* rcv collision count */
1186
1187       DEBUG(3, "    receiving packet size 0x%X rx_status"
1188             " 0x%X.\n", pkt_len, rx_status);
1189
1190       skb = dev_alloc_skb(pkt_len+2);
1191
1192       if (skb != NULL) {
1193         skb_reserve(skb, 2);
1194         insw(ioaddr + AM2150_RCV, skb_put(skb, pkt_len), pkt_len>>1);
1195         if (pkt_len & 1)
1196             *(skb_tail_pointer(skb) - 1) = inb(ioaddr + AM2150_RCV);
1197         skb->protocol = eth_type_trans(skb, dev);
1198         
1199         netif_rx(skb); /* Send the packet to the upper (protocol) layers. */
1200
1201         lp->linux_stats.rx_packets++;
1202         lp->linux_stats.rx_bytes += pkt_len;
1203         outb(0xFF, ioaddr + AM2150_RCV_NEXT); /* skip to next frame */
1204         continue;
1205       } else {
1206         DEBUG(1, "%s: couldn't allocate a sk_buff of size"
1207               " %d.\n", dev->name, pkt_len);
1208         lp->linux_stats.rx_dropped++;
1209       }
1210     }
1211     outb(0xFF, ioaddr + AM2150_RCV_NEXT); /* skip to next frame */
1212   } /* while */
1213
1214   return 0;
1215 } /* mace_rx */
1216
1217 /* ----------------------------------------------------------------------------
1218 pr_linux_stats
1219 ---------------------------------------------------------------------------- */
1220 static void pr_linux_stats(struct net_device_stats *pstats)
1221 {
1222   DEBUG(2, "pr_linux_stats\n");
1223   DEBUG(2, " rx_packets=%-7ld        tx_packets=%ld\n",
1224         (long)pstats->rx_packets, (long)pstats->tx_packets);
1225   DEBUG(2, " rx_errors=%-7ld         tx_errors=%ld\n",
1226         (long)pstats->rx_errors, (long)pstats->tx_errors);
1227   DEBUG(2, " rx_dropped=%-7ld        tx_dropped=%ld\n",
1228         (long)pstats->rx_dropped, (long)pstats->tx_dropped);
1229   DEBUG(2, " multicast=%-7ld         collisions=%ld\n",
1230         (long)pstats->multicast, (long)pstats->collisions);
1231
1232   DEBUG(2, " rx_length_errors=%-7ld  rx_over_errors=%ld\n",
1233         (long)pstats->rx_length_errors, (long)pstats->rx_over_errors);
1234   DEBUG(2, " rx_crc_errors=%-7ld     rx_frame_errors=%ld\n",
1235         (long)pstats->rx_crc_errors, (long)pstats->rx_frame_errors);
1236   DEBUG(2, " rx_fifo_errors=%-7ld    rx_missed_errors=%ld\n",
1237         (long)pstats->rx_fifo_errors, (long)pstats->rx_missed_errors);
1238
1239   DEBUG(2, " tx_aborted_errors=%-7ld tx_carrier_errors=%ld\n",
1240         (long)pstats->tx_aborted_errors, (long)pstats->tx_carrier_errors);
1241   DEBUG(2, " tx_fifo_errors=%-7ld    tx_heartbeat_errors=%ld\n",
1242         (long)pstats->tx_fifo_errors, (long)pstats->tx_heartbeat_errors);
1243   DEBUG(2, " tx_window_errors=%ld\n",
1244         (long)pstats->tx_window_errors);
1245 } /* pr_linux_stats */
1246
1247 /* ----------------------------------------------------------------------------
1248 pr_mace_stats
1249 ---------------------------------------------------------------------------- */
1250 static void pr_mace_stats(mace_statistics *pstats)
1251 {
1252   DEBUG(2, "pr_mace_stats\n");
1253
1254   DEBUG(2, " xmtsv=%-7d             uflo=%d\n",
1255         pstats->xmtsv, pstats->uflo);
1256   DEBUG(2, " lcol=%-7d              more=%d\n",
1257         pstats->lcol, pstats->more);
1258   DEBUG(2, " one=%-7d               defer=%d\n",
1259         pstats->one, pstats->defer);
1260   DEBUG(2, " lcar=%-7d              rtry=%d\n",
1261         pstats->lcar, pstats->rtry);
1262
1263   /* MACE_XMTRC */
1264   DEBUG(2, " exdef=%-7d             xmtrc=%d\n",
1265         pstats->exdef, pstats->xmtrc);
1266
1267   /* RFS1--Receive Status (RCVSTS) */
1268   DEBUG(2, " oflo=%-7d              clsn=%d\n",
1269         pstats->oflo, pstats->clsn);
1270   DEBUG(2, " fram=%-7d              fcs=%d\n",
1271         pstats->fram, pstats->fcs);
1272
1273   /* RFS2--Runt Packet Count (RNTPC) */
1274   /* RFS3--Receive Collision Count (RCVCC) */
1275   DEBUG(2, " rfs_rntpc=%-7d         rfs_rcvcc=%d\n",
1276         pstats->rfs_rntpc, pstats->rfs_rcvcc);
1277
1278   /* MACE_IR */
1279   DEBUG(2, " jab=%-7d               babl=%d\n",
1280         pstats->jab, pstats->babl);
1281   DEBUG(2, " cerr=%-7d              rcvcco=%d\n",
1282         pstats->cerr, pstats->rcvcco);
1283   DEBUG(2, " rntpco=%-7d            mpco=%d\n",
1284         pstats->rntpco, pstats->mpco);
1285
1286   /* MACE_MPC */
1287   DEBUG(2, " mpc=%d\n", pstats->mpc);
1288
1289   /* MACE_RNTPC */
1290   DEBUG(2, " rntpc=%d\n", pstats->rntpc);
1291
1292   /* MACE_RCVCC */
1293   DEBUG(2, " rcvcc=%d\n", pstats->rcvcc);
1294
1295 } /* pr_mace_stats */
1296
1297 /* ----------------------------------------------------------------------------
1298 update_stats
1299         Update statistics.  We change to register window 1, so this
1300         should be run single-threaded if the device is active. This is
1301         expected to be a rare operation, and it's simpler for the rest
1302         of the driver to assume that window 0 is always valid rather
1303         than use a special window-state variable.
1304
1305         oflo & uflo should _never_ occur since it would mean the Xilinx
1306         was not able to transfer data between the MACE FIFO and the
1307         card's SRAM fast enough.  If this happens, something is
1308         seriously wrong with the hardware.
1309 ---------------------------------------------------------------------------- */
1310 static void update_stats(unsigned int ioaddr, struct net_device *dev)
1311 {
1312   mace_private *lp = netdev_priv(dev);
1313
1314   lp->mace_stats.rcvcc += mace_read(lp, ioaddr, MACE_RCVCC);
1315   lp->mace_stats.rntpc += mace_read(lp, ioaddr, MACE_RNTPC);
1316   lp->mace_stats.mpc += mace_read(lp, ioaddr, MACE_MPC);
1317   /* At this point, mace_stats is fully updated for this call.
1318      We may now update the linux_stats. */
1319
1320   /* The MACE has no equivalent for linux_stats field which are commented
1321      out. */
1322
1323   /* lp->linux_stats.multicast; */
1324   lp->linux_stats.collisions = 
1325     lp->mace_stats.rcvcco * 256 + lp->mace_stats.rcvcc;
1326     /* Collision: The MACE may retry sending a packet 15 times
1327        before giving up.  The retry count is in XMTRC.
1328        Does each retry constitute a collision?
1329        If so, why doesn't the RCVCC record these collisions? */
1330
1331   /* detailed rx_errors: */
1332   lp->linux_stats.rx_length_errors = 
1333     lp->mace_stats.rntpco * 256 + lp->mace_stats.rntpc;
1334   /* lp->linux_stats.rx_over_errors */
1335   lp->linux_stats.rx_crc_errors = lp->mace_stats.fcs;
1336   lp->linux_stats.rx_frame_errors = lp->mace_stats.fram;
1337   lp->linux_stats.rx_fifo_errors = lp->mace_stats.oflo;
1338   lp->linux_stats.rx_missed_errors = 
1339     lp->mace_stats.mpco * 256 + lp->mace_stats.mpc;
1340
1341   /* detailed tx_errors */
1342   lp->linux_stats.tx_aborted_errors = lp->mace_stats.rtry;
1343   lp->linux_stats.tx_carrier_errors = lp->mace_stats.lcar;
1344     /* LCAR usually results from bad cabling. */
1345   lp->linux_stats.tx_fifo_errors = lp->mace_stats.uflo;
1346   lp->linux_stats.tx_heartbeat_errors = lp->mace_stats.cerr;
1347   /* lp->linux_stats.tx_window_errors; */
1348
1349   return;
1350 } /* update_stats */
1351
1352 /* ----------------------------------------------------------------------------
1353 mace_get_stats
1354         Gathers ethernet statistics from the MACE chip.
1355 ---------------------------------------------------------------------------- */
1356 static struct net_device_stats *mace_get_stats(struct net_device *dev)
1357 {
1358   mace_private *lp = netdev_priv(dev);
1359
1360   update_stats(dev->base_addr, dev);
1361
1362   DEBUG(1, "%s: updating the statistics.\n", dev->name);
1363   pr_linux_stats(&lp->linux_stats);
1364   pr_mace_stats(&lp->mace_stats);
1365
1366   return &lp->linux_stats;
1367 } /* net_device_stats */
1368
1369 /* ----------------------------------------------------------------------------
1370 updateCRC
1371         Modified from Am79C90 data sheet.
1372 ---------------------------------------------------------------------------- */
1373
1374 #ifdef BROKEN_MULTICAST
1375
1376 static void updateCRC(int *CRC, int bit)
1377 {
1378   int poly[]={
1379     1,1,1,0, 1,1,0,1,
1380     1,0,1,1, 1,0,0,0,
1381     1,0,0,0, 0,0,1,1,
1382     0,0,1,0, 0,0,0,0
1383   }; /* CRC polynomial.  poly[n] = coefficient of the x**n term of the
1384         CRC generator polynomial. */
1385
1386   int j;
1387
1388   /* shift CRC and control bit (CRC[32]) */
1389   for (j = 32; j > 0; j--)
1390     CRC[j] = CRC[j-1];
1391   CRC[0] = 0;
1392
1393   /* If bit XOR(control bit) = 1, set CRC = CRC XOR polynomial. */
1394   if (bit ^ CRC[32])
1395     for (j = 0; j < 32; j++)
1396       CRC[j] ^= poly[j];
1397 } /* updateCRC */
1398
1399 /* ----------------------------------------------------------------------------
1400 BuildLAF
1401         Build logical address filter.
1402         Modified from Am79C90 data sheet.
1403
1404 Input
1405         ladrf: logical address filter (contents initialized to 0)
1406         adr: ethernet address
1407 ---------------------------------------------------------------------------- */
1408 static void BuildLAF(int *ladrf, int *adr)
1409 {
1410   int CRC[33]={1}; /* CRC register, 1 word/bit + extra control bit */
1411
1412   int i, byte; /* temporary array indices */
1413   int hashcode; /* the output object */
1414
1415   CRC[32]=0;
1416
1417   for (byte = 0; byte < 6; byte++)
1418     for (i = 0; i < 8; i++)
1419       updateCRC(CRC, (adr[byte] >> i) & 1);
1420
1421   hashcode = 0;
1422   for (i = 0; i < 6; i++)
1423     hashcode = (hashcode << 1) + CRC[i];
1424
1425   byte = hashcode >> 3;
1426   ladrf[byte] |= (1 << (hashcode & 7));
1427
1428 #ifdef PCMCIA_DEBUG
1429   if (pc_debug > 2)
1430     printk(KERN_DEBUG "    adr =%pM\n", adr);
1431   printk(KERN_DEBUG "    hashcode = %d(decimal), ladrf[0:63] =", hashcode);
1432   for (i = 0; i < 8; i++)
1433     printk(KERN_CONT " %02X", ladrf[i]);
1434   printk(KERN_CONT "\n");
1435   }
1436 #endif
1437 } /* BuildLAF */
1438
1439 /* ----------------------------------------------------------------------------
1440 restore_multicast_list
1441         Restores the multicast filter for MACE chip to the last
1442         set_multicast_list() call.
1443
1444 Input
1445         multicast_num_addrs
1446         multicast_ladrf[]
1447 ---------------------------------------------------------------------------- */
1448 static void restore_multicast_list(struct net_device *dev)
1449 {
1450   mace_private *lp = netdev_priv(dev);
1451   int num_addrs = lp->multicast_num_addrs;
1452   int *ladrf = lp->multicast_ladrf;
1453   unsigned int ioaddr = dev->base_addr;
1454   int i;
1455
1456   DEBUG(2, "%s: restoring Rx mode to %d addresses.\n",
1457         dev->name, num_addrs);
1458
1459   if (num_addrs > 0) {
1460
1461     DEBUG(1, "Attempt to restore multicast list detected.\n");
1462
1463     mace_write(lp, ioaddr, MACE_IAC, MACE_IAC_ADDRCHG | MACE_IAC_LOGADDR);
1464     /* Poll ADDRCHG bit */
1465     while (mace_read(lp, ioaddr, MACE_IAC) & MACE_IAC_ADDRCHG)
1466       ;
1467     /* Set LADRF register */
1468     for (i = 0; i < MACE_LADRF_LEN; i++)
1469       mace_write(lp, ioaddr, MACE_LADRF, ladrf[i]);
1470
1471     mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_RCVFCSE | MACE_UTR_LOOP_EXTERNAL);
1472     mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1473
1474   } else if (num_addrs < 0) {
1475
1476     /* Promiscuous mode: receive all packets */
1477     mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1478     mace_write(lp, ioaddr, MACE_MACCC,
1479       MACE_MACCC_PROM | MACE_MACCC_ENXMT | MACE_MACCC_ENRCV
1480     );
1481
1482   } else {
1483
1484     /* Normal mode */
1485     mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1486     mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1487
1488   }
1489 } /* restore_multicast_list */
1490
1491 /* ----------------------------------------------------------------------------
1492 set_multicast_list
1493         Set or clear the multicast filter for this adaptor.
1494
1495 Input
1496         num_addrs == -1 Promiscuous mode, receive all packets
1497         num_addrs == 0  Normal mode, clear multicast list
1498         num_addrs > 0   Multicast mode, receive normal and MC packets, and do
1499                         best-effort filtering.
1500 Output
1501         multicast_num_addrs
1502         multicast_ladrf[]
1503 ---------------------------------------------------------------------------- */
1504
1505 static void set_multicast_list(struct net_device *dev)
1506 {
1507   mace_private *lp = netdev_priv(dev);
1508   int adr[ETHER_ADDR_LEN] = {0}; /* Ethernet address */
1509   int i;
1510   struct dev_mc_list *dmi = dev->mc_list;
1511
1512 #ifdef PCMCIA_DEBUG
1513   if (pc_debug > 1) {
1514     static int old;
1515     if (dev->mc_count != old) {
1516       old = dev->mc_count;
1517       DEBUG(0, "%s: setting Rx mode to %d addresses.\n",
1518             dev->name, old);
1519     }
1520   }
1521 #endif
1522
1523   /* Set multicast_num_addrs. */
1524   lp->multicast_num_addrs = dev->mc_count;
1525
1526   /* Set multicast_ladrf. */
1527   if (num_addrs > 0) {
1528     /* Calculate multicast logical address filter */
1529     memset(lp->multicast_ladrf, 0, MACE_LADRF_LEN);
1530     for (i = 0; i < dev->mc_count; i++) {
1531       memcpy(adr, dmi->dmi_addr, ETHER_ADDR_LEN);
1532       dmi = dmi->next;
1533       BuildLAF(lp->multicast_ladrf, adr);
1534     }
1535   }
1536
1537   restore_multicast_list(dev);
1538
1539 } /* set_multicast_list */
1540
1541 #endif /* BROKEN_MULTICAST */
1542
1543 static void restore_multicast_list(struct net_device *dev)
1544 {
1545   unsigned int ioaddr = dev->base_addr;
1546   mace_private *lp = netdev_priv(dev);
1547
1548   DEBUG(2, "%s: restoring Rx mode to %d addresses.\n", dev->name,
1549         lp->multicast_num_addrs);
1550
1551   if (dev->flags & IFF_PROMISC) {
1552     /* Promiscuous mode: receive all packets */
1553     mace_write(lp,ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1554     mace_write(lp, ioaddr, MACE_MACCC,
1555       MACE_MACCC_PROM | MACE_MACCC_ENXMT | MACE_MACCC_ENRCV
1556     );
1557   } else {
1558     /* Normal mode */
1559     mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1560     mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1561   }
1562 } /* restore_multicast_list */
1563
1564 static void set_multicast_list(struct net_device *dev)
1565 {
1566   mace_private *lp = netdev_priv(dev);
1567
1568 #ifdef PCMCIA_DEBUG
1569   if (pc_debug > 1) {
1570     static int old;
1571     if (dev->mc_count != old) {
1572       old = dev->mc_count;
1573       DEBUG(0, "%s: setting Rx mode to %d addresses.\n",
1574             dev->name, old);
1575     }
1576   }
1577 #endif
1578
1579   lp->multicast_num_addrs = dev->mc_count;
1580   restore_multicast_list(dev);
1581
1582 } /* set_multicast_list */
1583
1584 static struct pcmcia_device_id nmclan_ids[] = {
1585         PCMCIA_DEVICE_PROD_ID12("New Media Corporation", "Ethernet", 0x085a850b, 0x00b2e941),
1586         PCMCIA_DEVICE_PROD_ID12("Portable Add-ons", "Ethernet+", 0xebf1d60, 0xad673aaf),
1587         PCMCIA_DEVICE_NULL,
1588 };
1589 MODULE_DEVICE_TABLE(pcmcia, nmclan_ids);
1590
1591 static struct pcmcia_driver nmclan_cs_driver = {
1592         .owner          = THIS_MODULE,
1593         .drv            = {
1594                 .name   = "nmclan_cs",
1595         },
1596         .probe          = nmclan_probe,
1597         .remove         = nmclan_detach,
1598         .id_table       = nmclan_ids,
1599         .suspend        = nmclan_suspend,
1600         .resume         = nmclan_resume,
1601 };
1602
1603 static int __init init_nmclan_cs(void)
1604 {
1605         return pcmcia_register_driver(&nmclan_cs_driver);
1606 }
1607
1608 static void __exit exit_nmclan_cs(void)
1609 {
1610         pcmcia_unregister_driver(&nmclan_cs_driver);
1611 }
1612
1613 module_init(init_nmclan_cs);
1614 module_exit(exit_nmclan_cs);