blob: 52fe21e1e2cd11b20f50d3c59c7672818ac485bc [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
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +000094static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070095am_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) {
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000100 asm volatile("str%?h %2, [%0], #4"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 : "=&r" (offset) : "0" (offset), "r" (buf[0] | (buf[1] << 8)));
102 buf += 2;
103 length -= 2;
104 }
105 while (length > 8) {
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000106 register unsigned int tmp asm("r2"), tmp2 asm("r3");
107 asm volatile(
108 "ldm%?ia %0!, {%1, %2}"
109 : "+r" (buf), "=&r" (tmp), "=&r" (tmp2));
110 length -= 8;
111 asm volatile(
112 "str%?h %1, [%0], #4\n\t"
113 "mov%? %1, %1, lsr #16\n\t"
114 "str%?h %1, [%0], #4\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 "str%?h %2, [%0], #4\n\t"
116 "mov%? %2, %2, lsr #16\n\t"
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000117 "str%?h %2, [%0], #4"
118 : "+r" (offset), "=&r" (tmp), "=&r" (tmp2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120 while (length > 0) {
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000121 asm volatile("str%?h %2, [%0], #4"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 : "=&r" (offset) : "0" (offset), "r" (buf[0] | (buf[1] << 8)));
123 buf += 2;
124 length -= 2;
125 }
126}
127
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000128static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129am_readbuffer(struct net_device *dev, u_int offset, unsigned char *buf, unsigned int length)
130{
131 offset = ISAMEM_BASE + (offset << 1);
132 length = (length + 1) & ~1;
133 if ((int)buf & 2) {
134 unsigned int tmp;
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +0000135 asm volatile(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 "ldr%?h %2, [%0], #4\n\t"
137 "str%?b %2, [%1], #1\n\t"
138 "mov%? %2, %2, lsr #8\n\t"
139 "str%?b %2, [%1], #1"
140 : "=&r" (offset), "=&r" (buf), "=r" (tmp): "0" (offset), "1" (buf));
141 length -= 2;
142 }
143 while (length > 8) {
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000144 register unsigned int tmp asm("r2"), tmp2 asm("r3"), tmp3;
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +0000145 asm volatile(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 "ldr%?h %2, [%0], #4\n\t"
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000147 "ldr%?h %4, [%0], #4\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 "ldr%?h %3, [%0], #4\n\t"
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000149 "orr%? %2, %2, %4, lsl #16\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 "ldr%?h %4, [%0], #4\n\t"
151 "orr%? %3, %3, %4, lsl #16\n\t"
152 "stm%?ia %1!, {%2, %3}"
153 : "=&r" (offset), "=&r" (buf), "=r" (tmp), "=r" (tmp2), "=r" (tmp3)
154 : "0" (offset), "1" (buf));
155 length -= 8;
156 }
157 while (length > 0) {
158 unsigned int tmp;
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +0000159 asm volatile(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 "ldr%?h %2, [%0], #4\n\t"
161 "str%?b %2, [%1], #1\n\t"
162 "mov%? %2, %2, lsr #8\n\t"
163 "str%?b %2, [%1], #1"
164 : "=&r" (offset), "=&r" (buf), "=r" (tmp) : "0" (offset), "1" (buf));
165 length -= 2;
166 }
167}
168#else
169#error Not compatible
170#endif
171
172static int
173am79c961_ramtest(struct net_device *dev, unsigned int val)
174{
175 unsigned char *buffer = kmalloc (65536, GFP_KERNEL);
176 int i, error = 0, errorcount = 0;
177
178 if (!buffer)
179 return 0;
180 memset (buffer, val, 65536);
181 am_writebuffer(dev, 0, buffer, 65536);
182 memset (buffer, val ^ 255, 65536);
183 am_readbuffer(dev, 0, buffer, 65536);
184 for (i = 0; i < 65536; i++) {
185 if (buffer[i] != val && !error) {
186 printk ("%s: buffer error (%02X %02X) %05X - ", dev->name, val, buffer[i], i);
187 error = 1;
188 errorcount ++;
189 } else if (error && buffer[i] == val) {
190 printk ("%05X\n", i);
191 error = 0;
192 }
193 }
194 if (error)
195 printk ("10000\n");
196 kfree (buffer);
197 return errorcount;
198}
199
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000200static void am79c961_mc_hash(char *addr, u16 *hash)
201{
Tobias Klauserbda7ed42011-06-29 02:14:46 +0000202 int idx, bit;
203 u32 crc;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000204
Tobias Klauserbda7ed42011-06-29 02:14:46 +0000205 crc = ether_crc_le(ETH_ALEN, addr);
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000206
Tobias Klauserbda7ed42011-06-29 02:14:46 +0000207 idx = crc >> 30;
208 bit = (crc >> 26) & 15;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000209
Tobias Klauserbda7ed42011-06-29 02:14:46 +0000210 hash[idx] |= 1 << bit;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000211}
212
213static unsigned int am79c961_get_rx_mode(struct net_device *dev, u16 *hash)
214{
215 unsigned int mode = MODE_PORT_10BT;
216
217 if (dev->flags & IFF_PROMISC) {
218 mode |= MODE_PROMISC;
219 memset(hash, 0xff, 4 * sizeof(*hash));
220 } else if (dev->flags & IFF_ALLMULTI) {
221 memset(hash, 0xff, 4 * sizeof(*hash));
222 } else {
223 struct netdev_hw_addr *ha;
224
225 memset(hash, 0, 4 * sizeof(*hash));
226
227 netdev_for_each_mc_addr(ha, dev)
228 am79c961_mc_hash(ha->addr, hash);
229 }
230
231 return mode;
232}
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234static void
235am79c961_init_for_open(struct net_device *dev)
236{
237 struct dev_priv *priv = netdev_priv(dev);
238 unsigned long flags;
239 unsigned char *p;
240 u_int hdr_addr, first_free_addr;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000241 u16 multi_hash[4], mode = am79c961_get_rx_mode(dev, multi_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 int i;
243
244 /*
245 * Stop the chip.
246 */
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100247 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 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 +0100249 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 write_ireg (dev->base_addr, 5, 0x00a0); /* Receive address LED */
252 write_ireg (dev->base_addr, 6, 0x0081); /* Collision LED */
253 write_ireg (dev->base_addr, 7, 0x0090); /* XMIT LED */
254 write_ireg (dev->base_addr, 2, 0x0000); /* MODE register selects media */
255
256 for (i = LADRL; i <= LADRH; i++)
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000257 write_rreg (dev->base_addr, i, multi_hash[i - LADRL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 for (i = PADRL, p = dev->dev_addr; i <= PADRH; i++, p += 2)
260 write_rreg (dev->base_addr, i, p[0] | (p[1] << 8));
261
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000262 write_rreg (dev->base_addr, MODE, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 write_rreg (dev->base_addr, POLLINT, 0);
264 write_rreg (dev->base_addr, SIZERXR, -RX_BUFFERS);
265 write_rreg (dev->base_addr, SIZETXR, -TX_BUFFERS);
266
267 first_free_addr = RX_BUFFERS * 8 + TX_BUFFERS * 8 + 16;
268 hdr_addr = 0;
269
270 priv->rxhead = 0;
271 priv->rxtail = 0;
272 priv->rxhdr = hdr_addr;
273
274 for (i = 0; i < RX_BUFFERS; i++) {
275 priv->rxbuffer[i] = first_free_addr;
276 am_writeword (dev, hdr_addr, first_free_addr);
277 am_writeword (dev, hdr_addr + 2, RMD_OWN);
278 am_writeword (dev, hdr_addr + 4, (-1600));
279 am_writeword (dev, hdr_addr + 6, 0);
280 first_free_addr += 1600;
281 hdr_addr += 8;
282 }
283 priv->txhead = 0;
284 priv->txtail = 0;
285 priv->txhdr = hdr_addr;
286 for (i = 0; i < TX_BUFFERS; i++) {
287 priv->txbuffer[i] = first_free_addr;
288 am_writeword (dev, hdr_addr, first_free_addr);
289 am_writeword (dev, hdr_addr + 2, TMD_STP|TMD_ENP);
290 am_writeword (dev, hdr_addr + 4, 0xf000);
291 am_writeword (dev, hdr_addr + 6, 0);
292 first_free_addr += 1600;
293 hdr_addr += 8;
294 }
295
296 write_rreg (dev->base_addr, BASERXL, priv->rxhdr);
297 write_rreg (dev->base_addr, BASERXH, 0);
298 write_rreg (dev->base_addr, BASETXL, priv->txhdr);
299 write_rreg (dev->base_addr, BASERXH, 0);
300 write_rreg (dev->base_addr, CSR0, CSR0_STOP);
301 write_rreg (dev->base_addr, CSR3, CSR3_IDONM|CSR3_BABLM|CSR3_DXSUFLO);
302 write_rreg (dev->base_addr, CSR4, CSR4_APAD_XMIT|CSR4_MFCOM|CSR4_RCVCCOM|CSR4_TXSTRTM|CSR4_JABM);
303 write_rreg (dev->base_addr, CSR0, CSR0_IENA|CSR0_STRT);
304}
305
306static void am79c961_timer(unsigned long data)
307{
308 struct net_device *dev = (struct net_device *)data;
309 struct dev_priv *priv = netdev_priv(dev);
310 unsigned int lnkstat, carrier;
311
312 lnkstat = read_ireg(dev->base_addr, ISALED0) & ISALED0_LNKST;
313 carrier = netif_carrier_ok(dev);
314
Russell King37bb30e2005-10-31 17:14:57 +0000315 if (lnkstat && !carrier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 netif_carrier_on(dev);
Russell King37bb30e2005-10-31 17:14:57 +0000317 printk("%s: link up\n", dev->name);
318 } else if (!lnkstat && carrier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 netif_carrier_off(dev);
Russell King37bb30e2005-10-31 17:14:57 +0000320 printk("%s: link down\n", dev->name);
321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Russell King487fd4e2005-10-02 18:12:03 +0100323 mod_timer(&priv->timer, jiffies + msecs_to_jiffies(500));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
326/*
327 * Open/initialize the board.
328 */
329static int
330am79c961_open(struct net_device *dev)
331{
332 struct dev_priv *priv = netdev_priv(dev);
333 int ret;
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 ret = request_irq(dev->irq, am79c961_interrupt, 0, dev->name, dev);
336 if (ret)
337 return ret;
338
339 am79c961_init_for_open(dev);
340
341 netif_carrier_off(dev);
342
343 priv->timer.expires = jiffies;
344 add_timer(&priv->timer);
345
346 netif_start_queue(dev);
347
348 return 0;
349}
350
351/*
352 * The inverse routine to am79c961_open().
353 */
354static int
355am79c961_close(struct net_device *dev)
356{
357 struct dev_priv *priv = netdev_priv(dev);
358 unsigned long flags;
359
360 del_timer_sync(&priv->timer);
361
362 netif_stop_queue(dev);
363 netif_carrier_off(dev);
364
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100365 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 write_rreg (dev->base_addr, CSR0, CSR0_STOP);
367 write_rreg (dev->base_addr, CSR3, CSR3_MASKALL);
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100368 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 free_irq (dev->irq, dev);
371
372 return 0;
373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/*
376 * Set or clear promiscuous/multicast mode filter for this adapter.
377 */
378static void am79c961_setmulticastlist (struct net_device *dev)
379{
380 struct dev_priv *priv = netdev_priv(dev);
381 unsigned long flags;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000382 u16 multi_hash[4], mode = am79c961_get_rx_mode(dev, multi_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 int i, stopped;
384
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100385 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 stopped = read_rreg(dev->base_addr, CSR0) & CSR0_STOP;
388
389 if (!stopped) {
390 /*
391 * Put the chip into suspend mode
392 */
393 write_rreg(dev->base_addr, CTRL1, CTRL1_SPND);
394
395 /*
396 * Spin waiting for chip to report suspend mode
397 */
398 while ((read_rreg(dev->base_addr, CTRL1) & CTRL1_SPND) == 0) {
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100399 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 nop();
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100401 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403 }
404
405 /*
406 * Update the multicast hash table
407 */
Denis Chengff8ac602007-09-02 18:30:18 +0800408 for (i = 0; i < ARRAY_SIZE(multi_hash); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 write_rreg(dev->base_addr, i + LADRL, multi_hash[i]);
410
411 /*
412 * Write the mode register
413 */
414 write_rreg(dev->base_addr, MODE, mode);
415
416 if (!stopped) {
417 /*
418 * Put the chip back into running mode
419 */
420 write_rreg(dev->base_addr, CTRL1, 0);
421 }
422
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100423 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
426static void am79c961_timeout(struct net_device *dev)
427{
428 printk(KERN_WARNING "%s: transmit timed out, network cable problem?\n",
429 dev->name);
430
431 /*
432 * ought to do some setup of the tx side here
433 */
434
435 netif_wake_queue(dev);
436}
437
438/*
439 * Transmit a packet
440 */
441static int
442am79c961_sendpacket(struct sk_buff *skb, struct net_device *dev)
443{
444 struct dev_priv *priv = netdev_priv(dev);
445 unsigned int hdraddr, bufaddr;
446 unsigned int head;
447 unsigned long flags;
448
449 head = priv->txhead;
450 hdraddr = priv->txhdr + (head << 3);
451 bufaddr = priv->txbuffer[head];
452 head += 1;
453 if (head >= TX_BUFFERS)
454 head = 0;
455
456 am_writebuffer (dev, bufaddr, skb->data, skb->len);
457 am_writeword (dev, hdraddr + 4, -skb->len);
458 am_writeword (dev, hdraddr + 2, TMD_OWN|TMD_STP|TMD_ENP);
459 priv->txhead = head;
460
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100461 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 write_rreg (dev->base_addr, CSR0, CSR0_TDMD|CSR0_IENA);
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100463 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 /*
466 * If the next packet is owned by the ethernet device,
467 * then the tx ring is full and we can't add another
468 * packet.
469 */
470 if (am_readword(dev, priv->txhdr + (priv->txhead << 3) + 2) & TMD_OWN)
471 netif_stop_queue(dev);
472
473 dev_kfree_skb(skb);
474
Patrick McHardy6ed10652009-06-23 06:03:08 +0000475 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
478/*
479 * If we have a good packet(s), get it/them out of the buffers.
480 */
481static void
482am79c961_rx(struct net_device *dev, struct dev_priv *priv)
483{
484 do {
485 struct sk_buff *skb;
486 u_int hdraddr;
487 u_int pktaddr;
488 u_int status;
489 int len;
490
491 hdraddr = priv->rxhdr + (priv->rxtail << 3);
492 pktaddr = priv->rxbuffer[priv->rxtail];
493
494 status = am_readword (dev, hdraddr + 2);
495 if (status & RMD_OWN) /* do we own it? */
496 break;
497
498 priv->rxtail ++;
499 if (priv->rxtail >= RX_BUFFERS)
500 priv->rxtail = 0;
501
502 if ((status & (RMD_ERR|RMD_STP|RMD_ENP)) != (RMD_STP|RMD_ENP)) {
503 am_writeword (dev, hdraddr + 2, RMD_OWN);
Tobias Klauser264fd772010-08-09 05:04:34 +0000504 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (status & RMD_ERR) {
506 if (status & RMD_FRAM)
Tobias Klauser264fd772010-08-09 05:04:34 +0000507 dev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (status & RMD_CRC)
Tobias Klauser264fd772010-08-09 05:04:34 +0000509 dev->stats.rx_crc_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 } else if (status & RMD_STP)
Tobias Klauser264fd772010-08-09 05:04:34 +0000511 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 continue;
513 }
514
515 len = am_readword(dev, hdraddr + 6);
516 skb = dev_alloc_skb(len + 2);
517
518 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 skb_reserve(skb, 2);
520
521 am_readbuffer(dev, pktaddr, skb_put(skb, len), len);
522 am_writeword(dev, hdraddr + 2, RMD_OWN);
523 skb->protocol = eth_type_trans(skb, dev);
524 netif_rx(skb);
Tobias Klauser264fd772010-08-09 05:04:34 +0000525 dev->stats.rx_bytes += len;
526 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 } else {
528 am_writeword (dev, hdraddr + 2, RMD_OWN);
529 printk (KERN_WARNING "%s: memory squeeze, dropping packet.\n", dev->name);
Tobias Klauser264fd772010-08-09 05:04:34 +0000530 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 break;
532 }
533 } while (1);
534}
535
536/*
537 * Update stats for the transmitted packet
538 */
539static void
540am79c961_tx(struct net_device *dev, struct dev_priv *priv)
541{
542 do {
543 short len;
544 u_int hdraddr;
545 u_int status;
546
547 hdraddr = priv->txhdr + (priv->txtail << 3);
548 status = am_readword (dev, hdraddr + 2);
549 if (status & TMD_OWN)
550 break;
551
552 priv->txtail ++;
553 if (priv->txtail >= TX_BUFFERS)
554 priv->txtail = 0;
555
556 if (status & TMD_ERR) {
557 u_int status2;
558
Tobias Klauser264fd772010-08-09 05:04:34 +0000559 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 status2 = am_readword (dev, hdraddr + 6);
562
563 /*
564 * Clear the error byte
565 */
566 am_writeword (dev, hdraddr + 6, 0);
567
568 if (status2 & TST_RTRY)
Tobias Klauser264fd772010-08-09 05:04:34 +0000569 dev->stats.collisions += 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (status2 & TST_LCOL)
Tobias Klauser264fd772010-08-09 05:04:34 +0000571 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (status2 & TST_LCAR)
Tobias Klauser264fd772010-08-09 05:04:34 +0000573 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (status2 & TST_UFLO)
Tobias Klauser264fd772010-08-09 05:04:34 +0000575 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 continue;
577 }
Tobias Klauser264fd772010-08-09 05:04:34 +0000578 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 len = am_readword (dev, hdraddr + 4);
Tobias Klauser264fd772010-08-09 05:04:34 +0000580 dev->stats.tx_bytes += -len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 } while (priv->txtail != priv->txhead);
582
583 netif_wake_queue(dev);
584}
585
586static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100587am79c961_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 struct net_device *dev = (struct net_device *)dev_id;
590 struct dev_priv *priv = netdev_priv(dev);
591 u_int status, n = 100;
592 int handled = 0;
593
594 do {
595 status = read_rreg(dev->base_addr, CSR0);
596 write_rreg(dev->base_addr, CSR0, status &
597 (CSR0_IENA|CSR0_TINT|CSR0_RINT|
598 CSR0_MERR|CSR0_MISS|CSR0_CERR|CSR0_BABL));
599
600 if (status & CSR0_RINT) {
601 handled = 1;
602 am79c961_rx(dev, priv);
603 }
604 if (status & CSR0_TINT) {
605 handled = 1;
606 am79c961_tx(dev, priv);
607 }
608 if (status & CSR0_MISS) {
609 handled = 1;
Tobias Klauser264fd772010-08-09 05:04:34 +0000610 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612 if (status & CSR0_CERR) {
613 handled = 1;
614 mod_timer(&priv->timer, jiffies);
615 }
616 } while (--n && status & (CSR0_RINT | CSR0_TINT));
617
618 return IRQ_RETVAL(handled);
619}
620
621#ifdef CONFIG_NET_POLL_CONTROLLER
622static void am79c961_poll_controller(struct net_device *dev)
623{
624 unsigned long flags;
625 local_irq_save(flags);
Yoann Padioleau0da2f0f2007-07-06 02:39:56 -0700626 am79c961_interrupt(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 local_irq_restore(flags);
628}
629#endif
630
631/*
632 * Initialise the chip. Note that we always expect
633 * to be entered with interrupts enabled.
634 */
635static int
636am79c961_hw_init(struct net_device *dev)
637{
638 struct dev_priv *priv = netdev_priv(dev);
639
640 spin_lock_irq(&priv->chip_lock);
641 write_rreg (dev->base_addr, CSR0, CSR0_STOP);
642 write_rreg (dev->base_addr, CSR3, CSR3_MASKALL);
643 spin_unlock_irq(&priv->chip_lock);
644
645 am79c961_ramtest(dev, 0x66);
646 am79c961_ramtest(dev, 0x99);
647
648 return 0;
649}
650
651static void __init am79c961_banner(void)
652{
653 static unsigned version_printed;
654
655 if (net_debug && version_printed++ == 0)
656 printk(KERN_INFO "%s", version);
657}
Alexander Beregalovfefbfb12009-04-09 17:25:25 +0000658static const struct net_device_ops am79c961_netdev_ops = {
659 .ndo_open = am79c961_open,
660 .ndo_stop = am79c961_close,
661 .ndo_start_xmit = am79c961_sendpacket,
Alexander Beregalovfefbfb12009-04-09 17:25:25 +0000662 .ndo_set_multicast_list = am79c961_setmulticastlist,
663 .ndo_tx_timeout = am79c961_timeout,
664 .ndo_validate_addr = eth_validate_addr,
665 .ndo_change_mtu = eth_change_mtu,
666 .ndo_set_mac_address = eth_mac_addr,
667#ifdef CONFIG_NET_POLL_CONTROLLER
668 .ndo_poll_controller = am79c961_poll_controller,
669#endif
670};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Uwe Kleine-König447d8c22010-02-12 12:10:47 -0800672static int __devinit am79c961_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Russell King37bb30e2005-10-31 17:14:57 +0000674 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 struct net_device *dev;
676 struct dev_priv *priv;
677 int i, ret;
678
Russell King37bb30e2005-10-31 17:14:57 +0000679 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
680 if (!res)
681 return -ENODEV;
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 dev = alloc_etherdev(sizeof(struct dev_priv));
684 ret = -ENOMEM;
685 if (!dev)
686 goto out;
687
Russell King37bb30e2005-10-31 17:14:57 +0000688 SET_NETDEV_DEV(dev, &pdev->dev);
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 priv = netdev_priv(dev);
691
692 /*
693 * Fixed address and IRQ lines here.
694 * The PNP initialisation should have been
695 * done by the ether bootp loader.
696 */
Russell King37bb30e2005-10-31 17:14:57 +0000697 dev->base_addr = res->start;
Roel Kluin62783672008-04-23 23:44:03 +0200698 ret = platform_get_irq(pdev, 0);
699
700 if (ret < 0) {
701 ret = -ENODEV;
702 goto nodev;
703 }
704 dev->irq = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
David Vrabel48944732006-01-19 17:56:29 +0000706 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (!request_region(dev->base_addr, 0x18, dev->name))
708 goto nodev;
709
710 /*
711 * Reset the device.
712 */
713 inb(dev->base_addr + NET_RESET);
714 udelay(5);
715
716 /*
717 * Check the manufacturer part of the
718 * ether address.
719 */
720 if (inb(dev->base_addr) != 0x08 ||
721 inb(dev->base_addr + 2) != 0x00 ||
722 inb(dev->base_addr + 4) != 0x2b)
723 goto release;
724
Russell King487fd4e2005-10-02 18:12:03 +0100725 for (i = 0; i < 6; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 dev->dev_addr[i] = inb(dev->base_addr + i * 2) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Russell King37bb30e2005-10-31 17:14:57 +0000728 am79c961_banner();
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 spin_lock_init(&priv->chip_lock);
731 init_timer(&priv->timer);
732 priv->timer.data = (unsigned long)dev;
733 priv->timer.function = am79c961_timer;
734
735 if (am79c961_hw_init(dev))
736 goto release;
737
Alexander Beregalovfefbfb12009-04-09 17:25:25 +0000738 dev->netdev_ops = &am79c961_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 ret = register_netdev(dev);
Russell King487fd4e2005-10-02 18:12:03 +0100741 if (ret == 0) {
Johannes Berge1749612008-10-27 15:59:26 -0700742 printk(KERN_INFO "%s: ether address %pM\n",
743 dev->name, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return 0;
Russell King487fd4e2005-10-02 18:12:03 +0100745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747release:
748 release_region(dev->base_addr, 0x18);
749nodev:
750 free_netdev(dev);
751out:
752 return ret;
753}
754
Russell King50465d02006-01-09 13:59:36 +0000755static struct platform_driver am79c961_driver = {
Russell King37bb30e2005-10-31 17:14:57 +0000756 .probe = am79c961_probe,
Russell King50465d02006-01-09 13:59:36 +0000757 .driver = {
758 .name = "am79c961",
759 },
Russell King37bb30e2005-10-31 17:14:57 +0000760};
761
762static int __init am79c961_init(void)
763{
Russell King50465d02006-01-09 13:59:36 +0000764 return platform_driver_register(&am79c961_driver);
Russell King37bb30e2005-10-31 17:14:57 +0000765}
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767__initcall(am79c961_init);