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/version.h>
44 #include <pcmcia/cs_types.h>
45 #include <pcmcia/cs.h>
46 #include <pcmcia/cistpl.h>
47 #include <pcmcia/cisreg.h>
48 #include <pcmcia/ciscode.h>
49 #include <pcmcia/ds.h>
51 #include <asm/uaccess.h>
53 #include <asm/system.h>
55 /* To minimize the size of the driver source I only define operating
56 constants if they are used several times. You'll need the manual
57 if you want to understand driver details. */
58 /* Offsets from base I/O address. */
60 #define EL3_TIMER 0x0a
62 #define EL3_STATUS 0x0e
64 #define EEPROM_READ 0x0080
65 #define EEPROM_BUSY 0x8000
67 #define EL3WINDOW(win_num) outw(SelectWindow + (win_num), ioaddr + EL3_CMD)
69 /* The top five bits written to EL3_CMD are a command, the lower
70 11 bits are the parameter, if applicable. */
72 TotalReset
= 0<<11, SelectWindow
= 1<<11, StartCoax
= 2<<11,
73 RxDisable
= 3<<11, RxEnable
= 4<<11, RxReset
= 5<<11, RxDiscard
= 8<<11,
74 TxEnable
= 9<<11, TxDisable
= 10<<11, TxReset
= 11<<11,
75 FakeIntr
= 12<<11, AckIntr
= 13<<11, SetIntrEnb
= 14<<11,
76 SetStatusEnb
= 15<<11, SetRxFilter
= 16<<11, SetRxThreshold
= 17<<11,
77 SetTxThreshold
= 18<<11, SetTxStart
= 19<<11, StatsEnable
= 21<<11,
78 StatsDisable
= 22<<11, StopCoax
= 23<<11,
82 IntLatch
= 0x0001, AdapterFailure
= 0x0002, TxComplete
= 0x0004,
83 TxAvailable
= 0x0008, RxComplete
= 0x0010, RxEarly
= 0x0020,
84 IntReq
= 0x0040, StatsFull
= 0x0080, CmdBusy
= 0x1000
87 /* The SetRxFilter command accepts the following classes: */
89 RxStation
= 1, RxMulticast
= 2, RxBroadcast
= 4, RxProm
= 8
92 /* Register window 1 offsets, the window used in normal operation. */
95 #define RX_STATUS 0x08
96 #define TX_STATUS 0x0B
97 #define TX_FREE 0x0C /* Remaining free bytes in Tx buffer. */
99 #define WN0_IRQ 0x08 /* Window 0: Set IRQ line in bits 12-15. */
100 #define WN4_MEDIA 0x0A /* Window 4: Various transcvr/media bits. */
101 #define MEDIA_TP 0x00C0 /* Enable link beat and jabber for 10baseT. */
102 #define MEDIA_LED 0x0001 /* Enable link light on 3C589E cards. */
104 /* Time in jiffies before concluding Tx hung */
105 #define TX_TIMEOUT ((400*HZ)/1000)
110 struct net_device_stats stats
;
111 /* For transceiver monitoring */
112 struct timer_list media
;
115 unsigned long last_irq
;
119 static char *if_names
[] = { "auto", "10baseT", "10base2", "AUI" };
121 /*====================================================================*/
123 /* Module parameters */
125 MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
126 MODULE_DESCRIPTION("3Com 3c589 series PCMCIA ethernet driver");
127 MODULE_LICENSE("GPL");
129 #define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0)
131 /* Special hook for setting if_port when module is loaded */
132 INT_MODULE_PARM(if_port
, 0);
135 INT_MODULE_PARM(pc_debug
, PCMCIA_DEBUG
);
136 #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
137 static char *version
=
138 DRV_NAME
".c " DRV_VERSION
" 2001/10/13 00:08:50 (David Hinds)";
140 #define DEBUG(n, args...)
143 /*====================================================================*/
145 static void tc589_config(dev_link_t
*link
);
146 static void tc589_release(dev_link_t
*link
);
147 static int tc589_event(event_t event
, int priority
,
148 event_callback_args_t
*args
);
150 static u16
read_eeprom(kio_addr_t ioaddr
, int index
);
151 static void tc589_reset(struct net_device
*dev
);
152 static void media_check(unsigned long arg
);
153 static int el3_config(struct net_device
*dev
, struct ifmap
*map
);
154 static int el3_open(struct net_device
*dev
);
155 static int el3_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
156 static irqreturn_t
el3_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
);
157 static void update_stats(struct net_device
*dev
);
158 static struct net_device_stats
*el3_get_stats(struct net_device
*dev
);
159 static int el3_rx(struct net_device
*dev
);
160 static int el3_close(struct net_device
*dev
);
161 static void el3_tx_timeout(struct net_device
*dev
);
162 static void set_multicast_list(struct net_device
*dev
);
163 static struct ethtool_ops netdev_ethtool_ops
;
165 static dev_info_t dev_info
= "3c589_cs";
167 static dev_link_t
*tc589_attach(void);
168 static void tc589_detach(dev_link_t
*);
170 static dev_link_t
*dev_list
;
172 /*======================================================================
174 tc589_attach() creates an "instance" of the driver, allocating
175 local data structures for one device. The device is registered
178 ======================================================================*/
180 static dev_link_t
*tc589_attach(void)
182 struct el3_private
*lp
;
183 client_reg_t client_reg
;
185 struct net_device
*dev
;
188 DEBUG(0, "3c589_attach()\n");
190 /* Create new ethernet device */
191 dev
= alloc_etherdev(sizeof(struct el3_private
));
194 lp
= netdev_priv(dev
);
198 spin_lock_init(&lp
->lock
);
199 link
->io
.NumPorts1
= 16;
200 link
->io
.Attributes1
= IO_DATA_PATH_WIDTH_16
;
201 link
->irq
.Attributes
= IRQ_TYPE_EXCLUSIVE
| IRQ_HANDLE_PRESENT
;
202 link
->irq
.IRQInfo1
= IRQ_LEVEL_ID
;
203 link
->irq
.Handler
= &el3_interrupt
;
204 link
->irq
.Instance
= dev
;
205 link
->conf
.Attributes
= CONF_ENABLE_IRQ
;
207 link
->conf
.IntType
= INT_MEMORY_AND_IO
;
208 link
->conf
.ConfigIndex
= 1;
209 link
->conf
.Present
= PRESENT_OPTION
;
211 /* The EL3-specific entries in the device structure. */
212 SET_MODULE_OWNER(dev
);
213 dev
->hard_start_xmit
= &el3_start_xmit
;
214 dev
->set_config
= &el3_config
;
215 dev
->get_stats
= &el3_get_stats
;
216 dev
->set_multicast_list
= &set_multicast_list
;
217 dev
->open
= &el3_open
;
218 dev
->stop
= &el3_close
;
219 #ifdef HAVE_TX_TIMEOUT
220 dev
->tx_timeout
= el3_tx_timeout
;
221 dev
->watchdog_timeo
= TX_TIMEOUT
;
223 SET_ETHTOOL_OPS(dev
, &netdev_ethtool_ops
);
225 /* Register with Card Services */
226 link
->next
= dev_list
;
228 client_reg
.dev_info
= &dev_info
;
229 client_reg
.Version
= 0x0210;
230 client_reg
.event_callback_args
.client_data
= link
;
231 ret
= pcmcia_register_client(&link
->handle
, &client_reg
);
233 cs_error(link
->handle
, RegisterClient
, ret
);
241 /*======================================================================
243 This deletes a driver "instance". The device is de-registered
244 with Card Services. If it has been released, all local data
245 structures are freed. Otherwise, the structures will be freed
246 when the device is released.
248 ======================================================================*/
250 static void tc589_detach(dev_link_t
*link
)
252 struct net_device
*dev
= link
->priv
;
255 DEBUG(0, "3c589_detach(0x%p)\n", link
);
257 /* Locate device structure */
258 for (linkp
= &dev_list
; *linkp
; linkp
= &(*linkp
)->next
)
259 if (*linkp
== link
) break;
264 unregister_netdev(dev
);
266 if (link
->state
& DEV_CONFIG
)
270 pcmcia_deregister_client(link
->handle
);
272 /* Unlink device structure, free bits */
277 /*======================================================================
279 tc589_config() is scheduled to run after a CARD_INSERTION event
280 is received, to configure the PCMCIA socket, and to make the
281 ethernet device available to the system.
283 ======================================================================*/
285 #define CS_CHECK(fn, ret) \
286 do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
288 static void tc589_config(dev_link_t
*link
)
290 client_handle_t handle
= link
->handle
;
291 struct net_device
*dev
= link
->priv
;
292 struct el3_private
*lp
= netdev_priv(dev
);
295 u16 buf
[32], *phys_addr
;
296 int last_fn
, last_ret
, i
, j
, multi
= 0, fifo
;
298 char *ram_split
[] = {"5:3", "3:1", "1:1", "3:5"};
300 DEBUG(0, "3c589_config(0x%p)\n", link
);
302 phys_addr
= (u16
*)dev
->dev_addr
;
303 tuple
.Attributes
= 0;
304 tuple
.DesiredTuple
= CISTPL_CONFIG
;
305 CS_CHECK(GetFirstTuple
, pcmcia_get_first_tuple(handle
, &tuple
));
306 tuple
.TupleData
= (cisdata_t
*)buf
;
307 tuple
.TupleDataMax
= sizeof(buf
);
308 tuple
.TupleOffset
= 0;
309 CS_CHECK(GetTupleData
, pcmcia_get_tuple_data(handle
, &tuple
));
310 CS_CHECK(ParseTuple
, pcmcia_parse_tuple(handle
, &tuple
, &parse
));
311 link
->conf
.ConfigBase
= parse
.config
.base
;
312 link
->conf
.Present
= parse
.config
.rmask
[0];
314 /* Is this a 3c562? */
315 tuple
.DesiredTuple
= CISTPL_MANFID
;
316 tuple
.Attributes
= TUPLE_RETURN_COMMON
;
317 if ((pcmcia_get_first_tuple(handle
, &tuple
) == CS_SUCCESS
) &&
318 (pcmcia_get_tuple_data(handle
, &tuple
) == CS_SUCCESS
)) {
319 if (le16_to_cpu(buf
[0]) != MANFID_3COM
)
320 printk(KERN_INFO
"3c589_cs: hmmm, is this really a "
322 multi
= (le16_to_cpu(buf
[1]) == PRODID_3COM_3C562
);
326 link
->state
|= DEV_CONFIG
;
328 /* For the 3c562, the base address must be xx00-xx7f */
329 link
->io
.IOAddrLines
= 16;
330 for (i
= j
= 0; j
< 0x400; j
+= 0x10) {
331 if (multi
&& (j
& 0x80)) continue;
332 link
->io
.BasePort1
= j
^ 0x300;
333 i
= pcmcia_request_io(link
->handle
, &link
->io
);
334 if (i
== CS_SUCCESS
) break;
336 if (i
!= CS_SUCCESS
) {
337 cs_error(link
->handle
, RequestIO
, i
);
340 CS_CHECK(RequestIRQ
, pcmcia_request_irq(link
->handle
, &link
->irq
));
341 CS_CHECK(RequestConfiguration
, pcmcia_request_configuration(link
->handle
, &link
->conf
));
343 dev
->irq
= link
->irq
.AssignedIRQ
;
344 dev
->base_addr
= link
->io
.BasePort1
;
345 ioaddr
= dev
->base_addr
;
348 /* The 3c589 has an extra EEPROM for configuration info, including
349 the hardware address. The 3c562 puts the address in the CIS. */
350 tuple
.DesiredTuple
= 0x88;
351 if (pcmcia_get_first_tuple(handle
, &tuple
) == CS_SUCCESS
) {
352 pcmcia_get_tuple_data(handle
, &tuple
);
353 for (i
= 0; i
< 3; i
++)
354 phys_addr
[i
] = htons(buf
[i
]);
356 for (i
= 0; i
< 3; i
++)
357 phys_addr
[i
] = htons(read_eeprom(ioaddr
, i
));
358 if (phys_addr
[0] == 0x6060) {
359 printk(KERN_ERR
"3c589_cs: IO port conflict at 0x%03lx"
360 "-0x%03lx\n", dev
->base_addr
, dev
->base_addr
+15);
365 /* The address and resource configuration register aren't loaded from
366 the EEPROM and *must* be set to 0 and IRQ3 for the PCMCIA version. */
367 outw(0x3f00, ioaddr
+ 8);
370 /* The if_port symbol can be set when the module is loaded */
371 if ((if_port
>= 0) && (if_port
<= 3))
372 dev
->if_port
= if_port
;
374 printk(KERN_ERR
"3c589_cs: invalid if_port requested\n");
376 link
->dev
= &lp
->node
;
377 link
->state
&= ~DEV_CONFIG_PENDING
;
378 SET_NETDEV_DEV(dev
, &handle_to_dev(handle
));
380 if (register_netdev(dev
) != 0) {
381 printk(KERN_ERR
"3c589_cs: register_netdev() failed\n");
386 strcpy(lp
->node
.dev_name
, dev
->name
);
388 printk(KERN_INFO
"%s: 3Com 3c%s, io %#3lx, irq %d, hw_addr ",
389 dev
->name
, (multi
? "562" : "589"), dev
->base_addr
,
391 for (i
= 0; i
< 6; i
++)
392 printk("%02X%s", dev
->dev_addr
[i
], ((i
<5) ? ":" : "\n"));
393 printk(KERN_INFO
" %dK FIFO split %s Rx:Tx, %s xcvr\n",
394 (fifo
& 7) ? 32 : 8, ram_split
[(fifo
>> 16) & 3],
395 if_names
[dev
->if_port
]);
399 cs_error(link
->handle
, last_fn
, last_ret
);
406 /*======================================================================
408 After a card is removed, tc589_release() will unregister the net
409 device, and release the PCMCIA configuration. If the device is
410 still open, this will be postponed until it is closed.
412 ======================================================================*/
414 static void tc589_release(dev_link_t
*link
)
416 DEBUG(0, "3c589_release(0x%p)\n", link
);
418 pcmcia_release_configuration(link
->handle
);
419 pcmcia_release_io(link
->handle
, &link
->io
);
420 pcmcia_release_irq(link
->handle
, &link
->irq
);
422 link
->state
&= ~DEV_CONFIG
;
425 /*======================================================================
427 The card status event handler. Mostly, this schedules other
428 stuff to run after an event is received. A CARD_REMOVAL event
429 also sets some flags to discourage the net drivers from trying
430 to talk to the card any more.
432 ======================================================================*/
434 static int tc589_event(event_t event
, int priority
,
435 event_callback_args_t
*args
)
437 dev_link_t
*link
= args
->client_data
;
438 struct net_device
*dev
= link
->priv
;
440 DEBUG(1, "3c589_event(0x%06x)\n", event
);
443 case CS_EVENT_CARD_REMOVAL
:
444 link
->state
&= ~DEV_PRESENT
;
445 if (link
->state
& DEV_CONFIG
)
446 netif_device_detach(dev
);
448 case CS_EVENT_CARD_INSERTION
:
449 link
->state
|= DEV_PRESENT
| DEV_CONFIG_PENDING
;
452 case CS_EVENT_PM_SUSPEND
:
453 link
->state
|= DEV_SUSPEND
;
454 /* Fall through... */
455 case CS_EVENT_RESET_PHYSICAL
:
456 if (link
->state
& DEV_CONFIG
) {
458 netif_device_detach(dev
);
459 pcmcia_release_configuration(link
->handle
);
462 case CS_EVENT_PM_RESUME
:
463 link
->state
&= ~DEV_SUSPEND
;
464 /* Fall through... */
465 case CS_EVENT_CARD_RESET
:
466 if (link
->state
& DEV_CONFIG
) {
467 pcmcia_request_configuration(link
->handle
, &link
->conf
);
470 netif_device_attach(dev
);
478 /*====================================================================*/
481 Use this for commands that may take time to finish
483 static void tc589_wait_for_completion(struct net_device
*dev
, int cmd
)
486 outw(cmd
, dev
->base_addr
+ EL3_CMD
);
488 if (!(inw(dev
->base_addr
+ EL3_STATUS
) & 0x1000)) break;
490 printk(KERN_WARNING
"%s: command 0x%04x did not complete!\n",
495 Read a word from the EEPROM using the regular EEPROM access register.
496 Assume that we are in register window zero.
498 static u16
read_eeprom(kio_addr_t ioaddr
, int index
)
501 outw(EEPROM_READ
+ index
, ioaddr
+ 10);
502 /* Reading the eeprom takes 162 us */
503 for (i
= 1620; i
>= 0; i
--)
504 if ((inw(ioaddr
+ 10) & EEPROM_BUSY
) == 0)
506 return inw(ioaddr
+ 12);
510 Set transceiver type, perhaps to something other than what the user
511 specified in dev->if_port.
513 static void tc589_set_xcvr(struct net_device
*dev
, int if_port
)
515 struct el3_private
*lp
= netdev_priv(dev
);
516 kio_addr_t ioaddr
= dev
->base_addr
;
520 case 0: case 1: outw(0, ioaddr
+ 6); break;
521 case 2: outw(3<<14, ioaddr
+ 6); break;
522 case 3: outw(1<<14, ioaddr
+ 6); break;
524 /* On PCMCIA, this just turns on the LED */
525 outw((if_port
== 2) ? StartCoax
: StopCoax
, ioaddr
+ EL3_CMD
);
526 /* 10baseT interface, enable link beat and jabber check. */
528 outw(MEDIA_LED
| ((if_port
< 2) ? MEDIA_TP
: 0), ioaddr
+ WN4_MEDIA
);
531 lp
->media_status
= ((dev
->if_port
== 0) ? 0x8000 : 0x4000);
533 lp
->media_status
= ((dev
->if_port
== 0) ? 0x4010 : 0x8800);
536 static void dump_status(struct net_device
*dev
)
538 kio_addr_t ioaddr
= dev
->base_addr
;
540 printk(KERN_INFO
" irq status %04x, rx status %04x, tx status "
541 "%02x tx free %04x\n", inw(ioaddr
+EL3_STATUS
),
542 inw(ioaddr
+RX_STATUS
), inb(ioaddr
+TX_STATUS
),
543 inw(ioaddr
+TX_FREE
));
545 printk(KERN_INFO
" diagnostics: fifo %04x net %04x ethernet %04x"
546 " media %04x\n", inw(ioaddr
+0x04), inw(ioaddr
+0x06),
547 inw(ioaddr
+0x08), inw(ioaddr
+0x0a));
551 /* Reset and restore all of the 3c589 registers. */
552 static void tc589_reset(struct net_device
*dev
)
554 kio_addr_t ioaddr
= dev
->base_addr
;
558 outw(0x0001, ioaddr
+ 4); /* Activate board. */
559 outw(0x3f00, ioaddr
+ 8); /* Set the IRQ line. */
561 /* Set the station address in window 2. */
563 for (i
= 0; i
< 6; i
++)
564 outb(dev
->dev_addr
[i
], ioaddr
+ i
);
566 tc589_set_xcvr(dev
, dev
->if_port
);
568 /* Switch to the stats window, and clear all stats by reading. */
569 outw(StatsDisable
, ioaddr
+ EL3_CMD
);
571 for (i
= 0; i
< 9; i
++)
576 /* Switch to register set 1 for normal use. */
579 /* Accept b-cast and phys addr only. */
580 outw(SetRxFilter
| RxStation
| RxBroadcast
, ioaddr
+ EL3_CMD
);
581 outw(StatsEnable
, ioaddr
+ EL3_CMD
); /* Turn on statistics. */
582 outw(RxEnable
, ioaddr
+ EL3_CMD
); /* Enable the receiver. */
583 outw(TxEnable
, ioaddr
+ EL3_CMD
); /* Enable transmitter. */
584 /* Allow status bits to be seen. */
585 outw(SetStatusEnb
| 0xff, ioaddr
+ EL3_CMD
);
586 /* Ack all pending events, and set active indicator mask. */
587 outw(AckIntr
| IntLatch
| TxAvailable
| RxEarly
| IntReq
,
589 outw(SetIntrEnb
| IntLatch
| TxAvailable
| RxComplete
| StatsFull
590 | AdapterFailure
, ioaddr
+ EL3_CMD
);
593 static void netdev_get_drvinfo(struct net_device
*dev
,
594 struct ethtool_drvinfo
*info
)
596 strcpy(info
->driver
, DRV_NAME
);
597 strcpy(info
->version
, DRV_VERSION
);
598 sprintf(info
->bus_info
, "PCMCIA 0x%lx", dev
->base_addr
);
602 static u32
netdev_get_msglevel(struct net_device
*dev
)
607 static void netdev_set_msglevel(struct net_device
*dev
, u32 level
)
611 #endif /* PCMCIA_DEBUG */
613 static struct ethtool_ops netdev_ethtool_ops
= {
614 .get_drvinfo
= netdev_get_drvinfo
,
616 .get_msglevel
= netdev_get_msglevel
,
617 .set_msglevel
= netdev_set_msglevel
,
618 #endif /* PCMCIA_DEBUG */
621 static int el3_config(struct net_device
*dev
, struct ifmap
*map
)
623 if ((map
->port
!= (u_char
)(-1)) && (map
->port
!= dev
->if_port
)) {
624 if (map
->port
<= 3) {
625 dev
->if_port
= map
->port
;
626 printk(KERN_INFO
"%s: switched to %s port\n",
627 dev
->name
, if_names
[dev
->if_port
]);
628 tc589_set_xcvr(dev
, dev
->if_port
);
635 static int el3_open(struct net_device
*dev
)
637 struct el3_private
*lp
= netdev_priv(dev
);
638 dev_link_t
*link
= &lp
->link
;
644 netif_start_queue(dev
);
647 init_timer(&lp
->media
);
648 lp
->media
.function
= &media_check
;
649 lp
->media
.data
= (unsigned long) dev
;
650 lp
->media
.expires
= jiffies
+ HZ
;
651 add_timer(&lp
->media
);
653 DEBUG(1, "%s: opened, status %4.4x.\n",
654 dev
->name
, inw(dev
->base_addr
+ EL3_STATUS
));
659 static void el3_tx_timeout(struct net_device
*dev
)
661 struct el3_private
*lp
= netdev_priv(dev
);
662 kio_addr_t ioaddr
= dev
->base_addr
;
664 printk(KERN_WARNING
"%s: Transmit timed out!\n", dev
->name
);
666 lp
->stats
.tx_errors
++;
667 dev
->trans_start
= jiffies
;
668 /* Issue TX_RESET and TX_START commands. */
669 tc589_wait_for_completion(dev
, TxReset
);
670 outw(TxEnable
, ioaddr
+ EL3_CMD
);
671 netif_wake_queue(dev
);
674 static void pop_tx_status(struct net_device
*dev
)
676 struct el3_private
*lp
= netdev_priv(dev
);
677 kio_addr_t ioaddr
= dev
->base_addr
;
680 /* Clear the Tx status stack. */
681 for (i
= 32; i
> 0; i
--) {
682 u_char tx_status
= inb(ioaddr
+ TX_STATUS
);
683 if (!(tx_status
& 0x84)) break;
684 /* reset transmitter on jabber error or underrun */
685 if (tx_status
& 0x30)
686 tc589_wait_for_completion(dev
, TxReset
);
687 if (tx_status
& 0x38) {
688 DEBUG(1, "%s: transmit error: status 0x%02x\n",
689 dev
->name
, tx_status
);
690 outw(TxEnable
, ioaddr
+ EL3_CMD
);
691 lp
->stats
.tx_aborted_errors
++;
693 outb(0x00, ioaddr
+ TX_STATUS
); /* Pop the status stack. */
697 static int el3_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
699 kio_addr_t ioaddr
= dev
->base_addr
;
700 struct el3_private
*priv
= netdev_priv(dev
);
702 DEBUG(3, "%s: el3_start_xmit(length = %ld) called, "
703 "status %4.4x.\n", dev
->name
, (long)skb
->len
,
704 inw(ioaddr
+ EL3_STATUS
));
706 priv
->stats
.tx_bytes
+= skb
->len
;
708 /* Put out the doubleword header... */
709 outw(skb
->len
, ioaddr
+ TX_FIFO
);
710 outw(0x00, ioaddr
+ TX_FIFO
);
711 /* ... and the packet rounded to a doubleword. */
712 outsl(ioaddr
+ TX_FIFO
, skb
->data
, (skb
->len
+ 3) >> 2);
714 dev
->trans_start
= jiffies
;
715 if (inw(ioaddr
+ TX_FREE
) <= 1536) {
716 netif_stop_queue(dev
);
717 /* Interrupt us when the FIFO has room for max-sized packet. */
718 outw(SetTxThreshold
+ 1536, ioaddr
+ EL3_CMD
);
727 /* The EL3 interrupt handler. */
728 static irqreturn_t
el3_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
730 struct net_device
*dev
= (struct net_device
*) dev_id
;
731 struct el3_private
*lp
= netdev_priv(dev
);
734 int i
= 0, handled
= 1;
736 if (!netif_device_present(dev
))
739 ioaddr
= dev
->base_addr
;
741 DEBUG(3, "%s: interrupt, status %4.4x.\n",
742 dev
->name
, inw(ioaddr
+ EL3_STATUS
));
744 spin_lock(&lp
->lock
);
745 while ((status
= inw(ioaddr
+ EL3_STATUS
)) &
746 (IntLatch
| RxComplete
| StatsFull
)) {
747 if ((status
& 0xe000) != 0x2000) {
748 DEBUG(1, "%s: interrupt from dead card\n", dev
->name
);
753 if (status
& RxComplete
)
756 if (status
& TxAvailable
) {
757 DEBUG(3, " TX room bit was handled.\n");
758 /* There's room in the FIFO for a full-sized packet. */
759 outw(AckIntr
| TxAvailable
, ioaddr
+ EL3_CMD
);
760 netif_wake_queue(dev
);
763 if (status
& TxComplete
)
766 if (status
& (AdapterFailure
| RxEarly
| StatsFull
)) {
767 /* Handle all uncommon interrupts. */
768 if (status
& StatsFull
) /* Empty statistics. */
770 if (status
& RxEarly
) { /* Rx early is unused. */
772 outw(AckIntr
| RxEarly
, ioaddr
+ EL3_CMD
);
774 if (status
& AdapterFailure
) {
777 fifo_diag
= inw(ioaddr
+ 4);
779 printk(KERN_WARNING
"%s: adapter failure, FIFO diagnostic"
780 " register %04x.\n", dev
->name
, fifo_diag
);
781 if (fifo_diag
& 0x0400) {
783 tc589_wait_for_completion(dev
, TxReset
);
784 outw(TxEnable
, ioaddr
+ EL3_CMD
);
786 if (fifo_diag
& 0x2000) {
788 tc589_wait_for_completion(dev
, RxReset
);
789 set_multicast_list(dev
);
790 outw(RxEnable
, ioaddr
+ EL3_CMD
);
792 outw(AckIntr
| AdapterFailure
, ioaddr
+ EL3_CMD
);
797 printk(KERN_ERR
"%s: infinite loop in interrupt, "
798 "status %4.4x.\n", dev
->name
, status
);
799 /* Clear all interrupts */
800 outw(AckIntr
| 0xFF, ioaddr
+ EL3_CMD
);
803 /* Acknowledge the IRQ. */
804 outw(AckIntr
| IntReq
| IntLatch
, ioaddr
+ EL3_CMD
);
807 lp
->last_irq
= jiffies
;
808 spin_unlock(&lp
->lock
);
809 DEBUG(3, "%s: exiting interrupt, status %4.4x.\n",
810 dev
->name
, inw(ioaddr
+ EL3_STATUS
));
811 return IRQ_RETVAL(handled
);
814 static void media_check(unsigned long arg
)
816 struct net_device
*dev
= (struct net_device
*)(arg
);
817 struct el3_private
*lp
= netdev_priv(dev
);
818 kio_addr_t ioaddr
= dev
->base_addr
;
822 if (!netif_device_present(dev
)) goto reschedule
;
825 /* Check for pending interrupt with expired latency timer: with
826 this, we can limp along even if the interrupt is blocked */
827 if ((inw(ioaddr
+ EL3_STATUS
) & IntLatch
) &&
828 (inb(ioaddr
+ EL3_TIMER
) == 0xff)) {
830 printk(KERN_WARNING
"%s: interrupt(s) dropped!\n", dev
->name
);
831 el3_interrupt(dev
->irq
, lp
, NULL
);
836 lp
->media
.expires
= jiffies
+ HZ
/100;
837 add_timer(&lp
->media
);
841 /* lp->lock guards the EL3 window. Window should always be 1 except
842 when the lock is held */
843 spin_lock_irqsave(&lp
->lock
, flags
);
845 media
= inw(ioaddr
+WN4_MEDIA
) & 0xc810;
847 /* Ignore collisions unless we've had no irq's recently */
848 if (jiffies
- lp
->last_irq
< HZ
) {
851 /* Try harder to detect carrier errors */
853 outw(StatsDisable
, ioaddr
+ EL3_CMD
);
854 errs
= inb(ioaddr
+ 0);
855 outw(StatsEnable
, ioaddr
+ EL3_CMD
);
856 lp
->stats
.tx_carrier_errors
+= errs
;
857 if (errs
|| (lp
->media_status
& 0x0010)) media
|= 0x0010;
860 if (media
!= lp
->media_status
) {
861 if ((media
& lp
->media_status
& 0x8000) &&
862 ((lp
->media_status
^ media
) & 0x0800))
863 printk(KERN_INFO
"%s: %s link beat\n", dev
->name
,
864 (lp
->media_status
& 0x0800 ? "lost" : "found"));
865 else if ((media
& lp
->media_status
& 0x4000) &&
866 ((lp
->media_status
^ media
) & 0x0010))
867 printk(KERN_INFO
"%s: coax cable %s\n", dev
->name
,
868 (lp
->media_status
& 0x0010 ? "ok" : "problem"));
869 if (dev
->if_port
== 0) {
870 if (media
& 0x8000) {
872 printk(KERN_INFO
"%s: flipped to 10baseT\n",
875 tc589_set_xcvr(dev
, 2);
876 } else if (media
& 0x4000) {
878 tc589_set_xcvr(dev
, 1);
880 printk(KERN_INFO
"%s: flipped to 10base2\n",
884 lp
->media_status
= media
;
888 spin_unlock_irqrestore(&lp
->lock
, flags
);
891 lp
->media
.expires
= jiffies
+ HZ
;
892 add_timer(&lp
->media
);
895 static struct net_device_stats
*el3_get_stats(struct net_device
*dev
)
897 struct el3_private
*lp
= netdev_priv(dev
);
899 dev_link_t
*link
= &lp
->link
;
902 spin_lock_irqsave(&lp
->lock
, flags
);
904 spin_unlock_irqrestore(&lp
->lock
, flags
);
910 Update statistics. We change to register window 6, so this should be run
911 single-threaded if the device is active. This is expected to be a rare
912 operation, and it's simpler for the rest of the driver to assume that
913 window 1 is always valid rather than use a special window-state variable.
915 Caller must hold the lock for this
917 static void update_stats(struct net_device
*dev
)
919 struct el3_private
*lp
= netdev_priv(dev
);
920 kio_addr_t ioaddr
= dev
->base_addr
;
922 DEBUG(2, "%s: updating the statistics.\n", dev
->name
);
923 /* Turn off statistics updates while reading. */
924 outw(StatsDisable
, ioaddr
+ EL3_CMD
);
925 /* Switch to the stats window, and read everything. */
927 lp
->stats
.tx_carrier_errors
+= inb(ioaddr
+ 0);
928 lp
->stats
.tx_heartbeat_errors
+= inb(ioaddr
+ 1);
929 /* Multiple collisions. */ inb(ioaddr
+ 2);
930 lp
->stats
.collisions
+= inb(ioaddr
+ 3);
931 lp
->stats
.tx_window_errors
+= inb(ioaddr
+ 4);
932 lp
->stats
.rx_fifo_errors
+= inb(ioaddr
+ 5);
933 lp
->stats
.tx_packets
+= inb(ioaddr
+ 6);
934 /* Rx packets */ inb(ioaddr
+ 7);
935 /* Tx deferrals */ inb(ioaddr
+ 8);
936 /* Rx octets */ inw(ioaddr
+ 10);
937 /* Tx octets */ inw(ioaddr
+ 12);
939 /* Back to window 1, and turn statistics back on. */
941 outw(StatsEnable
, ioaddr
+ EL3_CMD
);
944 static int el3_rx(struct net_device
*dev
)
946 struct el3_private
*lp
= netdev_priv(dev
);
947 kio_addr_t ioaddr
= dev
->base_addr
;
951 DEBUG(3, "%s: in rx_packet(), status %4.4x, rx_status %4.4x.\n",
952 dev
->name
, inw(ioaddr
+EL3_STATUS
), inw(ioaddr
+RX_STATUS
));
953 while (!((rx_status
= inw(ioaddr
+ RX_STATUS
)) & 0x8000) &&
954 (--worklimit
>= 0)) {
955 if (rx_status
& 0x4000) { /* Error, update stats. */
956 short error
= rx_status
& 0x3800;
957 lp
->stats
.rx_errors
++;
959 case 0x0000: lp
->stats
.rx_over_errors
++; break;
960 case 0x0800: lp
->stats
.rx_length_errors
++; break;
961 case 0x1000: lp
->stats
.rx_frame_errors
++; break;
962 case 0x1800: lp
->stats
.rx_length_errors
++; break;
963 case 0x2000: lp
->stats
.rx_frame_errors
++; break;
964 case 0x2800: lp
->stats
.rx_crc_errors
++; break;
967 short pkt_len
= rx_status
& 0x7ff;
970 skb
= dev_alloc_skb(pkt_len
+5);
972 DEBUG(3, " Receiving packet size %d status %4.4x.\n",
977 insl(ioaddr
+RX_FIFO
, skb_put(skb
, pkt_len
),
979 skb
->protocol
= eth_type_trans(skb
, dev
);
981 dev
->last_rx
= jiffies
;
982 lp
->stats
.rx_packets
++;
983 lp
->stats
.rx_bytes
+= pkt_len
;
985 DEBUG(1, "%s: couldn't allocate a sk_buff of"
986 " size %d.\n", dev
->name
, pkt_len
);
987 lp
->stats
.rx_dropped
++;
990 /* Pop the top of the Rx FIFO */
991 tc589_wait_for_completion(dev
, RxDiscard
);
994 printk(KERN_WARNING
"%s: too much work in el3_rx!\n", dev
->name
);
998 static void set_multicast_list(struct net_device
*dev
)
1000 struct el3_private
*lp
= netdev_priv(dev
);
1001 dev_link_t
*link
= &lp
->link
;
1002 kio_addr_t ioaddr
= dev
->base_addr
;
1003 u16 opts
= SetRxFilter
| RxStation
| RxBroadcast
;
1005 if (!(DEV_OK(link
))) return;
1006 if (dev
->flags
& IFF_PROMISC
)
1007 opts
|= RxMulticast
| RxProm
;
1008 else if (dev
->mc_count
|| (dev
->flags
& IFF_ALLMULTI
))
1009 opts
|= RxMulticast
;
1010 outw(opts
, ioaddr
+ EL3_CMD
);
1013 static int el3_close(struct net_device
*dev
)
1015 struct el3_private
*lp
= netdev_priv(dev
);
1016 dev_link_t
*link
= &lp
->link
;
1017 kio_addr_t ioaddr
= dev
->base_addr
;
1019 DEBUG(1, "%s: shutting down ethercard.\n", dev
->name
);
1022 /* Turn off statistics ASAP. We update lp->stats below. */
1023 outw(StatsDisable
, ioaddr
+ EL3_CMD
);
1025 /* Disable the receiver and transmitter. */
1026 outw(RxDisable
, ioaddr
+ EL3_CMD
);
1027 outw(TxDisable
, ioaddr
+ EL3_CMD
);
1029 if (dev
->if_port
== 2)
1030 /* Turn off thinnet power. Green! */
1031 outw(StopCoax
, ioaddr
+ EL3_CMD
);
1032 else if (dev
->if_port
== 1) {
1033 /* Disable link beat and jabber */
1035 outw(0, ioaddr
+ WN4_MEDIA
);
1038 /* Switching back to window 0 disables the IRQ. */
1040 /* But we explicitly zero the IRQ line select anyway. */
1041 outw(0x0f00, ioaddr
+ WN0_IRQ
);
1043 /* Check if the card still exists */
1044 if ((inw(ioaddr
+EL3_STATUS
) & 0xe000) == 0x2000)
1049 netif_stop_queue(dev
);
1050 del_timer_sync(&lp
->media
);
1055 static struct pcmcia_device_id tc589_ids
[] = {
1056 PCMCIA_MFC_DEVICE_MANF_CARD(0, 0x0101, 0x0562),
1057 PCMCIA_MFC_DEVICE_PROD_ID1(0, "Motorola MARQUIS", 0xf03e4e77),
1058 PCMCIA_DEVICE_MANF_CARD(0x0101, 0x0589),
1059 PCMCIA_DEVICE_PROD_ID12("Farallon", "ENet", 0x58d93fc4, 0x992c2202),
1060 PCMCIA_MFC_DEVICE_CIS_MANF_CARD(0, 0x0101, 0x0035, "3CXEM556.cis"),
1061 PCMCIA_MFC_DEVICE_CIS_MANF_CARD(0, 0x0101, 0x003d, "3CXEM556.cis"),
1064 MODULE_DEVICE_TABLE(pcmcia
, tc589_ids
);
1066 static struct pcmcia_driver tc589_driver
= {
1067 .owner
= THIS_MODULE
,
1071 .attach
= tc589_attach
,
1072 .event
= tc589_event
,
1073 .detach
= tc589_detach
,
1074 .id_table
= tc589_ids
,
1077 static int __init
init_tc589(void)
1079 return pcmcia_register_driver(&tc589_driver
);
1082 static void __exit
exit_tc589(void)
1084 pcmcia_unregister_driver(&tc589_driver
);
1085 BUG_ON(dev_list
!= NULL
);
1088 module_init(init_tc589
);
1089 module_exit(exit_tc589
);