blob: 79d88a0b00a331129100a3900d9948eae2ba048a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/net/am79c961.c
3 *
4 * by Russell King <rmk@arm.linux.org.uk> 1995-2001.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Derived from various things including skeleton.c
11 *
12 * This is a special driver for the am79c961A Lance chip used in the
13 * Intel (formally Digital Equipment Corp) EBSA110 platform. Please
14 * note that this can not be built as a module (it doesn't make sense).
15 */
16#include <linux/kernel.h>
17#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/interrupt.h>
19#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
21#include <linux/string.h>
22#include <linux/errno.h>
23#include <linux/netdevice.h>
24#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/delay.h>
26#include <linux/init.h>
27#include <linux/crc32.h>
28#include <linux/bitops.h>
Russell King37bb30e2005-10-31 17:14:57 +000029#include <linux/platform_device.h>
Russell King99730222009-03-25 10:21:35 +000030#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/hardware.h>
Russell King37bb30e2005-10-31 17:14:57 +000033#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#define TX_BUFFERS 15
36#define RX_BUFFERS 25
37
38#include "am79c961a.h"
39
40static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +010041am79c961_interrupt (int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43static unsigned int net_debug = NET_DEBUG;
44
45static const char version[] =
46 "am79c961 ethernet driver (C) 1995-2001 Russell King v0.04\n";
47
48/* --------------------------------------------------------------------------- */
49
50#ifdef __arm__
51static void write_rreg(u_long base, u_int reg, u_int val)
52{
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +000053 asm volatile(
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 "str%?h %1, [%2] @ NET_RAP\n\t"
55 "str%?h %0, [%2, #-4] @ NET_RDP"
56 :
57 : "r" (val), "r" (reg), "r" (ISAIO_BASE + 0x0464));
58}
59
60static inline unsigned short read_rreg(u_long base_addr, u_int reg)
61{
62 unsigned short v;
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +000063 asm volatile(
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 "str%?h %1, [%2] @ NET_RAP\n\t"
65 "ldr%?h %0, [%2, #-4] @ NET_RDP"
66 : "=r" (v)
67 : "r" (reg), "r" (ISAIO_BASE + 0x0464));
68 return v;
69}
70
71static inline void write_ireg(u_long base, u_int reg, u_int val)
72{
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +000073 asm volatile(
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 "str%?h %1, [%2] @ NET_RAP\n\t"
75 "str%?h %0, [%2, #8] @ NET_IDP"
76 :
77 : "r" (val), "r" (reg), "r" (ISAIO_BASE + 0x0464));
78}
79
80static inline unsigned short read_ireg(u_long base_addr, u_int reg)
81{
82 u_short v;
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +000083 asm volatile(
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 "str%?h %1, [%2] @ NAT_RAP\n\t"
Russell King0e3a64e2005-10-02 18:02:25 +010085 "ldr%?h %0, [%2, #8] @ NET_IDP\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 : "=r" (v)
87 : "r" (reg), "r" (ISAIO_BASE + 0x0464));
88 return v;
89}
90
91#define am_writeword(dev,off,val) __raw_writew(val, ISAMEM_BASE + ((off) << 1))
92#define am_readword(dev,off) __raw_readw(ISAMEM_BASE + ((off) << 1))
93
94static inline void
95am_writebuffer(struct net_device *dev, u_int offset, unsigned char *buf, unsigned int length)
96{
97 offset = ISAMEM_BASE + (offset << 1);
98 length = (length + 1) & ~1;
99 if ((int)buf & 2) {
100 __asm__ __volatile__("str%?h %2, [%0], #4"
101 : "=&r" (offset) : "0" (offset), "r" (buf[0] | (buf[1] << 8)));
102 buf += 2;
103 length -= 2;
104 }
105 while (length > 8) {
106 unsigned int tmp, tmp2;
107 __asm__ __volatile__(
108 "ldm%?ia %1!, {%2, %3}\n\t"
109 "str%?h %2, [%0], #4\n\t"
110 "mov%? %2, %2, lsr #16\n\t"
111 "str%?h %2, [%0], #4\n\t"
112 "str%?h %3, [%0], #4\n\t"
113 "mov%? %3, %3, lsr #16\n\t"
114 "str%?h %3, [%0], #4"
115 : "=&r" (offset), "=&r" (buf), "=r" (tmp), "=r" (tmp2)
116 : "0" (offset), "1" (buf));
117 length -= 8;
118 }
119 while (length > 0) {
120 __asm__ __volatile__("str%?h %2, [%0], #4"
121 : "=&r" (offset) : "0" (offset), "r" (buf[0] | (buf[1] << 8)));
122 buf += 2;
123 length -= 2;
124 }
125}
126
127static inline void
128am_readbuffer(struct net_device *dev, u_int offset, unsigned char *buf, unsigned int length)
129{
130 offset = ISAMEM_BASE + (offset << 1);
131 length = (length + 1) & ~1;
132 if ((int)buf & 2) {
133 unsigned int tmp;
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +0000134 asm volatile(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 "ldr%?h %2, [%0], #4\n\t"
136 "str%?b %2, [%1], #1\n\t"
137 "mov%? %2, %2, lsr #8\n\t"
138 "str%?b %2, [%1], #1"
139 : "=&r" (offset), "=&r" (buf), "=r" (tmp): "0" (offset), "1" (buf));
140 length -= 2;
141 }
142 while (length > 8) {
143 unsigned int tmp, tmp2, tmp3;
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +0000144 asm volatile(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 "ldr%?h %2, [%0], #4\n\t"
146 "ldr%?h %3, [%0], #4\n\t"
147 "orr%? %2, %2, %3, lsl #16\n\t"
148 "ldr%?h %3, [%0], #4\n\t"
149 "ldr%?h %4, [%0], #4\n\t"
150 "orr%? %3, %3, %4, lsl #16\n\t"
151 "stm%?ia %1!, {%2, %3}"
152 : "=&r" (offset), "=&r" (buf), "=r" (tmp), "=r" (tmp2), "=r" (tmp3)
153 : "0" (offset), "1" (buf));
154 length -= 8;
155 }
156 while (length > 0) {
157 unsigned int tmp;
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +0000158 asm volatile(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 "ldr%?h %2, [%0], #4\n\t"
160 "str%?b %2, [%1], #1\n\t"
161 "mov%? %2, %2, lsr #8\n\t"
162 "str%?b %2, [%1], #1"
163 : "=&r" (offset), "=&r" (buf), "=r" (tmp) : "0" (offset), "1" (buf));
164 length -= 2;
165 }
166}
167#else
168#error Not compatible
169#endif
170
171static int
172am79c961_ramtest(struct net_device *dev, unsigned int val)
173{
174 unsigned char *buffer = kmalloc (65536, GFP_KERNEL);
175 int i, error = 0, errorcount = 0;
176
177 if (!buffer)
178 return 0;
179 memset (buffer, val, 65536);
180 am_writebuffer(dev, 0, buffer, 65536);
181 memset (buffer, val ^ 255, 65536);
182 am_readbuffer(dev, 0, buffer, 65536);
183 for (i = 0; i < 65536; i++) {
184 if (buffer[i] != val && !error) {
185 printk ("%s: buffer error (%02X %02X) %05X - ", dev->name, val, buffer[i], i);
186 error = 1;
187 errorcount ++;
188 } else if (error && buffer[i] == val) {
189 printk ("%05X\n", i);
190 error = 0;
191 }
192 }
193 if (error)
194 printk ("10000\n");
195 kfree (buffer);
196 return errorcount;
197}
198
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000199static void am79c961_mc_hash(char *addr, u16 *hash)
200{
201 if (addr[0] & 0x01) {
202 int idx, bit;
203 u32 crc;
204
205 crc = ether_crc_le(ETH_ALEN, addr);
206
207 idx = crc >> 30;
208 bit = (crc >> 26) & 15;
209
210 hash[idx] |= 1 << bit;
211 }
212}
213
214static unsigned int am79c961_get_rx_mode(struct net_device *dev, u16 *hash)
215{
216 unsigned int mode = MODE_PORT_10BT;
217
218 if (dev->flags & IFF_PROMISC) {
219 mode |= MODE_PROMISC;
220 memset(hash, 0xff, 4 * sizeof(*hash));
221 } else if (dev->flags & IFF_ALLMULTI) {
222 memset(hash, 0xff, 4 * sizeof(*hash));
223 } else {
224 struct netdev_hw_addr *ha;
225
226 memset(hash, 0, 4 * sizeof(*hash));
227
228 netdev_for_each_mc_addr(ha, dev)
229 am79c961_mc_hash(ha->addr, hash);
230 }
231
232 return mode;
233}
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235static void
236am79c961_init_for_open(struct net_device *dev)
237{
238 struct dev_priv *priv = netdev_priv(dev);
239 unsigned long flags;
240 unsigned char *p;
241 u_int hdr_addr, first_free_addr;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000242 u16 multi_hash[4], mode = am79c961_get_rx_mode(dev, multi_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 int i;
244
245 /*
246 * Stop the chip.
247 */
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100248 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 write_rreg (dev->base_addr, CSR0, CSR0_BABL|CSR0_CERR|CSR0_MISS|CSR0_MERR|CSR0_TINT|CSR0_RINT|CSR0_STOP);
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100250 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 write_ireg (dev->base_addr, 5, 0x00a0); /* Receive address LED */
253 write_ireg (dev->base_addr, 6, 0x0081); /* Collision LED */
254 write_ireg (dev->base_addr, 7, 0x0090); /* XMIT LED */
255 write_ireg (dev->base_addr, 2, 0x0000); /* MODE register selects media */
256
257 for (i = LADRL; i <= LADRH; i++)
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000258 write_rreg (dev->base_addr, i, multi_hash[i - LADRL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 for (i = PADRL, p = dev->dev_addr; i <= PADRH; i++, p += 2)
261 write_rreg (dev->base_addr, i, p[0] | (p[1] << 8));
262
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000263 write_rreg (dev->base_addr, MODE, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 write_rreg (dev->base_addr, POLLINT, 0);
265 write_rreg (dev->base_addr, SIZERXR, -RX_BUFFERS);
266 write_rreg (dev->base_addr, SIZETXR, -TX_BUFFERS);
267
268 first_free_addr = RX_BUFFERS * 8 + TX_BUFFERS * 8 + 16;
269 hdr_addr = 0;
270
271 priv->rxhead = 0;
272 priv->rxtail = 0;
273 priv->rxhdr = hdr_addr;
274
275 for (i = 0; i < RX_BUFFERS; i++) {
276 priv->rxbuffer[i] = first_free_addr;
277 am_writeword (dev, hdr_addr, first_free_addr);
278 am_writeword (dev, hdr_addr + 2, RMD_OWN);
279 am_writeword (dev, hdr_addr + 4, (-1600));
280 am_writeword (dev, hdr_addr + 6, 0);
281 first_free_addr += 1600;
282 hdr_addr += 8;
283 }
284 priv->txhead = 0;
285 priv->txtail = 0;
286 priv->txhdr = hdr_addr;
287 for (i = 0; i < TX_BUFFERS; i++) {
288 priv->txbuffer[i] = first_free_addr;
289 am_writeword (dev, hdr_addr, first_free_addr);
290 am_writeword (dev, hdr_addr + 2, TMD_STP|TMD_ENP);
291 am_writeword (dev, hdr_addr + 4, 0xf000);
292 am_writeword (dev, hdr_addr + 6, 0);
293 first_free_addr += 1600;
294 hdr_addr += 8;
295 }
296
297 write_rreg (dev->base_addr, BASERXL, priv->rxhdr);
298 write_rreg (dev->base_addr, BASERXH, 0);
299 write_rreg (dev->base_addr, BASETXL, priv->txhdr);
300 write_rreg (dev->base_addr, BASERXH, 0);
301 write_rreg (dev->base_addr, CSR0, CSR0_STOP);
302 write_rreg (dev->base_addr, CSR3, CSR3_IDONM|CSR3_BABLM|CSR3_DXSUFLO);
303 write_rreg (dev->base_addr, CSR4, CSR4_APAD_XMIT|CSR4_MFCOM|CSR4_RCVCCOM|CSR4_TXSTRTM|CSR4_JABM);
304 write_rreg (dev->base_addr, CSR0, CSR0_IENA|CSR0_STRT);
305}
306
307static void am79c961_timer(unsigned long data)
308{
309 struct net_device *dev = (struct net_device *)data;
310 struct dev_priv *priv = netdev_priv(dev);
311 unsigned int lnkstat, carrier;
312
313 lnkstat = read_ireg(dev->base_addr, ISALED0) & ISALED0_LNKST;
314 carrier = netif_carrier_ok(dev);
315
Russell King37bb30e2005-10-31 17:14:57 +0000316 if (lnkstat && !carrier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 netif_carrier_on(dev);
Russell King37bb30e2005-10-31 17:14:57 +0000318 printk("%s: link up\n", dev->name);
319 } else if (!lnkstat && carrier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 netif_carrier_off(dev);
Russell King37bb30e2005-10-31 17:14:57 +0000321 printk("%s: link down\n", dev->name);
322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Russell King487fd4e2005-10-02 18:12:03 +0100324 mod_timer(&priv->timer, jiffies + msecs_to_jiffies(500));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327/*
328 * Open/initialize the board.
329 */
330static int
331am79c961_open(struct net_device *dev)
332{
333 struct dev_priv *priv = netdev_priv(dev);
334 int ret;
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 ret = request_irq(dev->irq, am79c961_interrupt, 0, dev->name, dev);
337 if (ret)
338 return ret;
339
340 am79c961_init_for_open(dev);
341
342 netif_carrier_off(dev);
343
344 priv->timer.expires = jiffies;
345 add_timer(&priv->timer);
346
347 netif_start_queue(dev);
348
349 return 0;
350}
351
352/*
353 * The inverse routine to am79c961_open().
354 */
355static int
356am79c961_close(struct net_device *dev)
357{
358 struct dev_priv *priv = netdev_priv(dev);
359 unsigned long flags;
360
361 del_timer_sync(&priv->timer);
362
363 netif_stop_queue(dev);
364 netif_carrier_off(dev);
365
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100366 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 write_rreg (dev->base_addr, CSR0, CSR0_STOP);
368 write_rreg (dev->base_addr, CSR3, CSR3_MASKALL);
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100369 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 free_irq (dev->irq, dev);
372
373 return 0;
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
377 * Set or clear promiscuous/multicast mode filter for this adapter.
378 */
379static void am79c961_setmulticastlist (struct net_device *dev)
380{
381 struct dev_priv *priv = netdev_priv(dev);
382 unsigned long flags;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000383 u16 multi_hash[4], mode = am79c961_get_rx_mode(dev, multi_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 int i, stopped;
385
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100386 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 stopped = read_rreg(dev->base_addr, CSR0) & CSR0_STOP;
389
390 if (!stopped) {
391 /*
392 * Put the chip into suspend mode
393 */
394 write_rreg(dev->base_addr, CTRL1, CTRL1_SPND);
395
396 /*
397 * Spin waiting for chip to report suspend mode
398 */
399 while ((read_rreg(dev->base_addr, CTRL1) & CTRL1_SPND) == 0) {
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100400 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 nop();
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100402 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404 }
405
406 /*
407 * Update the multicast hash table
408 */
Denis Chengff8ac602007-09-02 18:30:18 +0800409 for (i = 0; i < ARRAY_SIZE(multi_hash); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 write_rreg(dev->base_addr, i + LADRL, multi_hash[i]);
411
412 /*
413 * Write the mode register
414 */
415 write_rreg(dev->base_addr, MODE, mode);
416
417 if (!stopped) {
418 /*
419 * Put the chip back into running mode
420 */
421 write_rreg(dev->base_addr, CTRL1, 0);
422 }
423
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100424 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
427static void am79c961_timeout(struct net_device *dev)
428{
429 printk(KERN_WARNING "%s: transmit timed out, network cable problem?\n",
430 dev->name);
431
432 /*
433 * ought to do some setup of the tx side here
434 */
435
436 netif_wake_queue(dev);
437}
438
439/*
440 * Transmit a packet
441 */
442static int
443am79c961_sendpacket(struct sk_buff *skb, struct net_device *dev)
444{
445 struct dev_priv *priv = netdev_priv(dev);
446 unsigned int hdraddr, bufaddr;
447 unsigned int head;
448 unsigned long flags;
449
450 head = priv->txhead;
451 hdraddr = priv->txhdr + (head << 3);
452 bufaddr = priv->txbuffer[head];
453 head += 1;
454 if (head >= TX_BUFFERS)
455 head = 0;
456
457 am_writebuffer (dev, bufaddr, skb->data, skb->len);
458 am_writeword (dev, hdraddr + 4, -skb->len);
459 am_writeword (dev, hdraddr + 2, TMD_OWN|TMD_STP|TMD_ENP);
460 priv->txhead = head;
461
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100462 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 write_rreg (dev->base_addr, CSR0, CSR0_TDMD|CSR0_IENA);
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100464 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 /*
467 * If the next packet is owned by the ethernet device,
468 * then the tx ring is full and we can't add another
469 * packet.
470 */
471 if (am_readword(dev, priv->txhdr + (priv->txhead << 3) + 2) & TMD_OWN)
472 netif_stop_queue(dev);
473
474 dev_kfree_skb(skb);
475
Patrick McHardy6ed10652009-06-23 06:03:08 +0000476 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
479/*
480 * If we have a good packet(s), get it/them out of the buffers.
481 */
482static void
483am79c961_rx(struct net_device *dev, struct dev_priv *priv)
484{
485 do {
486 struct sk_buff *skb;
487 u_int hdraddr;
488 u_int pktaddr;
489 u_int status;
490 int len;
491
492 hdraddr = priv->rxhdr + (priv->rxtail << 3);
493 pktaddr = priv->rxbuffer[priv->rxtail];
494
495 status = am_readword (dev, hdraddr + 2);
496 if (status & RMD_OWN) /* do we own it? */
497 break;
498
499 priv->rxtail ++;
500 if (priv->rxtail >= RX_BUFFERS)
501 priv->rxtail = 0;
502
503 if ((status & (RMD_ERR|RMD_STP|RMD_ENP)) != (RMD_STP|RMD_ENP)) {
504 am_writeword (dev, hdraddr + 2, RMD_OWN);
Tobias Klauser264fd772010-08-09 05:04:34 +0000505 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (status & RMD_ERR) {
507 if (status & RMD_FRAM)
Tobias Klauser264fd772010-08-09 05:04:34 +0000508 dev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (status & RMD_CRC)
Tobias Klauser264fd772010-08-09 05:04:34 +0000510 dev->stats.rx_crc_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 } else if (status & RMD_STP)
Tobias Klauser264fd772010-08-09 05:04:34 +0000512 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 continue;
514 }
515
516 len = am_readword(dev, hdraddr + 6);
517 skb = dev_alloc_skb(len + 2);
518
519 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 skb_reserve(skb, 2);
521
522 am_readbuffer(dev, pktaddr, skb_put(skb, len), len);
523 am_writeword(dev, hdraddr + 2, RMD_OWN);
524 skb->protocol = eth_type_trans(skb, dev);
525 netif_rx(skb);
Tobias Klauser264fd772010-08-09 05:04:34 +0000526 dev->stats.rx_bytes += len;
527 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 } else {
529 am_writeword (dev, hdraddr + 2, RMD_OWN);
530 printk (KERN_WARNING "%s: memory squeeze, dropping packet.\n", dev->name);
Tobias Klauser264fd772010-08-09 05:04:34 +0000531 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 break;
533 }
534 } while (1);
535}
536
537/*
538 * Update stats for the transmitted packet
539 */
540static void
541am79c961_tx(struct net_device *dev, struct dev_priv *priv)
542{
543 do {
544 short len;
545 u_int hdraddr;
546 u_int status;
547
548 hdraddr = priv->txhdr + (priv->txtail << 3);
549 status = am_readword (dev, hdraddr + 2);
550 if (status & TMD_OWN)
551 break;
552
553 priv->txtail ++;
554 if (priv->txtail >= TX_BUFFERS)
555 priv->txtail = 0;
556
557 if (status & TMD_ERR) {
558 u_int status2;
559
Tobias Klauser264fd772010-08-09 05:04:34 +0000560 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 status2 = am_readword (dev, hdraddr + 6);
563
564 /*
565 * Clear the error byte
566 */
567 am_writeword (dev, hdraddr + 6, 0);
568
569 if (status2 & TST_RTRY)
Tobias Klauser264fd772010-08-09 05:04:34 +0000570 dev->stats.collisions += 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (status2 & TST_LCOL)
Tobias Klauser264fd772010-08-09 05:04:34 +0000572 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (status2 & TST_LCAR)
Tobias Klauser264fd772010-08-09 05:04:34 +0000574 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (status2 & TST_UFLO)
Tobias Klauser264fd772010-08-09 05:04:34 +0000576 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 continue;
578 }
Tobias Klauser264fd772010-08-09 05:04:34 +0000579 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 len = am_readword (dev, hdraddr + 4);
Tobias Klauser264fd772010-08-09 05:04:34 +0000581 dev->stats.tx_bytes += -len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 } while (priv->txtail != priv->txhead);
583
584 netif_wake_queue(dev);
585}
586
587static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100588am79c961_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 struct net_device *dev = (struct net_device *)dev_id;
591 struct dev_priv *priv = netdev_priv(dev);
592 u_int status, n = 100;
593 int handled = 0;
594
595 do {
596 status = read_rreg(dev->base_addr, CSR0);
597 write_rreg(dev->base_addr, CSR0, status &
598 (CSR0_IENA|CSR0_TINT|CSR0_RINT|
599 CSR0_MERR|CSR0_MISS|CSR0_CERR|CSR0_BABL));
600
601 if (status & CSR0_RINT) {
602 handled = 1;
603 am79c961_rx(dev, priv);
604 }
605 if (status & CSR0_TINT) {
606 handled = 1;
607 am79c961_tx(dev, priv);
608 }
609 if (status & CSR0_MISS) {
610 handled = 1;
Tobias Klauser264fd772010-08-09 05:04:34 +0000611 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613 if (status & CSR0_CERR) {
614 handled = 1;
615 mod_timer(&priv->timer, jiffies);
616 }
617 } while (--n && status & (CSR0_RINT | CSR0_TINT));
618
619 return IRQ_RETVAL(handled);
620}
621
622#ifdef CONFIG_NET_POLL_CONTROLLER
623static void am79c961_poll_controller(struct net_device *dev)
624{
625 unsigned long flags;
626 local_irq_save(flags);
Yoann Padioleau0da2f0f2007-07-06 02:39:56 -0700627 am79c961_interrupt(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 local_irq_restore(flags);
629}
630#endif
631
632/*
633 * Initialise the chip. Note that we always expect
634 * to be entered with interrupts enabled.
635 */
636static int
637am79c961_hw_init(struct net_device *dev)
638{
639 struct dev_priv *priv = netdev_priv(dev);
640
641 spin_lock_irq(&priv->chip_lock);
642 write_rreg (dev->base_addr, CSR0, CSR0_STOP);
643 write_rreg (dev->base_addr, CSR3, CSR3_MASKALL);
644 spin_unlock_irq(&priv->chip_lock);
645
646 am79c961_ramtest(dev, 0x66);
647 am79c961_ramtest(dev, 0x99);
648
649 return 0;
650}
651
652static void __init am79c961_banner(void)
653{
654 static unsigned version_printed;
655
656 if (net_debug && version_printed++ == 0)
657 printk(KERN_INFO "%s", version);
658}
Alexander Beregalovfefbfb12009-04-09 17:25:25 +0000659static const struct net_device_ops am79c961_netdev_ops = {
660 .ndo_open = am79c961_open,
661 .ndo_stop = am79c961_close,
662 .ndo_start_xmit = am79c961_sendpacket,
Alexander Beregalovfefbfb12009-04-09 17:25:25 +0000663 .ndo_set_multicast_list = am79c961_setmulticastlist,
664 .ndo_tx_timeout = am79c961_timeout,
665 .ndo_validate_addr = eth_validate_addr,
666 .ndo_change_mtu = eth_change_mtu,
667 .ndo_set_mac_address = eth_mac_addr,
668#ifdef CONFIG_NET_POLL_CONTROLLER
669 .ndo_poll_controller = am79c961_poll_controller,
670#endif
671};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Uwe Kleine-König447d8c22010-02-12 12:10:47 -0800673static int __devinit am79c961_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Russell King37bb30e2005-10-31 17:14:57 +0000675 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 struct net_device *dev;
677 struct dev_priv *priv;
678 int i, ret;
679
Russell King37bb30e2005-10-31 17:14:57 +0000680 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
681 if (!res)
682 return -ENODEV;
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 dev = alloc_etherdev(sizeof(struct dev_priv));
685 ret = -ENOMEM;
686 if (!dev)
687 goto out;
688
Russell King37bb30e2005-10-31 17:14:57 +0000689 SET_NETDEV_DEV(dev, &pdev->dev);
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 priv = netdev_priv(dev);
692
693 /*
694 * Fixed address and IRQ lines here.
695 * The PNP initialisation should have been
696 * done by the ether bootp loader.
697 */
Russell King37bb30e2005-10-31 17:14:57 +0000698 dev->base_addr = res->start;
Roel Kluin62783672008-04-23 23:44:03 +0200699 ret = platform_get_irq(pdev, 0);
700
701 if (ret < 0) {
702 ret = -ENODEV;
703 goto nodev;
704 }
705 dev->irq = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
David Vrabel48944732006-01-19 17:56:29 +0000707 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (!request_region(dev->base_addr, 0x18, dev->name))
709 goto nodev;
710
711 /*
712 * Reset the device.
713 */
714 inb(dev->base_addr + NET_RESET);
715 udelay(5);
716
717 /*
718 * Check the manufacturer part of the
719 * ether address.
720 */
721 if (inb(dev->base_addr) != 0x08 ||
722 inb(dev->base_addr + 2) != 0x00 ||
723 inb(dev->base_addr + 4) != 0x2b)
724 goto release;
725
Russell King487fd4e2005-10-02 18:12:03 +0100726 for (i = 0; i < 6; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 dev->dev_addr[i] = inb(dev->base_addr + i * 2) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Russell King37bb30e2005-10-31 17:14:57 +0000729 am79c961_banner();
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 spin_lock_init(&priv->chip_lock);
732 init_timer(&priv->timer);
733 priv->timer.data = (unsigned long)dev;
734 priv->timer.function = am79c961_timer;
735
736 if (am79c961_hw_init(dev))
737 goto release;
738
Alexander Beregalovfefbfb12009-04-09 17:25:25 +0000739 dev->netdev_ops = &am79c961_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 ret = register_netdev(dev);
Russell King487fd4e2005-10-02 18:12:03 +0100742 if (ret == 0) {
Johannes Berge1749612008-10-27 15:59:26 -0700743 printk(KERN_INFO "%s: ether address %pM\n",
744 dev->name, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return 0;
Russell King487fd4e2005-10-02 18:12:03 +0100746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748release:
749 release_region(dev->base_addr, 0x18);
750nodev:
751 free_netdev(dev);
752out:
753 return ret;
754}
755
Russell King50465d02006-01-09 13:59:36 +0000756static struct platform_driver am79c961_driver = {
Russell King37bb30e2005-10-31 17:14:57 +0000757 .probe = am79c961_probe,
Russell King50465d02006-01-09 13:59:36 +0000758 .driver = {
759 .name = "am79c961",
760 },
Russell King37bb30e2005-10-31 17:14:57 +0000761};
762
763static int __init am79c961_init(void)
764{
Russell King50465d02006-01-09 13:59:36 +0000765 return platform_driver_register(&am79c961_driver);
Russell King37bb30e2005-10-31 17:14:57 +0000766}
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768__initcall(am79c961_init);