blob: 3d7be5aa49ebbf2126d55eaad0b093dd964d4aec [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
Alan Cox113aa832008-10-13 19:01:08 -070072 * 2.5.75-ac1 2003/07/11 Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 * 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
Joe Perches636b8112010-08-12 12:22:51 +0000114#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define DRV_NAME "nmclan_cs"
117#define DRV_VERSION "0.16"
118
119
120/* ----------------------------------------------------------------------------
121Conditional Compilation Options
122---------------------------------------------------------------------------- */
123
124#define MULTI_TX 0
125#define RESET_ON_TIMEOUT 1
126#define TX_INTERRUPTABLE 1
127#define RESET_XILINX 0
128
129/* ----------------------------------------------------------------------------
130Include Files
131---------------------------------------------------------------------------- */
132
133#include <linux/module.h>
134#include <linux/kernel.h>
135#include <linux/init.h>
136#include <linux/ptrace.h>
137#include <linux/slab.h>
138#include <linux/string.h>
139#include <linux/timer.h>
140#include <linux/interrupt.h>
141#include <linux/in.h>
142#include <linux/delay.h>
143#include <linux/ethtool.h>
144#include <linux/netdevice.h>
145#include <linux/etherdevice.h>
146#include <linux/skbuff.h>
147#include <linux/if_arp.h>
148#include <linux/ioport.h>
149#include <linux/bitops.h>
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#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 struct net_device_stats linux_stats; /* Linux statistics counters */
367 mace_statistics mace_stats; /* MACE chip statistics counters */
368
369 /* restore_multicast_list() state variables */
370 int multicast_ladrf[MACE_LADRF_LEN]; /* Logical address filter */
371 int multicast_num_addrs;
372
373 char tx_free_frames; /* Number of free transmit frame buffers */
374 char tx_irq_disabled; /* MACE TX interrupt disabled */
375
376 spinlock_t bank_lock; /* Must be held if you step off bank 0 */
377} mace_private;
378
379/* ----------------------------------------------------------------------------
380Private Global Variables
381---------------------------------------------------------------------------- */
382
Arjan van de Venf71e1302006-03-03 21:33:57 -0500383static const char *if_names[]={
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 "Auto", "10baseT", "BNC",
385};
386
387/* ----------------------------------------------------------------------------
388Parameters
389 These are the parameters that can be set during loading with
390 'insmod'.
391---------------------------------------------------------------------------- */
392
393MODULE_DESCRIPTION("New Media PCMCIA ethernet driver");
394MODULE_LICENSE("GPL");
395
396#define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0)
397
398/* 0=auto, 1=10baseT, 2 = 10base2, default=auto */
399INT_MODULE_PARM(if_port, 0);
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402/* ----------------------------------------------------------------------------
403Function Prototypes
404---------------------------------------------------------------------------- */
405
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200406static int nmclan_config(struct pcmcia_device *link);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200407static void nmclan_release(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409static void nmclan_reset(struct net_device *dev);
410static int mace_config(struct net_device *dev, struct ifmap *map);
411static int mace_open(struct net_device *dev);
412static int mace_close(struct net_device *dev);
Stephen Hemmingerdbf02fa2009-08-31 19:50:49 +0000413static netdev_tx_t mace_start_xmit(struct sk_buff *skb,
414 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415static void mace_tx_timeout(struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100416static irqreturn_t mace_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417static struct net_device_stats *mace_get_stats(struct net_device *dev);
418static int mace_rx(struct net_device *dev, unsigned char RxCnt);
419static void restore_multicast_list(struct net_device *dev);
420static void set_multicast_list(struct net_device *dev);
Jeff Garzik7282d492006-09-13 14:30:00 -0400421static const struct ethtool_ops netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100424static void nmclan_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Stephen Hemminger28b18012009-03-20 19:36:05 +0000426static const struct net_device_ops mace_netdev_ops = {
427 .ndo_open = mace_open,
428 .ndo_stop = mace_close,
429 .ndo_start_xmit = mace_start_xmit,
430 .ndo_tx_timeout = mace_tx_timeout,
431 .ndo_set_config = mace_config,
432 .ndo_get_stats = mace_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000433 .ndo_set_rx_mode = set_multicast_list,
Stephen Hemminger28b18012009-03-20 19:36:05 +0000434 .ndo_change_mtu = eth_change_mtu,
435 .ndo_set_mac_address = eth_mac_addr,
436 .ndo_validate_addr = eth_validate_addr,
437};
438
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200439static int nmclan_probe(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 mace_private *lp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200444 dev_dbg(&link->dev, "nmclan_attach()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 /* Create new ethernet device */
447 dev = alloc_etherdev(sizeof(mace_private));
448 if (!dev)
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100449 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200451 lp->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 link->priv = dev;
453
454 spin_lock_init(&lp->bank_lock);
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200455 link->resource[0]->end = 32;
456 link->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO;
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200457 link->config_flags |= CONF_ENABLE_IRQ;
Dominik Brodowski7feabb62010-07-29 18:35:47 +0200458 link->config_index = 1;
459 link->config_regs = PRESENT_OPTION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
462
Stephen Hemminger28b18012009-03-20 19:36:05 +0000463 dev->netdev_ops = &mace_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 SET_ETHTOOL_OPS(dev, &netdev_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 dev->watchdog_timeo = TX_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200467 return nmclan_config(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468} /* nmclan_attach */
469
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200470static void nmclan_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 struct net_device *dev = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200474 dev_dbg(&link->dev, "nmclan_detach\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Dominik Brodowskic7c2fa02010-03-20 19:39:26 +0100476 unregister_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100478 nmclan_release(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 free_netdev(dev);
481} /* nmclan_detach */
482
483/* ----------------------------------------------------------------------------
484mace_read
485 Reads a MACE register. This is bank independent; however, the
486 caller must ensure that this call is not interruptable. We are
487 assuming that during normal operation, the MACE is always in
488 bank 0.
489---------------------------------------------------------------------------- */
Olof Johansson906da802008-02-04 22:27:35 -0800490static int mace_read(mace_private *lp, unsigned int ioaddr, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 int data = 0xFF;
493 unsigned long flags;
494
495 switch (reg >> 4) {
496 case 0: /* register 0-15 */
497 data = inb(ioaddr + AM2150_MACE_BASE + reg);
498 break;
499 case 1: /* register 16-31 */
500 spin_lock_irqsave(&lp->bank_lock, flags);
501 MACEBANK(1);
502 data = inb(ioaddr + AM2150_MACE_BASE + (reg & 0x0F));
503 MACEBANK(0);
504 spin_unlock_irqrestore(&lp->bank_lock, flags);
505 break;
506 }
Eric Dumazet807540b2010-09-23 05:40:09 +0000507 return data & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508} /* mace_read */
509
510/* ----------------------------------------------------------------------------
511mace_write
512 Writes to a MACE register. This is bank independent; however,
513 the caller must ensure that this call is not interruptable. We
514 are assuming that during normal operation, the MACE is always in
515 bank 0.
516---------------------------------------------------------------------------- */
Olof Johansson906da802008-02-04 22:27:35 -0800517static void mace_write(mace_private *lp, unsigned int ioaddr, int reg,
518 int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 unsigned long flags;
521
522 switch (reg >> 4) {
523 case 0: /* register 0-15 */
524 outb(data & 0xFF, ioaddr + AM2150_MACE_BASE + reg);
525 break;
526 case 1: /* register 16-31 */
527 spin_lock_irqsave(&lp->bank_lock, flags);
528 MACEBANK(1);
529 outb(data & 0xFF, ioaddr + AM2150_MACE_BASE + (reg & 0x0F));
530 MACEBANK(0);
531 spin_unlock_irqrestore(&lp->bank_lock, flags);
532 break;
533 }
534} /* mace_write */
535
536/* ----------------------------------------------------------------------------
537mace_init
538 Resets the MACE chip.
539---------------------------------------------------------------------------- */
Olof Johansson906da802008-02-04 22:27:35 -0800540static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 int i;
543 int ct = 0;
544
545 /* MACE Software reset */
546 mace_write(lp, ioaddr, MACE_BIUCC, 1);
547 while (mace_read(lp, ioaddr, MACE_BIUCC) & 0x01) {
548 /* Wait for reset bit to be cleared automatically after <= 200ns */;
549 if(++ct > 500)
550 {
Joe Perches636b8112010-08-12 12:22:51 +0000551 pr_err("reset failed, card removed?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return -1;
553 }
554 udelay(1);
555 }
556 mace_write(lp, ioaddr, MACE_BIUCC, 0);
557
558 /* The Am2150 requires that the MACE FIFOs operate in burst mode. */
559 mace_write(lp, ioaddr, MACE_FIFOCC, 0x0F);
560
561 mace_write(lp,ioaddr, MACE_RCVFC, 0); /* Disable Auto Strip Receive */
562 mace_write(lp, ioaddr, MACE_IMR, 0xFF); /* Disable all interrupts until _open */
563
564 /*
565 * Bit 2-1 PORTSEL[1-0] Port Select.
566 * 00 AUI/10Base-2
567 * 01 10Base-T
568 * 10 DAI Port (reserved in Am2150)
569 * 11 GPSI
570 * For this card, only the first two are valid.
571 * So, PLSCC should be set to
572 * 0x00 for 10Base-2
573 * 0x02 for 10Base-T
574 * Or just set ASEL in PHYCC below!
575 */
576 switch (if_port) {
577 case 1:
578 mace_write(lp, ioaddr, MACE_PLSCC, 0x02);
579 break;
580 case 2:
581 mace_write(lp, ioaddr, MACE_PLSCC, 0x00);
582 break;
583 default:
584 mace_write(lp, ioaddr, MACE_PHYCC, /* ASEL */ 4);
585 /* ASEL Auto Select. When set, the PORTSEL[1-0] bits are overridden,
586 and the MACE device will automatically select the operating media
587 interface port. */
588 break;
589 }
590
591 mace_write(lp, ioaddr, MACE_IAC, MACE_IAC_ADDRCHG | MACE_IAC_PHYADDR);
592 /* Poll ADDRCHG bit */
593 ct = 0;
594 while (mace_read(lp, ioaddr, MACE_IAC) & MACE_IAC_ADDRCHG)
595 {
596 if(++ ct > 500)
597 {
Joe Perches636b8112010-08-12 12:22:51 +0000598 pr_err("ADDRCHG timeout, card removed?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return -1;
600 }
601 }
602 /* Set PADR register */
603 for (i = 0; i < ETHER_ADDR_LEN; i++)
604 mace_write(lp, ioaddr, MACE_PADR, enet_addr[i]);
605
606 /* MAC Configuration Control Register should be written last */
607 /* Let set_multicast_list set this. */
608 /* mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV); */
609 mace_write(lp, ioaddr, MACE_MACCC, 0x00);
610 return 0;
611} /* mace_init */
612
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200613static int nmclan_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct net_device *dev = link->priv;
616 mace_private *lp = netdev_priv(dev);
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200617 u8 *buf;
618 size_t len;
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200619 int i, ret;
Olof Johansson906da802008-02-04 22:27:35 -0800620 unsigned int ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200622 dev_dbg(&link->dev, "nmclan_config\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200624 link->io_lines = 5;
625 ret = pcmcia_request_io(link);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200626 if (ret)
627 goto failed;
Dominik Brodowskieb141202010-03-07 12:21:16 +0100628 ret = pcmcia_request_exclusive_irq(link, mace_interrupt);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200629 if (ret)
630 goto failed;
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200631 ret = pcmcia_enable_device(link);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200632 if (ret)
633 goto failed;
634
Dominik Brodowskieb141202010-03-07 12:21:16 +0100635 dev->irq = link->irq;
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200636 dev->base_addr = link->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 ioaddr = dev->base_addr;
639
640 /* Read the ethernet address from the CIS. */
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200641 len = pcmcia_get_tuple(link, 0x80, &buf);
642 if (!buf || len < ETHER_ADDR_LEN) {
643 kfree(buf);
644 goto failed;
645 }
646 memcpy(dev->dev_addr, buf, ETHER_ADDR_LEN);
647 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 /* Verify configuration by reading the MACE ID. */
650 {
651 char sig[2];
652
653 sig[0] = mace_read(lp, ioaddr, MACE_CHIPIDL);
654 sig[1] = mace_read(lp, ioaddr, MACE_CHIPIDH);
655 if ((sig[0] == 0x40) && ((sig[1] & 0x0F) == 0x09)) {
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200656 dev_dbg(&link->dev, "nmclan_cs configured: mace id=%x %x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 sig[0], sig[1]);
658 } else {
Joe Perches636b8112010-08-12 12:22:51 +0000659 pr_notice("mace id not found: %x %x should be 0x40 0x?9\n",
660 sig[0], sig[1]);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200661 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663 }
664
665 if(mace_init(lp, ioaddr, dev->dev_addr) == -1)
666 goto failed;
667
668 /* The if_port symbol can be set when the module is loaded */
669 if (if_port <= 2)
670 dev->if_port = if_port;
671 else
Joe Perches636b8112010-08-12 12:22:51 +0000672 pr_notice("invalid if_port requested\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Dominik Brodowskidd2e5a12009-11-03 10:27:34 +0100674 SET_NETDEV_DEV(dev, &link->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 i = register_netdev(dev);
677 if (i != 0) {
Joe Perches636b8112010-08-12 12:22:51 +0000678 pr_notice("register_netdev() failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 goto failed;
680 }
681
Joe Perches636b8112010-08-12 12:22:51 +0000682 netdev_info(dev, "nmclan: port %#3lx, irq %d, %s port, hw_addr %pM\n",
683 dev->base_addr, dev->irq, if_names[dev->if_port], dev->dev_addr);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200684 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686failed:
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200687 nmclan_release(link);
688 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689} /* nmclan_config */
690
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200691static void nmclan_release(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200693 dev_dbg(&link->dev, "nmclan_release\n");
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200694 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200697static int nmclan_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100698{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100699 struct net_device *dev = link->priv;
700
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100701 if (link->open)
Dominik Brodowski8661bb52006-03-02 00:02:33 +0100702 netif_device_detach(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100703
704 return 0;
705}
706
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200707static int nmclan_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100708{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100709 struct net_device *dev = link->priv;
710
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100711 if (link->open) {
Dominik Brodowski8661bb52006-03-02 00:02:33 +0100712 nmclan_reset(dev);
713 netif_device_attach(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100714 }
715
716 return 0;
717}
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720/* ----------------------------------------------------------------------------
721nmclan_reset
722 Reset and restore all of the Xilinx and MACE registers.
723---------------------------------------------------------------------------- */
724static void nmclan_reset(struct net_device *dev)
725{
726 mace_private *lp = netdev_priv(dev);
727
728#if RESET_XILINX
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200729 struct pcmcia_device *link = &lp->link;
Dominik Brodowski1d5cc192010-07-24 12:23:21 +0200730 u8 OrigCorValue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 /* Save original COR value */
Dominik Brodowski1d5cc192010-07-24 12:23:21 +0200733 pcmcia_read_config_byte(link, CISREG_COR, &OrigCorValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 /* Reset Xilinx */
Dominik Brodowski1d5cc192010-07-24 12:23:21 +0200736 dev_dbg(&link->dev, "nmclan_reset: OrigCorValue=0x%x, resetting...\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 OrigCorValue);
Dominik Brodowski1d5cc192010-07-24 12:23:21 +0200738 pcmcia_write_config_byte(link, CISREG_COR, COR_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 /* Need to wait for 20 ms for PCMCIA to finish reset. */
740
741 /* Restore original COR configuration index */
Dominik Brodowski1d5cc192010-07-24 12:23:21 +0200742 pcmcia_write_config_byte(link, CISREG_COR,
743 (COR_LEVEL_REQ | (OrigCorValue & COR_CONFIG_MASK)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /* Xilinx is now completely reset along with the MACE chip. */
745 lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
746
747#endif /* #if RESET_XILINX */
748
749 /* Xilinx is now completely reset along with the MACE chip. */
750 lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
751
752 /* Reinitialize the MACE chip for operation. */
753 mace_init(lp, dev->base_addr, dev->dev_addr);
754 mace_write(lp, dev->base_addr, MACE_IMR, MACE_IMR_DEFAULT);
755
756 /* Restore the multicast list and enable TX and RX. */
757 restore_multicast_list(dev);
758} /* nmclan_reset */
759
760/* ----------------------------------------------------------------------------
761mace_config
762 [Someone tell me what this is supposed to do? Is if_port a defined
763 standard? If so, there should be defines to indicate 1=10Base-T,
764 2=10Base-2, etc. including limited automatic detection.]
765---------------------------------------------------------------------------- */
766static int mace_config(struct net_device *dev, struct ifmap *map)
767{
768 if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
769 if (map->port <= 2) {
770 dev->if_port = map->port;
Joe Perches636b8112010-08-12 12:22:51 +0000771 netdev_info(dev, "switched to %s port\n", if_names[dev->if_port]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 } else
773 return -EINVAL;
774 }
775 return 0;
776} /* mace_config */
777
778/* ----------------------------------------------------------------------------
779mace_open
780 Open device driver.
781---------------------------------------------------------------------------- */
782static int mace_open(struct net_device *dev)
783{
Olof Johansson906da802008-02-04 22:27:35 -0800784 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 mace_private *lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200786 struct pcmcia_device *link = lp->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Dominik Brodowski9940ec32006-03-05 11:04:33 +0100788 if (!pcmcia_dev_present(link))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return -ENODEV;
790
791 link->open++;
792
793 MACEBANK(0);
794
795 netif_start_queue(dev);
796 nmclan_reset(dev);
797
798 return 0; /* Always succeed */
799} /* mace_open */
800
801/* ----------------------------------------------------------------------------
802mace_close
803 Closes device driver.
804---------------------------------------------------------------------------- */
805static int mace_close(struct net_device *dev)
806{
Olof Johansson906da802008-02-04 22:27:35 -0800807 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 mace_private *lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200809 struct pcmcia_device *link = lp->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200811 dev_dbg(&link->dev, "%s: shutting down ethercard.\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 /* Mask off all interrupts from the MACE chip. */
814 outb(0xFF, ioaddr + AM2150_MACE_BASE + MACE_IMR);
815
816 link->open--;
817 netif_stop_queue(dev);
818
819 return 0;
820} /* mace_close */
821
822static void netdev_get_drvinfo(struct net_device *dev,
823 struct ethtool_drvinfo *info)
824{
Rick Jones33a5ba12011-11-15 14:59:53 +0000825 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
826 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
827 snprintf(info->bus_info, sizeof(info->bus_info),
828 "PCMCIA 0x%lx", dev->base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
Jeff Garzik7282d492006-09-13 14:30:00 -0400831static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 .get_drvinfo = netdev_get_drvinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833};
834
835/* ----------------------------------------------------------------------------
836mace_start_xmit
837 This routine begins the packet transmit function. When completed,
838 it will generate a transmit interrupt.
839
840 According to /usr/src/linux/net/inet/dev.c, if _start_xmit
841 returns 0, the "packet is now solely the responsibility of the
842 driver." If _start_xmit returns non-zero, the "transmission
843 failed, put skb back into a list."
844---------------------------------------------------------------------------- */
845
846static void mace_tx_timeout(struct net_device *dev)
847{
848 mace_private *lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200849 struct pcmcia_device *link = lp->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Joe Perches636b8112010-08-12 12:22:51 +0000851 netdev_notice(dev, "transmit timed out -- ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852#if RESET_ON_TIMEOUT
Joe Perches636b8112010-08-12 12:22:51 +0000853 pr_cont("resetting card\n");
Dominik Brodowski994917f2008-08-31 15:20:26 +0200854 pcmcia_reset_card(link->socket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855#else /* #if RESET_ON_TIMEOUT */
Joe Perches636b8112010-08-12 12:22:51 +0000856 pr_cont("NOT resetting card\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857#endif /* #if RESET_ON_TIMEOUT */
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700858 dev->trans_start = jiffies; /* prevent tx timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 netif_wake_queue(dev);
860}
861
Stephen Hemmingerdbf02fa2009-08-31 19:50:49 +0000862static netdev_tx_t mace_start_xmit(struct sk_buff *skb,
863 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
865 mace_private *lp = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -0800866 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 netif_stop_queue(dev);
869
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200870 pr_debug("%s: mace_start_xmit(length = %ld) called.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 dev->name, (long)skb->len);
872
873#if (!TX_INTERRUPTABLE)
874 /* Disable MACE TX interrupts. */
875 outb(MACE_IMR_DEFAULT | MACE_IR_XMTINT,
876 ioaddr + AM2150_MACE_BASE + MACE_IMR);
877 lp->tx_irq_disabled=1;
878#endif /* #if (!TX_INTERRUPTABLE) */
879
880 {
881 /* This block must not be interrupted by another transmit request!
882 mace_tx_timeout will take care of timer-based retransmissions from
883 the upper layers. The interrupt handler is guaranteed never to
884 service a transmit interrupt while we are in here.
885 */
886
887 lp->linux_stats.tx_bytes += skb->len;
888 lp->tx_free_frames--;
889
890 /* WARNING: Write the _exact_ number of bytes written in the header! */
891 /* Put out the word header [must be an outw()] . . . */
892 outw(skb->len, ioaddr + AM2150_XMT);
893 /* . . . and the packet [may be any combination of outw() and outb()] */
894 outsw(ioaddr + AM2150_XMT, skb->data, skb->len >> 1);
895 if (skb->len & 1) {
896 /* Odd byte transfer */
897 outb(skb->data[skb->len-1], ioaddr + AM2150_XMT);
898 }
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900#if MULTI_TX
901 if (lp->tx_free_frames > 0)
902 netif_start_queue(dev);
903#endif /* #if MULTI_TX */
904 }
905
906#if (!TX_INTERRUPTABLE)
907 /* Re-enable MACE TX interrupts. */
908 lp->tx_irq_disabled=0;
909 outb(MACE_IMR_DEFAULT, ioaddr + AM2150_MACE_BASE + MACE_IMR);
910#endif /* #if (!TX_INTERRUPTABLE) */
911
912 dev_kfree_skb(skb);
913
Patrick McHardy6ed10652009-06-23 06:03:08 +0000914 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915} /* mace_start_xmit */
916
917/* ----------------------------------------------------------------------------
918mace_interrupt
919 The interrupt handler.
920---------------------------------------------------------------------------- */
David Howells7d12e782006-10-05 14:55:46 +0100921static irqreturn_t mace_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
923 struct net_device *dev = (struct net_device *) dev_id;
924 mace_private *lp = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -0800925 unsigned int ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 int status;
927 int IntrCnt = MACE_MAX_IR_ITERATIONS;
928
929 if (dev == NULL) {
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200930 pr_debug("mace_interrupt(): irq 0x%X for unknown device.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 irq);
932 return IRQ_NONE;
933 }
934
Micah Gruberc196d802007-07-24 10:44:56 +0800935 ioaddr = dev->base_addr;
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (lp->tx_irq_disabled) {
Joe Perches636b8112010-08-12 12:22:51 +0000938 const char *msg;
939 if (lp->tx_irq_disabled)
940 msg = "Interrupt with tx_irq_disabled";
941 else
942 msg = "Re-entering the interrupt handler";
943 netdev_notice(dev, "%s [isr=%02X, imr=%02X]\n",
944 msg,
945 inb(ioaddr + AM2150_MACE_BASE + MACE_IR),
946 inb(ioaddr + AM2150_MACE_BASE + MACE_IMR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 /* WARNING: MACE_IR has been read! */
948 return IRQ_NONE;
949 }
950
951 if (!netif_device_present(dev)) {
Joe Perches636b8112010-08-12 12:22:51 +0000952 netdev_dbg(dev, "interrupt from dead card\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return IRQ_NONE;
954 }
955
956 do {
957 /* WARNING: MACE_IR is a READ/CLEAR port! */
958 status = inb(ioaddr + AM2150_MACE_BASE + MACE_IR);
959
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200960 pr_debug("mace_interrupt: irq 0x%X status 0x%X.\n", irq, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 if (status & MACE_IR_RCVINT) {
963 mace_rx(dev, MACE_MAX_RX_ITERATIONS);
964 }
965
966 if (status & MACE_IR_XMTINT) {
967 unsigned char fifofc;
968 unsigned char xmtrc;
969 unsigned char xmtfs;
970
971 fifofc = inb(ioaddr + AM2150_MACE_BASE + MACE_FIFOFC);
972 if ((fifofc & MACE_FIFOFC_XMTFC)==0) {
973 lp->linux_stats.tx_errors++;
974 outb(0xFF, ioaddr + AM2150_XMT_SKIP);
975 }
976
977 /* Transmit Retry Count (XMTRC, reg 4) */
978 xmtrc = inb(ioaddr + AM2150_MACE_BASE + MACE_XMTRC);
979 if (xmtrc & MACE_XMTRC_EXDEF) lp->mace_stats.exdef++;
980 lp->mace_stats.xmtrc += (xmtrc & MACE_XMTRC_XMTRC);
981
982 if (
983 (xmtfs = inb(ioaddr + AM2150_MACE_BASE + MACE_XMTFS)) &
984 MACE_XMTFS_XMTSV /* Transmit Status Valid */
985 ) {
986 lp->mace_stats.xmtsv++;
987
988 if (xmtfs & ~MACE_XMTFS_XMTSV) {
989 if (xmtfs & MACE_XMTFS_UFLO) {
990 /* Underflow. Indicates that the Transmit FIFO emptied before
991 the end of frame was reached. */
992 lp->mace_stats.uflo++;
993 }
994 if (xmtfs & MACE_XMTFS_LCOL) {
995 /* Late Collision */
996 lp->mace_stats.lcol++;
997 }
998 if (xmtfs & MACE_XMTFS_MORE) {
999 /* MORE than one retry was needed */
1000 lp->mace_stats.more++;
1001 }
1002 if (xmtfs & MACE_XMTFS_ONE) {
1003 /* Exactly ONE retry occurred */
1004 lp->mace_stats.one++;
1005 }
1006 if (xmtfs & MACE_XMTFS_DEFER) {
1007 /* Transmission was defered */
1008 lp->mace_stats.defer++;
1009 }
1010 if (xmtfs & MACE_XMTFS_LCAR) {
1011 /* Loss of carrier */
1012 lp->mace_stats.lcar++;
1013 }
1014 if (xmtfs & MACE_XMTFS_RTRY) {
1015 /* Retry error: transmit aborted after 16 attempts */
1016 lp->mace_stats.rtry++;
1017 }
1018 } /* if (xmtfs & ~MACE_XMTFS_XMTSV) */
1019
1020 } /* if (xmtfs & MACE_XMTFS_XMTSV) */
1021
1022 lp->linux_stats.tx_packets++;
1023 lp->tx_free_frames++;
1024 netif_wake_queue(dev);
1025 } /* if (status & MACE_IR_XMTINT) */
1026
1027 if (status & ~MACE_IMR_DEFAULT & ~MACE_IR_RCVINT & ~MACE_IR_XMTINT) {
1028 if (status & MACE_IR_JAB) {
1029 /* Jabber Error. Excessive transmit duration (20-150ms). */
1030 lp->mace_stats.jab++;
1031 }
1032 if (status & MACE_IR_BABL) {
1033 /* Babble Error. >1518 bytes transmitted. */
1034 lp->mace_stats.babl++;
1035 }
1036 if (status & MACE_IR_CERR) {
1037 /* Collision Error. CERR indicates the absence of the
1038 Signal Quality Error Test message after a packet
1039 transmission. */
1040 lp->mace_stats.cerr++;
1041 }
1042 if (status & MACE_IR_RCVCCO) {
1043 /* Receive Collision Count Overflow; */
1044 lp->mace_stats.rcvcco++;
1045 }
1046 if (status & MACE_IR_RNTPCO) {
1047 /* Runt Packet Count Overflow */
1048 lp->mace_stats.rntpco++;
1049 }
1050 if (status & MACE_IR_MPCO) {
1051 /* Missed Packet Count Overflow */
1052 lp->mace_stats.mpco++;
1053 }
1054 } /* if (status & ~MACE_IMR_DEFAULT & ~MACE_IR_RCVINT & ~MACE_IR_XMTINT) */
1055
1056 } while ((status & ~MACE_IMR_DEFAULT) && (--IntrCnt));
1057
1058 return IRQ_HANDLED;
1059} /* mace_interrupt */
1060
1061/* ----------------------------------------------------------------------------
1062mace_rx
1063 Receives packets.
1064---------------------------------------------------------------------------- */
1065static int mace_rx(struct net_device *dev, unsigned char RxCnt)
1066{
1067 mace_private *lp = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001068 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 unsigned char rx_framecnt;
1070 unsigned short rx_status;
1071
1072 while (
1073 ((rx_framecnt = inb(ioaddr + AM2150_RCV_FRAME_COUNT)) > 0) &&
1074 (rx_framecnt <= 12) && /* rx_framecnt==0xFF if card is extracted. */
1075 (RxCnt--)
1076 ) {
1077 rx_status = inw(ioaddr + AM2150_RCV);
1078
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001079 pr_debug("%s: in mace_rx(), framecnt 0x%X, rx_status"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 " 0x%X.\n", dev->name, rx_framecnt, rx_status);
1081
1082 if (rx_status & MACE_RCVFS_RCVSTS) { /* Error, update stats. */
1083 lp->linux_stats.rx_errors++;
1084 if (rx_status & MACE_RCVFS_OFLO) {
1085 lp->mace_stats.oflo++;
1086 }
1087 if (rx_status & MACE_RCVFS_CLSN) {
1088 lp->mace_stats.clsn++;
1089 }
1090 if (rx_status & MACE_RCVFS_FRAM) {
1091 lp->mace_stats.fram++;
1092 }
1093 if (rx_status & MACE_RCVFS_FCS) {
1094 lp->mace_stats.fcs++;
1095 }
1096 } else {
1097 short pkt_len = (rx_status & ~MACE_RCVFS_RCVSTS) - 4;
1098 /* Auto Strip is off, always subtract 4 */
1099 struct sk_buff *skb;
1100
1101 lp->mace_stats.rfs_rntpc += inb(ioaddr + AM2150_RCV);
1102 /* runt packet count */
1103 lp->mace_stats.rfs_rcvcc += inb(ioaddr + AM2150_RCV);
1104 /* rcv collision count */
1105
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001106 pr_debug(" receiving packet size 0x%X rx_status"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 " 0x%X.\n", pkt_len, rx_status);
1108
1109 skb = dev_alloc_skb(pkt_len+2);
1110
1111 if (skb != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 skb_reserve(skb, 2);
1113 insw(ioaddr + AM2150_RCV, skb_put(skb, pkt_len), pkt_len>>1);
1114 if (pkt_len & 1)
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001115 *(skb_tail_pointer(skb) - 1) = inb(ioaddr + AM2150_RCV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 skb->protocol = eth_type_trans(skb, dev);
1117
1118 netif_rx(skb); /* Send the packet to the upper (protocol) layers. */
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 lp->linux_stats.rx_packets++;
Florin Malita6f258912006-06-04 02:51:26 -07001121 lp->linux_stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 outb(0xFF, ioaddr + AM2150_RCV_NEXT); /* skip to next frame */
1123 continue;
1124 } else {
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001125 pr_debug("%s: couldn't allocate a sk_buff of size"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 " %d.\n", dev->name, pkt_len);
1127 lp->linux_stats.rx_dropped++;
1128 }
1129 }
1130 outb(0xFF, ioaddr + AM2150_RCV_NEXT); /* skip to next frame */
1131 } /* while */
1132
1133 return 0;
1134} /* mace_rx */
1135
1136/* ----------------------------------------------------------------------------
1137pr_linux_stats
1138---------------------------------------------------------------------------- */
1139static void pr_linux_stats(struct net_device_stats *pstats)
1140{
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001141 pr_debug("pr_linux_stats\n");
1142 pr_debug(" rx_packets=%-7ld tx_packets=%ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 (long)pstats->rx_packets, (long)pstats->tx_packets);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001144 pr_debug(" rx_errors=%-7ld tx_errors=%ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 (long)pstats->rx_errors, (long)pstats->tx_errors);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001146 pr_debug(" rx_dropped=%-7ld tx_dropped=%ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 (long)pstats->rx_dropped, (long)pstats->tx_dropped);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001148 pr_debug(" multicast=%-7ld collisions=%ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 (long)pstats->multicast, (long)pstats->collisions);
1150
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001151 pr_debug(" rx_length_errors=%-7ld rx_over_errors=%ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 (long)pstats->rx_length_errors, (long)pstats->rx_over_errors);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001153 pr_debug(" rx_crc_errors=%-7ld rx_frame_errors=%ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 (long)pstats->rx_crc_errors, (long)pstats->rx_frame_errors);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001155 pr_debug(" rx_fifo_errors=%-7ld rx_missed_errors=%ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 (long)pstats->rx_fifo_errors, (long)pstats->rx_missed_errors);
1157
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001158 pr_debug(" tx_aborted_errors=%-7ld tx_carrier_errors=%ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 (long)pstats->tx_aborted_errors, (long)pstats->tx_carrier_errors);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001160 pr_debug(" tx_fifo_errors=%-7ld tx_heartbeat_errors=%ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 (long)pstats->tx_fifo_errors, (long)pstats->tx_heartbeat_errors);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001162 pr_debug(" tx_window_errors=%ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 (long)pstats->tx_window_errors);
1164} /* pr_linux_stats */
1165
1166/* ----------------------------------------------------------------------------
1167pr_mace_stats
1168---------------------------------------------------------------------------- */
1169static void pr_mace_stats(mace_statistics *pstats)
1170{
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001171 pr_debug("pr_mace_stats\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001173 pr_debug(" xmtsv=%-7d uflo=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 pstats->xmtsv, pstats->uflo);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001175 pr_debug(" lcol=%-7d more=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 pstats->lcol, pstats->more);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001177 pr_debug(" one=%-7d defer=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 pstats->one, pstats->defer);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001179 pr_debug(" lcar=%-7d rtry=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 pstats->lcar, pstats->rtry);
1181
1182 /* MACE_XMTRC */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001183 pr_debug(" exdef=%-7d xmtrc=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 pstats->exdef, pstats->xmtrc);
1185
1186 /* RFS1--Receive Status (RCVSTS) */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001187 pr_debug(" oflo=%-7d clsn=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 pstats->oflo, pstats->clsn);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001189 pr_debug(" fram=%-7d fcs=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 pstats->fram, pstats->fcs);
1191
1192 /* RFS2--Runt Packet Count (RNTPC) */
1193 /* RFS3--Receive Collision Count (RCVCC) */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001194 pr_debug(" rfs_rntpc=%-7d rfs_rcvcc=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 pstats->rfs_rntpc, pstats->rfs_rcvcc);
1196
1197 /* MACE_IR */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001198 pr_debug(" jab=%-7d babl=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 pstats->jab, pstats->babl);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001200 pr_debug(" cerr=%-7d rcvcco=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 pstats->cerr, pstats->rcvcco);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001202 pr_debug(" rntpco=%-7d mpco=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 pstats->rntpco, pstats->mpco);
1204
1205 /* MACE_MPC */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001206 pr_debug(" mpc=%d\n", pstats->mpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 /* MACE_RNTPC */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001209 pr_debug(" rntpc=%d\n", pstats->rntpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 /* MACE_RCVCC */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001212 pr_debug(" rcvcc=%d\n", pstats->rcvcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214} /* pr_mace_stats */
1215
1216/* ----------------------------------------------------------------------------
1217update_stats
1218 Update statistics. We change to register window 1, so this
1219 should be run single-threaded if the device is active. This is
1220 expected to be a rare operation, and it's simpler for the rest
1221 of the driver to assume that window 0 is always valid rather
1222 than use a special window-state variable.
1223
1224 oflo & uflo should _never_ occur since it would mean the Xilinx
1225 was not able to transfer data between the MACE FIFO and the
1226 card's SRAM fast enough. If this happens, something is
1227 seriously wrong with the hardware.
1228---------------------------------------------------------------------------- */
Olof Johansson906da802008-02-04 22:27:35 -08001229static void update_stats(unsigned int ioaddr, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
1231 mace_private *lp = netdev_priv(dev);
1232
1233 lp->mace_stats.rcvcc += mace_read(lp, ioaddr, MACE_RCVCC);
1234 lp->mace_stats.rntpc += mace_read(lp, ioaddr, MACE_RNTPC);
1235 lp->mace_stats.mpc += mace_read(lp, ioaddr, MACE_MPC);
1236 /* At this point, mace_stats is fully updated for this call.
1237 We may now update the linux_stats. */
1238
1239 /* The MACE has no equivalent for linux_stats field which are commented
1240 out. */
1241
1242 /* lp->linux_stats.multicast; */
1243 lp->linux_stats.collisions =
1244 lp->mace_stats.rcvcco * 256 + lp->mace_stats.rcvcc;
1245 /* Collision: The MACE may retry sending a packet 15 times
1246 before giving up. The retry count is in XMTRC.
1247 Does each retry constitute a collision?
1248 If so, why doesn't the RCVCC record these collisions? */
1249
1250 /* detailed rx_errors: */
1251 lp->linux_stats.rx_length_errors =
1252 lp->mace_stats.rntpco * 256 + lp->mace_stats.rntpc;
1253 /* lp->linux_stats.rx_over_errors */
1254 lp->linux_stats.rx_crc_errors = lp->mace_stats.fcs;
1255 lp->linux_stats.rx_frame_errors = lp->mace_stats.fram;
1256 lp->linux_stats.rx_fifo_errors = lp->mace_stats.oflo;
1257 lp->linux_stats.rx_missed_errors =
1258 lp->mace_stats.mpco * 256 + lp->mace_stats.mpc;
1259
1260 /* detailed tx_errors */
1261 lp->linux_stats.tx_aborted_errors = lp->mace_stats.rtry;
1262 lp->linux_stats.tx_carrier_errors = lp->mace_stats.lcar;
1263 /* LCAR usually results from bad cabling. */
1264 lp->linux_stats.tx_fifo_errors = lp->mace_stats.uflo;
1265 lp->linux_stats.tx_heartbeat_errors = lp->mace_stats.cerr;
1266 /* lp->linux_stats.tx_window_errors; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267} /* update_stats */
1268
1269/* ----------------------------------------------------------------------------
1270mace_get_stats
1271 Gathers ethernet statistics from the MACE chip.
1272---------------------------------------------------------------------------- */
1273static struct net_device_stats *mace_get_stats(struct net_device *dev)
1274{
1275 mace_private *lp = netdev_priv(dev);
1276
1277 update_stats(dev->base_addr, dev);
1278
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001279 pr_debug("%s: updating the statistics.\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 pr_linux_stats(&lp->linux_stats);
1281 pr_mace_stats(&lp->mace_stats);
1282
1283 return &lp->linux_stats;
1284} /* net_device_stats */
1285
1286/* ----------------------------------------------------------------------------
1287updateCRC
1288 Modified from Am79C90 data sheet.
1289---------------------------------------------------------------------------- */
1290
1291#ifdef BROKEN_MULTICAST
1292
1293static void updateCRC(int *CRC, int bit)
1294{
Joe Perches215faf92010-12-21 02:16:10 -08001295 static const int poly[]={
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 1,1,1,0, 1,1,0,1,
1297 1,0,1,1, 1,0,0,0,
1298 1,0,0,0, 0,0,1,1,
1299 0,0,1,0, 0,0,0,0
1300 }; /* CRC polynomial. poly[n] = coefficient of the x**n term of the
1301 CRC generator polynomial. */
1302
1303 int j;
1304
1305 /* shift CRC and control bit (CRC[32]) */
1306 for (j = 32; j > 0; j--)
1307 CRC[j] = CRC[j-1];
1308 CRC[0] = 0;
1309
1310 /* If bit XOR(control bit) = 1, set CRC = CRC XOR polynomial. */
1311 if (bit ^ CRC[32])
1312 for (j = 0; j < 32; j++)
1313 CRC[j] ^= poly[j];
1314} /* updateCRC */
1315
1316/* ----------------------------------------------------------------------------
1317BuildLAF
1318 Build logical address filter.
1319 Modified from Am79C90 data sheet.
1320
1321Input
1322 ladrf: logical address filter (contents initialized to 0)
1323 adr: ethernet address
1324---------------------------------------------------------------------------- */
1325static void BuildLAF(int *ladrf, int *adr)
1326{
1327 int CRC[33]={1}; /* CRC register, 1 word/bit + extra control bit */
1328
1329 int i, byte; /* temporary array indices */
1330 int hashcode; /* the output object */
1331
1332 CRC[32]=0;
1333
1334 for (byte = 0; byte < 6; byte++)
1335 for (i = 0; i < 8; i++)
1336 updateCRC(CRC, (adr[byte] >> i) & 1);
1337
1338 hashcode = 0;
1339 for (i = 0; i < 6; i++)
1340 hashcode = (hashcode << 1) + CRC[i];
1341
1342 byte = hashcode >> 3;
1343 ladrf[byte] |= (1 << (hashcode & 7));
1344
1345#ifdef PCMCIA_DEBUG
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001346 if (0)
Joe Perchesad361c92009-07-06 13:05:40 -07001347 printk(KERN_DEBUG " adr =%pM\n", adr);
1348 printk(KERN_DEBUG " hashcode = %d(decimal), ladrf[0:63] =", hashcode);
1349 for (i = 0; i < 8; i++)
Joe Perches636b8112010-08-12 12:22:51 +00001350 pr_cont(" %02X", ladrf[i]);
1351 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352#endif
1353} /* BuildLAF */
1354
1355/* ----------------------------------------------------------------------------
1356restore_multicast_list
1357 Restores the multicast filter for MACE chip to the last
1358 set_multicast_list() call.
1359
1360Input
1361 multicast_num_addrs
1362 multicast_ladrf[]
1363---------------------------------------------------------------------------- */
1364static void restore_multicast_list(struct net_device *dev)
1365{
1366 mace_private *lp = netdev_priv(dev);
1367 int num_addrs = lp->multicast_num_addrs;
1368 int *ladrf = lp->multicast_ladrf;
Olof Johansson906da802008-02-04 22:27:35 -08001369 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 int i;
1371
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001372 pr_debug("%s: restoring Rx mode to %d addresses.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 dev->name, num_addrs);
1374
1375 if (num_addrs > 0) {
1376
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001377 pr_debug("Attempt to restore multicast list detected.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 mace_write(lp, ioaddr, MACE_IAC, MACE_IAC_ADDRCHG | MACE_IAC_LOGADDR);
1380 /* Poll ADDRCHG bit */
1381 while (mace_read(lp, ioaddr, MACE_IAC) & MACE_IAC_ADDRCHG)
1382 ;
1383 /* Set LADRF register */
1384 for (i = 0; i < MACE_LADRF_LEN; i++)
1385 mace_write(lp, ioaddr, MACE_LADRF, ladrf[i]);
1386
1387 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_RCVFCSE | MACE_UTR_LOOP_EXTERNAL);
1388 mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1389
1390 } else if (num_addrs < 0) {
1391
1392 /* Promiscuous mode: receive all packets */
1393 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1394 mace_write(lp, ioaddr, MACE_MACCC,
1395 MACE_MACCC_PROM | MACE_MACCC_ENXMT | MACE_MACCC_ENRCV
1396 );
1397
1398 } else {
1399
1400 /* Normal mode */
1401 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1402 mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1403
1404 }
1405} /* restore_multicast_list */
1406
1407/* ----------------------------------------------------------------------------
1408set_multicast_list
1409 Set or clear the multicast filter for this adaptor.
1410
1411Input
1412 num_addrs == -1 Promiscuous mode, receive all packets
1413 num_addrs == 0 Normal mode, clear multicast list
1414 num_addrs > 0 Multicast mode, receive normal and MC packets, and do
1415 best-effort filtering.
1416Output
1417 multicast_num_addrs
1418 multicast_ladrf[]
1419---------------------------------------------------------------------------- */
1420
1421static void set_multicast_list(struct net_device *dev)
1422{
1423 mace_private *lp = netdev_priv(dev);
1424 int adr[ETHER_ADDR_LEN] = {0}; /* Ethernet address */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001425 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427#ifdef PCMCIA_DEBUG
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001428 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 static int old;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001430 if (netdev_mc_count(dev) != old) {
1431 old = netdev_mc_count(dev);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001432 pr_debug("%s: setting Rx mode to %d addresses.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 dev->name, old);
1434 }
1435 }
1436#endif
1437
1438 /* Set multicast_num_addrs. */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001439 lp->multicast_num_addrs = netdev_mc_count(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 /* Set multicast_ladrf. */
1442 if (num_addrs > 0) {
1443 /* Calculate multicast logical address filter */
1444 memset(lp->multicast_ladrf, 0, MACE_LADRF_LEN);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001445 netdev_for_each_mc_addr(ha, dev) {
1446 memcpy(adr, ha->addr, ETHER_ADDR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 BuildLAF(lp->multicast_ladrf, adr);
1448 }
1449 }
1450
1451 restore_multicast_list(dev);
1452
1453} /* set_multicast_list */
1454
1455#endif /* BROKEN_MULTICAST */
1456
1457static void restore_multicast_list(struct net_device *dev)
1458{
Olof Johansson906da802008-02-04 22:27:35 -08001459 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 mace_private *lp = netdev_priv(dev);
1461
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001462 pr_debug("%s: restoring Rx mode to %d addresses.\n", dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 lp->multicast_num_addrs);
1464
1465 if (dev->flags & IFF_PROMISC) {
1466 /* Promiscuous mode: receive all packets */
1467 mace_write(lp,ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1468 mace_write(lp, ioaddr, MACE_MACCC,
1469 MACE_MACCC_PROM | MACE_MACCC_ENXMT | MACE_MACCC_ENRCV
1470 );
1471 } else {
1472 /* Normal mode */
1473 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1474 mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1475 }
1476} /* restore_multicast_list */
1477
1478static void set_multicast_list(struct net_device *dev)
1479{
1480 mace_private *lp = netdev_priv(dev);
1481
1482#ifdef PCMCIA_DEBUG
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001483 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 static int old;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001485 if (netdev_mc_count(dev) != old) {
1486 old = netdev_mc_count(dev);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001487 pr_debug("%s: setting Rx mode to %d addresses.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 dev->name, old);
1489 }
1490 }
1491#endif
1492
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001493 lp->multicast_num_addrs = netdev_mc_count(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 restore_multicast_list(dev);
1495
1496} /* set_multicast_list */
1497
Joe Perches25f8f542011-05-03 19:29:01 -07001498static const struct pcmcia_device_id nmclan_ids[] = {
Dominik Brodowskia58e26c2005-06-27 16:28:23 -07001499 PCMCIA_DEVICE_PROD_ID12("New Media Corporation", "Ethernet", 0x085a850b, 0x00b2e941),
Komurod277ad02005-07-28 01:07:24 -07001500 PCMCIA_DEVICE_PROD_ID12("Portable Add-ons", "Ethernet+", 0xebf1d60, 0xad673aaf),
Dominik Brodowskia58e26c2005-06-27 16:28:23 -07001501 PCMCIA_DEVICE_NULL,
1502};
1503MODULE_DEVICE_TABLE(pcmcia, nmclan_ids);
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505static struct pcmcia_driver nmclan_cs_driver = {
1506 .owner = THIS_MODULE,
Dominik Brodowski2e9b9812010-08-08 11:36:26 +02001507 .name = "nmclan_cs",
Dominik Brodowski15b99ac2006-03-31 17:26:06 +02001508 .probe = nmclan_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +01001509 .remove = nmclan_detach,
Dominik Brodowskia58e26c2005-06-27 16:28:23 -07001510 .id_table = nmclan_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001511 .suspend = nmclan_suspend,
1512 .resume = nmclan_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513};
1514
1515static int __init init_nmclan_cs(void)
1516{
1517 return pcmcia_register_driver(&nmclan_cs_driver);
1518}
1519
1520static void __exit exit_nmclan_cs(void)
1521{
1522 pcmcia_unregister_driver(&nmclan_cs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
1525module_init(init_nmclan_cs);
1526module_exit(exit_nmclan_cs);