Linux Audio

Check our new training course

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