blob: 8b8e7162314cb451ea58a0e9351d59bda28f2ffd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* ----------------------------------------------------------------------------
2Linux 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
9Written 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
16Ported to Linux 1.3.* network driver environment by
17 Matti Aarnio <mea@utu.fi>
18
19References
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-------------------------------------------------------------------------------
48Driver Notes and Issues
49-------------------------------------------------------------------------------
50
511. 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
552. 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
603. If hot extraction does not work for you, use 'ifconfig eth0 down'
61 before extraction.
62
634. There is a bad slow-down problem in this driver.
64
655. Future: Multicast processing. In the meantime, do _not_ compile your
66 kernel with multicast ip enabled.
67
68-------------------------------------------------------------------------------
69History
70-------------------------------------------------------------------------------
71Log: nmclan_cs.c,v
72 * 2.5.75-ac1 2003/07/11 Alan Cox <alan@redhat.com>
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
9695/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.
10095/05/11 rpao V0.10
101 Multiple transmit request processing.
102 Modified statistics to use MACE counters where possible.
10395/05/10 rpao V0.09 Bug fix: Must use IO_DATA_PATH_WIDTH_AUTO.
104 *Released
10595/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.
10995/05/10 rpao V0.07 Statistics.
11095/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/* ----------------------------------------------------------------------------
119Conditional 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/* ----------------------------------------------------------------------------
128Include 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#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/* ----------------------------------------------------------------------------
160Defines
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/*
181The Am2150 has a Xilinx XC3042 field programmable gate array (FPGA)
182which manages the interface between the MACE and the PCMCIA bus. It
183also includes buffer management for the 32K x 8 SRAM to control up to
184four 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/* ----------------------------------------------------------------------------
316Type Definitions
317---------------------------------------------------------------------------- */
318
319typedef 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
364typedef struct _mace_private {
Dominik Brodowskifd238232006-03-05 10:45:09 +0100365 struct pcmcia_device *p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 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/* ----------------------------------------------------------------------------
381Private Global Variables
382---------------------------------------------------------------------------- */
383
384#ifdef PCMCIA_DEBUG
385static char rcsid[] =
386"nmclan_cs.c,v 0.16 1995/07/01 06:42:17 rpao Exp rpao";
387static char *version =
388DRV_NAME " " DRV_VERSION " (Roger C. Pao)";
389#endif
390
Arjan van de Venf71e1302006-03-03 21:33:57 -0500391static const char *if_names[]={
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 "Auto", "10baseT", "BNC",
393};
394
395/* ----------------------------------------------------------------------------
396Parameters
397 These are the parameters that can be set during loading with
398 'insmod'.
399---------------------------------------------------------------------------- */
400
401MODULE_DESCRIPTION("New Media PCMCIA ethernet driver");
402MODULE_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 */
407INT_MODULE_PARM(if_port, 0);
408
409#ifdef PCMCIA_DEBUG
410INT_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/* ----------------------------------------------------------------------------
417Function Prototypes
418---------------------------------------------------------------------------- */
419
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200420static void nmclan_config(struct pcmcia_device *link);
421static void nmclan_release(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423static void nmclan_reset(struct net_device *dev);
424static int mace_config(struct net_device *dev, struct ifmap *map);
425static int mace_open(struct net_device *dev);
426static int mace_close(struct net_device *dev);
427static int mace_start_xmit(struct sk_buff *skb, struct net_device *dev);
428static void mace_tx_timeout(struct net_device *dev);
429static irqreturn_t mace_interrupt(int irq, void *dev_id, struct pt_regs *regs);
430static struct net_device_stats *mace_get_stats(struct net_device *dev);
431static int mace_rx(struct net_device *dev, unsigned char RxCnt);
432static void restore_multicast_list(struct net_device *dev);
433static void set_multicast_list(struct net_device *dev);
434static struct ethtool_ops netdev_ethtool_ops;
435
436
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100437static void nmclan_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439/* ----------------------------------------------------------------------------
440nmclan_attach
441 Creates an "instance" of the driver, allocating local data
442 structures for one device. The device is registered with Card
443 Services.
444---------------------------------------------------------------------------- */
445
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200446static int nmclan_attach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 mace_private *lp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 DEBUG(0, "nmclan_attach()\n");
452 DEBUG(1, "%s\n", rcsid);
453
454 /* Create new ethernet device */
455 dev = alloc_etherdev(sizeof(mace_private));
456 if (!dev)
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100457 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200459 lp->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 link->priv = dev;
461
462 spin_lock_init(&lp->bank_lock);
463 link->io.NumPorts1 = 32;
464 link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
465 link->io.IOAddrLines = 5;
466 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT;
467 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
468 link->irq.Handler = &mace_interrupt;
469 link->irq.Instance = dev;
470 link->conf.Attributes = CONF_ENABLE_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 link->conf.IntType = INT_MEMORY_AND_IO;
472 link->conf.ConfigIndex = 1;
473 link->conf.Present = PRESENT_OPTION;
474
475 lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
476
477 SET_MODULE_OWNER(dev);
478 dev->hard_start_xmit = &mace_start_xmit;
479 dev->set_config = &mace_config;
480 dev->get_stats = &mace_get_stats;
481 dev->set_multicast_list = &set_multicast_list;
482 SET_ETHTOOL_OPS(dev, &netdev_ethtool_ops);
483 dev->open = &mace_open;
484 dev->stop = &mace_close;
485#ifdef HAVE_TX_TIMEOUT
486 dev->tx_timeout = mace_tx_timeout;
487 dev->watchdog_timeo = TX_TIMEOUT;
488#endif
489
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100490 link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
491 nmclan_config(link);
492
493 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494} /* nmclan_attach */
495
496/* ----------------------------------------------------------------------------
497nmclan_detach
498 This deletes a driver "instance". The device is de-registered
499 with Card Services. If it has been released, all local data
500 structures are freed. Otherwise, the structures will be freed
501 when the device is released.
502---------------------------------------------------------------------------- */
503
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200504static void nmclan_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
506 struct net_device *dev = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 DEBUG(0, "nmclan_detach(0x%p)\n", link);
509
Dominik Brodowskifd238232006-03-05 10:45:09 +0100510 if (link->dev_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 unregister_netdev(dev);
512
513 if (link->state & DEV_CONFIG)
514 nmclan_release(link);
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 free_netdev(dev);
517} /* nmclan_detach */
518
519/* ----------------------------------------------------------------------------
520mace_read
521 Reads a MACE register. This is bank independent; however, the
522 caller must ensure that this call is not interruptable. We are
523 assuming that during normal operation, the MACE is always in
524 bank 0.
525---------------------------------------------------------------------------- */
526static int mace_read(mace_private *lp, kio_addr_t ioaddr, int reg)
527{
528 int data = 0xFF;
529 unsigned long flags;
530
531 switch (reg >> 4) {
532 case 0: /* register 0-15 */
533 data = inb(ioaddr + AM2150_MACE_BASE + reg);
534 break;
535 case 1: /* register 16-31 */
536 spin_lock_irqsave(&lp->bank_lock, flags);
537 MACEBANK(1);
538 data = inb(ioaddr + AM2150_MACE_BASE + (reg & 0x0F));
539 MACEBANK(0);
540 spin_unlock_irqrestore(&lp->bank_lock, flags);
541 break;
542 }
543 return (data & 0xFF);
544} /* mace_read */
545
546/* ----------------------------------------------------------------------------
547mace_write
548 Writes to a MACE register. This is bank independent; however,
549 the caller must ensure that this call is not interruptable. We
550 are assuming that during normal operation, the MACE is always in
551 bank 0.
552---------------------------------------------------------------------------- */
553static void mace_write(mace_private *lp, kio_addr_t ioaddr, int reg, int data)
554{
555 unsigned long flags;
556
557 switch (reg >> 4) {
558 case 0: /* register 0-15 */
559 outb(data & 0xFF, ioaddr + AM2150_MACE_BASE + reg);
560 break;
561 case 1: /* register 16-31 */
562 spin_lock_irqsave(&lp->bank_lock, flags);
563 MACEBANK(1);
564 outb(data & 0xFF, ioaddr + AM2150_MACE_BASE + (reg & 0x0F));
565 MACEBANK(0);
566 spin_unlock_irqrestore(&lp->bank_lock, flags);
567 break;
568 }
569} /* mace_write */
570
571/* ----------------------------------------------------------------------------
572mace_init
573 Resets the MACE chip.
574---------------------------------------------------------------------------- */
575static int mace_init(mace_private *lp, kio_addr_t ioaddr, char *enet_addr)
576{
577 int i;
578 int ct = 0;
579
580 /* MACE Software reset */
581 mace_write(lp, ioaddr, MACE_BIUCC, 1);
582 while (mace_read(lp, ioaddr, MACE_BIUCC) & 0x01) {
583 /* Wait for reset bit to be cleared automatically after <= 200ns */;
584 if(++ct > 500)
585 {
586 printk(KERN_ERR "mace: reset failed, card removed ?\n");
587 return -1;
588 }
589 udelay(1);
590 }
591 mace_write(lp, ioaddr, MACE_BIUCC, 0);
592
593 /* The Am2150 requires that the MACE FIFOs operate in burst mode. */
594 mace_write(lp, ioaddr, MACE_FIFOCC, 0x0F);
595
596 mace_write(lp,ioaddr, MACE_RCVFC, 0); /* Disable Auto Strip Receive */
597 mace_write(lp, ioaddr, MACE_IMR, 0xFF); /* Disable all interrupts until _open */
598
599 /*
600 * Bit 2-1 PORTSEL[1-0] Port Select.
601 * 00 AUI/10Base-2
602 * 01 10Base-T
603 * 10 DAI Port (reserved in Am2150)
604 * 11 GPSI
605 * For this card, only the first two are valid.
606 * So, PLSCC should be set to
607 * 0x00 for 10Base-2
608 * 0x02 for 10Base-T
609 * Or just set ASEL in PHYCC below!
610 */
611 switch (if_port) {
612 case 1:
613 mace_write(lp, ioaddr, MACE_PLSCC, 0x02);
614 break;
615 case 2:
616 mace_write(lp, ioaddr, MACE_PLSCC, 0x00);
617 break;
618 default:
619 mace_write(lp, ioaddr, MACE_PHYCC, /* ASEL */ 4);
620 /* ASEL Auto Select. When set, the PORTSEL[1-0] bits are overridden,
621 and the MACE device will automatically select the operating media
622 interface port. */
623 break;
624 }
625
626 mace_write(lp, ioaddr, MACE_IAC, MACE_IAC_ADDRCHG | MACE_IAC_PHYADDR);
627 /* Poll ADDRCHG bit */
628 ct = 0;
629 while (mace_read(lp, ioaddr, MACE_IAC) & MACE_IAC_ADDRCHG)
630 {
631 if(++ ct > 500)
632 {
633 printk(KERN_ERR "mace: ADDRCHG timeout, card removed ?\n");
634 return -1;
635 }
636 }
637 /* Set PADR register */
638 for (i = 0; i < ETHER_ADDR_LEN; i++)
639 mace_write(lp, ioaddr, MACE_PADR, enet_addr[i]);
640
641 /* MAC Configuration Control Register should be written last */
642 /* Let set_multicast_list set this. */
643 /* mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV); */
644 mace_write(lp, ioaddr, MACE_MACCC, 0x00);
645 return 0;
646} /* mace_init */
647
648/* ----------------------------------------------------------------------------
649nmclan_config
650 This routine is scheduled to run after a CARD_INSERTION event
651 is received, to configure the PCMCIA socket, and to make the
652 ethernet device available to the system.
653---------------------------------------------------------------------------- */
654
655#define CS_CHECK(fn, ret) \
656 do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
657
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200658static void nmclan_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 struct net_device *dev = link->priv;
661 mace_private *lp = netdev_priv(dev);
662 tuple_t tuple;
663 cisparse_t parse;
664 u_char buf[64];
665 int i, last_ret, last_fn;
666 kio_addr_t ioaddr;
667
668 DEBUG(0, "nmclan_config(0x%p)\n", link);
669
670 tuple.Attributes = 0;
671 tuple.TupleData = buf;
672 tuple.TupleDataMax = 64;
673 tuple.TupleOffset = 0;
674 tuple.DesiredTuple = CISTPL_CONFIG;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200675 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(link, &tuple));
676 CS_CHECK(GetTupleData, pcmcia_get_tuple_data(link, &tuple));
677 CS_CHECK(ParseTuple, pcmcia_parse_tuple(link, &tuple, &parse));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 link->conf.ConfigBase = parse.config.base;
679
680 /* Configure card */
681 link->state |= DEV_CONFIG;
682
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200683 CS_CHECK(RequestIO, pcmcia_request_io(link, &link->io));
684 CS_CHECK(RequestIRQ, pcmcia_request_irq(link, &link->irq));
685 CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link, &link->conf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 dev->irq = link->irq.AssignedIRQ;
687 dev->base_addr = link->io.BasePort1;
688
689 ioaddr = dev->base_addr;
690
691 /* Read the ethernet address from the CIS. */
692 tuple.DesiredTuple = 0x80 /* CISTPL_CFTABLE_ENTRY_MISC */;
693 tuple.TupleData = buf;
694 tuple.TupleDataMax = 64;
695 tuple.TupleOffset = 0;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200696 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(link, &tuple));
697 CS_CHECK(GetTupleData, pcmcia_get_tuple_data(link, &tuple));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 memcpy(dev->dev_addr, tuple.TupleData, ETHER_ADDR_LEN);
699
700 /* Verify configuration by reading the MACE ID. */
701 {
702 char sig[2];
703
704 sig[0] = mace_read(lp, ioaddr, MACE_CHIPIDL);
705 sig[1] = mace_read(lp, ioaddr, MACE_CHIPIDH);
706 if ((sig[0] == 0x40) && ((sig[1] & 0x0F) == 0x09)) {
707 DEBUG(0, "nmclan_cs configured: mace id=%x %x\n",
708 sig[0], sig[1]);
709 } else {
710 printk(KERN_NOTICE "nmclan_cs: mace id not found: %x %x should"
711 " be 0x40 0x?9\n", sig[0], sig[1]);
712 link->state &= ~DEV_CONFIG_PENDING;
713 return;
714 }
715 }
716
717 if(mace_init(lp, ioaddr, dev->dev_addr) == -1)
718 goto failed;
719
720 /* The if_port symbol can be set when the module is loaded */
721 if (if_port <= 2)
722 dev->if_port = if_port;
723 else
724 printk(KERN_NOTICE "nmclan_cs: invalid if_port requested\n");
725
Dominik Brodowskifd238232006-03-05 10:45:09 +0100726 link->dev_node = &lp->node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 link->state &= ~DEV_CONFIG_PENDING;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200728 SET_NETDEV_DEV(dev, &handle_to_dev(link));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 i = register_netdev(dev);
731 if (i != 0) {
732 printk(KERN_NOTICE "nmclan_cs: register_netdev() failed\n");
Dominik Brodowskifd238232006-03-05 10:45:09 +0100733 link->dev_node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 goto failed;
735 }
736
737 strcpy(lp->node.dev_name, dev->name);
738
739 printk(KERN_INFO "%s: nmclan: port %#3lx, irq %d, %s port, hw_addr ",
740 dev->name, dev->base_addr, dev->irq, if_names[dev->if_port]);
741 for (i = 0; i < 6; i++)
742 printk("%02X%s", dev->dev_addr[i], ((i<5) ? ":" : "\n"));
743 return;
744
745cs_failed:
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200746 cs_error(link, last_fn, last_ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747failed:
748 nmclan_release(link);
749 return;
750
751} /* nmclan_config */
752
753/* ----------------------------------------------------------------------------
754nmclan_release
755 After a card is removed, nmclan_release() will unregister the
756 net device, and release the PCMCIA configuration. If the device
757 is still open, this will be postponed until it is closed.
758---------------------------------------------------------------------------- */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200759static void nmclan_release(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +0100761 DEBUG(0, "nmclan_release(0x%p)\n", link);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200762 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200765static int nmclan_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100766{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100767 struct net_device *dev = link->priv;
768
Dominik Brodowski8661bb52006-03-02 00:02:33 +0100769 if ((link->state & DEV_CONFIG) && (link->open))
770 netif_device_detach(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100771
772 return 0;
773}
774
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200775static int nmclan_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100776{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100777 struct net_device *dev = link->priv;
778
Dominik Brodowski8661bb52006-03-02 00:02:33 +0100779 if ((link->state & DEV_CONFIG) && (link->open)) {
780 nmclan_reset(dev);
781 netif_device_attach(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100782 }
783
784 return 0;
785}
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788/* ----------------------------------------------------------------------------
789nmclan_reset
790 Reset and restore all of the Xilinx and MACE registers.
791---------------------------------------------------------------------------- */
792static void nmclan_reset(struct net_device *dev)
793{
794 mace_private *lp = netdev_priv(dev);
795
796#if RESET_XILINX
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200797 struct pcmcia_device *link = &lp->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 conf_reg_t reg;
799 u_long OrigCorValue;
800
801 /* Save original COR value */
802 reg.Function = 0;
803 reg.Action = CS_READ;
804 reg.Offset = CISREG_COR;
805 reg.Value = 0;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200806 pcmcia_access_configuration_register(link, &reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 OrigCorValue = reg.Value;
808
809 /* Reset Xilinx */
810 reg.Action = CS_WRITE;
811 reg.Offset = CISREG_COR;
812 DEBUG(1, "nmclan_reset: OrigCorValue=0x%lX, resetting...\n",
813 OrigCorValue);
814 reg.Value = COR_SOFT_RESET;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200815 pcmcia_access_configuration_register(link, &reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /* Need to wait for 20 ms for PCMCIA to finish reset. */
817
818 /* Restore original COR configuration index */
819 reg.Value = COR_LEVEL_REQ | (OrigCorValue & COR_CONFIG_MASK);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200820 pcmcia_access_configuration_register(link, &reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 /* Xilinx is now completely reset along with the MACE chip. */
822 lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
823
824#endif /* #if RESET_XILINX */
825
826 /* Xilinx is now completely reset along with the MACE chip. */
827 lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
828
829 /* Reinitialize the MACE chip for operation. */
830 mace_init(lp, dev->base_addr, dev->dev_addr);
831 mace_write(lp, dev->base_addr, MACE_IMR, MACE_IMR_DEFAULT);
832
833 /* Restore the multicast list and enable TX and RX. */
834 restore_multicast_list(dev);
835} /* nmclan_reset */
836
837/* ----------------------------------------------------------------------------
838mace_config
839 [Someone tell me what this is supposed to do? Is if_port a defined
840 standard? If so, there should be defines to indicate 1=10Base-T,
841 2=10Base-2, etc. including limited automatic detection.]
842---------------------------------------------------------------------------- */
843static int mace_config(struct net_device *dev, struct ifmap *map)
844{
845 if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
846 if (map->port <= 2) {
847 dev->if_port = map->port;
848 printk(KERN_INFO "%s: switched to %s port\n", dev->name,
849 if_names[dev->if_port]);
850 } else
851 return -EINVAL;
852 }
853 return 0;
854} /* mace_config */
855
856/* ----------------------------------------------------------------------------
857mace_open
858 Open device driver.
859---------------------------------------------------------------------------- */
860static int mace_open(struct net_device *dev)
861{
862 kio_addr_t ioaddr = dev->base_addr;
863 mace_private *lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200864 struct pcmcia_device *link = lp->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 if (!DEV_OK(link))
867 return -ENODEV;
868
869 link->open++;
870
871 MACEBANK(0);
872
873 netif_start_queue(dev);
874 nmclan_reset(dev);
875
876 return 0; /* Always succeed */
877} /* mace_open */
878
879/* ----------------------------------------------------------------------------
880mace_close
881 Closes device driver.
882---------------------------------------------------------------------------- */
883static int mace_close(struct net_device *dev)
884{
885 kio_addr_t ioaddr = dev->base_addr;
886 mace_private *lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200887 struct pcmcia_device *link = lp->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 DEBUG(2, "%s: shutting down ethercard.\n", dev->name);
890
891 /* Mask off all interrupts from the MACE chip. */
892 outb(0xFF, ioaddr + AM2150_MACE_BASE + MACE_IMR);
893
894 link->open--;
895 netif_stop_queue(dev);
896
897 return 0;
898} /* mace_close */
899
900static void netdev_get_drvinfo(struct net_device *dev,
901 struct ethtool_drvinfo *info)
902{
903 strcpy(info->driver, DRV_NAME);
904 strcpy(info->version, DRV_VERSION);
905 sprintf(info->bus_info, "PCMCIA 0x%lx", dev->base_addr);
906}
907
908#ifdef PCMCIA_DEBUG
909static u32 netdev_get_msglevel(struct net_device *dev)
910{
911 return pc_debug;
912}
913
914static void netdev_set_msglevel(struct net_device *dev, u32 level)
915{
916 pc_debug = level;
917}
918#endif /* PCMCIA_DEBUG */
919
920static struct ethtool_ops netdev_ethtool_ops = {
921 .get_drvinfo = netdev_get_drvinfo,
922#ifdef PCMCIA_DEBUG
923 .get_msglevel = netdev_get_msglevel,
924 .set_msglevel = netdev_set_msglevel,
925#endif /* PCMCIA_DEBUG */
926};
927
928/* ----------------------------------------------------------------------------
929mace_start_xmit
930 This routine begins the packet transmit function. When completed,
931 it will generate a transmit interrupt.
932
933 According to /usr/src/linux/net/inet/dev.c, if _start_xmit
934 returns 0, the "packet is now solely the responsibility of the
935 driver." If _start_xmit returns non-zero, the "transmission
936 failed, put skb back into a list."
937---------------------------------------------------------------------------- */
938
939static void mace_tx_timeout(struct net_device *dev)
940{
941 mace_private *lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200942 struct pcmcia_device *link = lp->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 printk(KERN_NOTICE "%s: transmit timed out -- ", dev->name);
945#if RESET_ON_TIMEOUT
946 printk("resetting card\n");
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200947 pcmcia_reset_card(link, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948#else /* #if RESET_ON_TIMEOUT */
949 printk("NOT resetting card\n");
950#endif /* #if RESET_ON_TIMEOUT */
951 dev->trans_start = jiffies;
952 netif_wake_queue(dev);
953}
954
955static int mace_start_xmit(struct sk_buff *skb, struct net_device *dev)
956{
957 mace_private *lp = netdev_priv(dev);
958 kio_addr_t ioaddr = dev->base_addr;
959
960 netif_stop_queue(dev);
961
962 DEBUG(3, "%s: mace_start_xmit(length = %ld) called.\n",
963 dev->name, (long)skb->len);
964
965#if (!TX_INTERRUPTABLE)
966 /* Disable MACE TX interrupts. */
967 outb(MACE_IMR_DEFAULT | MACE_IR_XMTINT,
968 ioaddr + AM2150_MACE_BASE + MACE_IMR);
969 lp->tx_irq_disabled=1;
970#endif /* #if (!TX_INTERRUPTABLE) */
971
972 {
973 /* This block must not be interrupted by another transmit request!
974 mace_tx_timeout will take care of timer-based retransmissions from
975 the upper layers. The interrupt handler is guaranteed never to
976 service a transmit interrupt while we are in here.
977 */
978
979 lp->linux_stats.tx_bytes += skb->len;
980 lp->tx_free_frames--;
981
982 /* WARNING: Write the _exact_ number of bytes written in the header! */
983 /* Put out the word header [must be an outw()] . . . */
984 outw(skb->len, ioaddr + AM2150_XMT);
985 /* . . . and the packet [may be any combination of outw() and outb()] */
986 outsw(ioaddr + AM2150_XMT, skb->data, skb->len >> 1);
987 if (skb->len & 1) {
988 /* Odd byte transfer */
989 outb(skb->data[skb->len-1], ioaddr + AM2150_XMT);
990 }
991
992 dev->trans_start = jiffies;
993
994#if MULTI_TX
995 if (lp->tx_free_frames > 0)
996 netif_start_queue(dev);
997#endif /* #if MULTI_TX */
998 }
999
1000#if (!TX_INTERRUPTABLE)
1001 /* Re-enable MACE TX interrupts. */
1002 lp->tx_irq_disabled=0;
1003 outb(MACE_IMR_DEFAULT, ioaddr + AM2150_MACE_BASE + MACE_IMR);
1004#endif /* #if (!TX_INTERRUPTABLE) */
1005
1006 dev_kfree_skb(skb);
1007
1008 return 0;
1009} /* mace_start_xmit */
1010
1011/* ----------------------------------------------------------------------------
1012mace_interrupt
1013 The interrupt handler.
1014---------------------------------------------------------------------------- */
1015static irqreturn_t mace_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1016{
1017 struct net_device *dev = (struct net_device *) dev_id;
1018 mace_private *lp = netdev_priv(dev);
1019 kio_addr_t ioaddr = dev->base_addr;
1020 int status;
1021 int IntrCnt = MACE_MAX_IR_ITERATIONS;
1022
1023 if (dev == NULL) {
1024 DEBUG(2, "mace_interrupt(): irq 0x%X for unknown device.\n",
1025 irq);
1026 return IRQ_NONE;
1027 }
1028
1029 if (lp->tx_irq_disabled) {
1030 printk(
1031 (lp->tx_irq_disabled?
1032 KERN_NOTICE "%s: Interrupt with tx_irq_disabled "
1033 "[isr=%02X, imr=%02X]\n":
1034 KERN_NOTICE "%s: Re-entering the interrupt handler "
1035 "[isr=%02X, imr=%02X]\n"),
1036 dev->name,
1037 inb(ioaddr + AM2150_MACE_BASE + MACE_IR),
1038 inb(ioaddr + AM2150_MACE_BASE + MACE_IMR)
1039 );
1040 /* WARNING: MACE_IR has been read! */
1041 return IRQ_NONE;
1042 }
1043
1044 if (!netif_device_present(dev)) {
1045 DEBUG(2, "%s: interrupt from dead card\n", dev->name);
1046 return IRQ_NONE;
1047 }
1048
1049 do {
1050 /* WARNING: MACE_IR is a READ/CLEAR port! */
1051 status = inb(ioaddr + AM2150_MACE_BASE + MACE_IR);
1052
1053 DEBUG(3, "mace_interrupt: irq 0x%X status 0x%X.\n", irq, status);
1054
1055 if (status & MACE_IR_RCVINT) {
1056 mace_rx(dev, MACE_MAX_RX_ITERATIONS);
1057 }
1058
1059 if (status & MACE_IR_XMTINT) {
1060 unsigned char fifofc;
1061 unsigned char xmtrc;
1062 unsigned char xmtfs;
1063
1064 fifofc = inb(ioaddr + AM2150_MACE_BASE + MACE_FIFOFC);
1065 if ((fifofc & MACE_FIFOFC_XMTFC)==0) {
1066 lp->linux_stats.tx_errors++;
1067 outb(0xFF, ioaddr + AM2150_XMT_SKIP);
1068 }
1069
1070 /* Transmit Retry Count (XMTRC, reg 4) */
1071 xmtrc = inb(ioaddr + AM2150_MACE_BASE + MACE_XMTRC);
1072 if (xmtrc & MACE_XMTRC_EXDEF) lp->mace_stats.exdef++;
1073 lp->mace_stats.xmtrc += (xmtrc & MACE_XMTRC_XMTRC);
1074
1075 if (
1076 (xmtfs = inb(ioaddr + AM2150_MACE_BASE + MACE_XMTFS)) &
1077 MACE_XMTFS_XMTSV /* Transmit Status Valid */
1078 ) {
1079 lp->mace_stats.xmtsv++;
1080
1081 if (xmtfs & ~MACE_XMTFS_XMTSV) {
1082 if (xmtfs & MACE_XMTFS_UFLO) {
1083 /* Underflow. Indicates that the Transmit FIFO emptied before
1084 the end of frame was reached. */
1085 lp->mace_stats.uflo++;
1086 }
1087 if (xmtfs & MACE_XMTFS_LCOL) {
1088 /* Late Collision */
1089 lp->mace_stats.lcol++;
1090 }
1091 if (xmtfs & MACE_XMTFS_MORE) {
1092 /* MORE than one retry was needed */
1093 lp->mace_stats.more++;
1094 }
1095 if (xmtfs & MACE_XMTFS_ONE) {
1096 /* Exactly ONE retry occurred */
1097 lp->mace_stats.one++;
1098 }
1099 if (xmtfs & MACE_XMTFS_DEFER) {
1100 /* Transmission was defered */
1101 lp->mace_stats.defer++;
1102 }
1103 if (xmtfs & MACE_XMTFS_LCAR) {
1104 /* Loss of carrier */
1105 lp->mace_stats.lcar++;
1106 }
1107 if (xmtfs & MACE_XMTFS_RTRY) {
1108 /* Retry error: transmit aborted after 16 attempts */
1109 lp->mace_stats.rtry++;
1110 }
1111 } /* if (xmtfs & ~MACE_XMTFS_XMTSV) */
1112
1113 } /* if (xmtfs & MACE_XMTFS_XMTSV) */
1114
1115 lp->linux_stats.tx_packets++;
1116 lp->tx_free_frames++;
1117 netif_wake_queue(dev);
1118 } /* if (status & MACE_IR_XMTINT) */
1119
1120 if (status & ~MACE_IMR_DEFAULT & ~MACE_IR_RCVINT & ~MACE_IR_XMTINT) {
1121 if (status & MACE_IR_JAB) {
1122 /* Jabber Error. Excessive transmit duration (20-150ms). */
1123 lp->mace_stats.jab++;
1124 }
1125 if (status & MACE_IR_BABL) {
1126 /* Babble Error. >1518 bytes transmitted. */
1127 lp->mace_stats.babl++;
1128 }
1129 if (status & MACE_IR_CERR) {
1130 /* Collision Error. CERR indicates the absence of the
1131 Signal Quality Error Test message after a packet
1132 transmission. */
1133 lp->mace_stats.cerr++;
1134 }
1135 if (status & MACE_IR_RCVCCO) {
1136 /* Receive Collision Count Overflow; */
1137 lp->mace_stats.rcvcco++;
1138 }
1139 if (status & MACE_IR_RNTPCO) {
1140 /* Runt Packet Count Overflow */
1141 lp->mace_stats.rntpco++;
1142 }
1143 if (status & MACE_IR_MPCO) {
1144 /* Missed Packet Count Overflow */
1145 lp->mace_stats.mpco++;
1146 }
1147 } /* if (status & ~MACE_IMR_DEFAULT & ~MACE_IR_RCVINT & ~MACE_IR_XMTINT) */
1148
1149 } while ((status & ~MACE_IMR_DEFAULT) && (--IntrCnt));
1150
1151 return IRQ_HANDLED;
1152} /* mace_interrupt */
1153
1154/* ----------------------------------------------------------------------------
1155mace_rx
1156 Receives packets.
1157---------------------------------------------------------------------------- */
1158static int mace_rx(struct net_device *dev, unsigned char RxCnt)
1159{
1160 mace_private *lp = netdev_priv(dev);
1161 kio_addr_t ioaddr = dev->base_addr;
1162 unsigned char rx_framecnt;
1163 unsigned short rx_status;
1164
1165 while (
1166 ((rx_framecnt = inb(ioaddr + AM2150_RCV_FRAME_COUNT)) > 0) &&
1167 (rx_framecnt <= 12) && /* rx_framecnt==0xFF if card is extracted. */
1168 (RxCnt--)
1169 ) {
1170 rx_status = inw(ioaddr + AM2150_RCV);
1171
1172 DEBUG(3, "%s: in mace_rx(), framecnt 0x%X, rx_status"
1173 " 0x%X.\n", dev->name, rx_framecnt, rx_status);
1174
1175 if (rx_status & MACE_RCVFS_RCVSTS) { /* Error, update stats. */
1176 lp->linux_stats.rx_errors++;
1177 if (rx_status & MACE_RCVFS_OFLO) {
1178 lp->mace_stats.oflo++;
1179 }
1180 if (rx_status & MACE_RCVFS_CLSN) {
1181 lp->mace_stats.clsn++;
1182 }
1183 if (rx_status & MACE_RCVFS_FRAM) {
1184 lp->mace_stats.fram++;
1185 }
1186 if (rx_status & MACE_RCVFS_FCS) {
1187 lp->mace_stats.fcs++;
1188 }
1189 } else {
1190 short pkt_len = (rx_status & ~MACE_RCVFS_RCVSTS) - 4;
1191 /* Auto Strip is off, always subtract 4 */
1192 struct sk_buff *skb;
1193
1194 lp->mace_stats.rfs_rntpc += inb(ioaddr + AM2150_RCV);
1195 /* runt packet count */
1196 lp->mace_stats.rfs_rcvcc += inb(ioaddr + AM2150_RCV);
1197 /* rcv collision count */
1198
1199 DEBUG(3, " receiving packet size 0x%X rx_status"
1200 " 0x%X.\n", pkt_len, rx_status);
1201
1202 skb = dev_alloc_skb(pkt_len+2);
1203
1204 if (skb != NULL) {
1205 skb->dev = dev;
1206
1207 skb_reserve(skb, 2);
1208 insw(ioaddr + AM2150_RCV, skb_put(skb, pkt_len), pkt_len>>1);
1209 if (pkt_len & 1)
1210 *(skb->tail-1) = inb(ioaddr + AM2150_RCV);
1211 skb->protocol = eth_type_trans(skb, dev);
1212
1213 netif_rx(skb); /* Send the packet to the upper (protocol) layers. */
1214
1215 dev->last_rx = jiffies;
1216 lp->linux_stats.rx_packets++;
1217 lp->linux_stats.rx_bytes += skb->len;
1218 outb(0xFF, ioaddr + AM2150_RCV_NEXT); /* skip to next frame */
1219 continue;
1220 } else {
1221 DEBUG(1, "%s: couldn't allocate a sk_buff of size"
1222 " %d.\n", dev->name, pkt_len);
1223 lp->linux_stats.rx_dropped++;
1224 }
1225 }
1226 outb(0xFF, ioaddr + AM2150_RCV_NEXT); /* skip to next frame */
1227 } /* while */
1228
1229 return 0;
1230} /* mace_rx */
1231
1232/* ----------------------------------------------------------------------------
1233pr_linux_stats
1234---------------------------------------------------------------------------- */
1235static void pr_linux_stats(struct net_device_stats *pstats)
1236{
1237 DEBUG(2, "pr_linux_stats\n");
1238 DEBUG(2, " rx_packets=%-7ld tx_packets=%ld\n",
1239 (long)pstats->rx_packets, (long)pstats->tx_packets);
1240 DEBUG(2, " rx_errors=%-7ld tx_errors=%ld\n",
1241 (long)pstats->rx_errors, (long)pstats->tx_errors);
1242 DEBUG(2, " rx_dropped=%-7ld tx_dropped=%ld\n",
1243 (long)pstats->rx_dropped, (long)pstats->tx_dropped);
1244 DEBUG(2, " multicast=%-7ld collisions=%ld\n",
1245 (long)pstats->multicast, (long)pstats->collisions);
1246
1247 DEBUG(2, " rx_length_errors=%-7ld rx_over_errors=%ld\n",
1248 (long)pstats->rx_length_errors, (long)pstats->rx_over_errors);
1249 DEBUG(2, " rx_crc_errors=%-7ld rx_frame_errors=%ld\n",
1250 (long)pstats->rx_crc_errors, (long)pstats->rx_frame_errors);
1251 DEBUG(2, " rx_fifo_errors=%-7ld rx_missed_errors=%ld\n",
1252 (long)pstats->rx_fifo_errors, (long)pstats->rx_missed_errors);
1253
1254 DEBUG(2, " tx_aborted_errors=%-7ld tx_carrier_errors=%ld\n",
1255 (long)pstats->tx_aborted_errors, (long)pstats->tx_carrier_errors);
1256 DEBUG(2, " tx_fifo_errors=%-7ld tx_heartbeat_errors=%ld\n",
1257 (long)pstats->tx_fifo_errors, (long)pstats->tx_heartbeat_errors);
1258 DEBUG(2, " tx_window_errors=%ld\n",
1259 (long)pstats->tx_window_errors);
1260} /* pr_linux_stats */
1261
1262/* ----------------------------------------------------------------------------
1263pr_mace_stats
1264---------------------------------------------------------------------------- */
1265static void pr_mace_stats(mace_statistics *pstats)
1266{
1267 DEBUG(2, "pr_mace_stats\n");
1268
1269 DEBUG(2, " xmtsv=%-7d uflo=%d\n",
1270 pstats->xmtsv, pstats->uflo);
1271 DEBUG(2, " lcol=%-7d more=%d\n",
1272 pstats->lcol, pstats->more);
1273 DEBUG(2, " one=%-7d defer=%d\n",
1274 pstats->one, pstats->defer);
1275 DEBUG(2, " lcar=%-7d rtry=%d\n",
1276 pstats->lcar, pstats->rtry);
1277
1278 /* MACE_XMTRC */
1279 DEBUG(2, " exdef=%-7d xmtrc=%d\n",
1280 pstats->exdef, pstats->xmtrc);
1281
1282 /* RFS1--Receive Status (RCVSTS) */
1283 DEBUG(2, " oflo=%-7d clsn=%d\n",
1284 pstats->oflo, pstats->clsn);
1285 DEBUG(2, " fram=%-7d fcs=%d\n",
1286 pstats->fram, pstats->fcs);
1287
1288 /* RFS2--Runt Packet Count (RNTPC) */
1289 /* RFS3--Receive Collision Count (RCVCC) */
1290 DEBUG(2, " rfs_rntpc=%-7d rfs_rcvcc=%d\n",
1291 pstats->rfs_rntpc, pstats->rfs_rcvcc);
1292
1293 /* MACE_IR */
1294 DEBUG(2, " jab=%-7d babl=%d\n",
1295 pstats->jab, pstats->babl);
1296 DEBUG(2, " cerr=%-7d rcvcco=%d\n",
1297 pstats->cerr, pstats->rcvcco);
1298 DEBUG(2, " rntpco=%-7d mpco=%d\n",
1299 pstats->rntpco, pstats->mpco);
1300
1301 /* MACE_MPC */
1302 DEBUG(2, " mpc=%d\n", pstats->mpc);
1303
1304 /* MACE_RNTPC */
1305 DEBUG(2, " rntpc=%d\n", pstats->rntpc);
1306
1307 /* MACE_RCVCC */
1308 DEBUG(2, " rcvcc=%d\n", pstats->rcvcc);
1309
1310} /* pr_mace_stats */
1311
1312/* ----------------------------------------------------------------------------
1313update_stats
1314 Update statistics. We change to register window 1, so this
1315 should be run single-threaded if the device is active. This is
1316 expected to be a rare operation, and it's simpler for the rest
1317 of the driver to assume that window 0 is always valid rather
1318 than use a special window-state variable.
1319
1320 oflo & uflo should _never_ occur since it would mean the Xilinx
1321 was not able to transfer data between the MACE FIFO and the
1322 card's SRAM fast enough. If this happens, something is
1323 seriously wrong with the hardware.
1324---------------------------------------------------------------------------- */
1325static void update_stats(kio_addr_t ioaddr, struct net_device *dev)
1326{
1327 mace_private *lp = netdev_priv(dev);
1328
1329 lp->mace_stats.rcvcc += mace_read(lp, ioaddr, MACE_RCVCC);
1330 lp->mace_stats.rntpc += mace_read(lp, ioaddr, MACE_RNTPC);
1331 lp->mace_stats.mpc += mace_read(lp, ioaddr, MACE_MPC);
1332 /* At this point, mace_stats is fully updated for this call.
1333 We may now update the linux_stats. */
1334
1335 /* The MACE has no equivalent for linux_stats field which are commented
1336 out. */
1337
1338 /* lp->linux_stats.multicast; */
1339 lp->linux_stats.collisions =
1340 lp->mace_stats.rcvcco * 256 + lp->mace_stats.rcvcc;
1341 /* Collision: The MACE may retry sending a packet 15 times
1342 before giving up. The retry count is in XMTRC.
1343 Does each retry constitute a collision?
1344 If so, why doesn't the RCVCC record these collisions? */
1345
1346 /* detailed rx_errors: */
1347 lp->linux_stats.rx_length_errors =
1348 lp->mace_stats.rntpco * 256 + lp->mace_stats.rntpc;
1349 /* lp->linux_stats.rx_over_errors */
1350 lp->linux_stats.rx_crc_errors = lp->mace_stats.fcs;
1351 lp->linux_stats.rx_frame_errors = lp->mace_stats.fram;
1352 lp->linux_stats.rx_fifo_errors = lp->mace_stats.oflo;
1353 lp->linux_stats.rx_missed_errors =
1354 lp->mace_stats.mpco * 256 + lp->mace_stats.mpc;
1355
1356 /* detailed tx_errors */
1357 lp->linux_stats.tx_aborted_errors = lp->mace_stats.rtry;
1358 lp->linux_stats.tx_carrier_errors = lp->mace_stats.lcar;
1359 /* LCAR usually results from bad cabling. */
1360 lp->linux_stats.tx_fifo_errors = lp->mace_stats.uflo;
1361 lp->linux_stats.tx_heartbeat_errors = lp->mace_stats.cerr;
1362 /* lp->linux_stats.tx_window_errors; */
1363
1364 return;
1365} /* update_stats */
1366
1367/* ----------------------------------------------------------------------------
1368mace_get_stats
1369 Gathers ethernet statistics from the MACE chip.
1370---------------------------------------------------------------------------- */
1371static struct net_device_stats *mace_get_stats(struct net_device *dev)
1372{
1373 mace_private *lp = netdev_priv(dev);
1374
1375 update_stats(dev->base_addr, dev);
1376
1377 DEBUG(1, "%s: updating the statistics.\n", dev->name);
1378 pr_linux_stats(&lp->linux_stats);
1379 pr_mace_stats(&lp->mace_stats);
1380
1381 return &lp->linux_stats;
1382} /* net_device_stats */
1383
1384/* ----------------------------------------------------------------------------
1385updateCRC
1386 Modified from Am79C90 data sheet.
1387---------------------------------------------------------------------------- */
1388
1389#ifdef BROKEN_MULTICAST
1390
1391static void updateCRC(int *CRC, int bit)
1392{
1393 int poly[]={
1394 1,1,1,0, 1,1,0,1,
1395 1,0,1,1, 1,0,0,0,
1396 1,0,0,0, 0,0,1,1,
1397 0,0,1,0, 0,0,0,0
1398 }; /* CRC polynomial. poly[n] = coefficient of the x**n term of the
1399 CRC generator polynomial. */
1400
1401 int j;
1402
1403 /* shift CRC and control bit (CRC[32]) */
1404 for (j = 32; j > 0; j--)
1405 CRC[j] = CRC[j-1];
1406 CRC[0] = 0;
1407
1408 /* If bit XOR(control bit) = 1, set CRC = CRC XOR polynomial. */
1409 if (bit ^ CRC[32])
1410 for (j = 0; j < 32; j++)
1411 CRC[j] ^= poly[j];
1412} /* updateCRC */
1413
1414/* ----------------------------------------------------------------------------
1415BuildLAF
1416 Build logical address filter.
1417 Modified from Am79C90 data sheet.
1418
1419Input
1420 ladrf: logical address filter (contents initialized to 0)
1421 adr: ethernet address
1422---------------------------------------------------------------------------- */
1423static void BuildLAF(int *ladrf, int *adr)
1424{
1425 int CRC[33]={1}; /* CRC register, 1 word/bit + extra control bit */
1426
1427 int i, byte; /* temporary array indices */
1428 int hashcode; /* the output object */
1429
1430 CRC[32]=0;
1431
1432 for (byte = 0; byte < 6; byte++)
1433 for (i = 0; i < 8; i++)
1434 updateCRC(CRC, (adr[byte] >> i) & 1);
1435
1436 hashcode = 0;
1437 for (i = 0; i < 6; i++)
1438 hashcode = (hashcode << 1) + CRC[i];
1439
1440 byte = hashcode >> 3;
1441 ladrf[byte] |= (1 << (hashcode & 7));
1442
1443#ifdef PCMCIA_DEBUG
1444 if (pc_debug > 2) {
1445 printk(KERN_DEBUG " adr =");
1446 for (i = 0; i < 6; i++)
1447 printk(" %02X", adr[i]);
1448 printk("\n" KERN_DEBUG " hashcode = %d(decimal), ladrf[0:63]"
1449 " =", hashcode);
1450 for (i = 0; i < 8; i++)
1451 printk(" %02X", ladrf[i]);
1452 printk("\n");
1453 }
1454#endif
1455} /* BuildLAF */
1456
1457/* ----------------------------------------------------------------------------
1458restore_multicast_list
1459 Restores the multicast filter for MACE chip to the last
1460 set_multicast_list() call.
1461
1462Input
1463 multicast_num_addrs
1464 multicast_ladrf[]
1465---------------------------------------------------------------------------- */
1466static void restore_multicast_list(struct net_device *dev)
1467{
1468 mace_private *lp = netdev_priv(dev);
1469 int num_addrs = lp->multicast_num_addrs;
1470 int *ladrf = lp->multicast_ladrf;
1471 kio_addr_t ioaddr = dev->base_addr;
1472 int i;
1473
1474 DEBUG(2, "%s: restoring Rx mode to %d addresses.\n",
1475 dev->name, num_addrs);
1476
1477 if (num_addrs > 0) {
1478
1479 DEBUG(1, "Attempt to restore multicast list detected.\n");
1480
1481 mace_write(lp, ioaddr, MACE_IAC, MACE_IAC_ADDRCHG | MACE_IAC_LOGADDR);
1482 /* Poll ADDRCHG bit */
1483 while (mace_read(lp, ioaddr, MACE_IAC) & MACE_IAC_ADDRCHG)
1484 ;
1485 /* Set LADRF register */
1486 for (i = 0; i < MACE_LADRF_LEN; i++)
1487 mace_write(lp, ioaddr, MACE_LADRF, ladrf[i]);
1488
1489 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_RCVFCSE | MACE_UTR_LOOP_EXTERNAL);
1490 mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1491
1492 } else if (num_addrs < 0) {
1493
1494 /* Promiscuous mode: receive all packets */
1495 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1496 mace_write(lp, ioaddr, MACE_MACCC,
1497 MACE_MACCC_PROM | MACE_MACCC_ENXMT | MACE_MACCC_ENRCV
1498 );
1499
1500 } else {
1501
1502 /* Normal mode */
1503 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1504 mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1505
1506 }
1507} /* restore_multicast_list */
1508
1509/* ----------------------------------------------------------------------------
1510set_multicast_list
1511 Set or clear the multicast filter for this adaptor.
1512
1513Input
1514 num_addrs == -1 Promiscuous mode, receive all packets
1515 num_addrs == 0 Normal mode, clear multicast list
1516 num_addrs > 0 Multicast mode, receive normal and MC packets, and do
1517 best-effort filtering.
1518Output
1519 multicast_num_addrs
1520 multicast_ladrf[]
1521---------------------------------------------------------------------------- */
1522
1523static void set_multicast_list(struct net_device *dev)
1524{
1525 mace_private *lp = netdev_priv(dev);
1526 int adr[ETHER_ADDR_LEN] = {0}; /* Ethernet address */
1527 int i;
1528 struct dev_mc_list *dmi = dev->mc_list;
1529
1530#ifdef PCMCIA_DEBUG
1531 if (pc_debug > 1) {
1532 static int old;
1533 if (dev->mc_count != old) {
1534 old = dev->mc_count;
1535 DEBUG(0, "%s: setting Rx mode to %d addresses.\n",
1536 dev->name, old);
1537 }
1538 }
1539#endif
1540
1541 /* Set multicast_num_addrs. */
1542 lp->multicast_num_addrs = dev->mc_count;
1543
1544 /* Set multicast_ladrf. */
1545 if (num_addrs > 0) {
1546 /* Calculate multicast logical address filter */
1547 memset(lp->multicast_ladrf, 0, MACE_LADRF_LEN);
1548 for (i = 0; i < dev->mc_count; i++) {
1549 memcpy(adr, dmi->dmi_addr, ETHER_ADDR_LEN);
1550 dmi = dmi->next;
1551 BuildLAF(lp->multicast_ladrf, adr);
1552 }
1553 }
1554
1555 restore_multicast_list(dev);
1556
1557} /* set_multicast_list */
1558
1559#endif /* BROKEN_MULTICAST */
1560
1561static void restore_multicast_list(struct net_device *dev)
1562{
1563 kio_addr_t ioaddr = dev->base_addr;
1564 mace_private *lp = netdev_priv(dev);
1565
1566 DEBUG(2, "%s: restoring Rx mode to %d addresses.\n", dev->name,
1567 lp->multicast_num_addrs);
1568
1569 if (dev->flags & IFF_PROMISC) {
1570 /* Promiscuous mode: receive all packets */
1571 mace_write(lp,ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1572 mace_write(lp, ioaddr, MACE_MACCC,
1573 MACE_MACCC_PROM | MACE_MACCC_ENXMT | MACE_MACCC_ENRCV
1574 );
1575 } else {
1576 /* Normal mode */
1577 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1578 mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1579 }
1580} /* restore_multicast_list */
1581
1582static void set_multicast_list(struct net_device *dev)
1583{
1584 mace_private *lp = netdev_priv(dev);
1585
1586#ifdef PCMCIA_DEBUG
1587 if (pc_debug > 1) {
1588 static int old;
1589 if (dev->mc_count != old) {
1590 old = dev->mc_count;
1591 DEBUG(0, "%s: setting Rx mode to %d addresses.\n",
1592 dev->name, old);
1593 }
1594 }
1595#endif
1596
1597 lp->multicast_num_addrs = dev->mc_count;
1598 restore_multicast_list(dev);
1599
1600} /* set_multicast_list */
1601
Dominik Brodowskia58e26c2005-06-27 16:28:23 -07001602static struct pcmcia_device_id nmclan_ids[] = {
1603 PCMCIA_DEVICE_PROD_ID12("New Media Corporation", "Ethernet", 0x085a850b, 0x00b2e941),
Komurod277ad02005-07-28 01:07:24 -07001604 PCMCIA_DEVICE_PROD_ID12("Portable Add-ons", "Ethernet+", 0xebf1d60, 0xad673aaf),
Dominik Brodowskia58e26c2005-06-27 16:28:23 -07001605 PCMCIA_DEVICE_NULL,
1606};
1607MODULE_DEVICE_TABLE(pcmcia, nmclan_ids);
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609static struct pcmcia_driver nmclan_cs_driver = {
1610 .owner = THIS_MODULE,
1611 .drv = {
1612 .name = "nmclan_cs",
1613 },
Dominik Brodowskif8cfa612005-11-14 21:25:51 +01001614 .probe = nmclan_attach,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +01001615 .remove = nmclan_detach,
Dominik Brodowskia58e26c2005-06-27 16:28:23 -07001616 .id_table = nmclan_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001617 .suspend = nmclan_suspend,
1618 .resume = nmclan_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619};
1620
1621static int __init init_nmclan_cs(void)
1622{
1623 return pcmcia_register_driver(&nmclan_cs_driver);
1624}
1625
1626static void __exit exit_nmclan_cs(void)
1627{
1628 pcmcia_unregister_driver(&nmclan_cs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629}
1630
1631module_init(init_nmclan_cs);
1632module_exit(exit_nmclan_cs);