1 /*======================================================================
3 A PCMCIA ethernet driver for the 3com 3c589 card.
5 Copyright (C) 1999 David A. Hinds -- dahinds@users.sourceforge.net
7 3c589_cs.c 1.162 2001/10/13 00:08:50
9 The network driver code is based on Donald Becker's 3c589 code:
11 Written 1994 by Donald Becker.
12 Copyright 1993 United States Government as represented by the
13 Director, National Security Agency. This software may be used and
14 distributed according to the terms of the GNU General Public License,
15 incorporated herein by reference.
16 Donald Becker may be reached at becker@scyld.com
18 Updated for 2.5.x by Alan Cox <alan@redhat.com>
20 ======================================================================*/
22 #define DRV_NAME "3c589_cs"
23 #define DRV_VERSION "1.162-ac"
25 #include <linux/module.h>
26 #include <linux/init.h>
27 #include <linux/kernel.h>
28 #include <linux/ptrace.h>
29 #include <linux/slab.h>
30 #include <linux/string.h>
31 #include <linux/timer.h>
32 #include <linux/interrupt.h>
34 #include <linux/delay.h>
35 #include <linux/ethtool.h>
36 #include <linux/netdevice.h>
37 #include <linux/etherdevice.h>
38 #include <linux/skbuff.h>
39 #include <linux/if_arp.h>
40 #include <linux/ioport.h>
41 #include <linux/bitops.h>
43 #include <pcmcia/cs_types.h>
44 #include <pcmcia/cs.h>
45 #include <pcmcia/cistpl.h>
46 #include <pcmcia/cisreg.h>
47 #include <pcmcia/ciscode.h>
48 #include <pcmcia/ds.h>
50 #include <asm/uaccess.h>
52 #include <asm/system.h>
54 /* To minimize the size of the driver source I only define operating
55 constants if they are used several times. You'll need the manual
56 if you want to understand driver details. */
57 /* Offsets from base I/O address. */
59 #define EL3_TIMER 0x0a
61 #define EL3_STATUS 0x0e
63 #define EEPROM_READ 0x0080
64 #define EEPROM_BUSY 0x8000
66 #define EL3WINDOW(win_num) outw(SelectWindow + (win_num), ioaddr + EL3_CMD)
68 /* The top five bits written to EL3_CMD are a command, the lower
69 11 bits are the parameter, if applicable. */
71 TotalReset = 0<<11, SelectWindow = 1<<11, StartCoax = 2<<11,
72 RxDisable = 3<<11, RxEnable = 4<<11, RxReset = 5<<11, RxDiscard = 8<<11,
73 TxEnable = 9<<11, TxDisable = 10<<11, TxReset = 11<<11,
74 FakeIntr = 12<<11, AckIntr = 13<<11, SetIntrEnb = 14<<11,
75 SetStatusEnb = 15<<11, SetRxFilter = 16<<11, SetRxThreshold = 17<<11,
76 SetTxThreshold = 18<<11, SetTxStart = 19<<11, StatsEnable = 21<<11,
77 StatsDisable = 22<<11, StopCoax = 23<<11,
81 IntLatch = 0x0001, AdapterFailure = 0x0002, TxComplete = 0x0004,
82 TxAvailable = 0x0008, RxComplete = 0x0010, RxEarly = 0x0020,
83 IntReq = 0x0040, StatsFull = 0x0080, CmdBusy = 0x1000
86 /* The SetRxFilter command accepts the following classes: */
88 RxStation = 1, RxMulticast = 2, RxBroadcast = 4, RxProm = 8
91 /* Register window 1 offsets, the window used in normal operation. */
94 #define RX_STATUS 0x08
95 #define TX_STATUS 0x0B
96 #define TX_FREE 0x0C /* Remaining free bytes in Tx buffer. */
98 #define WN0_IRQ 0x08 /* Window 0: Set IRQ line in bits 12-15. */
99 #define WN4_MEDIA 0x0A /* Window 4: Various transcvr/media bits. */
100 #define MEDIA_TP 0x00C0 /* Enable link beat and jabber for 10baseT. */
101 #define MEDIA_LED 0x0001 /* Enable link light on 3C589E cards. */
103 /* Time in jiffies before concluding Tx hung */
104 #define TX_TIMEOUT ((400*HZ)/1000)
109 struct net_device_stats stats;
110 /* For transceiver monitoring */
111 struct timer_list media;
114 unsigned long last_irq;
118 static char *if_names[] = { "auto", "10baseT", "10base2", "AUI" };
120 /*====================================================================*/
122 /* Module parameters */
124 MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
125 MODULE_DESCRIPTION("3Com 3c589 series PCMCIA ethernet driver");
126 MODULE_LICENSE("GPL");
128 #define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0)
130 /* Special hook for setting if_port when module is loaded */
131 INT_MODULE_PARM(if_port, 0);
134 INT_MODULE_PARM(pc_debug, PCMCIA_DEBUG);
135 #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
136 static char *version =
137 DRV_NAME ".c " DRV_VERSION " 2001/10/13 00:08:50 (David Hinds)";
139 #define DEBUG(n, args...)
142 /*====================================================================*/
144 static void tc589_config(dev_link_t *link);
145 static void tc589_release(dev_link_t *link);
146 static int tc589_event(event_t event, int priority,
147 event_callback_args_t *args);
149 static u16 read_eeprom(kio_addr_t ioaddr, int index);
150 static void tc589_reset(struct net_device *dev);
151 static void media_check(unsigned long arg);
152 static int el3_config(struct net_device *dev, struct ifmap *map);
153 static int el3_open(struct net_device *dev);
154 static int el3_start_xmit(struct sk_buff *skb, struct net_device *dev);
155 static irqreturn_t el3_interrupt(int irq, void *dev_id, struct pt_regs *regs);
156 static void update_stats(struct net_device *dev);
157 static struct net_device_stats *el3_get_stats(struct net_device *dev);
158 static int el3_rx(struct net_device *dev);
159 static int el3_close(struct net_device *dev);
160 static void el3_tx_timeout(struct net_device *dev);
161 static void set_multicast_list(struct net_device *dev);
162 static struct ethtool_ops netdev_ethtool_ops;
164 static dev_info_t dev_info = "3c589_cs";
166 static dev_link_t *tc589_attach(void);
167 static void tc589_detach(dev_link_t *);
169 static dev_link_t *dev_list;
171 /*======================================================================
173 tc589_attach() creates an "instance" of the driver, allocating
174 local data structures for one device. The device is registered
177 ======================================================================*/
179 static dev_link_t *tc589_attach(void)
181 struct el3_private *lp;
182 client_reg_t client_reg;
184 struct net_device *dev;
187 DEBUG(0, "3c589_attach()\n");
189 /* Create new ethernet device */
190 dev = alloc_etherdev(sizeof(struct el3_private));
193 lp = netdev_priv(dev);
197 spin_lock_init(&lp->lock);
198 link->io.NumPorts1 = 16;
199 link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
200 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT;
201 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
202 link->irq.Handler = &el3_interrupt;
203 link->irq.Instance = dev;
204 link->conf.Attributes = CONF_ENABLE_IRQ;
206 link->conf.IntType = INT_MEMORY_AND_IO;
207 link->conf.ConfigIndex = 1;
208 link->conf.Present = PRESENT_OPTION;
210 /* The EL3-specific entries in the device structure. */
211 SET_MODULE_OWNER(dev);
212 dev->hard_start_xmit = &el3_start_xmit;
213 dev->set_config = &el3_config;
214 dev->get_stats = &el3_get_stats;
215 dev->set_multicast_list = &set_multicast_list;
216 dev->open = &el3_open;
217 dev->stop = &el3_close;
218 #ifdef HAVE_TX_TIMEOUT
219 dev->tx_timeout = el3_tx_timeout;
220 dev->watchdog_timeo = TX_TIMEOUT;
222 SET_ETHTOOL_OPS(dev, &netdev_ethtool_ops);
224 /* Register with Card Services */
225 link->next = dev_list;
227 client_reg.dev_info = &dev_info;
228 client_reg.Version = 0x0210;
229 client_reg.event_callback_args.client_data = link;
230 ret = pcmcia_register_client(&link->handle, &client_reg);
232 cs_error(link->handle, RegisterClient, ret);
240 /*======================================================================
242 This deletes a driver "instance". The device is de-registered
243 with Card Services. If it has been released, all local data
244 structures are freed. Otherwise, the structures will be freed
245 when the device is released.
247 ======================================================================*/
249 static void tc589_detach(dev_link_t *link)
251 struct net_device *dev = link->priv;
254 DEBUG(0, "3c589_detach(0x%p)\n", link);
256 /* Locate device structure */
257 for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
258 if (*linkp == link) break;
263 unregister_netdev(dev);
265 if (link->state & DEV_CONFIG)
269 pcmcia_deregister_client(link->handle);
271 /* Unlink device structure, free bits */
276 /*======================================================================
278 tc589_config() is scheduled to run after a CARD_INSERTION event
279 is received, to configure the PCMCIA socket, and to make the
280 ethernet device available to the system.
282 ======================================================================*/
284 #define CS_CHECK(fn, ret) \
285 do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
287 static void tc589_config(dev_link_t *link)
289 client_handle_t handle = link->handle;
290 struct net_device *dev = link->priv;
291 struct el3_private *lp = netdev_priv(dev);
294 u16 buf[32], *phys_addr;
295 int last_fn, last_ret, i, j, multi = 0, fifo;
297 char *ram_split[] = {"5:3", "3:1", "1:1", "3:5"};
299 DEBUG(0, "3c589_config(0x%p)\n", link);
301 phys_addr = (u16 *)dev->dev_addr;
302 tuple.Attributes = 0;
303 tuple.DesiredTuple = CISTPL_CONFIG;
304 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple));
305 tuple.TupleData = (cisdata_t *)buf;
306 tuple.TupleDataMax = sizeof(buf);
307 tuple.TupleOffset = 0;
308 CS_CHECK(GetTupleData, pcmcia_get_tuple_data(handle, &tuple));
309 CS_CHECK(ParseTuple, pcmcia_parse_tuple(handle, &tuple, &parse));
310 link->conf.ConfigBase = parse.config.base;
311 link->conf.Present = parse.config.rmask[0];
313 /* Is this a 3c562? */
314 tuple.DesiredTuple = CISTPL_MANFID;
315 tuple.Attributes = TUPLE_RETURN_COMMON;
316 if ((pcmcia_get_first_tuple(handle, &tuple) == CS_SUCCESS) &&
317 (pcmcia_get_tuple_data(handle, &tuple) == CS_SUCCESS)) {
318 if (le16_to_cpu(buf[0]) != MANFID_3COM)
319 printk(KERN_INFO "3c589_cs: hmmm, is this really a "
321 multi = (le16_to_cpu(buf[1]) == PRODID_3COM_3C562);
325 link->state |= DEV_CONFIG;
327 /* For the 3c562, the base address must be xx00-xx7f */
328 link->io.IOAddrLines = 16;
329 for (i = j = 0; j < 0x400; j += 0x10) {
330 if (multi && (j & 0x80)) continue;
331 link->io.BasePort1 = j ^ 0x300;
332 i = pcmcia_request_io(link->handle, &link->io);
333 if (i == CS_SUCCESS) break;
335 if (i != CS_SUCCESS) {
336 cs_error(link->handle, RequestIO, i);
339 CS_CHECK(RequestIRQ, pcmcia_request_irq(link->handle, &link->irq));
340 CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link->handle, &link->conf));
342 dev->irq = link->irq.AssignedIRQ;
343 dev->base_addr = link->io.BasePort1;
344 ioaddr = dev->base_addr;
347 /* The 3c589 has an extra EEPROM for configuration info, including
348 the hardware address. The 3c562 puts the address in the CIS. */
349 tuple.DesiredTuple = 0x88;
350 if (pcmcia_get_first_tuple(handle, &tuple) == CS_SUCCESS) {
351 pcmcia_get_tuple_data(handle, &tuple);
352 for (i = 0; i < 3; i++)
353 phys_addr[i] = htons(buf[i]);
355 for (i = 0; i < 3; i++)
356 phys_addr[i] = htons(read_eeprom(ioaddr, i));
357 if (phys_addr[0] == 0x6060) {
358 printk(KERN_ERR "3c589_cs: IO port conflict at 0x%03lx"
359 "-0x%03lx\n", dev->base_addr, dev->base_addr+15);
364 /* The address and resource configuration register aren't loaded from
365 the EEPROM and *must* be set to 0 and IRQ3 for the PCMCIA version. */
366 outw(0x3f00, ioaddr + 8);
369 /* The if_port symbol can be set when the module is loaded */
370 if ((if_port >= 0) && (if_port <= 3))
371 dev->if_port = if_port;
373 printk(KERN_ERR "3c589_cs: invalid if_port requested\n");
375 link->dev = &lp->node;
376 link->state &= ~DEV_CONFIG_PENDING;
377 SET_NETDEV_DEV(dev, &handle_to_dev(handle));
379 if (register_netdev(dev) != 0) {
380 printk(KERN_ERR "3c589_cs: register_netdev() failed\n");
385 strcpy(lp->node.dev_name, dev->name);
387 printk(KERN_INFO "%s: 3Com 3c%s, io %#3lx, irq %d, hw_addr ",
388 dev->name, (multi ? "562" : "589"), dev->base_addr,
390 for (i = 0; i < 6; i++)
391 printk("%02X%s", dev->dev_addr[i], ((i<5) ? ":" : "\n"));
392 printk(KERN_INFO " %dK FIFO split %s Rx:Tx, %s xcvr\n",
393 (fifo & 7) ? 32 : 8, ram_split[(fifo >> 16) & 3],
394 if_names[dev->if_port]);
398 cs_error(link->handle, last_fn, last_ret);
405 /*======================================================================
407 After a card is removed, tc589_release() will unregister the net
408 device, and release the PCMCIA configuration. If the device is
409 still open, this will be postponed until it is closed.
411 ======================================================================*/
413 static void tc589_release(dev_link_t *link)
415 DEBUG(0, "3c589_release(0x%p)\n", link);
417 pcmcia_release_configuration(link->handle);
418 pcmcia_release_io(link->handle, &link->io);
419 pcmcia_release_irq(link->handle, &link->irq);
421 link->state &= ~DEV_CONFIG;
424 /*======================================================================
426 The card status event handler. Mostly, this schedules other
427 stuff to run after an event is received. A CARD_REMOVAL event
428 also sets some flags to discourage the net drivers from trying
429 to talk to the card any more.
431 ======================================================================*/
433 static int tc589_event(event_t event, int priority,
434 event_callback_args_t *args)
436 dev_link_t *link = args->client_data;
437 struct net_device *dev = link->priv;
439 DEBUG(1, "3c589_event(0x%06x)\n", event);
442 case CS_EVENT_CARD_REMOVAL:
443 link->state &= ~DEV_PRESENT;
444 if (link->state & DEV_CONFIG)
445 netif_device_detach(dev);
447 case CS_EVENT_CARD_INSERTION:
448 link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
451 case CS_EVENT_PM_SUSPEND:
452 link->state |= DEV_SUSPEND;
453 /* Fall through... */
454 case CS_EVENT_RESET_PHYSICAL:
455 if (link->state & DEV_CONFIG) {
457 netif_device_detach(dev);
458 pcmcia_release_configuration(link->handle);
461 case CS_EVENT_PM_RESUME:
462 link->state &= ~DEV_SUSPEND;
463 /* Fall through... */
464 case CS_EVENT_CARD_RESET:
465 if (link->state & DEV_CONFIG) {
466 pcmcia_request_configuration(link->handle, &link->conf);
469 netif_device_attach(dev);
477 /*====================================================================*/
480 Use this for commands that may take time to finish
482 static void tc589_wait_for_completion(struct net_device *dev, int cmd)
485 outw(cmd, dev->base_addr + EL3_CMD);
487 if (!(inw(dev->base_addr + EL3_STATUS) & 0x1000)) break;
489 printk(KERN_WARNING "%s: command 0x%04x did not complete!\n",
494 Read a word from the EEPROM using the regular EEPROM access register.
495 Assume that we are in register window zero.
497 static u16 read_eeprom(kio_addr_t ioaddr, int index)
500 outw(EEPROM_READ + index, ioaddr + 10);
501 /* Reading the eeprom takes 162 us */
502 for (i = 1620; i >= 0; i--)
503 if ((inw(ioaddr + 10) & EEPROM_BUSY) == 0)
505 return inw(ioaddr + 12);
509 Set transceiver type, perhaps to something other than what the user
510 specified in dev->if_port.
512 static void tc589_set_xcvr(struct net_device *dev, int if_port)
514 struct el3_private *lp = netdev_priv(dev);
515 kio_addr_t ioaddr = dev->base_addr;
519 case 0: case 1: outw(0, ioaddr + 6); break;
520 case 2: outw(3<<14, ioaddr + 6); break;
521 case 3: outw(1<<14, ioaddr + 6); break;
523 /* On PCMCIA, this just turns on the LED */
524 outw((if_port == 2) ? StartCoax : StopCoax, ioaddr + EL3_CMD);
525 /* 10baseT interface, enable link beat and jabber check. */
527 outw(MEDIA_LED | ((if_port < 2) ? MEDIA_TP : 0), ioaddr + WN4_MEDIA);
530 lp->media_status = ((dev->if_port == 0) ? 0x8000 : 0x4000);
532 lp->media_status = ((dev->if_port == 0) ? 0x4010 : 0x8800);
535 static void dump_status(struct net_device *dev)
537 kio_addr_t ioaddr = dev->base_addr;
539 printk(KERN_INFO " irq status %04x, rx status %04x, tx status "
540 "%02x tx free %04x\n", inw(ioaddr+EL3_STATUS),
541 inw(ioaddr+RX_STATUS), inb(ioaddr+TX_STATUS),
542 inw(ioaddr+TX_FREE));
544 printk(KERN_INFO " diagnostics: fifo %04x net %04x ethernet %04x"
545 " media %04x\n", inw(ioaddr+0x04), inw(ioaddr+0x06),
546 inw(ioaddr+0x08), inw(ioaddr+0x0a));
550 /* Reset and restore all of the 3c589 registers. */
551 static void tc589_reset(struct net_device *dev)
553 kio_addr_t ioaddr = dev->base_addr;
557 outw(0x0001, ioaddr + 4); /* Activate board. */
558 outw(0x3f00, ioaddr + 8); /* Set the IRQ line. */
560 /* Set the station address in window 2. */
562 for (i = 0; i < 6; i++)
563 outb(dev->dev_addr[i], ioaddr + i);
565 tc589_set_xcvr(dev, dev->if_port);
567 /* Switch to the stats window, and clear all stats by reading. */
568 outw(StatsDisable, ioaddr + EL3_CMD);
570 for (i = 0; i < 9; i++)
575 /* Switch to register set 1 for normal use. */
578 /* Accept b-cast and phys addr only. */
579 outw(SetRxFilter | RxStation | RxBroadcast, ioaddr + EL3_CMD);
580 outw(StatsEnable, ioaddr + EL3_CMD); /* Turn on statistics. */
581 outw(RxEnable, ioaddr + EL3_CMD); /* Enable the receiver. */
582 outw(TxEnable, ioaddr + EL3_CMD); /* Enable transmitter. */
583 /* Allow status bits to be seen. */
584 outw(SetStatusEnb | 0xff, ioaddr + EL3_CMD);
585 /* Ack all pending events, and set active indicator mask. */
586 outw(AckIntr | IntLatch | TxAvailable | RxEarly | IntReq,
588 outw(SetIntrEnb | IntLatch | TxAvailable | RxComplete | StatsFull
589 | AdapterFailure, ioaddr + EL3_CMD);
592 static void netdev_get_drvinfo(struct net_device *dev,
593 struct ethtool_drvinfo *info)
595 strcpy(info->driver, DRV_NAME);
596 strcpy(info->version, DRV_VERSION);
597 sprintf(info->bus_info, "PCMCIA 0x%lx", dev->base_addr);
601 static u32 netdev_get_msglevel(struct net_device *dev)
606 static void netdev_set_msglevel(struct net_device *dev, u32 level)
610 #endif /* PCMCIA_DEBUG */
612 static struct ethtool_ops netdev_ethtool_ops = {
613 .get_drvinfo = netdev_get_drvinfo,
615 .get_msglevel = netdev_get_msglevel,
616 .set_msglevel = netdev_set_msglevel,
617 #endif /* PCMCIA_DEBUG */
620 static int el3_config(struct net_device *dev, struct ifmap *map)
622 if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
623 if (map->port <= 3) {
624 dev->if_port = map->port;
625 printk(KERN_INFO "%s: switched to %s port\n",
626 dev->name, if_names[dev->if_port]);
627 tc589_set_xcvr(dev, dev->if_port);
634 static int el3_open(struct net_device *dev)
636 struct el3_private *lp = netdev_priv(dev);
637 dev_link_t *link = &lp->link;
643 netif_start_queue(dev);
646 init_timer(&lp->media);
647 lp->media.function = &media_check;
648 lp->media.data = (unsigned long) dev;
649 lp->media.expires = jiffies + HZ;
650 add_timer(&lp->media);
652 DEBUG(1, "%s: opened, status %4.4x.\n",
653 dev->name, inw(dev->base_addr + EL3_STATUS));
658 static void el3_tx_timeout(struct net_device *dev)
660 struct el3_private *lp = netdev_priv(dev);
661 kio_addr_t ioaddr = dev->base_addr;
663 printk(KERN_WARNING "%s: Transmit timed out!\n", dev->name);
665 lp->stats.tx_errors++;
666 dev->trans_start = jiffies;
667 /* Issue TX_RESET and TX_START commands. */
668 tc589_wait_for_completion(dev, TxReset);
669 outw(TxEnable, ioaddr + EL3_CMD);
670 netif_wake_queue(dev);
673 static void pop_tx_status(struct net_device *dev)
675 struct el3_private *lp = netdev_priv(dev);
676 kio_addr_t ioaddr = dev->base_addr;
679 /* Clear the Tx status stack. */
680 for (i = 32; i > 0; i--) {
681 u_char tx_status = inb(ioaddr + TX_STATUS);
682 if (!(tx_status & 0x84)) break;
683 /* reset transmitter on jabber error or underrun */
684 if (tx_status & 0x30)
685 tc589_wait_for_completion(dev, TxReset);
686 if (tx_status & 0x38) {
687 DEBUG(1, "%s: transmit error: status 0x%02x\n",
688 dev->name, tx_status);
689 outw(TxEnable, ioaddr + EL3_CMD);
690 lp->stats.tx_aborted_errors++;
692 outb(0x00, ioaddr + TX_STATUS); /* Pop the status stack. */
696 static int el3_start_xmit(struct sk_buff *skb, struct net_device *dev)
698 kio_addr_t ioaddr = dev->base_addr;
699 struct el3_private *priv = netdev_priv(dev);
701 DEBUG(3, "%s: el3_start_xmit(length = %ld) called, "
702 "status %4.4x.\n", dev->name, (long)skb->len,
703 inw(ioaddr + EL3_STATUS));
705 priv->stats.tx_bytes += skb->len;
707 /* Put out the doubleword header... */
708 outw(skb->len, ioaddr + TX_FIFO);
709 outw(0x00, ioaddr + TX_FIFO);
710 /* ... and the packet rounded to a doubleword. */
711 outsl(ioaddr + TX_FIFO, skb->data, (skb->len + 3) >> 2);
713 dev->trans_start = jiffies;
714 if (inw(ioaddr + TX_FREE) <= 1536) {
715 netif_stop_queue(dev);
716 /* Interrupt us when the FIFO has room for max-sized packet. */
717 outw(SetTxThreshold + 1536, ioaddr + EL3_CMD);
726 /* The EL3 interrupt handler. */
727 static irqreturn_t el3_interrupt(int irq, void *dev_id, struct pt_regs *regs)
729 struct net_device *dev = (struct net_device *) dev_id;
730 struct el3_private *lp = netdev_priv(dev);
733 int i = 0, handled = 1;
735 if (!netif_device_present(dev))
738 ioaddr = dev->base_addr;
740 DEBUG(3, "%s: interrupt, status %4.4x.\n",
741 dev->name, inw(ioaddr + EL3_STATUS));
743 spin_lock(&lp->lock);
744 while ((status = inw(ioaddr + EL3_STATUS)) &
745 (IntLatch | RxComplete | StatsFull)) {
746 if ((status & 0xe000) != 0x2000) {
747 DEBUG(1, "%s: interrupt from dead card\n", dev->name);
752 if (status & RxComplete)
755 if (status & TxAvailable) {
756 DEBUG(3, " TX room bit was handled.\n");
757 /* There's room in the FIFO for a full-sized packet. */
758 outw(AckIntr | TxAvailable, ioaddr + EL3_CMD);
759 netif_wake_queue(dev);
762 if (status & TxComplete)
765 if (status & (AdapterFailure | RxEarly | StatsFull)) {
766 /* Handle all uncommon interrupts. */
767 if (status & StatsFull) /* Empty statistics. */
769 if (status & RxEarly) { /* Rx early is unused. */
771 outw(AckIntr | RxEarly, ioaddr + EL3_CMD);
773 if (status & AdapterFailure) {
776 fifo_diag = inw(ioaddr + 4);
778 printk(KERN_WARNING "%s: adapter failure, FIFO diagnostic"
779 " register %04x.\n", dev->name, fifo_diag);
780 if (fifo_diag & 0x0400) {
782 tc589_wait_for_completion(dev, TxReset);
783 outw(TxEnable, ioaddr + EL3_CMD);
785 if (fifo_diag & 0x2000) {
787 tc589_wait_for_completion(dev, RxReset);
788 set_multicast_list(dev);
789 outw(RxEnable, ioaddr + EL3_CMD);
791 outw(AckIntr | AdapterFailure, ioaddr + EL3_CMD);
796 printk(KERN_ERR "%s: infinite loop in interrupt, "
797 "status %4.4x.\n", dev->name, status);
798 /* Clear all interrupts */
799 outw(AckIntr | 0xFF, ioaddr + EL3_CMD);
802 /* Acknowledge the IRQ. */
803 outw(AckIntr | IntReq | IntLatch, ioaddr + EL3_CMD);
806 lp->last_irq = jiffies;
807 spin_unlock(&lp->lock);
808 DEBUG(3, "%s: exiting interrupt, status %4.4x.\n",
809 dev->name, inw(ioaddr + EL3_STATUS));
810 return IRQ_RETVAL(handled);
813 static void media_check(unsigned long arg)
815 struct net_device *dev = (struct net_device *)(arg);
816 struct el3_private *lp = netdev_priv(dev);
817 kio_addr_t ioaddr = dev->base_addr;
821 if (!netif_device_present(dev)) goto reschedule;
824 /* Check for pending interrupt with expired latency timer: with
825 this, we can limp along even if the interrupt is blocked */
826 if ((inw(ioaddr + EL3_STATUS) & IntLatch) &&
827 (inb(ioaddr + EL3_TIMER) == 0xff)) {
829 printk(KERN_WARNING "%s: interrupt(s) dropped!\n", dev->name);
830 el3_interrupt(dev->irq, lp, NULL);
835 lp->media.expires = jiffies + HZ/100;
836 add_timer(&lp->media);
840 /* lp->lock guards the EL3 window. Window should always be 1 except
841 when the lock is held */
842 spin_lock_irqsave(&lp->lock, flags);
844 media = inw(ioaddr+WN4_MEDIA) & 0xc810;
846 /* Ignore collisions unless we've had no irq's recently */
847 if (jiffies - lp->last_irq < HZ) {
850 /* Try harder to detect carrier errors */
852 outw(StatsDisable, ioaddr + EL3_CMD);
853 errs = inb(ioaddr + 0);
854 outw(StatsEnable, ioaddr + EL3_CMD);
855 lp->stats.tx_carrier_errors += errs;
856 if (errs || (lp->media_status & 0x0010)) media |= 0x0010;
859 if (media != lp->media_status) {
860 if ((media & lp->media_status & 0x8000) &&
861 ((lp->media_status ^ media) & 0x0800))
862 printk(KERN_INFO "%s: %s link beat\n", dev->name,
863 (lp->media_status & 0x0800 ? "lost" : "found"));
864 else if ((media & lp->media_status & 0x4000) &&
865 ((lp->media_status ^ media) & 0x0010))
866 printk(KERN_INFO "%s: coax cable %s\n", dev->name,
867 (lp->media_status & 0x0010 ? "ok" : "problem"));
868 if (dev->if_port == 0) {
869 if (media & 0x8000) {
871 printk(KERN_INFO "%s: flipped to 10baseT\n",
874 tc589_set_xcvr(dev, 2);
875 } else if (media & 0x4000) {
877 tc589_set_xcvr(dev, 1);
879 printk(KERN_INFO "%s: flipped to 10base2\n",
883 lp->media_status = media;
887 spin_unlock_irqrestore(&lp->lock, flags);
890 lp->media.expires = jiffies + HZ;
891 add_timer(&lp->media);
894 static struct net_device_stats *el3_get_stats(struct net_device *dev)
896 struct el3_private *lp = netdev_priv(dev);
898 dev_link_t *link = &lp->link;
901 spin_lock_irqsave(&lp->lock, flags);
903 spin_unlock_irqrestore(&lp->lock, flags);
909 Update statistics. We change to register window 6, so this should be run
910 single-threaded if the device is active. This is expected to be a rare
911 operation, and it's simpler for the rest of the driver to assume that
912 window 1 is always valid rather than use a special window-state variable.
914 Caller must hold the lock for this
916 static void update_stats(struct net_device *dev)
918 struct el3_private *lp = netdev_priv(dev);
919 kio_addr_t ioaddr = dev->base_addr;
921 DEBUG(2, "%s: updating the statistics.\n", dev->name);
922 /* Turn off statistics updates while reading. */
923 outw(StatsDisable, ioaddr + EL3_CMD);
924 /* Switch to the stats window, and read everything. */
926 lp->stats.tx_carrier_errors += inb(ioaddr + 0);
927 lp->stats.tx_heartbeat_errors += inb(ioaddr + 1);
928 /* Multiple collisions. */ inb(ioaddr + 2);
929 lp->stats.collisions += inb(ioaddr + 3);
930 lp->stats.tx_window_errors += inb(ioaddr + 4);
931 lp->stats.rx_fifo_errors += inb(ioaddr + 5);
932 lp->stats.tx_packets += inb(ioaddr + 6);
933 /* Rx packets */ inb(ioaddr + 7);
934 /* Tx deferrals */ inb(ioaddr + 8);
935 /* Rx octets */ inw(ioaddr + 10);
936 /* Tx octets */ inw(ioaddr + 12);
938 /* Back to window 1, and turn statistics back on. */
940 outw(StatsEnable, ioaddr + EL3_CMD);
943 static int el3_rx(struct net_device *dev)
945 struct el3_private *lp = netdev_priv(dev);
946 kio_addr_t ioaddr = dev->base_addr;
950 DEBUG(3, "%s: in rx_packet(), status %4.4x, rx_status %4.4x.\n",
951 dev->name, inw(ioaddr+EL3_STATUS), inw(ioaddr+RX_STATUS));
952 while (!((rx_status = inw(ioaddr + RX_STATUS)) & 0x8000) &&
953 (--worklimit >= 0)) {
954 if (rx_status & 0x4000) { /* Error, update stats. */
955 short error = rx_status & 0x3800;
956 lp->stats.rx_errors++;
958 case 0x0000: lp->stats.rx_over_errors++; break;
959 case 0x0800: lp->stats.rx_length_errors++; break;
960 case 0x1000: lp->stats.rx_frame_errors++; break;
961 case 0x1800: lp->stats.rx_length_errors++; break;
962 case 0x2000: lp->stats.rx_frame_errors++; break;
963 case 0x2800: lp->stats.rx_crc_errors++; break;
966 short pkt_len = rx_status & 0x7ff;
969 skb = dev_alloc_skb(pkt_len+5);
971 DEBUG(3, " Receiving packet size %d status %4.4x.\n",
976 insl(ioaddr+RX_FIFO, skb_put(skb, pkt_len),
978 skb->protocol = eth_type_trans(skb, dev);
980 dev->last_rx = jiffies;
981 lp->stats.rx_packets++;
982 lp->stats.rx_bytes += pkt_len;
984 DEBUG(1, "%s: couldn't allocate a sk_buff of"
985 " size %d.\n", dev->name, pkt_len);
986 lp->stats.rx_dropped++;
989 /* Pop the top of the Rx FIFO */
990 tc589_wait_for_completion(dev, RxDiscard);
993 printk(KERN_WARNING "%s: too much work in el3_rx!\n", dev->name);
997 static void set_multicast_list(struct net_device *dev)
999 struct el3_private *lp = netdev_priv(dev);
1000 dev_link_t *link = &lp->link;
1001 kio_addr_t ioaddr = dev->base_addr;
1002 u16 opts = SetRxFilter | RxStation | RxBroadcast;
1004 if (!(DEV_OK(link))) return;
1005 if (dev->flags & IFF_PROMISC)
1006 opts |= RxMulticast | RxProm;
1007 else if (dev->mc_count || (dev->flags & IFF_ALLMULTI))
1008 opts |= RxMulticast;
1009 outw(opts, ioaddr + EL3_CMD);
1012 static int el3_close(struct net_device *dev)
1014 struct el3_private *lp = netdev_priv(dev);
1015 dev_link_t *link = &lp->link;
1016 kio_addr_t ioaddr = dev->base_addr;
1018 DEBUG(1, "%s: shutting down ethercard.\n", dev->name);
1021 /* Turn off statistics ASAP. We update lp->stats below. */
1022 outw(StatsDisable, ioaddr + EL3_CMD);
1024 /* Disable the receiver and transmitter. */
1025 outw(RxDisable, ioaddr + EL3_CMD);
1026 outw(TxDisable, ioaddr + EL3_CMD);
1028 if (dev->if_port == 2)
1029 /* Turn off thinnet power. Green! */
1030 outw(StopCoax, ioaddr + EL3_CMD);
1031 else if (dev->if_port == 1) {
1032 /* Disable link beat and jabber */
1034 outw(0, ioaddr + WN4_MEDIA);
1037 /* Switching back to window 0 disables the IRQ. */
1039 /* But we explicitly zero the IRQ line select anyway. */
1040 outw(0x0f00, ioaddr + WN0_IRQ);
1042 /* Check if the card still exists */
1043 if ((inw(ioaddr+EL3_STATUS) & 0xe000) == 0x2000)
1048 netif_stop_queue(dev);
1049 del_timer_sync(&lp->media);
1054 static struct pcmcia_device_id tc589_ids[] = {
1055 PCMCIA_MFC_DEVICE_MANF_CARD(0, 0x0101, 0x0562),
1056 PCMCIA_MFC_DEVICE_PROD_ID1(0, "Motorola MARQUIS", 0xf03e4e77),
1057 PCMCIA_DEVICE_MANF_CARD(0x0101, 0x0589),
1058 PCMCIA_DEVICE_PROD_ID12("Farallon", "ENet", 0x58d93fc4, 0x992c2202),
1059 PCMCIA_MFC_DEVICE_CIS_MANF_CARD(0, 0x0101, 0x0035, "3CXEM556.cis"),
1060 PCMCIA_MFC_DEVICE_CIS_MANF_CARD(0, 0x0101, 0x003d, "3CXEM556.cis"),
1063 MODULE_DEVICE_TABLE(pcmcia, tc589_ids);
1065 static struct pcmcia_driver tc589_driver = {
1066 .owner = THIS_MODULE,
1070 .attach = tc589_attach,
1071 .event = tc589_event,
1072 .detach = tc589_detach,
1073 .id_table = tc589_ids,
1076 static int __init init_tc589(void)
1078 return pcmcia_register_driver(&tc589_driver);
1081 static void __exit exit_tc589(void)
1083 pcmcia_unregister_driver(&tc589_driver);
1084 BUG_ON(dev_list != NULL);
1087 module_init(init_tc589);
1088 module_exit(exit_tc589);