blob: 11f701a8ff026d169ddf9d7e69acb2e142555890 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*======================================================================
2
3 A PCMCIA ethernet driver for Asix AX88190-based cards
4
5 The Asix AX88190 is a NS8390-derived chipset with a few nasty
6 idiosyncracies that make it very inconvenient to support with a
7 standard 8390 driver. This driver is based on pcnet_cs, with the
8 tweaked 8390 code grafted on the end. Much of what I did was to
9 clean up and update a similar driver supplied by Asix, which was
10 adapted by William Lee, william@asix.com.tw.
11
12 Copyright (C) 2001 David A. Hinds -- dahinds@users.sourceforge.net
13
14 axnet_cs.c 1.28 2002/06/29 06:27:37
15
16 The network driver code is based on Donald Becker's NE2000 code:
17
18 Written 1992,1993 by Donald Becker.
19 Copyright 1993 United States Government as represented by the
20 Director, National Security Agency. This software may be used and
21 distributed according to the terms of the GNU General Public License,
22 incorporated herein by reference.
23 Donald Becker may be reached at becker@scyld.com
24
25======================================================================*/
26
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/ptrace.h>
31#include <linux/slab.h>
32#include <linux/string.h>
33#include <linux/timer.h>
34#include <linux/delay.h>
35#include <linux/spinlock.h>
36#include <linux/ethtool.h>
37#include <linux/netdevice.h>
38#include "../8390.h"
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <pcmcia/cs_types.h>
41#include <pcmcia/cs.h>
42#include <pcmcia/cistpl.h>
43#include <pcmcia/ciscode.h>
44#include <pcmcia/ds.h>
45#include <pcmcia/cisreg.h>
46
47#include <asm/io.h>
48#include <asm/system.h>
49#include <asm/byteorder.h>
50#include <asm/uaccess.h>
51
52#define AXNET_CMD 0x00
53#define AXNET_DATAPORT 0x10 /* NatSemi-defined port window offset. */
54#define AXNET_RESET 0x1f /* Issue a read to reset, a write to clear. */
55#define AXNET_MII_EEP 0x14 /* Offset of MII access port */
56#define AXNET_TEST 0x15 /* Offset of TEST Register port */
57#define AXNET_GPIO 0x17 /* Offset of General Purpose Register Port */
58
59#define AXNET_START_PG 0x40 /* First page of TX buffer */
60#define AXNET_STOP_PG 0x80 /* Last page +1 of RX ring */
61
62#define AXNET_RDC_TIMEOUT 0x02 /* Max wait in jiffies for Tx RDC */
63
64#define IS_AX88190 0x0001
65#define IS_AX88790 0x0002
66
67/*====================================================================*/
68
69/* Module parameters */
70
71MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
72MODULE_DESCRIPTION("Asix AX88190 PCMCIA ethernet driver");
73MODULE_LICENSE("GPL");
74
75#ifdef PCMCIA_DEBUG
76#define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0)
77
78INT_MODULE_PARM(pc_debug, PCMCIA_DEBUG);
79#define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
80static char *version =
81"axnet_cs.c 1.28 2002/06/29 06:27:37 (David Hinds)";
82#else
83#define DEBUG(n, args...)
84#endif
85
86/*====================================================================*/
87
88static void axnet_config(dev_link_t *link);
89static void axnet_release(dev_link_t *link);
90static int axnet_event(event_t event, int priority,
91 event_callback_args_t *args);
92static int axnet_open(struct net_device *dev);
93static int axnet_close(struct net_device *dev);
94static int axnet_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
95static struct ethtool_ops netdev_ethtool_ops;
96static irqreturn_t ei_irq_wrapper(int irq, void *dev_id, struct pt_regs *regs);
97static void ei_watchdog(u_long arg);
98static void axnet_reset_8390(struct net_device *dev);
99
100static int mdio_read(kio_addr_t addr, int phy_id, int loc);
101static void mdio_write(kio_addr_t addr, int phy_id, int loc, int value);
102
103static void get_8390_hdr(struct net_device *,
104 struct e8390_pkt_hdr *, int);
105static void block_input(struct net_device *dev, int count,
106 struct sk_buff *skb, int ring_offset);
107static void block_output(struct net_device *dev, int count,
108 const u_char *buf, const int start_page);
109
110static dev_link_t *axnet_attach(void);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100111static void axnet_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113static dev_info_t dev_info = "axnet_cs";
114static dev_link_t *dev_list;
115
116static void axdev_setup(struct net_device *dev);
117static void AX88190_init(struct net_device *dev, int startp);
118static int ax_open(struct net_device *dev);
119static int ax_close(struct net_device *dev);
120static irqreturn_t ax_interrupt(int irq, void *dev_id, struct pt_regs *regs);
121
122/*====================================================================*/
123
124typedef struct axnet_dev_t {
125 dev_link_t link;
126 dev_node_t node;
127 caddr_t base;
128 struct timer_list watchdog;
129 int stale, fast_poll;
130 u_short link_status;
131 u_char duplex_flag;
132 int phy_id;
133 int flags;
134} axnet_dev_t;
135
136static inline axnet_dev_t *PRIV(struct net_device *dev)
137{
138 void *p = (char *)netdev_priv(dev) + sizeof(struct ei_device);
139 return p;
140}
141
142/*======================================================================
143
144 axnet_attach() creates an "instance" of the driver, allocating
145 local data structures for one device. The device is registered
146 with Card Services.
147
148======================================================================*/
149
150static dev_link_t *axnet_attach(void)
151{
152 axnet_dev_t *info;
153 dev_link_t *link;
154 struct net_device *dev;
155 client_reg_t client_reg;
156 int ret;
157
158 DEBUG(0, "axnet_attach()\n");
159
160 dev = alloc_netdev(sizeof(struct ei_device) + sizeof(axnet_dev_t),
161 "eth%d", axdev_setup);
162
163 if (!dev)
164 return NULL;
165
166 info = PRIV(dev);
167 link = &info->link;
168 link->priv = dev;
169 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
170 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
171 link->conf.Attributes = CONF_ENABLE_IRQ;
172 link->conf.IntType = INT_MEMORY_AND_IO;
173
174 dev->open = &axnet_open;
175 dev->stop = &axnet_close;
176 dev->do_ioctl = &axnet_ioctl;
177 SET_ETHTOOL_OPS(dev, &netdev_ethtool_ops);
178
179 /* Register with Card Services */
180 link->next = dev_list;
181 dev_list = link;
182 client_reg.dev_info = &dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 client_reg.Version = 0x0210;
184 client_reg.event_callback_args.client_data = link;
185 ret = pcmcia_register_client(&link->handle, &client_reg);
186 if (ret != CS_SUCCESS) {
187 cs_error(link->handle, RegisterClient, ret);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100188 axnet_detach(link->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return NULL;
190 }
191
192 return link;
193} /* axnet_attach */
194
195/*======================================================================
196
197 This deletes a driver "instance". The device is de-registered
198 with Card Services. If it has been released, all local data
199 structures are freed. Otherwise, the structures will be freed
200 when the device is released.
201
202======================================================================*/
203
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100204static void axnet_detach(struct pcmcia_device *p_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100206 dev_link_t *link = dev_to_instance(p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 struct net_device *dev = link->priv;
208 dev_link_t **linkp;
209
210 DEBUG(0, "axnet_detach(0x%p)\n", link);
211
212 /* Locate device structure */
213 for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
214 if (*linkp == link) break;
215 if (*linkp == NULL)
216 return;
217
218 if (link->dev)
219 unregister_netdev(dev);
220
221 if (link->state & DEV_CONFIG)
222 axnet_release(link);
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /* Unlink device structure, free bits */
225 *linkp = link->next;
226 free_netdev(dev);
227} /* axnet_detach */
228
229/*======================================================================
230
231 This probes for a card's hardware address by reading the PROM.
232
233======================================================================*/
234
235static int get_prom(dev_link_t *link)
236{
237 struct net_device *dev = link->priv;
238 kio_addr_t ioaddr = dev->base_addr;
239 int i, j;
240
241 /* This is based on drivers/net/ne.c */
242 struct {
243 u_char value, offset;
244 } program_seq[] = {
245 {E8390_NODMA+E8390_PAGE0+E8390_STOP, E8390_CMD}, /* Select page 0*/
246 {0x01, EN0_DCFG}, /* Set word-wide access. */
247 {0x00, EN0_RCNTLO}, /* Clear the count regs. */
248 {0x00, EN0_RCNTHI},
249 {0x00, EN0_IMR}, /* Mask completion irq. */
250 {0xFF, EN0_ISR},
251 {E8390_RXOFF|0x40, EN0_RXCR}, /* 0x60 Set to monitor */
252 {E8390_TXOFF, EN0_TXCR}, /* 0x02 and loopback mode. */
253 {0x10, EN0_RCNTLO},
254 {0x00, EN0_RCNTHI},
255 {0x00, EN0_RSARLO}, /* DMA starting at 0x0400. */
256 {0x04, EN0_RSARHI},
257 {E8390_RREAD+E8390_START, E8390_CMD},
258 };
259
260 /* Not much of a test, but the alternatives are messy */
261 if (link->conf.ConfigBase != 0x03c0)
262 return 0;
263
264 axnet_reset_8390(dev);
265 mdelay(10);
266
267 for (i = 0; i < sizeof(program_seq)/sizeof(program_seq[0]); i++)
268 outb_p(program_seq[i].value, ioaddr + program_seq[i].offset);
269
270 for (i = 0; i < 6; i += 2) {
271 j = inw(ioaddr + AXNET_DATAPORT);
272 dev->dev_addr[i] = j & 0xff;
273 dev->dev_addr[i+1] = j >> 8;
274 }
275 return 1;
276} /* get_prom */
277
278/*======================================================================
279
280 axnet_config() is scheduled to run after a CARD_INSERTION event
281 is received, to configure the PCMCIA socket, and to make the
282 ethernet device available to the system.
283
284======================================================================*/
285
286#define CS_CHECK(fn, ret) \
287do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
288
289static int try_io_port(dev_link_t *link)
290{
291 int j, ret;
292 if (link->io.NumPorts1 == 32) {
293 link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
294 if (link->io.NumPorts2 > 0) {
295 /* for master/slave multifunction cards */
296 link->io.Attributes2 = IO_DATA_PATH_WIDTH_8;
297 link->irq.Attributes =
298 IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED;
299 }
300 } else {
301 /* This should be two 16-port windows */
302 link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
303 link->io.Attributes2 = IO_DATA_PATH_WIDTH_16;
304 }
305 if (link->io.BasePort1 == 0) {
306 link->io.IOAddrLines = 16;
307 for (j = 0; j < 0x400; j += 0x20) {
308 link->io.BasePort1 = j ^ 0x300;
309 link->io.BasePort2 = (j ^ 0x300) + 0x10;
310 ret = pcmcia_request_io(link->handle, &link->io);
311 if (ret == CS_SUCCESS) return ret;
312 }
313 return ret;
314 } else {
315 return pcmcia_request_io(link->handle, &link->io);
316 }
317}
318
319static void axnet_config(dev_link_t *link)
320{
321 client_handle_t handle = link->handle;
322 struct net_device *dev = link->priv;
323 axnet_dev_t *info = PRIV(dev);
324 tuple_t tuple;
325 cisparse_t parse;
326 int i, j, last_ret, last_fn;
327 u_short buf[64];
328 config_info_t conf;
329
330 DEBUG(0, "axnet_config(0x%p)\n", link);
331
332 tuple.Attributes = 0;
333 tuple.TupleData = (cisdata_t *)buf;
334 tuple.TupleDataMax = sizeof(buf);
335 tuple.TupleOffset = 0;
336 tuple.DesiredTuple = CISTPL_CONFIG;
337 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple));
338 CS_CHECK(GetTupleData, pcmcia_get_tuple_data(handle, &tuple));
339 CS_CHECK(ParseTuple, pcmcia_parse_tuple(handle, &tuple, &parse));
340 link->conf.ConfigBase = parse.config.base;
341 /* don't trust the CIS on this; Linksys got it wrong */
342 link->conf.Present = 0x63;
343
344 /* Configure card */
345 link->state |= DEV_CONFIG;
346
347 /* Look up current Vcc */
348 CS_CHECK(GetConfigurationInfo, pcmcia_get_configuration_info(handle, &conf));
349 link->conf.Vcc = conf.Vcc;
350
351 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
352 tuple.Attributes = 0;
353 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple));
354 while (last_ret == CS_SUCCESS) {
355 cistpl_cftable_entry_t *cfg = &(parse.cftable_entry);
356 cistpl_io_t *io = &(parse.cftable_entry.io);
357
358 if (pcmcia_get_tuple_data(handle, &tuple) != 0 ||
359 pcmcia_parse_tuple(handle, &tuple, &parse) != 0 ||
360 cfg->index == 0 || cfg->io.nwin == 0)
361 goto next_entry;
362
363 link->conf.ConfigIndex = 0x05;
364 /* For multifunction cards, by convention, we configure the
365 network function with window 0, and serial with window 1 */
366 if (io->nwin > 1) {
367 i = (io->win[1].len > io->win[0].len);
368 link->io.BasePort2 = io->win[1-i].base;
369 link->io.NumPorts2 = io->win[1-i].len;
370 } else {
371 i = link->io.NumPorts2 = 0;
372 }
373 link->io.BasePort1 = io->win[i].base;
374 link->io.NumPorts1 = io->win[i].len;
375 link->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
376 if (link->io.NumPorts1 + link->io.NumPorts2 >= 32) {
377 last_ret = try_io_port(link);
378 if (last_ret == CS_SUCCESS) break;
379 }
380 next_entry:
381 last_ret = pcmcia_get_next_tuple(handle, &tuple);
382 }
383 if (last_ret != CS_SUCCESS) {
384 cs_error(handle, RequestIO, last_ret);
385 goto failed;
386 }
387
388 CS_CHECK(RequestIRQ, pcmcia_request_irq(handle, &link->irq));
389
390 if (link->io.NumPorts2 == 8) {
391 link->conf.Attributes |= CONF_ENABLE_SPKR;
392 link->conf.Status = CCSR_AUDIO_ENA;
393 }
394
395 CS_CHECK(RequestConfiguration, pcmcia_request_configuration(handle, &link->conf));
396 dev->irq = link->irq.AssignedIRQ;
397 dev->base_addr = link->io.BasePort1;
398
399 if (!get_prom(link)) {
400 printk(KERN_NOTICE "axnet_cs: this is not an AX88190 card!\n");
401 printk(KERN_NOTICE "axnet_cs: use pcnet_cs instead.\n");
402 goto failed;
403 }
404
405 ei_status.name = "AX88190";
406 ei_status.word16 = 1;
407 ei_status.tx_start_page = AXNET_START_PG;
408 ei_status.rx_start_page = AXNET_START_PG + TX_PAGES;
409 ei_status.stop_page = AXNET_STOP_PG;
410 ei_status.reset_8390 = &axnet_reset_8390;
411 ei_status.get_8390_hdr = &get_8390_hdr;
412 ei_status.block_input = &block_input;
413 ei_status.block_output = &block_output;
414
415 if (inb(dev->base_addr + AXNET_TEST) != 0)
416 info->flags |= IS_AX88790;
417 else
418 info->flags |= IS_AX88190;
419
420 if (info->flags & IS_AX88790)
421 outb(0x10, dev->base_addr + AXNET_GPIO); /* select Internal PHY */
422
423 for (i = 0; i < 32; i++) {
424 j = mdio_read(dev->base_addr + AXNET_MII_EEP, i, 1);
425 if ((j != 0) && (j != 0xffff)) break;
426 }
427
428 /* Maybe PHY is in power down mode. (PPD_SET = 1)
429 Bit 2 of CCSR is active low. */
430 if (i == 32) {
431 conf_reg_t reg = { 0, CS_WRITE, CISREG_CCSR, 0x04 };
432 pcmcia_access_configuration_register(link->handle, &reg);
433 for (i = 0; i < 32; i++) {
434 j = mdio_read(dev->base_addr + AXNET_MII_EEP, i, 1);
435 if ((j != 0) && (j != 0xffff)) break;
436 }
437 }
438
439 info->phy_id = (i < 32) ? i : -1;
440 link->dev = &info->node;
441 link->state &= ~DEV_CONFIG_PENDING;
442 SET_NETDEV_DEV(dev, &handle_to_dev(handle));
443
444 if (register_netdev(dev) != 0) {
445 printk(KERN_NOTICE "axnet_cs: register_netdev() failed\n");
446 link->dev = NULL;
447 goto failed;
448 }
449
450 strcpy(info->node.dev_name, dev->name);
451
452 printk(KERN_INFO "%s: Asix AX88%d90: io %#3lx, irq %d, hw_addr ",
453 dev->name, ((info->flags & IS_AX88790) ? 7 : 1),
454 dev->base_addr, dev->irq);
455 for (i = 0; i < 6; i++)
456 printk("%02X%s", dev->dev_addr[i], ((i<5) ? ":" : "\n"));
457 if (info->phy_id != -1) {
458 DEBUG(0, " MII transceiver at index %d, status %x.\n", info->phy_id, j);
459 } else {
460 printk(KERN_NOTICE " No MII transceivers found!\n");
461 }
462 return;
463
464cs_failed:
465 cs_error(link->handle, last_fn, last_ret);
466failed:
467 axnet_release(link);
468 link->state &= ~DEV_CONFIG_PENDING;
469 return;
470} /* axnet_config */
471
472/*======================================================================
473
474 After a card is removed, axnet_release() will unregister the net
475 device, and release the PCMCIA configuration. If the device is
476 still open, this will be postponed until it is closed.
477
478======================================================================*/
479
480static void axnet_release(dev_link_t *link)
481{
482 DEBUG(0, "axnet_release(0x%p)\n", link);
483
484 pcmcia_release_configuration(link->handle);
485 pcmcia_release_io(link->handle, &link->io);
486 pcmcia_release_irq(link->handle, &link->irq);
487
488 link->state &= ~DEV_CONFIG;
489}
490
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100491static int axnet_suspend(struct pcmcia_device *p_dev)
492{
493 dev_link_t *link = dev_to_instance(p_dev);
494 struct net_device *dev = link->priv;
495
496 link->state |= DEV_SUSPEND;
497 if (link->state & DEV_CONFIG) {
498 if (link->open)
499 netif_device_detach(dev);
500 pcmcia_release_configuration(link->handle);
501 }
502
503 return 0;
504}
505
506static int axnet_resume(struct pcmcia_device *p_dev)
507{
508 dev_link_t *link = dev_to_instance(p_dev);
509 struct net_device *dev = link->priv;
510
511 link->state &= ~DEV_SUSPEND;
512 if (link->state & DEV_CONFIG) {
513 pcmcia_request_configuration(link->handle, &link->conf);
514 if (link->open) {
515 axnet_reset_8390(dev);
516 AX88190_init(dev, 1);
517 netif_device_attach(dev);
518 }
519 }
520
521 return 0;
522}
523
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/*======================================================================
526
527 The card status event handler. Mostly, this schedules other
528 stuff to run after an event is received. A CARD_REMOVAL event
529 also sets some flags to discourage the net drivers from trying
530 to talk to the card any more.
531
532======================================================================*/
533
534static int axnet_event(event_t event, int priority,
535 event_callback_args_t *args)
536{
537 dev_link_t *link = args->client_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 DEBUG(2, "axnet_event(0x%06x)\n", event);
540
541 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 case CS_EVENT_CARD_INSERTION:
543 link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
544 axnet_config(link);
545 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
547 return 0;
548} /* axnet_event */
549
550/*======================================================================
551
552 MII interface support
553
554======================================================================*/
555
556#define MDIO_SHIFT_CLK 0x01
557#define MDIO_DATA_WRITE0 0x00
558#define MDIO_DATA_WRITE1 0x08
559#define MDIO_DATA_READ 0x04
560#define MDIO_MASK 0x0f
561#define MDIO_ENB_IN 0x02
562
563static void mdio_sync(kio_addr_t addr)
564{
565 int bits;
566 for (bits = 0; bits < 32; bits++) {
567 outb_p(MDIO_DATA_WRITE1, addr);
568 outb_p(MDIO_DATA_WRITE1 | MDIO_SHIFT_CLK, addr);
569 }
570}
571
572static int mdio_read(kio_addr_t addr, int phy_id, int loc)
573{
574 u_int cmd = (0xf6<<10)|(phy_id<<5)|loc;
575 int i, retval = 0;
576
577 mdio_sync(addr);
578 for (i = 14; i >= 0; i--) {
579 int dat = (cmd&(1<<i)) ? MDIO_DATA_WRITE1 : MDIO_DATA_WRITE0;
580 outb_p(dat, addr);
581 outb_p(dat | MDIO_SHIFT_CLK, addr);
582 }
583 for (i = 19; i > 0; i--) {
584 outb_p(MDIO_ENB_IN, addr);
585 retval = (retval << 1) | ((inb_p(addr) & MDIO_DATA_READ) != 0);
586 outb_p(MDIO_ENB_IN | MDIO_SHIFT_CLK, addr);
587 }
588 return (retval>>1) & 0xffff;
589}
590
591static void mdio_write(kio_addr_t addr, int phy_id, int loc, int value)
592{
593 u_int cmd = (0x05<<28)|(phy_id<<23)|(loc<<18)|(1<<17)|value;
594 int i;
595
596 mdio_sync(addr);
597 for (i = 31; i >= 0; i--) {
598 int dat = (cmd&(1<<i)) ? MDIO_DATA_WRITE1 : MDIO_DATA_WRITE0;
599 outb_p(dat, addr);
600 outb_p(dat | MDIO_SHIFT_CLK, addr);
601 }
602 for (i = 1; i >= 0; i--) {
603 outb_p(MDIO_ENB_IN, addr);
604 outb_p(MDIO_ENB_IN | MDIO_SHIFT_CLK, addr);
605 }
606}
607
608/*====================================================================*/
609
610static int axnet_open(struct net_device *dev)
611{
612 axnet_dev_t *info = PRIV(dev);
613 dev_link_t *link = &info->link;
614
615 DEBUG(2, "axnet_open('%s')\n", dev->name);
616
617 if (!DEV_OK(link))
618 return -ENODEV;
619
620 link->open++;
621
622 request_irq(dev->irq, ei_irq_wrapper, SA_SHIRQ, dev_info, dev);
623
624 info->link_status = 0x00;
625 init_timer(&info->watchdog);
626 info->watchdog.function = &ei_watchdog;
627 info->watchdog.data = (u_long)dev;
628 info->watchdog.expires = jiffies + HZ;
629 add_timer(&info->watchdog);
630
631 return ax_open(dev);
632} /* axnet_open */
633
634/*====================================================================*/
635
636static int axnet_close(struct net_device *dev)
637{
638 axnet_dev_t *info = PRIV(dev);
639 dev_link_t *link = &info->link;
640
641 DEBUG(2, "axnet_close('%s')\n", dev->name);
642
643 ax_close(dev);
644 free_irq(dev->irq, dev);
645
646 link->open--;
647 netif_stop_queue(dev);
648 del_timer_sync(&info->watchdog);
649
650 return 0;
651} /* axnet_close */
652
653/*======================================================================
654
655 Hard reset the card. This used to pause for the same period that
656 a 8390 reset command required, but that shouldn't be necessary.
657
658======================================================================*/
659
660static void axnet_reset_8390(struct net_device *dev)
661{
662 kio_addr_t nic_base = dev->base_addr;
663 int i;
664
665 ei_status.txing = ei_status.dmaing = 0;
666
667 outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, nic_base + E8390_CMD);
668
669 outb(inb(nic_base + AXNET_RESET), nic_base + AXNET_RESET);
670
671 for (i = 0; i < 100; i++) {
672 if ((inb_p(nic_base+EN0_ISR) & ENISR_RESET) != 0)
673 break;
674 udelay(100);
675 }
676 outb_p(ENISR_RESET, nic_base + EN0_ISR); /* Ack intr. */
677
678 if (i == 100)
679 printk(KERN_ERR "%s: axnet_reset_8390() did not complete.\n",
680 dev->name);
681
682} /* axnet_reset_8390 */
683
684/*====================================================================*/
685
686static irqreturn_t ei_irq_wrapper(int irq, void *dev_id, struct pt_regs *regs)
687{
688 struct net_device *dev = dev_id;
689 PRIV(dev)->stale = 0;
690 return ax_interrupt(irq, dev_id, regs);
691}
692
693static void ei_watchdog(u_long arg)
694{
695 struct net_device *dev = (struct net_device *)(arg);
696 axnet_dev_t *info = PRIV(dev);
697 kio_addr_t nic_base = dev->base_addr;
698 kio_addr_t mii_addr = nic_base + AXNET_MII_EEP;
699 u_short link;
700
701 if (!netif_device_present(dev)) goto reschedule;
702
703 /* Check for pending interrupt with expired latency timer: with
704 this, we can limp along even if the interrupt is blocked */
705 if (info->stale++ && (inb_p(nic_base + EN0_ISR) & ENISR_ALL)) {
706 if (!info->fast_poll)
707 printk(KERN_INFO "%s: interrupt(s) dropped!\n", dev->name);
708 ei_irq_wrapper(dev->irq, dev, NULL);
709 info->fast_poll = HZ;
710 }
711 if (info->fast_poll) {
712 info->fast_poll--;
713 info->watchdog.expires = jiffies + 1;
714 add_timer(&info->watchdog);
715 return;
716 }
717
718 if (info->phy_id < 0)
719 goto reschedule;
720 link = mdio_read(mii_addr, info->phy_id, 1);
721 if (!link || (link == 0xffff)) {
722 printk(KERN_INFO "%s: MII is missing!\n", dev->name);
723 info->phy_id = -1;
724 goto reschedule;
725 }
726
727 link &= 0x0004;
728 if (link != info->link_status) {
729 u_short p = mdio_read(mii_addr, info->phy_id, 5);
730 printk(KERN_INFO "%s: %s link beat\n", dev->name,
731 (link) ? "found" : "lost");
732 if (link) {
733 info->duplex_flag = (p & 0x0140) ? 0x80 : 0x00;
734 if (p)
735 printk(KERN_INFO "%s: autonegotiation complete: "
736 "%sbaseT-%cD selected\n", dev->name,
737 ((p & 0x0180) ? "100" : "10"),
738 ((p & 0x0140) ? 'F' : 'H'));
739 else
740 printk(KERN_INFO "%s: link partner did not autonegotiate\n",
741 dev->name);
742 AX88190_init(dev, 1);
743 }
744 info->link_status = link;
745 }
746
747reschedule:
748 info->watchdog.expires = jiffies + HZ;
749 add_timer(&info->watchdog);
750}
751
752static void netdev_get_drvinfo(struct net_device *dev,
753 struct ethtool_drvinfo *info)
754{
755 strcpy(info->driver, "axnet_cs");
756}
757
758static struct ethtool_ops netdev_ethtool_ops = {
759 .get_drvinfo = netdev_get_drvinfo,
760};
761
762/*====================================================================*/
763
764static int axnet_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
765{
766 axnet_dev_t *info = PRIV(dev);
767 u16 *data = (u16 *)&rq->ifr_ifru;
768 kio_addr_t mii_addr = dev->base_addr + AXNET_MII_EEP;
769 switch (cmd) {
770 case SIOCGMIIPHY:
771 data[0] = info->phy_id;
772 case SIOCGMIIREG: /* Read MII PHY register. */
773 data[3] = mdio_read(mii_addr, data[0], data[1] & 0x1f);
774 return 0;
775 case SIOCSMIIREG: /* Write MII PHY register. */
776 if (!capable(CAP_NET_ADMIN))
777 return -EPERM;
778 mdio_write(mii_addr, data[0], data[1] & 0x1f, data[2]);
779 return 0;
780 }
781 return -EOPNOTSUPP;
782}
783
784/*====================================================================*/
785
786static void get_8390_hdr(struct net_device *dev,
787 struct e8390_pkt_hdr *hdr,
788 int ring_page)
789{
790 kio_addr_t nic_base = dev->base_addr;
791
792 outb_p(0, nic_base + EN0_RSARLO); /* On page boundary */
793 outb_p(ring_page, nic_base + EN0_RSARHI);
794 outb_p(E8390_RREAD+E8390_START, nic_base + AXNET_CMD);
795
796 insw(nic_base + AXNET_DATAPORT, hdr,
797 sizeof(struct e8390_pkt_hdr)>>1);
798 /* Fix for big endian systems */
799 hdr->count = le16_to_cpu(hdr->count);
800
801}
802
803/*====================================================================*/
804
805static void block_input(struct net_device *dev, int count,
806 struct sk_buff *skb, int ring_offset)
807{
808 kio_addr_t nic_base = dev->base_addr;
809 int xfer_count = count;
810 char *buf = skb->data;
811
812#ifdef PCMCIA_DEBUG
813 if ((ei_debug > 4) && (count != 4))
814 printk(KERN_DEBUG "%s: [bi=%d]\n", dev->name, count+4);
815#endif
816 outb_p(ring_offset & 0xff, nic_base + EN0_RSARLO);
817 outb_p(ring_offset >> 8, nic_base + EN0_RSARHI);
818 outb_p(E8390_RREAD+E8390_START, nic_base + AXNET_CMD);
819
820 insw(nic_base + AXNET_DATAPORT,buf,count>>1);
821 if (count & 0x01)
822 buf[count-1] = inb(nic_base + AXNET_DATAPORT), xfer_count++;
823
824}
825
826/*====================================================================*/
827
828static void block_output(struct net_device *dev, int count,
829 const u_char *buf, const int start_page)
830{
831 kio_addr_t nic_base = dev->base_addr;
832
833#ifdef PCMCIA_DEBUG
834 if (ei_debug > 4)
835 printk(KERN_DEBUG "%s: [bo=%d]\n", dev->name, count);
836#endif
837
838 /* Round the count up for word writes. Do we need to do this?
839 What effect will an odd byte count have on the 8390?
840 I should check someday. */
841 if (count & 0x01)
842 count++;
843
844 outb_p(0x00, nic_base + EN0_RSARLO);
845 outb_p(start_page, nic_base + EN0_RSARHI);
846 outb_p(E8390_RWRITE+E8390_START, nic_base + AXNET_CMD);
847 outsw(nic_base + AXNET_DATAPORT, buf, count>>1);
848}
849
Dominik Brodowskic414f752005-06-27 16:28:20 -0700850static struct pcmcia_device_id axnet_ids[] = {
851 PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x016c, 0x0081),
852 PCMCIA_DEVICE_MANF_CARD(0x018a, 0x0301),
853 PCMCIA_DEVICE_MANF_CARD(0x026f, 0x0301),
854 PCMCIA_DEVICE_MANF_CARD(0x026f, 0x0303),
855 PCMCIA_DEVICE_MANF_CARD(0x026f, 0x0309),
856 PCMCIA_DEVICE_MANF_CARD(0x0274, 0x1106),
857 PCMCIA_DEVICE_MANF_CARD(0x8a01, 0xc1ab),
858 PCMCIA_DEVICE_PROD_ID124("Fast Ethernet", "16-bit PC Card", "AX88190", 0xb4be14e3, 0x9a12eb6a, 0xab9be5ef),
859 PCMCIA_DEVICE_PROD_ID12("ASIX", "AX88190", 0x0959823b, 0xab9be5ef),
860 PCMCIA_DEVICE_PROD_ID12("Billionton", "LNA-100B", 0x552ab682, 0xbc3b87e1),
861 PCMCIA_DEVICE_PROD_ID12("CHEETAH ETHERCARD", "EN2228", 0x00fa7bc8, 0x00e990cc),
862 PCMCIA_DEVICE_PROD_ID12("CNet", "CNF301", 0xbc477dde, 0x78c5f40b),
863 PCMCIA_DEVICE_PROD_ID12("corega K.K.", "corega FEther PCC-TXD", 0x5261440f, 0x436768c5),
864 PCMCIA_DEVICE_PROD_ID12("corega K.K.", "corega FEtherII PCC-TXD", 0x5261440f, 0x730df72e),
865 PCMCIA_DEVICE_PROD_ID12("Dynalink", "L100C16", 0x55632fd5, 0x66bc2a90),
866 PCMCIA_DEVICE_PROD_ID12("Linksys", "EtherFast 10/100 PC Card (PCMPC100 V3)", 0x0733cc81, 0x232019a8),
867 PCMCIA_DEVICE_PROD_ID12("MELCO", "LPC3-TX", 0x481e0094, 0xf91af609),
868 PCMCIA_DEVICE_PROD_ID12("PCMCIA", "100BASE", 0x281f1c5d, 0x7c2add04),
869 PCMCIA_DEVICE_PROD_ID12("PCMCIA", "FastEtherCard", 0x281f1c5d, 0x7ef26116),
870 PCMCIA_DEVICE_PROD_ID12("PCMCIA", "FEP501", 0x281f1c5d, 0x2e272058),
871 PCMCIA_DEVICE_PROD_ID14("Network Everywhere", "AX88190", 0x820a67b6, 0xab9be5ef),
872 /* this is not specific enough */
873 /* PCMCIA_DEVICE_MANF_CARD(0x021b, 0x0202), */
874 PCMCIA_DEVICE_NULL,
875};
876MODULE_DEVICE_TABLE(pcmcia, axnet_ids);
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878static struct pcmcia_driver axnet_cs_driver = {
879 .owner = THIS_MODULE,
880 .drv = {
881 .name = "axnet_cs",
882 },
883 .attach = axnet_attach,
Dominik Brodowski1e212f32005-07-07 17:59:00 -0700884 .event = axnet_event,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100885 .remove = axnet_detach,
Dominik Brodowskic414f752005-06-27 16:28:20 -0700886 .id_table = axnet_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100887 .suspend = axnet_suspend,
888 .resume = axnet_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889};
890
891static int __init init_axnet_cs(void)
892{
893 return pcmcia_register_driver(&axnet_cs_driver);
894}
895
896static void __exit exit_axnet_cs(void)
897{
898 pcmcia_unregister_driver(&axnet_cs_driver);
899 BUG_ON(dev_list != NULL);
900}
901
902module_init(init_axnet_cs);
903module_exit(exit_axnet_cs);
904
905/*====================================================================*/
906
907/* 8390.c: A general NS8390 ethernet driver core for linux. */
908/*
909 Written 1992-94 by Donald Becker.
910
911 Copyright 1993 United States Government as represented by the
912 Director, National Security Agency.
913
914 This software may be used and distributed according to the terms
915 of the GNU General Public License, incorporated herein by reference.
916
917 The author may be reached as becker@scyld.com, or C/O
918 Scyld Computing Corporation
919 410 Severn Ave., Suite 210
920 Annapolis MD 21403
921
922 This is the chip-specific code for many 8390-based ethernet adaptors.
923 This is not a complete driver, it must be combined with board-specific
924 code such as ne.c, wd.c, 3c503.c, etc.
925
926 Seeing how at least eight drivers use this code, (not counting the
927 PCMCIA ones either) it is easy to break some card by what seems like
928 a simple innocent change. Please contact me or Donald if you think
929 you have found something that needs changing. -- PG
930
931 Changelog:
932
933 Paul Gortmaker : remove set_bit lock, other cleanups.
934 Paul Gortmaker : add ei_get_8390_hdr() so we can pass skb's to
935 ei_block_input() for eth_io_copy_and_sum().
936 Paul Gortmaker : exchange static int ei_pingpong for a #define,
937 also add better Tx error handling.
938 Paul Gortmaker : rewrite Rx overrun handling as per NS specs.
939 Alexey Kuznetsov : use the 8390's six bit hash multicast filter.
940 Paul Gortmaker : tweak ANK's above multicast changes a bit.
941 Paul Gortmaker : update packet statistics for v2.1.x
942 Alan Cox : support arbitary stupid port mappings on the
943 68K Macintosh. Support >16bit I/O spaces
944 Paul Gortmaker : add kmod support for auto-loading of the 8390
945 module by all drivers that require it.
946 Alan Cox : Spinlocking work, added 'BUG_83C690'
947 Paul Gortmaker : Separate out Tx timeout code from Tx path.
948
949 Sources:
950 The National Semiconductor LAN Databook, and the 3Com 3c503 databook.
951
952 */
953
954static const char *version_8390 =
955 "8390.c:v1.10cvs 9/23/94 Donald Becker (becker@scyld.com)\n";
956
957#include <linux/bitops.h>
958#include <asm/irq.h>
959#include <linux/fcntl.h>
960#include <linux/in.h>
961#include <linux/interrupt.h>
962
963#include <linux/etherdevice.h>
964
965#define BUG_83C690
966
967/* These are the operational function interfaces to board-specific
968 routines.
969 void reset_8390(struct net_device *dev)
970 Resets the board associated with DEV, including a hardware reset of
971 the 8390. This is only called when there is a transmit timeout, and
972 it is always followed by 8390_init().
973 void block_output(struct net_device *dev, int count, const unsigned char *buf,
974 int start_page)
975 Write the COUNT bytes of BUF to the packet buffer at START_PAGE. The
976 "page" value uses the 8390's 256-byte pages.
977 void get_8390_hdr(struct net_device *dev, struct e8390_hdr *hdr, int ring_page)
978 Read the 4 byte, page aligned 8390 header. *If* there is a
979 subsequent read, it will be of the rest of the packet.
980 void block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset)
981 Read COUNT bytes from the packet buffer into the skb data area. Start
982 reading from RING_OFFSET, the address as the 8390 sees it. This will always
983 follow the read of the 8390 header.
984*/
985#define ei_reset_8390 (ei_local->reset_8390)
986#define ei_block_output (ei_local->block_output)
987#define ei_block_input (ei_local->block_input)
988#define ei_get_8390_hdr (ei_local->get_8390_hdr)
989
990/* use 0 for production, 1 for verification, >2 for debug */
991#ifndef ei_debug
992int ei_debug = 1;
993#endif
994
995/* Index to functions. */
996static void ei_tx_intr(struct net_device *dev);
997static void ei_tx_err(struct net_device *dev);
998static void ei_tx_timeout(struct net_device *dev);
999static void ei_receive(struct net_device *dev);
1000static void ei_rx_overrun(struct net_device *dev);
1001
1002/* Routines generic to NS8390-based boards. */
1003static void NS8390_trigger_send(struct net_device *dev, unsigned int length,
1004 int start_page);
1005static void set_multicast_list(struct net_device *dev);
1006static void do_set_multicast_list(struct net_device *dev);
1007
1008/*
1009 * SMP and the 8390 setup.
1010 *
1011 * The 8390 isnt exactly designed to be multithreaded on RX/TX. There is
1012 * a page register that controls bank and packet buffer access. We guard
1013 * this with ei_local->page_lock. Nobody should assume or set the page other
1014 * than zero when the lock is not held. Lock holders must restore page 0
1015 * before unlocking. Even pure readers must take the lock to protect in
1016 * page 0.
1017 *
1018 * To make life difficult the chip can also be very slow. We therefore can't
1019 * just use spinlocks. For the longer lockups we disable the irq the device
1020 * sits on and hold the lock. We must hold the lock because there is a dual
1021 * processor case other than interrupts (get stats/set multicast list in
1022 * parallel with each other and transmit).
1023 *
1024 * Note: in theory we can just disable the irq on the card _but_ there is
1025 * a latency on SMP irq delivery. So we can easily go "disable irq" "sync irqs"
1026 * enter lock, take the queued irq. So we waddle instead of flying.
1027 *
1028 * Finally by special arrangement for the purpose of being generally
1029 * annoying the transmit function is called bh atomic. That places
1030 * restrictions on the user context callers as disable_irq won't save
1031 * them.
1032 */
1033
1034/**
1035 * ax_open - Open/initialize the board.
1036 * @dev: network device to initialize
1037 *
1038 * This routine goes all-out, setting everything
1039 * up anew at each open, even though many of these registers should only
1040 * need to be set once at boot.
1041 */
1042static int ax_open(struct net_device *dev)
1043{
1044 unsigned long flags;
1045 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
1046
1047#ifdef HAVE_TX_TIMEOUT
1048 /* The card I/O part of the driver (e.g. 3c503) can hook a Tx timeout
1049 wrapper that does e.g. media check & then calls ei_tx_timeout. */
1050 if (dev->tx_timeout == NULL)
1051 dev->tx_timeout = ei_tx_timeout;
1052 if (dev->watchdog_timeo <= 0)
1053 dev->watchdog_timeo = TX_TIMEOUT;
1054#endif
1055
1056 /*
1057 * Grab the page lock so we own the register set, then call
1058 * the init function.
1059 */
1060
1061 spin_lock_irqsave(&ei_local->page_lock, flags);
1062 AX88190_init(dev, 1);
1063 /* Set the flag before we drop the lock, That way the IRQ arrives
1064 after its set and we get no silly warnings */
1065 netif_start_queue(dev);
1066 spin_unlock_irqrestore(&ei_local->page_lock, flags);
1067 ei_local->irqlock = 0;
1068 return 0;
1069}
1070
1071#define dev_lock(dev) (((struct ei_device *)netdev_priv(dev))->page_lock)
1072
1073/**
1074 * ax_close - shut down network device
1075 * @dev: network device to close
1076 *
1077 * Opposite of ax_open(). Only used when "ifconfig <devname> down" is done.
1078 */
1079int ax_close(struct net_device *dev)
1080{
1081 unsigned long flags;
1082
1083 /*
1084 * Hold the page lock during close
1085 */
1086
1087 spin_lock_irqsave(&dev_lock(dev), flags);
1088 AX88190_init(dev, 0);
1089 spin_unlock_irqrestore(&dev_lock(dev), flags);
1090 netif_stop_queue(dev);
1091 return 0;
1092}
1093
1094/**
1095 * ei_tx_timeout - handle transmit time out condition
1096 * @dev: network device which has apparently fallen asleep
1097 *
1098 * Called by kernel when device never acknowledges a transmit has
1099 * completed (or failed) - i.e. never posted a Tx related interrupt.
1100 */
1101
1102void ei_tx_timeout(struct net_device *dev)
1103{
1104 long e8390_base = dev->base_addr;
1105 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
1106 int txsr, isr, tickssofar = jiffies - dev->trans_start;
1107 unsigned long flags;
1108
1109 ei_local->stat.tx_errors++;
1110
1111 spin_lock_irqsave(&ei_local->page_lock, flags);
1112 txsr = inb(e8390_base+EN0_TSR);
1113 isr = inb(e8390_base+EN0_ISR);
1114 spin_unlock_irqrestore(&ei_local->page_lock, flags);
1115
1116 printk(KERN_DEBUG "%s: Tx timed out, %s TSR=%#2x, ISR=%#2x, t=%d.\n",
1117 dev->name, (txsr & ENTSR_ABT) ? "excess collisions." :
1118 (isr) ? "lost interrupt?" : "cable problem?", txsr, isr, tickssofar);
1119
1120 if (!isr && !ei_local->stat.tx_packets)
1121 {
1122 /* The 8390 probably hasn't gotten on the cable yet. */
1123 ei_local->interface_num ^= 1; /* Try a different xcvr. */
1124 }
1125
1126 /* Ugly but a reset can be slow, yet must be protected */
1127
1128 disable_irq_nosync(dev->irq);
1129 spin_lock(&ei_local->page_lock);
1130
1131 /* Try to restart the card. Perhaps the user has fixed something. */
1132 ei_reset_8390(dev);
1133 AX88190_init(dev, 1);
1134
1135 spin_unlock(&ei_local->page_lock);
1136 enable_irq(dev->irq);
1137 netif_wake_queue(dev);
1138}
1139
1140/**
1141 * ei_start_xmit - begin packet transmission
1142 * @skb: packet to be sent
1143 * @dev: network device to which packet is sent
1144 *
1145 * Sends a packet to an 8390 network device.
1146 */
1147
1148static int ei_start_xmit(struct sk_buff *skb, struct net_device *dev)
1149{
1150 long e8390_base = dev->base_addr;
1151 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
1152 int length, send_length, output_page;
1153 unsigned long flags;
1154 u8 packet[ETH_ZLEN];
1155
1156 netif_stop_queue(dev);
1157
1158 length = skb->len;
1159
1160 /* Mask interrupts from the ethercard.
1161 SMP: We have to grab the lock here otherwise the IRQ handler
1162 on another CPU can flip window and race the IRQ mask set. We end
1163 up trashing the mcast filter not disabling irqs if we don't lock */
1164
1165 spin_lock_irqsave(&ei_local->page_lock, flags);
1166 outb_p(0x00, e8390_base + EN0_IMR);
1167 spin_unlock_irqrestore(&ei_local->page_lock, flags);
1168
1169 /*
1170 * Slow phase with lock held.
1171 */
1172
1173 disable_irq_nosync(dev->irq);
1174
1175 spin_lock(&ei_local->page_lock);
1176
1177 ei_local->irqlock = 1;
1178
1179 send_length = ETH_ZLEN < length ? length : ETH_ZLEN;
1180
1181 /*
1182 * We have two Tx slots available for use. Find the first free
1183 * slot, and then perform some sanity checks. With two Tx bufs,
1184 * you get very close to transmitting back-to-back packets. With
1185 * only one Tx buf, the transmitter sits idle while you reload the
1186 * card, leaving a substantial gap between each transmitted packet.
1187 */
1188
1189 if (ei_local->tx1 == 0)
1190 {
1191 output_page = ei_local->tx_start_page;
1192 ei_local->tx1 = send_length;
1193 if (ei_debug && ei_local->tx2 > 0)
1194 printk(KERN_DEBUG "%s: idle transmitter tx2=%d, lasttx=%d, txing=%d.\n",
1195 dev->name, ei_local->tx2, ei_local->lasttx, ei_local->txing);
1196 }
1197 else if (ei_local->tx2 == 0)
1198 {
1199 output_page = ei_local->tx_start_page + TX_PAGES/2;
1200 ei_local->tx2 = send_length;
1201 if (ei_debug && ei_local->tx1 > 0)
1202 printk(KERN_DEBUG "%s: idle transmitter, tx1=%d, lasttx=%d, txing=%d.\n",
1203 dev->name, ei_local->tx1, ei_local->lasttx, ei_local->txing);
1204 }
1205 else
1206 { /* We should never get here. */
1207 if (ei_debug)
1208 printk(KERN_DEBUG "%s: No Tx buffers free! tx1=%d tx2=%d last=%d\n",
1209 dev->name, ei_local->tx1, ei_local->tx2, ei_local->lasttx);
1210 ei_local->irqlock = 0;
1211 netif_stop_queue(dev);
1212 outb_p(ENISR_ALL, e8390_base + EN0_IMR);
1213 spin_unlock(&ei_local->page_lock);
1214 enable_irq(dev->irq);
1215 ei_local->stat.tx_errors++;
1216 return 1;
1217 }
1218
1219 /*
1220 * Okay, now upload the packet and trigger a send if the transmitter
1221 * isn't already sending. If it is busy, the interrupt handler will
1222 * trigger the send later, upon receiving a Tx done interrupt.
1223 */
1224
1225 if (length == skb->len)
1226 ei_block_output(dev, length, skb->data, output_page);
1227 else {
1228 memset(packet, 0, ETH_ZLEN);
1229 memcpy(packet, skb->data, skb->len);
1230 ei_block_output(dev, length, packet, output_page);
1231 }
1232
1233 if (! ei_local->txing)
1234 {
1235 ei_local->txing = 1;
1236 NS8390_trigger_send(dev, send_length, output_page);
1237 dev->trans_start = jiffies;
1238 if (output_page == ei_local->tx_start_page)
1239 {
1240 ei_local->tx1 = -1;
1241 ei_local->lasttx = -1;
1242 }
1243 else
1244 {
1245 ei_local->tx2 = -1;
1246 ei_local->lasttx = -2;
1247 }
1248 }
1249 else ei_local->txqueue++;
1250
1251 if (ei_local->tx1 && ei_local->tx2)
1252 netif_stop_queue(dev);
1253 else
1254 netif_start_queue(dev);
1255
1256 /* Turn 8390 interrupts back on. */
1257 ei_local->irqlock = 0;
1258 outb_p(ENISR_ALL, e8390_base + EN0_IMR);
1259
1260 spin_unlock(&ei_local->page_lock);
1261 enable_irq(dev->irq);
1262
1263 dev_kfree_skb (skb);
1264 ei_local->stat.tx_bytes += send_length;
1265
1266 return 0;
1267}
1268
1269/**
1270 * ax_interrupt - handle the interrupts from an 8390
1271 * @irq: interrupt number
1272 * @dev_id: a pointer to the net_device
1273 * @regs: unused
1274 *
1275 * Handle the ether interface interrupts. We pull packets from
1276 * the 8390 via the card specific functions and fire them at the networking
1277 * stack. We also handle transmit completions and wake the transmit path if
1278 * necessary. We also update the counters and do other housekeeping as
1279 * needed.
1280 */
1281
1282static irqreturn_t ax_interrupt(int irq, void *dev_id, struct pt_regs * regs)
1283{
1284 struct net_device *dev = dev_id;
1285 long e8390_base;
1286 int interrupts, nr_serviced = 0, i;
1287 struct ei_device *ei_local;
1288 int handled = 0;
1289
1290 if (dev == NULL)
1291 {
1292 printk ("net_interrupt(): irq %d for unknown device.\n", irq);
1293 return IRQ_NONE;
1294 }
1295
1296 e8390_base = dev->base_addr;
1297 ei_local = (struct ei_device *) netdev_priv(dev);
1298
1299 /*
1300 * Protect the irq test too.
1301 */
1302
1303 spin_lock(&ei_local->page_lock);
1304
1305 if (ei_local->irqlock)
1306 {
1307#if 1 /* This might just be an interrupt for a PCI device sharing this line */
1308 /* The "irqlock" check is only for testing. */
1309 printk(ei_local->irqlock
1310 ? "%s: Interrupted while interrupts are masked! isr=%#2x imr=%#2x.\n"
1311 : "%s: Reentering the interrupt handler! isr=%#2x imr=%#2x.\n",
1312 dev->name, inb_p(e8390_base + EN0_ISR),
1313 inb_p(e8390_base + EN0_IMR));
1314#endif
1315 spin_unlock(&ei_local->page_lock);
1316 return IRQ_NONE;
1317 }
1318
1319 if (ei_debug > 3)
1320 printk(KERN_DEBUG "%s: interrupt(isr=%#2.2x).\n", dev->name,
1321 inb_p(e8390_base + EN0_ISR));
1322
1323 outb_p(0x00, e8390_base + EN0_ISR);
1324 ei_local->irqlock = 1;
1325
1326 /* !!Assumption!! -- we stay in page 0. Don't break this. */
1327 while ((interrupts = inb_p(e8390_base + EN0_ISR)) != 0
1328 && ++nr_serviced < MAX_SERVICE)
1329 {
1330 if (!netif_running(dev) || (interrupts == 0xff)) {
1331 if (ei_debug > 1)
1332 printk(KERN_WARNING "%s: interrupt from stopped card\n", dev->name);
1333 outb_p(interrupts, e8390_base + EN0_ISR);
1334 interrupts = 0;
1335 break;
1336 }
1337 handled = 1;
1338
1339 /* AX88190 bug fix. */
1340 outb_p(interrupts, e8390_base + EN0_ISR);
1341 for (i = 0; i < 10; i++) {
1342 if (!(inb(e8390_base + EN0_ISR) & interrupts))
1343 break;
1344 outb_p(0, e8390_base + EN0_ISR);
1345 outb_p(interrupts, e8390_base + EN0_ISR);
1346 }
1347 if (interrupts & ENISR_OVER)
1348 ei_rx_overrun(dev);
1349 else if (interrupts & (ENISR_RX+ENISR_RX_ERR))
1350 {
1351 /* Got a good (?) packet. */
1352 ei_receive(dev);
1353 }
1354 /* Push the next to-transmit packet through. */
1355 if (interrupts & ENISR_TX)
1356 ei_tx_intr(dev);
1357 else if (interrupts & ENISR_TX_ERR)
1358 ei_tx_err(dev);
1359
1360 if (interrupts & ENISR_COUNTERS)
1361 {
1362 ei_local->stat.rx_frame_errors += inb_p(e8390_base + EN0_COUNTER0);
1363 ei_local->stat.rx_crc_errors += inb_p(e8390_base + EN0_COUNTER1);
1364 ei_local->stat.rx_missed_errors+= inb_p(e8390_base + EN0_COUNTER2);
1365 }
1366 }
1367
1368 if (interrupts && ei_debug)
1369 {
1370 handled = 1;
1371 if (nr_serviced >= MAX_SERVICE)
1372 {
1373 /* 0xFF is valid for a card removal */
1374 if(interrupts!=0xFF)
1375 printk(KERN_WARNING "%s: Too much work at interrupt, status %#2.2x\n",
1376 dev->name, interrupts);
1377 outb_p(ENISR_ALL, e8390_base + EN0_ISR); /* Ack. most intrs. */
1378 } else {
1379 printk(KERN_WARNING "%s: unknown interrupt %#2x\n", dev->name, interrupts);
1380 outb_p(0xff, e8390_base + EN0_ISR); /* Ack. all intrs. */
1381 }
1382 }
1383
1384 /* Turn 8390 interrupts back on. */
1385 ei_local->irqlock = 0;
1386 outb_p(ENISR_ALL, e8390_base + EN0_IMR);
1387
1388 spin_unlock(&ei_local->page_lock);
1389 return IRQ_RETVAL(handled);
1390}
1391
1392/**
1393 * ei_tx_err - handle transmitter error
1394 * @dev: network device which threw the exception
1395 *
1396 * A transmitter error has happened. Most likely excess collisions (which
1397 * is a fairly normal condition). If the error is one where the Tx will
1398 * have been aborted, we try and send another one right away, instead of
1399 * letting the failed packet sit and collect dust in the Tx buffer. This
1400 * is a much better solution as it avoids kernel based Tx timeouts, and
1401 * an unnecessary card reset.
1402 *
1403 * Called with lock held.
1404 */
1405
1406static void ei_tx_err(struct net_device *dev)
1407{
1408 long e8390_base = dev->base_addr;
1409 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
1410 unsigned char txsr = inb_p(e8390_base+EN0_TSR);
1411 unsigned char tx_was_aborted = txsr & (ENTSR_ABT+ENTSR_FU);
1412
1413#ifdef VERBOSE_ERROR_DUMP
1414 printk(KERN_DEBUG "%s: transmitter error (%#2x): ", dev->name, txsr);
1415 if (txsr & ENTSR_ABT)
1416 printk("excess-collisions ");
1417 if (txsr & ENTSR_ND)
1418 printk("non-deferral ");
1419 if (txsr & ENTSR_CRS)
1420 printk("lost-carrier ");
1421 if (txsr & ENTSR_FU)
1422 printk("FIFO-underrun ");
1423 if (txsr & ENTSR_CDH)
1424 printk("lost-heartbeat ");
1425 printk("\n");
1426#endif
1427
1428 if (tx_was_aborted)
1429 ei_tx_intr(dev);
1430 else
1431 {
1432 ei_local->stat.tx_errors++;
1433 if (txsr & ENTSR_CRS) ei_local->stat.tx_carrier_errors++;
1434 if (txsr & ENTSR_CDH) ei_local->stat.tx_heartbeat_errors++;
1435 if (txsr & ENTSR_OWC) ei_local->stat.tx_window_errors++;
1436 }
1437}
1438
1439/**
1440 * ei_tx_intr - transmit interrupt handler
1441 * @dev: network device for which tx intr is handled
1442 *
1443 * We have finished a transmit: check for errors and then trigger the next
1444 * packet to be sent. Called with lock held.
1445 */
1446
1447static void ei_tx_intr(struct net_device *dev)
1448{
1449 long e8390_base = dev->base_addr;
1450 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
1451 int status = inb(e8390_base + EN0_TSR);
1452
1453 /*
1454 * There are two Tx buffers, see which one finished, and trigger
1455 * the send of another one if it exists.
1456 */
1457 ei_local->txqueue--;
1458
1459 if (ei_local->tx1 < 0)
1460 {
1461 if (ei_local->lasttx != 1 && ei_local->lasttx != -1)
1462 printk(KERN_ERR "%s: bogus last_tx_buffer %d, tx1=%d.\n",
1463 ei_local->name, ei_local->lasttx, ei_local->tx1);
1464 ei_local->tx1 = 0;
1465 if (ei_local->tx2 > 0)
1466 {
1467 ei_local->txing = 1;
1468 NS8390_trigger_send(dev, ei_local->tx2, ei_local->tx_start_page + 6);
1469 dev->trans_start = jiffies;
1470 ei_local->tx2 = -1,
1471 ei_local->lasttx = 2;
1472 }
1473 else ei_local->lasttx = 20, ei_local->txing = 0;
1474 }
1475 else if (ei_local->tx2 < 0)
1476 {
1477 if (ei_local->lasttx != 2 && ei_local->lasttx != -2)
1478 printk("%s: bogus last_tx_buffer %d, tx2=%d.\n",
1479 ei_local->name, ei_local->lasttx, ei_local->tx2);
1480 ei_local->tx2 = 0;
1481 if (ei_local->tx1 > 0)
1482 {
1483 ei_local->txing = 1;
1484 NS8390_trigger_send(dev, ei_local->tx1, ei_local->tx_start_page);
1485 dev->trans_start = jiffies;
1486 ei_local->tx1 = -1;
1487 ei_local->lasttx = 1;
1488 }
1489 else
1490 ei_local->lasttx = 10, ei_local->txing = 0;
1491 }
1492// else printk(KERN_WARNING "%s: unexpected TX-done interrupt, lasttx=%d.\n",
1493// dev->name, ei_local->lasttx);
1494
1495 /* Minimize Tx latency: update the statistics after we restart TXing. */
1496 if (status & ENTSR_COL)
1497 ei_local->stat.collisions++;
1498 if (status & ENTSR_PTX)
1499 ei_local->stat.tx_packets++;
1500 else
1501 {
1502 ei_local->stat.tx_errors++;
1503 if (status & ENTSR_ABT)
1504 {
1505 ei_local->stat.tx_aborted_errors++;
1506 ei_local->stat.collisions += 16;
1507 }
1508 if (status & ENTSR_CRS)
1509 ei_local->stat.tx_carrier_errors++;
1510 if (status & ENTSR_FU)
1511 ei_local->stat.tx_fifo_errors++;
1512 if (status & ENTSR_CDH)
1513 ei_local->stat.tx_heartbeat_errors++;
1514 if (status & ENTSR_OWC)
1515 ei_local->stat.tx_window_errors++;
1516 }
1517 netif_wake_queue(dev);
1518}
1519
1520/**
1521 * ei_receive - receive some packets
1522 * @dev: network device with which receive will be run
1523 *
1524 * We have a good packet(s), get it/them out of the buffers.
1525 * Called with lock held.
1526 */
1527
1528static void ei_receive(struct net_device *dev)
1529{
1530 long e8390_base = dev->base_addr;
1531 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
1532 unsigned char rxing_page, this_frame, next_frame;
1533 unsigned short current_offset;
1534 int rx_pkt_count = 0;
1535 struct e8390_pkt_hdr rx_frame;
1536
1537 while (++rx_pkt_count < 10)
1538 {
1539 int pkt_len, pkt_stat;
1540
1541 /* Get the rx page (incoming packet pointer). */
1542 rxing_page = inb_p(e8390_base + EN1_CURPAG -1);
1543
1544 /* Remove one frame from the ring. Boundary is always a page behind. */
1545 this_frame = inb_p(e8390_base + EN0_BOUNDARY) + 1;
1546 if (this_frame >= ei_local->stop_page)
1547 this_frame = ei_local->rx_start_page;
1548
1549 /* Someday we'll omit the previous, iff we never get this message.
1550 (There is at least one clone claimed to have a problem.)
1551
1552 Keep quiet if it looks like a card removal. One problem here
1553 is that some clones crash in roughly the same way.
1554 */
1555 if (ei_debug > 0 && this_frame != ei_local->current_page && (this_frame!=0x0 || rxing_page!=0xFF))
1556 printk(KERN_ERR "%s: mismatched read page pointers %2x vs %2x.\n",
1557 dev->name, this_frame, ei_local->current_page);
1558
1559 if (this_frame == rxing_page) /* Read all the frames? */
1560 break; /* Done for now */
1561
1562 current_offset = this_frame << 8;
1563 ei_get_8390_hdr(dev, &rx_frame, this_frame);
1564
1565 pkt_len = rx_frame.count - sizeof(struct e8390_pkt_hdr);
1566 pkt_stat = rx_frame.status;
1567
1568 next_frame = this_frame + 1 + ((pkt_len+4)>>8);
1569
1570 if (pkt_len < 60 || pkt_len > 1518)
1571 {
1572 if (ei_debug)
1573 printk(KERN_DEBUG "%s: bogus packet size: %d, status=%#2x nxpg=%#2x.\n",
1574 dev->name, rx_frame.count, rx_frame.status,
1575 rx_frame.next);
1576 ei_local->stat.rx_errors++;
1577 ei_local->stat.rx_length_errors++;
1578 }
1579 else if ((pkt_stat & 0x0F) == ENRSR_RXOK)
1580 {
1581 struct sk_buff *skb;
1582
1583 skb = dev_alloc_skb(pkt_len+2);
1584 if (skb == NULL)
1585 {
1586 if (ei_debug > 1)
1587 printk(KERN_DEBUG "%s: Couldn't allocate a sk_buff of size %d.\n",
1588 dev->name, pkt_len);
1589 ei_local->stat.rx_dropped++;
1590 break;
1591 }
1592 else
1593 {
1594 skb_reserve(skb,2); /* IP headers on 16 byte boundaries */
1595 skb->dev = dev;
1596 skb_put(skb, pkt_len); /* Make room */
1597 ei_block_input(dev, pkt_len, skb, current_offset + sizeof(rx_frame));
1598 skb->protocol=eth_type_trans(skb,dev);
1599 netif_rx(skb);
1600 dev->last_rx = jiffies;
1601 ei_local->stat.rx_packets++;
1602 ei_local->stat.rx_bytes += pkt_len;
1603 if (pkt_stat & ENRSR_PHY)
1604 ei_local->stat.multicast++;
1605 }
1606 }
1607 else
1608 {
1609 if (ei_debug)
1610 printk(KERN_DEBUG "%s: bogus packet: status=%#2x nxpg=%#2x size=%d\n",
1611 dev->name, rx_frame.status, rx_frame.next,
1612 rx_frame.count);
1613 ei_local->stat.rx_errors++;
1614 /* NB: The NIC counts CRC, frame and missed errors. */
1615 if (pkt_stat & ENRSR_FO)
1616 ei_local->stat.rx_fifo_errors++;
1617 }
1618 next_frame = rx_frame.next;
1619
1620 /* This _should_ never happen: it's here for avoiding bad clones. */
1621 if (next_frame >= ei_local->stop_page) {
1622 printk("%s: next frame inconsistency, %#2x\n", dev->name,
1623 next_frame);
1624 next_frame = ei_local->rx_start_page;
1625 }
1626 ei_local->current_page = next_frame;
1627 outb_p(next_frame-1, e8390_base+EN0_BOUNDARY);
1628 }
1629
1630 return;
1631}
1632
1633/**
1634 * ei_rx_overrun - handle receiver overrun
1635 * @dev: network device which threw exception
1636 *
1637 * We have a receiver overrun: we have to kick the 8390 to get it started
1638 * again. Problem is that you have to kick it exactly as NS prescribes in
1639 * the updated datasheets, or "the NIC may act in an unpredictable manner."
1640 * This includes causing "the NIC to defer indefinitely when it is stopped
1641 * on a busy network." Ugh.
1642 * Called with lock held. Don't call this with the interrupts off or your
1643 * computer will hate you - it takes 10ms or so.
1644 */
1645
1646static void ei_rx_overrun(struct net_device *dev)
1647{
1648 axnet_dev_t *info = (axnet_dev_t *)dev;
1649 long e8390_base = dev->base_addr;
1650 unsigned char was_txing, must_resend = 0;
1651 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
1652
1653 /*
1654 * Record whether a Tx was in progress and then issue the
1655 * stop command.
1656 */
1657 was_txing = inb_p(e8390_base+E8390_CMD) & E8390_TRANS;
1658 outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD);
1659
1660 if (ei_debug > 1)
1661 printk(KERN_DEBUG "%s: Receiver overrun.\n", dev->name);
1662 ei_local->stat.rx_over_errors++;
1663
1664 /*
1665 * Wait a full Tx time (1.2ms) + some guard time, NS says 1.6ms total.
1666 * Early datasheets said to poll the reset bit, but now they say that
1667 * it "is not a reliable indicator and subsequently should be ignored."
1668 * We wait at least 10ms.
1669 */
1670
1671 mdelay(10);
1672
1673 /*
1674 * Reset RBCR[01] back to zero as per magic incantation.
1675 */
1676 outb_p(0x00, e8390_base+EN0_RCNTLO);
1677 outb_p(0x00, e8390_base+EN0_RCNTHI);
1678
1679 /*
1680 * See if any Tx was interrupted or not. According to NS, this
1681 * step is vital, and skipping it will cause no end of havoc.
1682 */
1683
1684 if (was_txing)
1685 {
1686 unsigned char tx_completed = inb_p(e8390_base+EN0_ISR) & (ENISR_TX+ENISR_TX_ERR);
1687 if (!tx_completed)
1688 must_resend = 1;
1689 }
1690
1691 /*
1692 * Have to enter loopback mode and then restart the NIC before
1693 * you are allowed to slurp packets up off the ring.
1694 */
1695 outb_p(E8390_TXOFF, e8390_base + EN0_TXCR);
1696 outb_p(E8390_NODMA + E8390_PAGE0 + E8390_START, e8390_base + E8390_CMD);
1697
1698 /*
1699 * Clear the Rx ring of all the debris, and ack the interrupt.
1700 */
1701 ei_receive(dev);
1702
1703 /*
1704 * Leave loopback mode, and resend any packet that got stopped.
1705 */
1706 outb_p(E8390_TXCONFIG | info->duplex_flag, e8390_base + EN0_TXCR);
1707 if (must_resend)
1708 outb_p(E8390_NODMA + E8390_PAGE0 + E8390_START + E8390_TRANS, e8390_base + E8390_CMD);
1709}
1710
1711/*
1712 * Collect the stats. This is called unlocked and from several contexts.
1713 */
1714
1715static struct net_device_stats *get_stats(struct net_device *dev)
1716{
1717 long ioaddr = dev->base_addr;
1718 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
1719 unsigned long flags;
1720
1721 /* If the card is stopped, just return the present stats. */
1722 if (!netif_running(dev))
1723 return &ei_local->stat;
1724
1725 spin_lock_irqsave(&ei_local->page_lock,flags);
1726 /* Read the counter registers, assuming we are in page 0. */
1727 ei_local->stat.rx_frame_errors += inb_p(ioaddr + EN0_COUNTER0);
1728 ei_local->stat.rx_crc_errors += inb_p(ioaddr + EN0_COUNTER1);
1729 ei_local->stat.rx_missed_errors+= inb_p(ioaddr + EN0_COUNTER2);
1730 spin_unlock_irqrestore(&ei_local->page_lock, flags);
1731
1732 return &ei_local->stat;
1733}
1734
1735/**
1736 * do_set_multicast_list - set/clear multicast filter
1737 * @dev: net device for which multicast filter is adjusted
1738 *
1739 * Set or clear the multicast filter for this adaptor. May be called
1740 * from a BH in 2.1.x. Must be called with lock held.
1741 */
1742
1743static void do_set_multicast_list(struct net_device *dev)
1744{
1745 long e8390_base = dev->base_addr;
1746
1747 if(dev->flags&IFF_PROMISC)
1748 outb_p(E8390_RXCONFIG | 0x58, e8390_base + EN0_RXCR);
1749 else if(dev->flags&IFF_ALLMULTI || dev->mc_list)
1750 outb_p(E8390_RXCONFIG | 0x48, e8390_base + EN0_RXCR);
1751 else
1752 outb_p(E8390_RXCONFIG | 0x40, e8390_base + EN0_RXCR);
1753}
1754
1755/*
1756 * Called without lock held. This is invoked from user context and may
1757 * be parallel to just about everything else. Its also fairly quick and
1758 * not called too often. Must protect against both bh and irq users
1759 */
1760
1761static void set_multicast_list(struct net_device *dev)
1762{
1763 unsigned long flags;
1764
1765 spin_lock_irqsave(&dev_lock(dev), flags);
1766 do_set_multicast_list(dev);
1767 spin_unlock_irqrestore(&dev_lock(dev), flags);
1768}
1769
1770/**
1771 * axdev_setup - init rest of 8390 device struct
1772 * @dev: network device structure to init
1773 *
1774 * Initialize the rest of the 8390 device structure. Do NOT __init
1775 * this, as it is used by 8390 based modular drivers too.
1776 */
1777
1778static void axdev_setup(struct net_device *dev)
1779{
1780 struct ei_device *ei_local;
1781 if (ei_debug > 1)
1782 printk(version_8390);
1783
1784 SET_MODULE_OWNER(dev);
1785
1786
1787 ei_local = (struct ei_device *)netdev_priv(dev);
1788 spin_lock_init(&ei_local->page_lock);
1789
1790 dev->hard_start_xmit = &ei_start_xmit;
1791 dev->get_stats = get_stats;
1792 dev->set_multicast_list = &set_multicast_list;
1793
1794 ether_setup(dev);
1795}
1796
1797/* This page of functions should be 8390 generic */
1798/* Follow National Semi's recommendations for initializing the "NIC". */
1799
1800/**
1801 * AX88190_init - initialize 8390 hardware
1802 * @dev: network device to initialize
1803 * @startp: boolean. non-zero value to initiate chip processing
1804 *
1805 * Must be called with lock held.
1806 */
1807
1808static void AX88190_init(struct net_device *dev, int startp)
1809{
1810 axnet_dev_t *info = PRIV(dev);
1811 long e8390_base = dev->base_addr;
1812 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
1813 int i;
1814 int endcfg = ei_local->word16 ? (0x48 | ENDCFG_WTS) : 0x48;
1815
1816 if(sizeof(struct e8390_pkt_hdr)!=4)
1817 panic("8390.c: header struct mispacked\n");
1818 /* Follow National Semi's recommendations for initing the DP83902. */
1819 outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD); /* 0x21 */
1820 outb_p(endcfg, e8390_base + EN0_DCFG); /* 0x48 or 0x49 */
1821 /* Clear the remote byte count registers. */
1822 outb_p(0x00, e8390_base + EN0_RCNTLO);
1823 outb_p(0x00, e8390_base + EN0_RCNTHI);
1824 /* Set to monitor and loopback mode -- this is vital!. */
1825 outb_p(E8390_RXOFF|0x40, e8390_base + EN0_RXCR); /* 0x60 */
1826 outb_p(E8390_TXOFF, e8390_base + EN0_TXCR); /* 0x02 */
1827 /* Set the transmit page and receive ring. */
1828 outb_p(ei_local->tx_start_page, e8390_base + EN0_TPSR);
1829 ei_local->tx1 = ei_local->tx2 = 0;
1830 outb_p(ei_local->rx_start_page, e8390_base + EN0_STARTPG);
1831 outb_p(ei_local->stop_page-1, e8390_base + EN0_BOUNDARY); /* 3c503 says 0x3f,NS0x26*/
1832 ei_local->current_page = ei_local->rx_start_page; /* assert boundary+1 */
1833 outb_p(ei_local->stop_page, e8390_base + EN0_STOPPG);
1834 /* Clear the pending interrupts and mask. */
1835 outb_p(0xFF, e8390_base + EN0_ISR);
1836 outb_p(0x00, e8390_base + EN0_IMR);
1837
1838 /* Copy the station address into the DS8390 registers. */
1839
1840 outb_p(E8390_NODMA + E8390_PAGE1 + E8390_STOP, e8390_base+E8390_CMD); /* 0x61 */
1841 for(i = 0; i < 6; i++)
1842 {
1843 outb_p(dev->dev_addr[i], e8390_base + EN1_PHYS_SHIFT(i));
1844 if(inb_p(e8390_base + EN1_PHYS_SHIFT(i))!=dev->dev_addr[i])
1845 printk(KERN_ERR "Hw. address read/write mismap %d\n",i);
1846 }
1847 /*
1848 * Initialize the multicast list to accept-all. If we enable multicast
1849 * the higher levels can do the filtering.
1850 */
1851 for (i = 0; i < 8; i++)
1852 outb_p(0xff, e8390_base + EN1_MULT + i);
1853
1854 outb_p(ei_local->rx_start_page, e8390_base + EN1_CURPAG);
1855 outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD);
1856
1857 netif_start_queue(dev);
1858 ei_local->tx1 = ei_local->tx2 = 0;
1859 ei_local->txing = 0;
1860
1861 if (startp)
1862 {
1863 outb_p(0xff, e8390_base + EN0_ISR);
1864 outb_p(ENISR_ALL, e8390_base + EN0_IMR);
1865 outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, e8390_base+E8390_CMD);
1866 outb_p(E8390_TXCONFIG | info->duplex_flag,
1867 e8390_base + EN0_TXCR); /* xmit on. */
1868 /* 3c503 TechMan says rxconfig only after the NIC is started. */
1869 outb_p(E8390_RXCONFIG | 0x40, e8390_base + EN0_RXCR); /* rx on, */
1870 do_set_multicast_list(dev); /* (re)load the mcast table */
1871 }
1872}
1873
1874/* Trigger a transmit start, assuming the length is valid.
1875 Always called with the page lock held */
1876
1877static void NS8390_trigger_send(struct net_device *dev, unsigned int length,
1878 int start_page)
1879{
1880 long e8390_base = dev->base_addr;
1881 struct ei_device *ei_local __attribute((unused)) = (struct ei_device *) netdev_priv(dev);
1882
1883 if (inb_p(e8390_base) & E8390_TRANS)
1884 {
1885 printk(KERN_WARNING "%s: trigger_send() called with the transmitter busy.\n",
1886 dev->name);
1887 return;
1888 }
1889 outb_p(length & 0xff, e8390_base + EN0_TCNTLO);
1890 outb_p(length >> 8, e8390_base + EN0_TCNTHI);
1891 outb_p(start_page, e8390_base + EN0_TPSR);
1892 outb_p(E8390_NODMA+E8390_TRANS+E8390_START, e8390_base+E8390_CMD);
1893}