blob: f8fbc049270680e6276b14c2fc8f74d1b911c0f5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* sun3lance.c: Ethernet driver for SUN3 Lance chip */
2/*
3
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004 Sun3 Lance ethernet driver, by Sam Creasey (sammy@users.qual.net).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 This driver is a part of the linux kernel, and is thus distributed
6 under the GNU General Public License.
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 The values used in LANCE_OBIO and LANCE_IRQ seem to be empirically
9 true for the correct IRQ and address of the lance registers. They
10 have not been widely tested, however. What we probably need is a
11 "proper" way to search for a device in the sun3's prom, but, alas,
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012 linux has no such thing.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14 This driver is largely based on atarilance.c, by Roman Hodek. Other
15 sources of inspiration were the NetBSD sun3 am7990 driver, and the
Jeff Garzik6aa20a22006-09-13 13:24:59 -040016 linux sparc lance driver (sunlance.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18 There are more assumptions made throughout this driver, it almost
19 certainly still needs work, but it does work at least for RARP/BOOTP and
20 mounting the root NFS filesystem.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022*/
23
24static char *version = "sun3lance.c: v1.2 1/12/2001 Sam Creasey (sammy@sammy.net)\n";
25
26#include <linux/module.h>
27#include <linux/stddef.h>
28#include <linux/kernel.h>
29#include <linux/string.h>
30#include <linux/errno.h>
31#include <linux/slab.h>
32#include <linux/interrupt.h>
33#include <linux/init.h>
34#include <linux/ioport.h>
35#include <linux/delay.h>
36#include <linux/netdevice.h>
37#include <linux/etherdevice.h>
38#include <linux/skbuff.h>
39#include <linux/bitops.h>
40
Al Viroa1f8e7f72006-10-19 16:08:53 -040041#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/setup.h>
43#include <asm/irq.h>
44#include <asm/io.h>
45#include <asm/pgtable.h>
46#include <asm/dvma.h>
47#include <asm/idprom.h>
48#include <asm/machines.h>
49
50#ifdef CONFIG_SUN3
51#include <asm/sun3mmu.h>
52#else
53#include <asm/sun3xprom.h>
54#endif
55
56/* sun3/60 addr/irq for the lance chip. If your sun is different,
57 change this. */
58#define LANCE_OBIO 0x120000
Roman Zippel4facfde2006-06-25 05:46:59 -070059#define LANCE_IRQ IRQ_AUTO_3
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/* Debug level:
62 * 0 = silent, print only serious errors
63 * 1 = normal, print error messages
64 * 2 = debug, print debug infos
65 * 3 = debug, print even more debug infos (packet data)
66 */
67
68#define LANCE_DEBUG 0
69
70#ifdef LANCE_DEBUG
71static int lance_debug = LANCE_DEBUG;
72#else
73static int lance_debug = 1;
74#endif
Rusty Russell8d3b33f2006-03-25 03:07:05 -080075module_param(lance_debug, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076MODULE_PARM_DESC(lance_debug, "SUN3 Lance debug level (0-3)");
77MODULE_LICENSE("GPL");
78
79#define DPRINTK(n,a) \
80 do { \
81 if (lance_debug >= n) \
82 printk a; \
83 } while( 0 )
84
85
86/* we're only using 32k of memory, so we use 4 TX
87 buffers and 16 RX buffers. These values are expressed as log2. */
88
89#define TX_LOG_RING_SIZE 3
90#define RX_LOG_RING_SIZE 5
91
92/* These are the derived values */
93
94#define TX_RING_SIZE (1 << TX_LOG_RING_SIZE)
95#define TX_RING_LEN_BITS (TX_LOG_RING_SIZE << 5)
96#define TX_RING_MOD_MASK (TX_RING_SIZE - 1)
97
98#define RX_RING_SIZE (1 << RX_LOG_RING_SIZE)
99#define RX_RING_LEN_BITS (RX_LOG_RING_SIZE << 5)
100#define RX_RING_MOD_MASK (RX_RING_SIZE - 1)
101
102/* Definitions for packet buffer access: */
103#define PKT_BUF_SZ 1544
104
105/* Get the address of a packet buffer corresponding to a given buffer head */
106#define PKTBUF_ADDR(head) (void *)((unsigned long)(MEM) | (head)->base)
107
108
109/* The LANCE Rx and Tx ring descriptors. */
110struct lance_rx_head {
111 unsigned short base; /* Low word of base addr */
112 volatile unsigned char flag;
113 unsigned char base_hi; /* High word of base addr (unused) */
114 short buf_length; /* This length is 2s complement! */
115 volatile short msg_length; /* This length is "normal". */
116};
117
118struct lance_tx_head {
119 unsigned short base; /* Low word of base addr */
120 volatile unsigned char flag;
121 unsigned char base_hi; /* High word of base addr (unused) */
122 short length; /* Length is 2s complement! */
123 volatile short misc;
124};
125
126/* The LANCE initialization block, described in databook. */
127struct lance_init_block {
128 unsigned short mode; /* Pre-set mode */
129 unsigned char hwaddr[6]; /* Physical ethernet address */
130 unsigned int filter[2]; /* Multicast filter (unused). */
131 /* Receive and transmit ring base, along with length bits. */
132 unsigned short rdra;
133 unsigned short rlen;
134 unsigned short tdra;
135 unsigned short tlen;
136 unsigned short pad[4]; /* is thie needed? */
137};
138
139/* The whole layout of the Lance shared memory */
140struct lance_memory {
141 struct lance_init_block init;
142 struct lance_tx_head tx_head[TX_RING_SIZE];
143 struct lance_rx_head rx_head[RX_RING_SIZE];
144 char rx_data[RX_RING_SIZE][PKT_BUF_SZ];
145 char tx_data[TX_RING_SIZE][PKT_BUF_SZ];
146};
147
148/* The driver's private device structure */
149
150struct lance_private {
151 volatile unsigned short *iobase;
152 struct lance_memory *mem;
153 int new_rx, new_tx; /* The next free ring entry */
154 int old_tx, old_rx; /* ring entry to be processed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/* These two must be longs for set_bit() */
156 long tx_full;
157 long lock;
158};
159
160/* I/O register access macros */
161
162#define MEM lp->mem
163#define DREG lp->iobase[0]
164#define AREG lp->iobase[1]
Al Viroe345d5e2005-08-25 06:24:21 +0100165#define REGA(a) (*( AREG = (a), &DREG ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167/* Definitions for the Lance */
168
169/* tx_head flags */
170#define TMD1_ENP 0x01 /* end of packet */
171#define TMD1_STP 0x02 /* start of packet */
172#define TMD1_DEF 0x04 /* deferred */
173#define TMD1_ONE 0x08 /* one retry needed */
174#define TMD1_MORE 0x10 /* more than one retry needed */
175#define TMD1_ERR 0x40 /* error summary */
176#define TMD1_OWN 0x80 /* ownership (set: chip owns) */
177
178#define TMD1_OWN_CHIP TMD1_OWN
179#define TMD1_OWN_HOST 0
180
181/* tx_head misc field */
182#define TMD3_TDR 0x03FF /* Time Domain Reflectometry counter */
183#define TMD3_RTRY 0x0400 /* failed after 16 retries */
184#define TMD3_LCAR 0x0800 /* carrier lost */
185#define TMD3_LCOL 0x1000 /* late collision */
186#define TMD3_UFLO 0x4000 /* underflow (late memory) */
187#define TMD3_BUFF 0x8000 /* buffering error (no ENP) */
188
189/* rx_head flags */
190#define RMD1_ENP 0x01 /* end of packet */
191#define RMD1_STP 0x02 /* start of packet */
192#define RMD1_BUFF 0x04 /* buffer error */
193#define RMD1_CRC 0x08 /* CRC error */
194#define RMD1_OFLO 0x10 /* overflow */
195#define RMD1_FRAM 0x20 /* framing error */
196#define RMD1_ERR 0x40 /* error summary */
197#define RMD1_OWN 0x80 /* ownership (set: ship owns) */
198
199#define RMD1_OWN_CHIP RMD1_OWN
200#define RMD1_OWN_HOST 0
201
202/* register names */
203#define CSR0 0 /* mode/status */
204#define CSR1 1 /* init block addr (low) */
205#define CSR2 2 /* init block addr (high) */
206#define CSR3 3 /* misc */
207#define CSR8 8 /* address filter */
208#define CSR15 15 /* promiscuous mode */
209
210/* CSR0 */
211/* (R=readable, W=writeable, S=set on write, C=clear on write) */
212#define CSR0_INIT 0x0001 /* initialize (RS) */
213#define CSR0_STRT 0x0002 /* start (RS) */
214#define CSR0_STOP 0x0004 /* stop (RS) */
215#define CSR0_TDMD 0x0008 /* transmit demand (RS) */
216#define CSR0_TXON 0x0010 /* transmitter on (R) */
217#define CSR0_RXON 0x0020 /* receiver on (R) */
218#define CSR0_INEA 0x0040 /* interrupt enable (RW) */
219#define CSR0_INTR 0x0080 /* interrupt active (R) */
220#define CSR0_IDON 0x0100 /* initialization done (RC) */
221#define CSR0_TINT 0x0200 /* transmitter interrupt (RC) */
222#define CSR0_RINT 0x0400 /* receiver interrupt (RC) */
223#define CSR0_MERR 0x0800 /* memory error (RC) */
224#define CSR0_MISS 0x1000 /* missed frame (RC) */
225#define CSR0_CERR 0x2000 /* carrier error (no heartbeat :-) (RC) */
226#define CSR0_BABL 0x4000 /* babble: tx-ed too many bits (RC) */
227#define CSR0_ERR 0x8000 /* error (RC) */
228
229/* CSR3 */
230#define CSR3_BCON 0x0001 /* byte control */
231#define CSR3_ACON 0x0002 /* ALE control */
232#define CSR3_BSWP 0x0004 /* byte swap (1=big endian) */
233
234/***************************** Prototypes *****************************/
235
236static int lance_probe( struct net_device *dev);
237static int lance_open( struct net_device *dev );
238static void lance_init_ring( struct net_device *dev );
239static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev );
David Howells7d12e782006-10-05 14:55:46 +0100240static irqreturn_t lance_interrupt( int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241static int lance_rx( struct net_device *dev );
242static int lance_close( struct net_device *dev );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static void set_multicast_list( struct net_device *dev );
244
245/************************* End of Prototypes **************************/
246
247struct net_device * __init sun3lance_probe(int unit)
248{
249 struct net_device *dev;
250 static int found;
251 int err = -ENODEV;
252
253 /* check that this machine has an onboard lance */
254 switch(idprom->id_machtype) {
255 case SM_SUN3|SM_3_50:
256 case SM_SUN3|SM_3_60:
257 case SM_SUN3X|SM_3_80:
258 /* these machines have lance */
259 break;
260
261 default:
262 return ERR_PTR(-ENODEV);
263 }
264
265 if (found)
266 return ERR_PTR(-ENODEV);
267
268 dev = alloc_etherdev(sizeof(struct lance_private));
269 if (!dev)
270 return ERR_PTR(-ENOMEM);
271 if (unit >= 0) {
272 sprintf(dev->name, "eth%d", unit);
273 netdev_boot_setup_check(dev);
274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (!lance_probe(dev))
277 goto out;
278
279 err = register_netdev(dev);
280 if (err)
281 goto out1;
282 found = 1;
283 return dev;
284
285out1:
286#ifdef CONFIG_SUN3
Al Viro437111c2006-10-11 17:28:17 +0100287 iounmap((void __iomem *)dev->base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288#endif
289out:
290 free_netdev(dev);
291 return ERR_PTR(err);
292}
293
294static int __init lance_probe( struct net_device *dev)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400295{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 unsigned long ioaddr;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 struct lance_private *lp;
299 int i;
300 static int did_version;
301 volatile unsigned short *ioaddr_probe;
302 unsigned short tmp1, tmp2;
303
304#ifdef CONFIG_SUN3
305 ioaddr = (unsigned long)ioremap(LANCE_OBIO, PAGE_SIZE);
306 if (!ioaddr)
307 return 0;
308#else
309 ioaddr = SUN3X_LANCE;
310#endif
311
312 /* test to see if there's really a lance here */
313 /* (CSRO_INIT shouldn't be readable) */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 ioaddr_probe = (volatile unsigned short *)ioaddr;
316 tmp1 = ioaddr_probe[0];
317 tmp2 = ioaddr_probe[1];
318
319 ioaddr_probe[1] = CSR0;
320 ioaddr_probe[0] = CSR0_INIT | CSR0_STOP;
321
322 if(ioaddr_probe[0] != CSR0_STOP) {
323 ioaddr_probe[0] = tmp1;
324 ioaddr_probe[1] = tmp2;
325
326#ifdef CONFIG_SUN3
Al Viro437111c2006-10-11 17:28:17 +0100327 iounmap((void __iomem *)ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328#endif
329 return 0;
330 }
331
332 lp = netdev_priv(dev);
333
334 /* XXX - leak? */
335 MEM = dvma_malloc_align(sizeof(struct lance_memory), 0x10000);
Cyrill V. Gorcunovc14bac62007-03-26 21:47:26 -0800336 if (MEM == NULL) {
337#ifdef CONFIG_SUN3
338 iounmap((void __iomem *)ioaddr);
339#endif
340 printk(KERN_WARNING "SUN3 Lance couldn't allocate DVMA memory\n");
341 return 0;
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 lp->iobase = (volatile unsigned short *)ioaddr;
345 dev->base_addr = (unsigned long)ioaddr; /* informational only */
346
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400347 REGA(CSR0) = CSR0_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Cyrill V. Gorcunovc14bac62007-03-26 21:47:26 -0800349 if (request_irq(LANCE_IRQ, lance_interrupt, IRQF_DISABLED, "SUN3 Lance", dev) < 0) {
350#ifdef CONFIG_SUN3
351 iounmap((void __iomem *)ioaddr);
352#endif
353 dvma_free((void *)MEM);
354 printk(KERN_WARNING "SUN3 Lance unable to allocate IRQ\n");
355 return 0;
356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 dev->irq = (unsigned short)LANCE_IRQ;
358
359
360 printk("%s: SUN3 Lance at io %#lx, mem %#lx, irq %d, hwaddr ",
361 dev->name,
362 (unsigned long)ioaddr,
363 (unsigned long)MEM,
364 dev->irq);
365
366 /* copy in the ethernet address from the prom */
367 for(i = 0; i < 6 ; i++)
368 dev->dev_addr[i] = idprom->id_ethaddr[i];
369
370 /* tell the card it's ether address, bytes swapped */
371 MEM->init.hwaddr[0] = dev->dev_addr[1];
372 MEM->init.hwaddr[1] = dev->dev_addr[0];
373 MEM->init.hwaddr[2] = dev->dev_addr[3];
374 MEM->init.hwaddr[3] = dev->dev_addr[2];
375 MEM->init.hwaddr[4] = dev->dev_addr[5];
376 MEM->init.hwaddr[5] = dev->dev_addr[4];
377
378 for( i = 0; i < 6; ++i )
379 printk( "%02x%s", dev->dev_addr[i], (i < 5) ? ":" : "\n" );
380
381 MEM->init.mode = 0x0000;
382 MEM->init.filter[0] = 0x00000000;
383 MEM->init.filter[1] = 0x00000000;
384 MEM->init.rdra = dvma_vtob(MEM->rx_head);
385 MEM->init.rlen = (RX_LOG_RING_SIZE << 13) |
386 (dvma_vtob(MEM->rx_head) >> 16);
387 MEM->init.tdra = dvma_vtob(MEM->tx_head);
388 MEM->init.tlen = (TX_LOG_RING_SIZE << 13) |
389 (dvma_vtob(MEM->tx_head) >> 16);
390
391 DPRINTK(2, ("initaddr: %08lx rx_ring: %08lx tx_ring: %08lx\n",
392 dvma_vtob(&(MEM->init)), dvma_vtob(MEM->rx_head),
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400393 (dvma_vtob(MEM->tx_head))));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 if (did_version++ == 0)
396 printk( version );
397
398 /* The LANCE-specific entries in the device structure. */
399 dev->open = &lance_open;
400 dev->hard_start_xmit = &lance_start_xmit;
401 dev->stop = &lance_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 dev->set_multicast_list = &set_multicast_list;
Al Viroa5d361f2006-01-12 01:06:34 -0800403 dev->set_mac_address = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404// KLUDGE -- REMOVE ME
405 set_bit(__LINK_STATE_PRESENT, &dev->state);
406
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return 1;
409}
410
411static int lance_open( struct net_device *dev )
412{
413 struct lance_private *lp = netdev_priv(dev);
414 int i;
415
416 DPRINTK( 2, ( "%s: lance_open()\n", dev->name ));
417
418 REGA(CSR0) = CSR0_STOP;
419
420 lance_init_ring(dev);
421
422 /* From now on, AREG is kept to point to CSR0 */
423 REGA(CSR0) = CSR0_INIT;
424
425 i = 1000000;
426 while (--i > 0)
427 if (DREG & CSR0_IDON)
428 break;
429 if (i < 0 || (DREG & CSR0_ERR)) {
430 DPRINTK( 2, ( "lance_open(): opening %s failed, i=%d, csr0=%04x\n",
431 dev->name, i, DREG ));
432 DREG = CSR0_STOP;
433 return( -EIO );
434 }
435
436 DREG = CSR0_IDON | CSR0_STRT | CSR0_INEA;
437
438 netif_start_queue(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 DPRINTK( 2, ( "%s: LANCE is open, csr0 %04x\n", dev->name, DREG ));
441
442 return( 0 );
443}
444
445
446/* Initialize the LANCE Rx and Tx rings. */
447
448static void lance_init_ring( struct net_device *dev )
449{
450 struct lance_private *lp = netdev_priv(dev);
451 int i;
452
453 lp->lock = 0;
454 lp->tx_full = 0;
455 lp->new_rx = lp->new_tx = 0;
456 lp->old_rx = lp->old_tx = 0;
457
458 for( i = 0; i < TX_RING_SIZE; i++ ) {
459 MEM->tx_head[i].base = dvma_vtob(MEM->tx_data[i]);
460 MEM->tx_head[i].flag = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400461 MEM->tx_head[i].base_hi =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 (dvma_vtob(MEM->tx_data[i])) >>16;
463 MEM->tx_head[i].length = 0;
464 MEM->tx_head[i].misc = 0;
465 }
466
467 for( i = 0; i < RX_RING_SIZE; i++ ) {
468 MEM->rx_head[i].base = dvma_vtob(MEM->rx_data[i]);
469 MEM->rx_head[i].flag = RMD1_OWN_CHIP;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400470 MEM->rx_head[i].base_hi =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 (dvma_vtob(MEM->rx_data[i])) >> 16;
472 MEM->rx_head[i].buf_length = -PKT_BUF_SZ | 0xf000;
473 MEM->rx_head[i].msg_length = 0;
474 }
475
476 /* tell the card it's ether address, bytes swapped */
477 MEM->init.hwaddr[0] = dev->dev_addr[1];
478 MEM->init.hwaddr[1] = dev->dev_addr[0];
479 MEM->init.hwaddr[2] = dev->dev_addr[3];
480 MEM->init.hwaddr[3] = dev->dev_addr[2];
481 MEM->init.hwaddr[4] = dev->dev_addr[5];
482 MEM->init.hwaddr[5] = dev->dev_addr[4];
483
484 MEM->init.mode = 0x0000;
485 MEM->init.filter[0] = 0x00000000;
486 MEM->init.filter[1] = 0x00000000;
487 MEM->init.rdra = dvma_vtob(MEM->rx_head);
488 MEM->init.rlen = (RX_LOG_RING_SIZE << 13) |
489 (dvma_vtob(MEM->rx_head) >> 16);
490 MEM->init.tdra = dvma_vtob(MEM->tx_head);
491 MEM->init.tlen = (TX_LOG_RING_SIZE << 13) |
492 (dvma_vtob(MEM->tx_head) >> 16);
493
494
495 /* tell the lance the address of its init block */
496 REGA(CSR1) = dvma_vtob(&(MEM->init));
497 REGA(CSR2) = dvma_vtob(&(MEM->init)) >> 16;
498
499#ifdef CONFIG_SUN3X
500 REGA(CSR3) = CSR3_BSWP | CSR3_ACON | CSR3_BCON;
501#else
502 REGA(CSR3) = CSR3_BSWP;
503#endif
504
505}
506
507
508static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev )
509{
510 struct lance_private *lp = netdev_priv(dev);
511 int entry, len;
512 struct lance_tx_head *head;
513 unsigned long flags;
514
515 DPRINTK( 1, ( "%s: transmit start.\n",
516 dev->name));
517
518 /* Transmitter timeout, serious problems. */
519 if (netif_queue_stopped(dev)) {
520 int tickssofar = jiffies - dev->trans_start;
521 if (tickssofar < 20)
522 return( 1 );
523
524 DPRINTK( 1, ( "%s: transmit timed out, status %04x, resetting.\n",
525 dev->name, DREG ));
526 DREG = CSR0_STOP;
527 /*
528 * Always set BSWP after a STOP as STOP puts it back into
529 * little endian mode.
530 */
531 REGA(CSR3) = CSR3_BSWP;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700532 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 if(lance_debug >= 2) {
535 int i;
536 printk("Ring data: old_tx %d new_tx %d%s new_rx %d\n",
537 lp->old_tx, lp->new_tx,
538 lp->tx_full ? " (full)" : "",
539 lp->new_rx );
540 for( i = 0 ; i < RX_RING_SIZE; i++ )
541 printk( "rx #%d: base=%04x blen=%04x mlen=%04x\n",
542 i, MEM->rx_head[i].base,
543 -MEM->rx_head[i].buf_length,
544 MEM->rx_head[i].msg_length);
545 for( i = 0 ; i < TX_RING_SIZE; i++ )
546 printk("tx #%d: base=%04x len=%04x misc=%04x\n",
547 i, MEM->tx_head[i].base,
548 -MEM->tx_head[i].length,
549 MEM->tx_head[i].misc );
550 }
551
552 lance_init_ring(dev);
553 REGA( CSR0 ) = CSR0_INEA | CSR0_INIT | CSR0_STRT;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 netif_start_queue(dev);
556 dev->trans_start = jiffies;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return 0;
559 }
560
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /* Block a timer-based transmit from overlapping. This could better be
563 done with atomic_swap(1, dev->tbusy), but set_bit() works as well. */
564
565 /* Block a timer-based transmit from overlapping with us by
566 stopping the queue for a bit... */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 netif_stop_queue(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (test_and_set_bit( 0, (void*)&lp->lock ) != 0) {
571 printk( "%s: tx queue lock!.\n", dev->name);
572 /* don't clear dev->tbusy flag. */
573 return 1;
574 }
575
576 AREG = CSR0;
577 DPRINTK( 2, ( "%s: lance_start_xmit() called, csr0 %4.4x.\n",
578 dev->name, DREG ));
579
580#ifdef CONFIG_SUN3X
581 /* this weirdness doesn't appear on sun3... */
582 if(!(DREG & CSR0_INIT)) {
583 DPRINTK( 1, ("INIT not set, reinitializing...\n"));
584 REGA( CSR0 ) = CSR0_STOP;
585 lance_init_ring(dev);
586 REGA( CSR0 ) = CSR0_INIT | CSR0_STRT;
587 }
588#endif
589
590 /* Fill in a Tx ring entry */
591#if 0
592 if (lance_debug >= 2) {
593 u_char *p;
594 int i;
595 printk( "%s: TX pkt %d type 0x%04x from ", dev->name,
596 lp->new_tx, ((u_short *)skb->data)[6]);
597 for( p = &((u_char *)skb->data)[6], i = 0; i < 6; i++ )
598 printk("%02x%s", *p++, i != 5 ? ":" : "" );
599 printk(" to ");
600 for( p = (u_char *)skb->data, i = 0; i < 6; i++ )
601 printk("%02x%s", *p++, i != 5 ? ":" : "" );
602 printk(" data at 0x%08x len %d\n", (int)skb->data,
603 (int)skb->len );
604 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400605#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /* We're not prepared for the int until the last flags are set/reset.
607 * And the int may happen already after setting the OWN_CHIP... */
608 local_irq_save(flags);
609
610 /* Mask to ring buffer boundary. */
611 entry = lp->new_tx;
612 head = &(MEM->tx_head[entry]);
613
614 /* Caution: the write order is important here, set the "ownership" bits
615 * last.
616 */
617
618 /* the sun3's lance needs it's buffer padded to the minimum
619 size */
620 len = (ETH_ZLEN < skb->len) ? skb->len : ETH_ZLEN;
621
622// head->length = -len;
623 head->length = (-len) | 0xf000;
624 head->misc = 0;
625
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300626 skb_copy_from_linear_data(skb, PKTBUF_ADDR(head), skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (len != skb->len)
628 memset(PKTBUF_ADDR(head) + skb->len, 0, len-skb->len);
629
630 head->flag = TMD1_OWN_CHIP | TMD1_ENP | TMD1_STP;
631 lp->new_tx = (lp->new_tx + 1) & TX_RING_MOD_MASK;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700632 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 /* Trigger an immediate send poll. */
635 REGA(CSR0) = CSR0_INEA | CSR0_TDMD | CSR0_STRT;
636 AREG = CSR0;
637 DPRINTK( 2, ( "%s: lance_start_xmit() exiting, csr0 %4.4x.\n",
638 dev->name, DREG ));
639 dev->trans_start = jiffies;
640 dev_kfree_skb( skb );
641
642 lp->lock = 0;
643 if ((MEM->tx_head[(entry+1) & TX_RING_MOD_MASK].flag & TMD1_OWN) ==
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400644 TMD1_OWN_HOST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 netif_start_queue(dev);
646
647 local_irq_restore(flags);
648
649 return 0;
650}
651
652/* The LANCE interrupt handler. */
653
David Howells7d12e782006-10-05 14:55:46 +0100654static irqreturn_t lance_interrupt( int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 struct net_device *dev = dev_id;
657 struct lance_private *lp = netdev_priv(dev);
658 int csr0;
659 static int in_interrupt;
660
661 if (dev == NULL) {
662 DPRINTK( 1, ( "lance_interrupt(): invalid dev_id\n" ));
663 return IRQ_NONE;
664 }
665
666 if (in_interrupt)
667 DPRINTK( 2, ( "%s: Re-entering the interrupt handler.\n", dev->name ));
668 in_interrupt = 1;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 still_more:
671 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 AREG = CSR0;
674 csr0 = DREG;
675
676 /* ack interrupts */
677 DREG = csr0 & (CSR0_TINT | CSR0_RINT | CSR0_IDON);
678
679 /* clear errors */
680 if(csr0 & CSR0_ERR)
681 DREG = CSR0_BABL | CSR0_MERR | CSR0_CERR | CSR0_MISS;
682
683
684 DPRINTK( 2, ( "%s: interrupt csr0=%04x new csr=%04x.\n",
685 dev->name, csr0, DREG ));
686
687 if (csr0 & CSR0_TINT) { /* Tx-done interrupt */
688 int old_tx = lp->old_tx;
689
690// if(lance_debug >= 3) {
691// int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400692//
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693// printk("%s: tx int\n", dev->name);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400694//
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695// for(i = 0; i < TX_RING_SIZE; i++)
696// printk("ring %d flag=%04x\n", i,
697// MEM->tx_head[i].flag);
698// }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 while( old_tx != lp->new_tx) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400701 struct lance_tx_head *head = &(MEM->tx_head[old_tx]);
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 DPRINTK(3, ("on tx_ring %d\n", old_tx));
704
705 if (head->flag & TMD1_OWN_CHIP)
706 break; /* It still hasn't been Txed */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (head->flag & TMD1_ERR) {
709 int status = head->misc;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700710 dev->stats.tx_errors++;
711 if (status & TMD3_RTRY) dev->stats.tx_aborted_errors++;
712 if (status & TMD3_LCAR) dev->stats.tx_carrier_errors++;
713 if (status & TMD3_LCOL) dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (status & (TMD3_UFLO | TMD3_BUFF)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700715 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 printk("%s: Tx FIFO error\n",
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400717 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 REGA(CSR0) = CSR0_STOP;
719 REGA(CSR3) = CSR3_BSWP;
720 lance_init_ring(dev);
721 REGA(CSR0) = CSR0_STRT | CSR0_INEA;
722 return IRQ_HANDLED;
723 }
724 } else if(head->flag & (TMD1_ENP | TMD1_STP)) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 head->flag &= ~(TMD1_ENP | TMD1_STP);
727 if(head->flag & (TMD1_ONE | TMD1_MORE))
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700728 dev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400729
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700730 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 DPRINTK(3, ("cleared tx ring %d\n", old_tx));
732 }
733 old_tx = (old_tx +1) & TX_RING_MOD_MASK;
734 }
735
736 lp->old_tx = old_tx;
737 }
738
739
740 if (netif_queue_stopped(dev)) {
741 /* The ring is no longer full, clear tbusy. */
742 netif_start_queue(dev);
743 netif_wake_queue(dev);
744 }
745
746 if (csr0 & CSR0_RINT) /* Rx interrupt */
747 lance_rx( dev );
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 /* Log misc errors. */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700750 if (csr0 & CSR0_BABL) dev->stats.tx_errors++; /* Tx babble. */
751 if (csr0 & CSR0_MISS) dev->stats.rx_errors++; /* Missed a Rx frame. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (csr0 & CSR0_MERR) {
753 DPRINTK( 1, ( "%s: Bus master arbitration failure (?!?), "
754 "status %04x.\n", dev->name, csr0 ));
755 /* Restart the chip. */
756 REGA(CSR0) = CSR0_STOP;
757 REGA(CSR3) = CSR3_BSWP;
758 lance_init_ring(dev);
759 REGA(CSR0) = CSR0_STRT | CSR0_INEA;
760 }
761
762
763 /* Clear any other interrupt, and set interrupt enable. */
764// DREG = CSR0_BABL | CSR0_CERR | CSR0_MISS | CSR0_MERR |
765// CSR0_IDON | CSR0_INEA;
766
767 REGA(CSR0) = CSR0_INEA;
768
769 if(DREG & (CSR0_RINT | CSR0_TINT)) {
770 DPRINTK(2, ("restarting interrupt, csr0=%#04x\n", DREG));
771 goto still_more;
772 }
773
774 DPRINTK( 2, ( "%s: exiting interrupt, csr0=%#04x.\n",
775 dev->name, DREG ));
776 in_interrupt = 0;
777 return IRQ_HANDLED;
778}
779
780/* get packet, toss into skbuff */
781static int lance_rx( struct net_device *dev )
782{
783 struct lance_private *lp = netdev_priv(dev);
784 int entry = lp->new_rx;
785
786 /* If we own the next entry, it's a new packet. Send it up. */
787 while( (MEM->rx_head[entry].flag & RMD1_OWN) == RMD1_OWN_HOST ) {
788 struct lance_rx_head *head = &(MEM->rx_head[entry]);
789 int status = head->flag;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (status != (RMD1_ENP|RMD1_STP)) { /* There was an error. */
792 /* There is a tricky error noted by John Murphy,
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400793 <murf@perftech.com> to Russ Nelson: Even with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 full-sized buffers it's possible for a jabber packet to use two
795 buffers, with only the last correctly noting the error. */
796 if (status & RMD1_ENP) /* Only count a general error at the */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700797 dev->stats.rx_errors++; /* end of a packet.*/
798 if (status & RMD1_FRAM) dev->stats.rx_frame_errors++;
799 if (status & RMD1_OFLO) dev->stats.rx_over_errors++;
800 if (status & RMD1_CRC) dev->stats.rx_crc_errors++;
801 if (status & RMD1_BUFF) dev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 head->flag &= (RMD1_ENP|RMD1_STP);
803 } else {
804 /* Malloc up new buffer, compatible with net-3. */
805// short pkt_len = head->msg_length;// & 0xfff;
806 short pkt_len = (head->msg_length & 0xfff) - 4;
807 struct sk_buff *skb;
808
809 if (pkt_len < 60) {
810 printk( "%s: Runt packet!\n", dev->name );
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700811 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813 else {
814 skb = dev_alloc_skb( pkt_len+2 );
815 if (skb == NULL) {
816 DPRINTK( 1, ( "%s: Memory squeeze, deferring packet.\n",
817 dev->name ));
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400818
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700819 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 head->msg_length = 0;
821 head->flag |= RMD1_OWN_CHIP;
822 lp->new_rx = (lp->new_rx+1) &
823 RX_RING_MOD_MASK;
824 }
825
826#if 0
827 if (lance_debug >= 3) {
828 u_char *data = PKTBUF_ADDR(head), *p;
829 printk( "%s: RX pkt %d type 0x%04x from ", dev->name, entry, ((u_short *)data)[6]);
830 for( p = &data[6], i = 0; i < 6; i++ )
831 printk("%02x%s", *p++, i != 5 ? ":" : "" );
832 printk(" to ");
833 for( p = data, i = 0; i < 6; i++ )
834 printk("%02x%s", *p++, i != 5 ? ":" : "" );
835 printk(" data %02x %02x %02x %02x %02x %02x %02x %02x "
836 "len %d at %08x\n",
837 data[15], data[16], data[17], data[18],
838 data[19], data[20], data[21], data[22],
839 pkt_len, data);
840 }
841#endif
842 if (lance_debug >= 3) {
843 u_char *data = PKTBUF_ADDR(head);
844 printk( "%s: RX pkt %d type 0x%04x len %d\n ", dev->name, entry, ((u_short *)data)[6], pkt_len);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 skb_reserve( skb, 2 ); /* 16 byte align */
849 skb_put( skb, pkt_len ); /* Make room */
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700850 skb_copy_to_linear_data(skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 PKTBUF_ADDR(head),
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700852 pkt_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 skb->protocol = eth_type_trans( skb, dev );
855 netif_rx( skb );
856 dev->last_rx = jiffies;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700857 dev->stats.rx_packets++;
858 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860 }
861
862// head->buf_length = -PKT_BUF_SZ | 0xf000;
863 head->msg_length = 0;
864 head->flag = RMD1_OWN_CHIP;
865
866 entry = lp->new_rx = (lp->new_rx +1) & RX_RING_MOD_MASK;
867 }
868
869 /* From lance.c (Donald Becker): */
870 /* We should check that at least two ring entries are free.
871 If not, we should free one and mark stats->rx_dropped++. */
872
873 return 0;
874}
875
876
877static int lance_close( struct net_device *dev )
878{
879 struct lance_private *lp = netdev_priv(dev);
880
881 netif_stop_queue(dev);
882
883 AREG = CSR0;
884
885 DPRINTK( 2, ( "%s: Shutting down ethercard, status was %2.2x.\n",
886 dev->name, DREG ));
887
888 /* We stop the LANCE here -- it occasionally polls
889 memory if we don't. */
890 DREG = CSR0_STOP;
891 return 0;
892}
893
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895/* Set or clear the multicast filter for this adaptor.
896 num_addrs == -1 Promiscuous mode, receive all packets
897 num_addrs == 0 Normal mode, clear multicast list
898 num_addrs > 0 Multicast mode, receive normal and MC packets, and do
899 best-effort filtering.
900 */
901
902/* completely untested on a sun3 */
903static void set_multicast_list( struct net_device *dev )
904{
905 struct lance_private *lp = netdev_priv(dev);
906
907 if(netif_queue_stopped(dev))
908 /* Only possible if board is already started */
909 return;
910
911 /* We take the simple way out and always enable promiscuous mode. */
912 DREG = CSR0_STOP; /* Temporarily stop the lance. */
913
914 if (dev->flags & IFF_PROMISC) {
915 /* Log any net taps. */
Andy Gospodarekd5b20692006-09-11 17:39:18 -0400916 DPRINTK( 3, ( "%s: Promiscuous mode enabled.\n", dev->name ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 REGA( CSR15 ) = 0x8000; /* Set promiscuous mode */
918 } else {
919 short multicast_table[4];
920 int num_addrs = dev->mc_count;
921 int i;
922 /* We don't use the multicast table, but rely on upper-layer
923 * filtering. */
924 memset( multicast_table, (num_addrs == 0) ? 0 : -1,
925 sizeof(multicast_table) );
926 for( i = 0; i < 4; i++ )
927 REGA( CSR8+i ) = multicast_table[i];
928 REGA( CSR15 ) = 0; /* Unset promiscuous mode */
929 }
930
931 /*
932 * Always set BSWP after a STOP as STOP puts it back into
933 * little endian mode.
934 */
935 REGA( CSR3 ) = CSR3_BSWP;
936
937 /* Resume normal operation and reset AREG to CSR0 */
938 REGA( CSR0 ) = CSR0_IDON | CSR0_INEA | CSR0_STRT;
939}
940
941
942#ifdef MODULE
943
944static struct net_device *sun3lance_dev;
945
Al Viroafc8eb42006-06-14 18:50:53 -0400946int __init init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 sun3lance_dev = sun3lance_probe(-1);
949 if (IS_ERR(sun3lance_dev))
950 return PTR_ERR(sun3lance_dev);
951 return 0;
952}
953
Al Viroafc8eb42006-06-14 18:50:53 -0400954void __exit cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 unregister_netdev(sun3lance_dev);
957#ifdef CONFIG_SUN3
Al Viro437111c2006-10-11 17:28:17 +0100958 iounmap((void __iomem *)sun3lance_dev->base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959#endif
960 free_netdev(sun3lance_dev);
961}
962
963#endif /* MODULE */
964