1 /* ----------------------------------------------------------------------------
2 Linux PCMCIA ethernet adapter driver for the New Media Ethernet LAN.
3 nmclan_cs.c,v 0.16 1995/07/01 06:42:17 rpao Exp rpao
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.
9 Written by Roger C. Pao <rpao@paonet.org>
10 Copyright 1995 Roger C. Pao
11 Linux 2.5 cleanups Copyright Red Hat 2003
13 This software may be used and distributed according to the terms of
14 the GNU General Public License.
16 Ported to Linux 1.3.* network driver environment by
17 Matti Aarnio <mea@utu.fi>
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
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>
34 The Linux client driver is based on the 3c589_cs.c client driver by
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
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.
44 Special thanks for testing and help in debugging this driver goes
47 -------------------------------------------------------------------------------
48 Driver Notes and Issues
49 -------------------------------------------------------------------------------
51 1. Developed on a Dell 320SLi
52 PCMCIA Card Services 2.6.2
53 Linux dell 1.2.10 #1 Thu Jun 29 20:23:41 PDT 1995 i386
55 2. rc.pcmcia may require loading pcmcia_core with io_speed=300:
56 'insmod pcmcia_core.o io_speed=300'.
57 This will avoid problems with fast systems which causes rx_framecnt
58 to return random values.
60 3. If hot extraction does not work for you, use 'ifconfig eth0 down'
63 4. There is a bad slow-down problem in this driver.
65 5. Future: Multicast processing. In the meantime, do _not_ compile your
66 kernel with multicast ip enabled.
68 -------------------------------------------------------------------------------
70 -------------------------------------------------------------------------------
72 * 2.5.75-ac1 2003/07/11 Alan Cox <alan@lxorguk.ukuu.org.uk>
73 * Fixed hang on card eject as we probe it
74 * Cleaned up to use new style locking.
76 * Revision 0.16 1995/07/01 06:42:17 rpao
77 * Bug fix: nmclan_reset() called CardServices incorrectly.
79 * Revision 0.15 1995/05/24 08:09:47 rpao
80 * Re-implement MULTI_TX dev->tbusy handling.
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.
87 * Revision 0.13 1995/05/18 05:56:34 rpao
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.
92 * Revision 0.12 1995/05/14 00:12:23 rpao
93 * Statistics overhaul.
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.
101 Multiple transmit request processing.
102 Modified statistics to use MACE counters where possible.
103 95/05/10 rpao V0.09 Bug fix: Must use IO_DATA_PATH_WIDTH_AUTO.
106 Bug fix: Make all non-exported functions private by using
108 Bug fix: Test IntrCnt _before_ reading MACE_IR.
109 95/05/10 rpao V0.07 Statistics.
110 95/05/09 rpao V0.06 Fix rx_framecnt problem by addition of PCIC wait states.
112 ---------------------------------------------------------------------------- */
114 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
116 #define DRV_NAME "nmclan_cs"
117 #define DRV_VERSION "0.16"
120 /* ----------------------------------------------------------------------------
121 Conditional Compilation Options
122 ---------------------------------------------------------------------------- */
125 #define RESET_ON_TIMEOUT 1
126 #define TX_INTERRUPTABLE 1
127 #define RESET_XILINX 0
129 /* ----------------------------------------------------------------------------
131 ---------------------------------------------------------------------------- */
133 #include <linux/module.h>
134 #include <linux/kernel.h>
135 #include <linux/ptrace.h>
136 #include <linux/slab.h>
137 #include <linux/string.h>
138 #include <linux/timer.h>
139 #include <linux/interrupt.h>
140 #include <linux/in.h>
141 #include <linux/delay.h>
142 #include <linux/ethtool.h>
143 #include <linux/netdevice.h>
144 #include <linux/etherdevice.h>
145 #include <linux/skbuff.h>
146 #include <linux/if_arp.h>
147 #include <linux/ioport.h>
148 #include <linux/bitops.h>
150 #include <pcmcia/cisreg.h>
151 #include <pcmcia/cistpl.h>
152 #include <pcmcia/ds.h>
154 #include <asm/uaccess.h>
157 /* ----------------------------------------------------------------------------
159 ---------------------------------------------------------------------------- */
161 #define MACE_LADRF_LEN 8
162 /* 8 bytes in Logical Address Filter */
164 /* Loop Control Defines */
165 #define MACE_MAX_IR_ITERATIONS 10
166 #define MACE_MAX_RX_ITERATIONS 12
168 TBD: Dean brought this up, and I assumed the hardware would
171 If MACE_MAX_RX_ITERATIONS is > 1, rx_framecnt may still be
172 non-zero when the isr exits. We may not get another interrupt
173 to process the remaining packets for some time.
177 The Am2150 has a Xilinx XC3042 field programmable gate array (FPGA)
178 which manages the interface between the MACE and the PCMCIA bus. It
179 also includes buffer management for the 32K x 8 SRAM to control up to
180 four transmit and 12 receive frames at a time.
182 #define AM2150_MAX_TX_FRAMES 4
183 #define AM2150_MAX_RX_FRAMES 12
185 /* Am2150 Ethernet Card I/O Mapping */
186 #define AM2150_RCV 0x00
187 #define AM2150_XMT 0x04
188 #define AM2150_XMT_SKIP 0x09
189 #define AM2150_RCV_NEXT 0x0A
190 #define AM2150_RCV_FRAME_COUNT 0x0B
191 #define AM2150_MACE_BANK 0x0C
192 #define AM2150_MACE_BASE 0x10
195 #define MACE_RCVFIFO 0
196 #define MACE_XMTFIFO 1
202 #define MACE_FIFOFC 7
206 #define MACE_BIUCC 11
207 #define MACE_FIFOCC 12
208 #define MACE_MACCC 13
209 #define MACE_PLSCC 14
210 #define MACE_PHYCC 15
211 #define MACE_CHIPIDL 16
212 #define MACE_CHIPIDH 17
215 #define MACE_LADRF 20
221 #define MACE_RNTPC 26
222 #define MACE_RCVCC 27
229 #define MACE_XMTRC_EXDEF 0x80
230 #define MACE_XMTRC_XMTRC 0x0F
232 #define MACE_XMTFS_XMTSV 0x80
233 #define MACE_XMTFS_UFLO 0x40
234 #define MACE_XMTFS_LCOL 0x20
235 #define MACE_XMTFS_MORE 0x10
236 #define MACE_XMTFS_ONE 0x08
237 #define MACE_XMTFS_DEFER 0x04
238 #define MACE_XMTFS_LCAR 0x02
239 #define MACE_XMTFS_RTRY 0x01
241 #define MACE_RCVFS_RCVSTS 0xF000
242 #define MACE_RCVFS_OFLO 0x8000
243 #define MACE_RCVFS_CLSN 0x4000
244 #define MACE_RCVFS_FRAM 0x2000
245 #define MACE_RCVFS_FCS 0x1000
247 #define MACE_FIFOFC_RCVFC 0xF0
248 #define MACE_FIFOFC_XMTFC 0x0F
250 #define MACE_IR_JAB 0x80
251 #define MACE_IR_BABL 0x40
252 #define MACE_IR_CERR 0x20
253 #define MACE_IR_RCVCCO 0x10
254 #define MACE_IR_RNTPCO 0x08
255 #define MACE_IR_MPCO 0x04
256 #define MACE_IR_RCVINT 0x02
257 #define MACE_IR_XMTINT 0x01
259 #define MACE_MACCC_PROM 0x80
260 #define MACE_MACCC_DXMT2PD 0x40
261 #define MACE_MACCC_EMBA 0x20
262 #define MACE_MACCC_RESERVED 0x10
263 #define MACE_MACCC_DRCVPA 0x08
264 #define MACE_MACCC_DRCVBC 0x04
265 #define MACE_MACCC_ENXMT 0x02
266 #define MACE_MACCC_ENRCV 0x01
268 #define MACE_PHYCC_LNKFL 0x80
269 #define MACE_PHYCC_DLNKTST 0x40
270 #define MACE_PHYCC_REVPOL 0x20
271 #define MACE_PHYCC_DAPC 0x10
272 #define MACE_PHYCC_LRT 0x08
273 #define MACE_PHYCC_ASEL 0x04
274 #define MACE_PHYCC_RWAKE 0x02
275 #define MACE_PHYCC_AWAKE 0x01
277 #define MACE_IAC_ADDRCHG 0x80
278 #define MACE_IAC_PHYADDR 0x04
279 #define MACE_IAC_LOGADDR 0x02
281 #define MACE_UTR_RTRE 0x80
282 #define MACE_UTR_RTRD 0x40
283 #define MACE_UTR_RPA 0x20
284 #define MACE_UTR_FCOLL 0x10
285 #define MACE_UTR_RCVFCSE 0x08
286 #define MACE_UTR_LOOP_INCL_MENDEC 0x06
287 #define MACE_UTR_LOOP_NO_MENDEC 0x04
288 #define MACE_UTR_LOOP_EXTERNAL 0x02
289 #define MACE_UTR_LOOP_NONE 0x00
290 #define MACE_UTR_RESERVED 0x01
292 /* Switch MACE register bank (only 0 and 1 are valid) */
293 #define MACEBANK(win_num) outb((win_num), ioaddr + AM2150_MACE_BANK)
295 #define MACE_IMR_DEFAULT \
306 #undef MACE_IMR_DEFAULT
307 #define MACE_IMR_DEFAULT 0x00 /* New statistics handling: grab everything */
309 #define TX_TIMEOUT ((400*HZ)/1000)
311 /* ----------------------------------------------------------------------------
313 ---------------------------------------------------------------------------- */
315 typedef struct _mace_statistics
{
330 /* RFS1--Receive Status (RCVSTS) */
336 /* RFS2--Runt Packet Count (RNTPC) */
339 /* RFS3--Receive Collision Count (RCVCC) */
360 typedef struct _mace_private
{
361 struct pcmcia_device
*p_dev
;
362 struct net_device_stats linux_stats
; /* Linux statistics counters */
363 mace_statistics mace_stats
; /* MACE chip statistics counters */
365 /* restore_multicast_list() state variables */
366 int multicast_ladrf
[MACE_LADRF_LEN
]; /* Logical address filter */
367 int multicast_num_addrs
;
369 char tx_free_frames
; /* Number of free transmit frame buffers */
370 char tx_irq_disabled
; /* MACE TX interrupt disabled */
372 spinlock_t bank_lock
; /* Must be held if you step off bank 0 */
375 /* ----------------------------------------------------------------------------
376 Private Global Variables
377 ---------------------------------------------------------------------------- */
379 static const char *if_names
[]={
380 "Auto", "10baseT", "BNC",
383 /* ----------------------------------------------------------------------------
385 These are the parameters that can be set during loading with
387 ---------------------------------------------------------------------------- */
389 MODULE_DESCRIPTION("New Media PCMCIA ethernet driver");
390 MODULE_LICENSE("GPL");
392 #define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0)
394 /* 0=auto, 1=10baseT, 2 = 10base2, default=auto */
395 INT_MODULE_PARM(if_port
, 0);
398 /* ----------------------------------------------------------------------------
400 ---------------------------------------------------------------------------- */
402 static int nmclan_config(struct pcmcia_device
*link
);
403 static void nmclan_release(struct pcmcia_device
*link
);
405 static void nmclan_reset(struct net_device
*dev
);
406 static int mace_config(struct net_device
*dev
, struct ifmap
*map
);
407 static int mace_open(struct net_device
*dev
);
408 static int mace_close(struct net_device
*dev
);
409 static netdev_tx_t
mace_start_xmit(struct sk_buff
*skb
,
410 struct net_device
*dev
);
411 static void mace_tx_timeout(struct net_device
*dev
);
412 static irqreturn_t
mace_interrupt(int irq
, void *dev_id
);
413 static struct net_device_stats
*mace_get_stats(struct net_device
*dev
);
414 static int mace_rx(struct net_device
*dev
, unsigned char RxCnt
);
415 static void restore_multicast_list(struct net_device
*dev
);
416 static void set_multicast_list(struct net_device
*dev
);
417 static const struct ethtool_ops netdev_ethtool_ops
;
420 static void nmclan_detach(struct pcmcia_device
*p_dev
);
422 static const struct net_device_ops mace_netdev_ops
= {
423 .ndo_open
= mace_open
,
424 .ndo_stop
= mace_close
,
425 .ndo_start_xmit
= mace_start_xmit
,
426 .ndo_tx_timeout
= mace_tx_timeout
,
427 .ndo_set_config
= mace_config
,
428 .ndo_get_stats
= mace_get_stats
,
429 .ndo_set_rx_mode
= set_multicast_list
,
430 .ndo_change_mtu
= eth_change_mtu
,
431 .ndo_set_mac_address
= eth_mac_addr
,
432 .ndo_validate_addr
= eth_validate_addr
,
435 static int nmclan_probe(struct pcmcia_device
*link
)
438 struct net_device
*dev
;
440 dev_dbg(&link
->dev
, "nmclan_attach()\n");
442 /* Create new ethernet device */
443 dev
= alloc_etherdev(sizeof(mace_private
));
446 lp
= netdev_priv(dev
);
450 spin_lock_init(&lp
->bank_lock
);
451 link
->resource
[0]->end
= 32;
452 link
->resource
[0]->flags
|= IO_DATA_PATH_WIDTH_AUTO
;
453 link
->config_flags
|= CONF_ENABLE_IRQ
;
454 link
->config_index
= 1;
455 link
->config_regs
= PRESENT_OPTION
;
457 lp
->tx_free_frames
=AM2150_MAX_TX_FRAMES
;
459 dev
->netdev_ops
= &mace_netdev_ops
;
460 dev
->ethtool_ops
= &netdev_ethtool_ops
;
461 dev
->watchdog_timeo
= TX_TIMEOUT
;
463 return nmclan_config(link
);
464 } /* nmclan_attach */
466 static void nmclan_detach(struct pcmcia_device
*link
)
468 struct net_device
*dev
= link
->priv
;
470 dev_dbg(&link
->dev
, "nmclan_detach\n");
472 unregister_netdev(dev
);
474 nmclan_release(link
);
477 } /* nmclan_detach */
479 /* ----------------------------------------------------------------------------
481 Reads a MACE register. This is bank independent; however, the
482 caller must ensure that this call is not interruptable. We are
483 assuming that during normal operation, the MACE is always in
485 ---------------------------------------------------------------------------- */
486 static int mace_read(mace_private
*lp
, unsigned int ioaddr
, int reg
)
492 case 0: /* register 0-15 */
493 data
= inb(ioaddr
+ AM2150_MACE_BASE
+ reg
);
495 case 1: /* register 16-31 */
496 spin_lock_irqsave(&lp
->bank_lock
, flags
);
498 data
= inb(ioaddr
+ AM2150_MACE_BASE
+ (reg
& 0x0F));
500 spin_unlock_irqrestore(&lp
->bank_lock
, flags
);
506 /* ----------------------------------------------------------------------------
508 Writes to a MACE register. This is bank independent; however,
509 the caller must ensure that this call is not interruptable. We
510 are assuming that during normal operation, the MACE is always in
512 ---------------------------------------------------------------------------- */
513 static void mace_write(mace_private
*lp
, unsigned int ioaddr
, int reg
,
519 case 0: /* register 0-15 */
520 outb(data
& 0xFF, ioaddr
+ AM2150_MACE_BASE
+ reg
);
522 case 1: /* register 16-31 */
523 spin_lock_irqsave(&lp
->bank_lock
, flags
);
525 outb(data
& 0xFF, ioaddr
+ AM2150_MACE_BASE
+ (reg
& 0x0F));
527 spin_unlock_irqrestore(&lp
->bank_lock
, flags
);
532 /* ----------------------------------------------------------------------------
534 Resets the MACE chip.
535 ---------------------------------------------------------------------------- */
536 static int mace_init(mace_private
*lp
, unsigned int ioaddr
, char *enet_addr
)
541 /* MACE Software reset */
542 mace_write(lp
, ioaddr
, MACE_BIUCC
, 1);
543 while (mace_read(lp
, ioaddr
, MACE_BIUCC
) & 0x01) {
544 /* Wait for reset bit to be cleared automatically after <= 200ns */;
547 pr_err("reset failed, card removed?\n");
552 mace_write(lp
, ioaddr
, MACE_BIUCC
, 0);
554 /* The Am2150 requires that the MACE FIFOs operate in burst mode. */
555 mace_write(lp
, ioaddr
, MACE_FIFOCC
, 0x0F);
557 mace_write(lp
,ioaddr
, MACE_RCVFC
, 0); /* Disable Auto Strip Receive */
558 mace_write(lp
, ioaddr
, MACE_IMR
, 0xFF); /* Disable all interrupts until _open */
561 * Bit 2-1 PORTSEL[1-0] Port Select.
564 * 10 DAI Port (reserved in Am2150)
566 * For this card, only the first two are valid.
567 * So, PLSCC should be set to
570 * Or just set ASEL in PHYCC below!
574 mace_write(lp
, ioaddr
, MACE_PLSCC
, 0x02);
577 mace_write(lp
, ioaddr
, MACE_PLSCC
, 0x00);
580 mace_write(lp
, ioaddr
, MACE_PHYCC
, /* ASEL */ 4);
581 /* ASEL Auto Select. When set, the PORTSEL[1-0] bits are overridden,
582 and the MACE device will automatically select the operating media
587 mace_write(lp
, ioaddr
, MACE_IAC
, MACE_IAC_ADDRCHG
| MACE_IAC_PHYADDR
);
588 /* Poll ADDRCHG bit */
590 while (mace_read(lp
, ioaddr
, MACE_IAC
) & MACE_IAC_ADDRCHG
)
594 pr_err("ADDRCHG timeout, card removed?\n");
598 /* Set PADR register */
599 for (i
= 0; i
< ETH_ALEN
; i
++)
600 mace_write(lp
, ioaddr
, MACE_PADR
, enet_addr
[i
]);
602 /* MAC Configuration Control Register should be written last */
603 /* Let set_multicast_list set this. */
604 /* mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV); */
605 mace_write(lp
, ioaddr
, MACE_MACCC
, 0x00);
609 static int nmclan_config(struct pcmcia_device
*link
)
611 struct net_device
*dev
= link
->priv
;
612 mace_private
*lp
= netdev_priv(dev
);
618 dev_dbg(&link
->dev
, "nmclan_config\n");
621 ret
= pcmcia_request_io(link
);
624 ret
= pcmcia_request_irq(link
, mace_interrupt
);
627 ret
= pcmcia_enable_device(link
);
631 dev
->irq
= link
->irq
;
632 dev
->base_addr
= link
->resource
[0]->start
;
634 ioaddr
= dev
->base_addr
;
636 /* Read the ethernet address from the CIS. */
637 len
= pcmcia_get_tuple(link
, 0x80, &buf
);
638 if (!buf
|| len
< ETH_ALEN
) {
642 memcpy(dev
->dev_addr
, buf
, ETH_ALEN
);
645 /* Verify configuration by reading the MACE ID. */
649 sig
[0] = mace_read(lp
, ioaddr
, MACE_CHIPIDL
);
650 sig
[1] = mace_read(lp
, ioaddr
, MACE_CHIPIDH
);
651 if ((sig
[0] == 0x40) && ((sig
[1] & 0x0F) == 0x09)) {
652 dev_dbg(&link
->dev
, "nmclan_cs configured: mace id=%x %x\n",
655 pr_notice("mace id not found: %x %x should be 0x40 0x?9\n",
661 if(mace_init(lp
, ioaddr
, dev
->dev_addr
) == -1)
664 /* The if_port symbol can be set when the module is loaded */
666 dev
->if_port
= if_port
;
668 pr_notice("invalid if_port requested\n");
670 SET_NETDEV_DEV(dev
, &link
->dev
);
672 i
= register_netdev(dev
);
674 pr_notice("register_netdev() failed\n");
678 netdev_info(dev
, "nmclan: port %#3lx, irq %d, %s port, hw_addr %pM\n",
679 dev
->base_addr
, dev
->irq
, if_names
[dev
->if_port
], dev
->dev_addr
);
683 nmclan_release(link
);
685 } /* nmclan_config */
687 static void nmclan_release(struct pcmcia_device
*link
)
689 dev_dbg(&link
->dev
, "nmclan_release\n");
690 pcmcia_disable_device(link
);
693 static int nmclan_suspend(struct pcmcia_device
*link
)
695 struct net_device
*dev
= link
->priv
;
698 netif_device_detach(dev
);
703 static int nmclan_resume(struct pcmcia_device
*link
)
705 struct net_device
*dev
= link
->priv
;
709 netif_device_attach(dev
);
716 /* ----------------------------------------------------------------------------
718 Reset and restore all of the Xilinx and MACE registers.
719 ---------------------------------------------------------------------------- */
720 static void nmclan_reset(struct net_device
*dev
)
722 mace_private
*lp
= netdev_priv(dev
);
725 struct pcmcia_device
*link
= &lp
->link
;
728 /* Save original COR value */
729 pcmcia_read_config_byte(link
, CISREG_COR
, &OrigCorValue
);
732 dev_dbg(&link
->dev
, "nmclan_reset: OrigCorValue=0x%x, resetting...\n",
734 pcmcia_write_config_byte(link
, CISREG_COR
, COR_SOFT_RESET
);
735 /* Need to wait for 20 ms for PCMCIA to finish reset. */
737 /* Restore original COR configuration index */
738 pcmcia_write_config_byte(link
, CISREG_COR
,
739 (COR_LEVEL_REQ
| (OrigCorValue
& COR_CONFIG_MASK
)));
740 /* Xilinx is now completely reset along with the MACE chip. */
741 lp
->tx_free_frames
=AM2150_MAX_TX_FRAMES
;
743 #endif /* #if RESET_XILINX */
745 /* Xilinx is now completely reset along with the MACE chip. */
746 lp
->tx_free_frames
=AM2150_MAX_TX_FRAMES
;
748 /* Reinitialize the MACE chip for operation. */
749 mace_init(lp
, dev
->base_addr
, dev
->dev_addr
);
750 mace_write(lp
, dev
->base_addr
, MACE_IMR
, MACE_IMR_DEFAULT
);
752 /* Restore the multicast list and enable TX and RX. */
753 restore_multicast_list(dev
);
756 /* ----------------------------------------------------------------------------
758 [Someone tell me what this is supposed to do? Is if_port a defined
759 standard? If so, there should be defines to indicate 1=10Base-T,
760 2=10Base-2, etc. including limited automatic detection.]
761 ---------------------------------------------------------------------------- */
762 static int mace_config(struct net_device
*dev
, struct ifmap
*map
)
764 if ((map
->port
!= (u_char
)(-1)) && (map
->port
!= dev
->if_port
)) {
765 if (map
->port
<= 2) {
766 dev
->if_port
= map
->port
;
767 netdev_info(dev
, "switched to %s port\n", if_names
[dev
->if_port
]);
774 /* ----------------------------------------------------------------------------
777 ---------------------------------------------------------------------------- */
778 static int mace_open(struct net_device
*dev
)
780 unsigned int ioaddr
= dev
->base_addr
;
781 mace_private
*lp
= netdev_priv(dev
);
782 struct pcmcia_device
*link
= lp
->p_dev
;
784 if (!pcmcia_dev_present(link
))
791 netif_start_queue(dev
);
794 return 0; /* Always succeed */
797 /* ----------------------------------------------------------------------------
799 Closes device driver.
800 ---------------------------------------------------------------------------- */
801 static int mace_close(struct net_device
*dev
)
803 unsigned int ioaddr
= dev
->base_addr
;
804 mace_private
*lp
= netdev_priv(dev
);
805 struct pcmcia_device
*link
= lp
->p_dev
;
807 dev_dbg(&link
->dev
, "%s: shutting down ethercard.\n", dev
->name
);
809 /* Mask off all interrupts from the MACE chip. */
810 outb(0xFF, ioaddr
+ AM2150_MACE_BASE
+ MACE_IMR
);
813 netif_stop_queue(dev
);
818 static void netdev_get_drvinfo(struct net_device
*dev
,
819 struct ethtool_drvinfo
*info
)
821 strlcpy(info
->driver
, DRV_NAME
, sizeof(info
->driver
));
822 strlcpy(info
->version
, DRV_VERSION
, sizeof(info
->version
));
823 snprintf(info
->bus_info
, sizeof(info
->bus_info
),
824 "PCMCIA 0x%lx", dev
->base_addr
);
827 static const struct ethtool_ops netdev_ethtool_ops
= {
828 .get_drvinfo
= netdev_get_drvinfo
,
831 /* ----------------------------------------------------------------------------
833 This routine begins the packet transmit function. When completed,
834 it will generate a transmit interrupt.
836 According to /usr/src/linux/net/inet/dev.c, if _start_xmit
837 returns 0, the "packet is now solely the responsibility of the
838 driver." If _start_xmit returns non-zero, the "transmission
839 failed, put skb back into a list."
840 ---------------------------------------------------------------------------- */
842 static void mace_tx_timeout(struct net_device
*dev
)
844 mace_private
*lp
= netdev_priv(dev
);
845 struct pcmcia_device
*link
= lp
->p_dev
;
847 netdev_notice(dev
, "transmit timed out -- ");
849 pr_cont("resetting card\n");
850 pcmcia_reset_card(link
->socket
);
851 #else /* #if RESET_ON_TIMEOUT */
852 pr_cont("NOT resetting card\n");
853 #endif /* #if RESET_ON_TIMEOUT */
854 netif_trans_update(dev
); /* prevent tx timeout */
855 netif_wake_queue(dev
);
858 static netdev_tx_t
mace_start_xmit(struct sk_buff
*skb
,
859 struct net_device
*dev
)
861 mace_private
*lp
= netdev_priv(dev
);
862 unsigned int ioaddr
= dev
->base_addr
;
864 netif_stop_queue(dev
);
866 pr_debug("%s: mace_start_xmit(length = %ld) called.\n",
867 dev
->name
, (long)skb
->len
);
869 #if (!TX_INTERRUPTABLE)
870 /* Disable MACE TX interrupts. */
871 outb(MACE_IMR_DEFAULT
| MACE_IR_XMTINT
,
872 ioaddr
+ AM2150_MACE_BASE
+ MACE_IMR
);
873 lp
->tx_irq_disabled
=1;
874 #endif /* #if (!TX_INTERRUPTABLE) */
877 /* This block must not be interrupted by another transmit request!
878 mace_tx_timeout will take care of timer-based retransmissions from
879 the upper layers. The interrupt handler is guaranteed never to
880 service a transmit interrupt while we are in here.
883 lp
->linux_stats
.tx_bytes
+= skb
->len
;
884 lp
->tx_free_frames
--;
886 /* WARNING: Write the _exact_ number of bytes written in the header! */
887 /* Put out the word header [must be an outw()] . . . */
888 outw(skb
->len
, ioaddr
+ AM2150_XMT
);
889 /* . . . and the packet [may be any combination of outw() and outb()] */
890 outsw(ioaddr
+ AM2150_XMT
, skb
->data
, skb
->len
>> 1);
892 /* Odd byte transfer */
893 outb(skb
->data
[skb
->len
-1], ioaddr
+ AM2150_XMT
);
897 if (lp
->tx_free_frames
> 0)
898 netif_start_queue(dev
);
899 #endif /* #if MULTI_TX */
902 #if (!TX_INTERRUPTABLE)
903 /* Re-enable MACE TX interrupts. */
904 lp
->tx_irq_disabled
=0;
905 outb(MACE_IMR_DEFAULT
, ioaddr
+ AM2150_MACE_BASE
+ MACE_IMR
);
906 #endif /* #if (!TX_INTERRUPTABLE) */
911 } /* mace_start_xmit */
913 /* ----------------------------------------------------------------------------
915 The interrupt handler.
916 ---------------------------------------------------------------------------- */
917 static irqreturn_t
mace_interrupt(int irq
, void *dev_id
)
919 struct net_device
*dev
= (struct net_device
*) dev_id
;
920 mace_private
*lp
= netdev_priv(dev
);
923 int IntrCnt
= MACE_MAX_IR_ITERATIONS
;
926 pr_debug("mace_interrupt(): irq 0x%X for unknown device.\n",
931 ioaddr
= dev
->base_addr
;
933 if (lp
->tx_irq_disabled
) {
935 if (lp
->tx_irq_disabled
)
936 msg
= "Interrupt with tx_irq_disabled";
938 msg
= "Re-entering the interrupt handler";
939 netdev_notice(dev
, "%s [isr=%02X, imr=%02X]\n",
941 inb(ioaddr
+ AM2150_MACE_BASE
+ MACE_IR
),
942 inb(ioaddr
+ AM2150_MACE_BASE
+ MACE_IMR
));
943 /* WARNING: MACE_IR has been read! */
947 if (!netif_device_present(dev
)) {
948 netdev_dbg(dev
, "interrupt from dead card\n");
953 /* WARNING: MACE_IR is a READ/CLEAR port! */
954 status
= inb(ioaddr
+ AM2150_MACE_BASE
+ MACE_IR
);
955 if (!(status
& ~MACE_IMR_DEFAULT
) && IntrCnt
== MACE_MAX_IR_ITERATIONS
)
958 pr_debug("mace_interrupt: irq 0x%X status 0x%X.\n", irq
, status
);
960 if (status
& MACE_IR_RCVINT
) {
961 mace_rx(dev
, MACE_MAX_RX_ITERATIONS
);
964 if (status
& MACE_IR_XMTINT
) {
965 unsigned char fifofc
;
969 fifofc
= inb(ioaddr
+ AM2150_MACE_BASE
+ MACE_FIFOFC
);
970 if ((fifofc
& MACE_FIFOFC_XMTFC
)==0) {
971 lp
->linux_stats
.tx_errors
++;
972 outb(0xFF, ioaddr
+ AM2150_XMT_SKIP
);
975 /* Transmit Retry Count (XMTRC, reg 4) */
976 xmtrc
= inb(ioaddr
+ AM2150_MACE_BASE
+ MACE_XMTRC
);
977 if (xmtrc
& MACE_XMTRC_EXDEF
) lp
->mace_stats
.exdef
++;
978 lp
->mace_stats
.xmtrc
+= (xmtrc
& MACE_XMTRC_XMTRC
);
981 (xmtfs
= inb(ioaddr
+ AM2150_MACE_BASE
+ MACE_XMTFS
)) &
982 MACE_XMTFS_XMTSV
/* Transmit Status Valid */
984 lp
->mace_stats
.xmtsv
++;
986 if (xmtfs
& ~MACE_XMTFS_XMTSV
) {
987 if (xmtfs
& MACE_XMTFS_UFLO
) {
988 /* Underflow. Indicates that the Transmit FIFO emptied before
989 the end of frame was reached. */
990 lp
->mace_stats
.uflo
++;
992 if (xmtfs
& MACE_XMTFS_LCOL
) {
994 lp
->mace_stats
.lcol
++;
996 if (xmtfs
& MACE_XMTFS_MORE
) {
997 /* MORE than one retry was needed */
998 lp
->mace_stats
.more
++;
1000 if (xmtfs
& MACE_XMTFS_ONE
) {
1001 /* Exactly ONE retry occurred */
1002 lp
->mace_stats
.one
++;
1004 if (xmtfs
& MACE_XMTFS_DEFER
) {
1005 /* Transmission was defered */
1006 lp
->mace_stats
.defer
++;
1008 if (xmtfs
& MACE_XMTFS_LCAR
) {
1009 /* Loss of carrier */
1010 lp
->mace_stats
.lcar
++;
1012 if (xmtfs
& MACE_XMTFS_RTRY
) {
1013 /* Retry error: transmit aborted after 16 attempts */
1014 lp
->mace_stats
.rtry
++;
1016 } /* if (xmtfs & ~MACE_XMTFS_XMTSV) */
1018 } /* if (xmtfs & MACE_XMTFS_XMTSV) */
1020 lp
->linux_stats
.tx_packets
++;
1021 lp
->tx_free_frames
++;
1022 netif_wake_queue(dev
);
1023 } /* if (status & MACE_IR_XMTINT) */
1025 if (status
& ~MACE_IMR_DEFAULT
& ~MACE_IR_RCVINT
& ~MACE_IR_XMTINT
) {
1026 if (status
& MACE_IR_JAB
) {
1027 /* Jabber Error. Excessive transmit duration (20-150ms). */
1028 lp
->mace_stats
.jab
++;
1030 if (status
& MACE_IR_BABL
) {
1031 /* Babble Error. >1518 bytes transmitted. */
1032 lp
->mace_stats
.babl
++;
1034 if (status
& MACE_IR_CERR
) {
1035 /* Collision Error. CERR indicates the absence of the
1036 Signal Quality Error Test message after a packet
1038 lp
->mace_stats
.cerr
++;
1040 if (status
& MACE_IR_RCVCCO
) {
1041 /* Receive Collision Count Overflow; */
1042 lp
->mace_stats
.rcvcco
++;
1044 if (status
& MACE_IR_RNTPCO
) {
1045 /* Runt Packet Count Overflow */
1046 lp
->mace_stats
.rntpco
++;
1048 if (status
& MACE_IR_MPCO
) {
1049 /* Missed Packet Count Overflow */
1050 lp
->mace_stats
.mpco
++;
1052 } /* if (status & ~MACE_IMR_DEFAULT & ~MACE_IR_RCVINT & ~MACE_IR_XMTINT) */
1054 } while ((status
& ~MACE_IMR_DEFAULT
) && (--IntrCnt
));
1057 } /* mace_interrupt */
1059 /* ----------------------------------------------------------------------------
1062 ---------------------------------------------------------------------------- */
1063 static int mace_rx(struct net_device
*dev
, unsigned char RxCnt
)
1065 mace_private
*lp
= netdev_priv(dev
);
1066 unsigned int ioaddr
= dev
->base_addr
;
1067 unsigned char rx_framecnt
;
1068 unsigned short rx_status
;
1071 ((rx_framecnt
= inb(ioaddr
+ AM2150_RCV_FRAME_COUNT
)) > 0) &&
1072 (rx_framecnt
<= 12) && /* rx_framecnt==0xFF if card is extracted. */
1075 rx_status
= inw(ioaddr
+ AM2150_RCV
);
1077 pr_debug("%s: in mace_rx(), framecnt 0x%X, rx_status"
1078 " 0x%X.\n", dev
->name
, rx_framecnt
, rx_status
);
1080 if (rx_status
& MACE_RCVFS_RCVSTS
) { /* Error, update stats. */
1081 lp
->linux_stats
.rx_errors
++;
1082 if (rx_status
& MACE_RCVFS_OFLO
) {
1083 lp
->mace_stats
.oflo
++;
1085 if (rx_status
& MACE_RCVFS_CLSN
) {
1086 lp
->mace_stats
.clsn
++;
1088 if (rx_status
& MACE_RCVFS_FRAM
) {
1089 lp
->mace_stats
.fram
++;
1091 if (rx_status
& MACE_RCVFS_FCS
) {
1092 lp
->mace_stats
.fcs
++;
1095 short pkt_len
= (rx_status
& ~MACE_RCVFS_RCVSTS
) - 4;
1096 /* Auto Strip is off, always subtract 4 */
1097 struct sk_buff
*skb
;
1099 lp
->mace_stats
.rfs_rntpc
+= inb(ioaddr
+ AM2150_RCV
);
1100 /* runt packet count */
1101 lp
->mace_stats
.rfs_rcvcc
+= inb(ioaddr
+ AM2150_RCV
);
1102 /* rcv collision count */
1104 pr_debug(" receiving packet size 0x%X rx_status"
1105 " 0x%X.\n", pkt_len
, rx_status
);
1107 skb
= netdev_alloc_skb(dev
, pkt_len
+ 2);
1110 skb_reserve(skb
, 2);
1111 insw(ioaddr
+ AM2150_RCV
, skb_put(skb
, pkt_len
), pkt_len
>>1);
1113 *(skb_tail_pointer(skb
) - 1) = inb(ioaddr
+ AM2150_RCV
);
1114 skb
->protocol
= eth_type_trans(skb
, dev
);
1116 netif_rx(skb
); /* Send the packet to the upper (protocol) layers. */
1118 lp
->linux_stats
.rx_packets
++;
1119 lp
->linux_stats
.rx_bytes
+= pkt_len
;
1120 outb(0xFF, ioaddr
+ AM2150_RCV_NEXT
); /* skip to next frame */
1123 pr_debug("%s: couldn't allocate a sk_buff of size"
1124 " %d.\n", dev
->name
, pkt_len
);
1125 lp
->linux_stats
.rx_dropped
++;
1128 outb(0xFF, ioaddr
+ AM2150_RCV_NEXT
); /* skip to next frame */
1134 /* ----------------------------------------------------------------------------
1136 ---------------------------------------------------------------------------- */
1137 static void pr_linux_stats(struct net_device_stats
*pstats
)
1139 pr_debug("pr_linux_stats\n");
1140 pr_debug(" rx_packets=%-7ld tx_packets=%ld\n",
1141 (long)pstats
->rx_packets
, (long)pstats
->tx_packets
);
1142 pr_debug(" rx_errors=%-7ld tx_errors=%ld\n",
1143 (long)pstats
->rx_errors
, (long)pstats
->tx_errors
);
1144 pr_debug(" rx_dropped=%-7ld tx_dropped=%ld\n",
1145 (long)pstats
->rx_dropped
, (long)pstats
->tx_dropped
);
1146 pr_debug(" multicast=%-7ld collisions=%ld\n",
1147 (long)pstats
->multicast
, (long)pstats
->collisions
);
1149 pr_debug(" rx_length_errors=%-7ld rx_over_errors=%ld\n",
1150 (long)pstats
->rx_length_errors
, (long)pstats
->rx_over_errors
);
1151 pr_debug(" rx_crc_errors=%-7ld rx_frame_errors=%ld\n",
1152 (long)pstats
->rx_crc_errors
, (long)pstats
->rx_frame_errors
);
1153 pr_debug(" rx_fifo_errors=%-7ld rx_missed_errors=%ld\n",
1154 (long)pstats
->rx_fifo_errors
, (long)pstats
->rx_missed_errors
);
1156 pr_debug(" tx_aborted_errors=%-7ld tx_carrier_errors=%ld\n",
1157 (long)pstats
->tx_aborted_errors
, (long)pstats
->tx_carrier_errors
);
1158 pr_debug(" tx_fifo_errors=%-7ld tx_heartbeat_errors=%ld\n",
1159 (long)pstats
->tx_fifo_errors
, (long)pstats
->tx_heartbeat_errors
);
1160 pr_debug(" tx_window_errors=%ld\n",
1161 (long)pstats
->tx_window_errors
);
1162 } /* pr_linux_stats */
1164 /* ----------------------------------------------------------------------------
1166 ---------------------------------------------------------------------------- */
1167 static void pr_mace_stats(mace_statistics
*pstats
)
1169 pr_debug("pr_mace_stats\n");
1171 pr_debug(" xmtsv=%-7d uflo=%d\n",
1172 pstats
->xmtsv
, pstats
->uflo
);
1173 pr_debug(" lcol=%-7d more=%d\n",
1174 pstats
->lcol
, pstats
->more
);
1175 pr_debug(" one=%-7d defer=%d\n",
1176 pstats
->one
, pstats
->defer
);
1177 pr_debug(" lcar=%-7d rtry=%d\n",
1178 pstats
->lcar
, pstats
->rtry
);
1181 pr_debug(" exdef=%-7d xmtrc=%d\n",
1182 pstats
->exdef
, pstats
->xmtrc
);
1184 /* RFS1--Receive Status (RCVSTS) */
1185 pr_debug(" oflo=%-7d clsn=%d\n",
1186 pstats
->oflo
, pstats
->clsn
);
1187 pr_debug(" fram=%-7d fcs=%d\n",
1188 pstats
->fram
, pstats
->fcs
);
1190 /* RFS2--Runt Packet Count (RNTPC) */
1191 /* RFS3--Receive Collision Count (RCVCC) */
1192 pr_debug(" rfs_rntpc=%-7d rfs_rcvcc=%d\n",
1193 pstats
->rfs_rntpc
, pstats
->rfs_rcvcc
);
1196 pr_debug(" jab=%-7d babl=%d\n",
1197 pstats
->jab
, pstats
->babl
);
1198 pr_debug(" cerr=%-7d rcvcco=%d\n",
1199 pstats
->cerr
, pstats
->rcvcco
);
1200 pr_debug(" rntpco=%-7d mpco=%d\n",
1201 pstats
->rntpco
, pstats
->mpco
);
1204 pr_debug(" mpc=%d\n", pstats
->mpc
);
1207 pr_debug(" rntpc=%d\n", pstats
->rntpc
);
1210 pr_debug(" rcvcc=%d\n", pstats
->rcvcc
);
1212 } /* pr_mace_stats */
1214 /* ----------------------------------------------------------------------------
1216 Update statistics. We change to register window 1, so this
1217 should be run single-threaded if the device is active. This is
1218 expected to be a rare operation, and it's simpler for the rest
1219 of the driver to assume that window 0 is always valid rather
1220 than use a special window-state variable.
1222 oflo & uflo should _never_ occur since it would mean the Xilinx
1223 was not able to transfer data between the MACE FIFO and the
1224 card's SRAM fast enough. If this happens, something is
1225 seriously wrong with the hardware.
1226 ---------------------------------------------------------------------------- */
1227 static void update_stats(unsigned int ioaddr
, struct net_device
*dev
)
1229 mace_private
*lp
= netdev_priv(dev
);
1231 lp
->mace_stats
.rcvcc
+= mace_read(lp
, ioaddr
, MACE_RCVCC
);
1232 lp
->mace_stats
.rntpc
+= mace_read(lp
, ioaddr
, MACE_RNTPC
);
1233 lp
->mace_stats
.mpc
+= mace_read(lp
, ioaddr
, MACE_MPC
);
1234 /* At this point, mace_stats is fully updated for this call.
1235 We may now update the linux_stats. */
1237 /* The MACE has no equivalent for linux_stats field which are commented
1240 /* lp->linux_stats.multicast; */
1241 lp
->linux_stats
.collisions
=
1242 lp
->mace_stats
.rcvcco
* 256 + lp
->mace_stats
.rcvcc
;
1243 /* Collision: The MACE may retry sending a packet 15 times
1244 before giving up. The retry count is in XMTRC.
1245 Does each retry constitute a collision?
1246 If so, why doesn't the RCVCC record these collisions? */
1248 /* detailed rx_errors: */
1249 lp
->linux_stats
.rx_length_errors
=
1250 lp
->mace_stats
.rntpco
* 256 + lp
->mace_stats
.rntpc
;
1251 /* lp->linux_stats.rx_over_errors */
1252 lp
->linux_stats
.rx_crc_errors
= lp
->mace_stats
.fcs
;
1253 lp
->linux_stats
.rx_frame_errors
= lp
->mace_stats
.fram
;
1254 lp
->linux_stats
.rx_fifo_errors
= lp
->mace_stats
.oflo
;
1255 lp
->linux_stats
.rx_missed_errors
=
1256 lp
->mace_stats
.mpco
* 256 + lp
->mace_stats
.mpc
;
1258 /* detailed tx_errors */
1259 lp
->linux_stats
.tx_aborted_errors
= lp
->mace_stats
.rtry
;
1260 lp
->linux_stats
.tx_carrier_errors
= lp
->mace_stats
.lcar
;
1261 /* LCAR usually results from bad cabling. */
1262 lp
->linux_stats
.tx_fifo_errors
= lp
->mace_stats
.uflo
;
1263 lp
->linux_stats
.tx_heartbeat_errors
= lp
->mace_stats
.cerr
;
1264 /* lp->linux_stats.tx_window_errors; */
1265 } /* update_stats */
1267 /* ----------------------------------------------------------------------------
1269 Gathers ethernet statistics from the MACE chip.
1270 ---------------------------------------------------------------------------- */
1271 static struct net_device_stats
*mace_get_stats(struct net_device
*dev
)
1273 mace_private
*lp
= netdev_priv(dev
);
1275 update_stats(dev
->base_addr
, dev
);
1277 pr_debug("%s: updating the statistics.\n", dev
->name
);
1278 pr_linux_stats(&lp
->linux_stats
);
1279 pr_mace_stats(&lp
->mace_stats
);
1281 return &lp
->linux_stats
;
1282 } /* net_device_stats */
1284 /* ----------------------------------------------------------------------------
1286 Modified from Am79C90 data sheet.
1287 ---------------------------------------------------------------------------- */
1289 #ifdef BROKEN_MULTICAST
1291 static void updateCRC(int *CRC
, int bit
)
1293 static const int poly
[]={
1298 }; /* CRC polynomial. poly[n] = coefficient of the x**n term of the
1299 CRC generator polynomial. */
1303 /* shift CRC and control bit (CRC[32]) */
1304 for (j
= 32; j
> 0; j
--)
1308 /* If bit XOR(control bit) = 1, set CRC = CRC XOR polynomial. */
1310 for (j
= 0; j
< 32; j
++)
1314 /* ----------------------------------------------------------------------------
1316 Build logical address filter.
1317 Modified from Am79C90 data sheet.
1320 ladrf: logical address filter (contents initialized to 0)
1321 adr: ethernet address
1322 ---------------------------------------------------------------------------- */
1323 static void BuildLAF(int *ladrf
, int *adr
)
1325 int CRC
[33]={1}; /* CRC register, 1 word/bit + extra control bit */
1327 int i
, byte
; /* temporary array indices */
1328 int hashcode
; /* the output object */
1332 for (byte
= 0; byte
< 6; byte
++)
1333 for (i
= 0; i
< 8; i
++)
1334 updateCRC(CRC
, (adr
[byte
] >> i
) & 1);
1337 for (i
= 0; i
< 6; i
++)
1338 hashcode
= (hashcode
<< 1) + CRC
[i
];
1340 byte
= hashcode
>> 3;
1341 ladrf
[byte
] |= (1 << (hashcode
& 7));
1345 printk(KERN_DEBUG
" adr =%pM\n", adr
);
1346 printk(KERN_DEBUG
" hashcode = %d(decimal), ladrf[0:63] =", hashcode
);
1347 for (i
= 0; i
< 8; i
++)
1348 pr_cont(" %02X", ladrf
[i
]);
1353 /* ----------------------------------------------------------------------------
1354 restore_multicast_list
1355 Restores the multicast filter for MACE chip to the last
1356 set_multicast_list() call.
1361 ---------------------------------------------------------------------------- */
1362 static void restore_multicast_list(struct net_device
*dev
)
1364 mace_private
*lp
= netdev_priv(dev
);
1365 int num_addrs
= lp
->multicast_num_addrs
;
1366 int *ladrf
= lp
->multicast_ladrf
;
1367 unsigned int ioaddr
= dev
->base_addr
;
1370 pr_debug("%s: restoring Rx mode to %d addresses.\n",
1371 dev
->name
, num_addrs
);
1373 if (num_addrs
> 0) {
1375 pr_debug("Attempt to restore multicast list detected.\n");
1377 mace_write(lp
, ioaddr
, MACE_IAC
, MACE_IAC_ADDRCHG
| MACE_IAC_LOGADDR
);
1378 /* Poll ADDRCHG bit */
1379 while (mace_read(lp
, ioaddr
, MACE_IAC
) & MACE_IAC_ADDRCHG
)
1381 /* Set LADRF register */
1382 for (i
= 0; i
< MACE_LADRF_LEN
; i
++)
1383 mace_write(lp
, ioaddr
, MACE_LADRF
, ladrf
[i
]);
1385 mace_write(lp
, ioaddr
, MACE_UTR
, MACE_UTR_RCVFCSE
| MACE_UTR_LOOP_EXTERNAL
);
1386 mace_write(lp
, ioaddr
, MACE_MACCC
, MACE_MACCC_ENXMT
| MACE_MACCC_ENRCV
);
1388 } else if (num_addrs
< 0) {
1390 /* Promiscuous mode: receive all packets */
1391 mace_write(lp
, ioaddr
, MACE_UTR
, MACE_UTR_LOOP_EXTERNAL
);
1392 mace_write(lp
, ioaddr
, MACE_MACCC
,
1393 MACE_MACCC_PROM
| MACE_MACCC_ENXMT
| MACE_MACCC_ENRCV
1399 mace_write(lp
, ioaddr
, MACE_UTR
, MACE_UTR_LOOP_EXTERNAL
);
1400 mace_write(lp
, ioaddr
, MACE_MACCC
, MACE_MACCC_ENXMT
| MACE_MACCC_ENRCV
);
1403 } /* restore_multicast_list */
1405 /* ----------------------------------------------------------------------------
1407 Set or clear the multicast filter for this adaptor.
1410 num_addrs == -1 Promiscuous mode, receive all packets
1411 num_addrs == 0 Normal mode, clear multicast list
1412 num_addrs > 0 Multicast mode, receive normal and MC packets, and do
1413 best-effort filtering.
1417 ---------------------------------------------------------------------------- */
1419 static void set_multicast_list(struct net_device
*dev
)
1421 mace_private
*lp
= netdev_priv(dev
);
1422 int adr
[ETH_ALEN
] = {0}; /* Ethernet address */
1423 struct netdev_hw_addr
*ha
;
1428 if (netdev_mc_count(dev
) != old
) {
1429 old
= netdev_mc_count(dev
);
1430 pr_debug("%s: setting Rx mode to %d addresses.\n",
1436 /* Set multicast_num_addrs. */
1437 lp
->multicast_num_addrs
= netdev_mc_count(dev
);
1439 /* Set multicast_ladrf. */
1440 if (num_addrs
> 0) {
1441 /* Calculate multicast logical address filter */
1442 memset(lp
->multicast_ladrf
, 0, MACE_LADRF_LEN
);
1443 netdev_for_each_mc_addr(ha
, dev
) {
1444 memcpy(adr
, ha
->addr
, ETH_ALEN
);
1445 BuildLAF(lp
->multicast_ladrf
, adr
);
1449 restore_multicast_list(dev
);
1451 } /* set_multicast_list */
1453 #endif /* BROKEN_MULTICAST */
1455 static void restore_multicast_list(struct net_device
*dev
)
1457 unsigned int ioaddr
= dev
->base_addr
;
1458 mace_private
*lp
= netdev_priv(dev
);
1460 pr_debug("%s: restoring Rx mode to %d addresses.\n", dev
->name
,
1461 lp
->multicast_num_addrs
);
1463 if (dev
->flags
& IFF_PROMISC
) {
1464 /* Promiscuous mode: receive all packets */
1465 mace_write(lp
,ioaddr
, MACE_UTR
, MACE_UTR_LOOP_EXTERNAL
);
1466 mace_write(lp
, ioaddr
, MACE_MACCC
,
1467 MACE_MACCC_PROM
| MACE_MACCC_ENXMT
| MACE_MACCC_ENRCV
1471 mace_write(lp
, ioaddr
, MACE_UTR
, MACE_UTR_LOOP_EXTERNAL
);
1472 mace_write(lp
, ioaddr
, MACE_MACCC
, MACE_MACCC_ENXMT
| MACE_MACCC_ENRCV
);
1474 } /* restore_multicast_list */
1476 static void set_multicast_list(struct net_device
*dev
)
1478 mace_private
*lp
= netdev_priv(dev
);
1483 if (netdev_mc_count(dev
) != old
) {
1484 old
= netdev_mc_count(dev
);
1485 pr_debug("%s: setting Rx mode to %d addresses.\n",
1491 lp
->multicast_num_addrs
= netdev_mc_count(dev
);
1492 restore_multicast_list(dev
);
1494 } /* set_multicast_list */
1496 static const struct pcmcia_device_id nmclan_ids
[] = {
1497 PCMCIA_DEVICE_PROD_ID12("New Media Corporation", "Ethernet", 0x085a850b, 0x00b2e941),
1498 PCMCIA_DEVICE_PROD_ID12("Portable Add-ons", "Ethernet+", 0xebf1d60, 0xad673aaf),
1501 MODULE_DEVICE_TABLE(pcmcia
, nmclan_ids
);
1503 static struct pcmcia_driver nmclan_cs_driver
= {
1504 .owner
= THIS_MODULE
,
1505 .name
= "nmclan_cs",
1506 .probe
= nmclan_probe
,
1507 .remove
= nmclan_detach
,
1508 .id_table
= nmclan_ids
,
1509 .suspend
= nmclan_suspend
,
1510 .resume
= nmclan_resume
,
1512 module_pcmcia_driver(nmclan_cs_driver
);