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