blob: fcdf5dda448f9c7acf5a0a537cbbcb0de76b09df [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Gortmaker3396c782012-01-27 13:36:01 +00002 * linux/drivers/net/ethernet/amd/am79c961a.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#define TX_BUFFERS 15
35#define RX_BUFFERS 25
36
37#include "am79c961a.h"
38
39static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +010040am79c961_interrupt (int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42static unsigned int net_debug = NET_DEBUG;
43
44static const char version[] =
45 "am79c961 ethernet driver (C) 1995-2001 Russell King v0.04\n";
46
47/* --------------------------------------------------------------------------- */
48
49#ifdef __arm__
50static void write_rreg(u_long base, u_int reg, u_int val)
51{
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +000052 asm volatile(
Arnd Bergmanna5a23ad2016-02-08 15:33:42 +010053 "strh %1, [%2] @ NET_RAP\n\t"
54 "strh %0, [%2, #-4] @ NET_RDP"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 :
56 : "r" (val), "r" (reg), "r" (ISAIO_BASE + 0x0464));
57}
58
59static inline unsigned short read_rreg(u_long base_addr, u_int reg)
60{
61 unsigned short v;
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +000062 asm volatile(
Arnd Bergmanna5a23ad2016-02-08 15:33:42 +010063 "strh %1, [%2] @ NET_RAP\n\t"
64 "ldrh %0, [%2, #-4] @ NET_RDP"
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 : "=r" (v)
66 : "r" (reg), "r" (ISAIO_BASE + 0x0464));
67 return v;
68}
69
70static inline void write_ireg(u_long base, u_int reg, u_int val)
71{
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +000072 asm volatile(
Arnd Bergmanna5a23ad2016-02-08 15:33:42 +010073 "strh %1, [%2] @ NET_RAP\n\t"
74 "strh %0, [%2, #8] @ NET_IDP"
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 :
76 : "r" (val), "r" (reg), "r" (ISAIO_BASE + 0x0464));
77}
78
79static inline unsigned short read_ireg(u_long base_addr, u_int reg)
80{
81 u_short v;
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +000082 asm volatile(
Arnd Bergmanna5a23ad2016-02-08 15:33:42 +010083 "strh %1, [%2] @ NAT_RAP\n\t"
84 "ldrh %0, [%2, #8] @ NET_IDP\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 : "=r" (v)
86 : "r" (reg), "r" (ISAIO_BASE + 0x0464));
87 return v;
88}
89
90#define am_writeword(dev,off,val) __raw_writew(val, ISAMEM_BASE + ((off) << 1))
91#define am_readword(dev,off) __raw_readw(ISAMEM_BASE + ((off) << 1))
92
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +000093static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070094am_writebuffer(struct net_device *dev, u_int offset, unsigned char *buf, unsigned int length)
95{
96 offset = ISAMEM_BASE + (offset << 1);
97 length = (length + 1) & ~1;
98 if ((int)buf & 2) {
Arnd Bergmanna5a23ad2016-02-08 15:33:42 +010099 asm volatile("strh %2, [%0], #4"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 : "=&r" (offset) : "0" (offset), "r" (buf[0] | (buf[1] << 8)));
101 buf += 2;
102 length -= 2;
103 }
104 while (length > 8) {
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000105 register unsigned int tmp asm("r2"), tmp2 asm("r3");
106 asm volatile(
Arnd Bergmanna5a23ad2016-02-08 15:33:42 +0100107 "ldmia %0!, {%1, %2}"
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000108 : "+r" (buf), "=&r" (tmp), "=&r" (tmp2));
109 length -= 8;
110 asm volatile(
Arnd Bergmanna5a23ad2016-02-08 15:33:42 +0100111 "strh %1, [%0], #4\n\t"
112 "mov %1, %1, lsr #16\n\t"
113 "strh %1, [%0], #4\n\t"
114 "strh %2, [%0], #4\n\t"
115 "mov %2, %2, lsr #16\n\t"
116 "strh %2, [%0], #4"
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000117 : "+r" (offset), "=&r" (tmp), "=&r" (tmp2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
119 while (length > 0) {
Arnd Bergmanna5a23ad2016-02-08 15:33:42 +0100120 asm volatile("strh %2, [%0], #4"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 : "=&r" (offset) : "0" (offset), "r" (buf[0] | (buf[1] << 8)));
122 buf += 2;
123 length -= 2;
124 }
125}
126
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000127static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128am_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(
Arnd Bergmanna5a23ad2016-02-08 15:33:42 +0100135 "ldrh %2, [%0], #4\n\t"
136 "strb %2, [%1], #1\n\t"
137 "mov %2, %2, lsr #8\n\t"
138 "strb %2, [%1], #1"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 : "=&r" (offset), "=&r" (buf), "=r" (tmp): "0" (offset), "1" (buf));
140 length -= 2;
141 }
142 while (length > 8) {
Russell King - ARM Linuxf7777372011-06-10 00:52:35 +0000143 register unsigned int tmp asm("r2"), tmp2 asm("r3"), tmp3;
Russell King - ARM Linuxd814dee2011-06-10 00:51:54 +0000144 asm volatile(
Arnd Bergmanna5a23ad2016-02-08 15:33:42 +0100145 "ldrh %2, [%0], #4\n\t"
146 "ldrh %4, [%0], #4\n\t"
147 "ldrh %3, [%0], #4\n\t"
148 "orr %2, %2, %4, lsl #16\n\t"
149 "ldrh %4, [%0], #4\n\t"
150 "orr %3, %3, %4, lsl #16\n\t"
151 "stmia %1!, {%2, %3}"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 : "=&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(
Arnd Bergmanna5a23ad2016-02-08 15:33:42 +0100159 "ldrh %2, [%0], #4\n\t"
160 "strb %2, [%1], #1\n\t"
161 "mov %2, %2, lsr #8\n\t"
162 "strb %2, [%1], #1"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 : "=&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{
Tobias Klauserbda7ed42011-06-29 02:14:46 +0000201 int idx, bit;
202 u32 crc;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000203
Tobias Klauserbda7ed42011-06-29 02:14:46 +0000204 crc = ether_crc_le(ETH_ALEN, addr);
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000205
Tobias Klauserbda7ed42011-06-29 02:14:46 +0000206 idx = crc >> 30;
207 bit = (crc >> 26) & 15;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000208
Tobias Klauserbda7ed42011-06-29 02:14:46 +0000209 hash[idx] |= 1 << bit;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000210}
211
212static unsigned int am79c961_get_rx_mode(struct net_device *dev, u16 *hash)
213{
214 unsigned int mode = MODE_PORT_10BT;
215
216 if (dev->flags & IFF_PROMISC) {
217 mode |= MODE_PROMISC;
218 memset(hash, 0xff, 4 * sizeof(*hash));
219 } else if (dev->flags & IFF_ALLMULTI) {
220 memset(hash, 0xff, 4 * sizeof(*hash));
221 } else {
222 struct netdev_hw_addr *ha;
223
224 memset(hash, 0, 4 * sizeof(*hash));
225
226 netdev_for_each_mc_addr(ha, dev)
227 am79c961_mc_hash(ha->addr, hash);
228 }
229
230 return mode;
231}
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233static void
234am79c961_init_for_open(struct net_device *dev)
235{
236 struct dev_priv *priv = netdev_priv(dev);
237 unsigned long flags;
238 unsigned char *p;
239 u_int hdr_addr, first_free_addr;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000240 u16 multi_hash[4], mode = am79c961_get_rx_mode(dev, multi_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 int i;
242
243 /*
244 * Stop the chip.
245 */
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100246 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 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 +0100248 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 write_ireg (dev->base_addr, 5, 0x00a0); /* Receive address LED */
251 write_ireg (dev->base_addr, 6, 0x0081); /* Collision LED */
252 write_ireg (dev->base_addr, 7, 0x0090); /* XMIT LED */
253 write_ireg (dev->base_addr, 2, 0x0000); /* MODE register selects media */
254
255 for (i = LADRL; i <= LADRH; i++)
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000256 write_rreg (dev->base_addr, i, multi_hash[i - LADRL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 for (i = PADRL, p = dev->dev_addr; i <= PADRH; i++, p += 2)
259 write_rreg (dev->base_addr, i, p[0] | (p[1] << 8));
260
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000261 write_rreg (dev->base_addr, MODE, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 write_rreg (dev->base_addr, POLLINT, 0);
263 write_rreg (dev->base_addr, SIZERXR, -RX_BUFFERS);
264 write_rreg (dev->base_addr, SIZETXR, -TX_BUFFERS);
265
266 first_free_addr = RX_BUFFERS * 8 + TX_BUFFERS * 8 + 16;
267 hdr_addr = 0;
268
269 priv->rxhead = 0;
270 priv->rxtail = 0;
271 priv->rxhdr = hdr_addr;
272
273 for (i = 0; i < RX_BUFFERS; i++) {
274 priv->rxbuffer[i] = first_free_addr;
275 am_writeword (dev, hdr_addr, first_free_addr);
276 am_writeword (dev, hdr_addr + 2, RMD_OWN);
277 am_writeword (dev, hdr_addr + 4, (-1600));
278 am_writeword (dev, hdr_addr + 6, 0);
279 first_free_addr += 1600;
280 hdr_addr += 8;
281 }
282 priv->txhead = 0;
283 priv->txtail = 0;
284 priv->txhdr = hdr_addr;
285 for (i = 0; i < TX_BUFFERS; i++) {
286 priv->txbuffer[i] = first_free_addr;
287 am_writeword (dev, hdr_addr, first_free_addr);
288 am_writeword (dev, hdr_addr + 2, TMD_STP|TMD_ENP);
289 am_writeword (dev, hdr_addr + 4, 0xf000);
290 am_writeword (dev, hdr_addr + 6, 0);
291 first_free_addr += 1600;
292 hdr_addr += 8;
293 }
294
295 write_rreg (dev->base_addr, BASERXL, priv->rxhdr);
296 write_rreg (dev->base_addr, BASERXH, 0);
297 write_rreg (dev->base_addr, BASETXL, priv->txhdr);
298 write_rreg (dev->base_addr, BASERXH, 0);
299 write_rreg (dev->base_addr, CSR0, CSR0_STOP);
300 write_rreg (dev->base_addr, CSR3, CSR3_IDONM|CSR3_BABLM|CSR3_DXSUFLO);
301 write_rreg (dev->base_addr, CSR4, CSR4_APAD_XMIT|CSR4_MFCOM|CSR4_RCVCCOM|CSR4_TXSTRTM|CSR4_JABM);
302 write_rreg (dev->base_addr, CSR0, CSR0_IENA|CSR0_STRT);
303}
304
305static void am79c961_timer(unsigned long data)
306{
307 struct net_device *dev = (struct net_device *)data;
308 struct dev_priv *priv = netdev_priv(dev);
309 unsigned int lnkstat, carrier;
David S. Miller8decf862011-09-22 03:23:13 -0400310 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
David S. Miller8decf862011-09-22 03:23:13 -0400312 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 lnkstat = read_ireg(dev->base_addr, ISALED0) & ISALED0_LNKST;
David S. Miller8decf862011-09-22 03:23:13 -0400314 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 carrier = netif_carrier_ok(dev);
316
Russell King37bb30e2005-10-31 17:14:57 +0000317 if (lnkstat && !carrier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 netif_carrier_on(dev);
Russell King37bb30e2005-10-31 17:14:57 +0000319 printk("%s: link up\n", dev->name);
320 } else if (!lnkstat && carrier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 netif_carrier_off(dev);
Russell King37bb30e2005-10-31 17:14:57 +0000322 printk("%s: link down\n", dev->name);
323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Russell King487fd4e2005-10-02 18:12:03 +0100325 mod_timer(&priv->timer, jiffies + msecs_to_jiffies(500));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328/*
329 * Open/initialize the board.
330 */
331static int
332am79c961_open(struct net_device *dev)
333{
334 struct dev_priv *priv = netdev_priv(dev);
335 int ret;
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 ret = request_irq(dev->irq, am79c961_interrupt, 0, dev->name, dev);
338 if (ret)
339 return ret;
340
341 am79c961_init_for_open(dev);
342
343 netif_carrier_off(dev);
344
345 priv->timer.expires = jiffies;
346 add_timer(&priv->timer);
347
348 netif_start_queue(dev);
349
350 return 0;
351}
352
353/*
354 * The inverse routine to am79c961_open().
355 */
356static int
357am79c961_close(struct net_device *dev)
358{
359 struct dev_priv *priv = netdev_priv(dev);
360 unsigned long flags;
361
362 del_timer_sync(&priv->timer);
363
364 netif_stop_queue(dev);
365 netif_carrier_off(dev);
366
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100367 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 write_rreg (dev->base_addr, CSR0, CSR0_STOP);
369 write_rreg (dev->base_addr, CSR3, CSR3_MASKALL);
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100370 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 free_irq (dev->irq, dev);
373
374 return 0;
375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377/*
378 * Set or clear promiscuous/multicast mode filter for this adapter.
379 */
380static void am79c961_setmulticastlist (struct net_device *dev)
381{
382 struct dev_priv *priv = netdev_priv(dev);
383 unsigned long flags;
Russell King - ARM Linuxbfc65012011-06-10 00:52:14 +0000384 u16 multi_hash[4], mode = am79c961_get_rx_mode(dev, multi_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 int i, stopped;
386
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100387 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 stopped = read_rreg(dev->base_addr, CSR0) & CSR0_STOP;
390
391 if (!stopped) {
392 /*
393 * Put the chip into suspend mode
394 */
395 write_rreg(dev->base_addr, CTRL1, CTRL1_SPND);
396
397 /*
398 * Spin waiting for chip to report suspend mode
399 */
400 while ((read_rreg(dev->base_addr, CTRL1) & CTRL1_SPND) == 0) {
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100401 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 nop();
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100403 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405 }
406
407 /*
408 * Update the multicast hash table
409 */
Denis Chengff8ac602007-09-02 18:30:18 +0800410 for (i = 0; i < ARRAY_SIZE(multi_hash); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 write_rreg(dev->base_addr, i + LADRL, multi_hash[i]);
412
413 /*
414 * Write the mode register
415 */
416 write_rreg(dev->base_addr, MODE, mode);
417
418 if (!stopped) {
419 /*
420 * Put the chip back into running mode
421 */
422 write_rreg(dev->base_addr, CTRL1, 0);
423 }
424
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100425 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
428static void am79c961_timeout(struct net_device *dev)
429{
430 printk(KERN_WARNING "%s: transmit timed out, network cable problem?\n",
431 dev->name);
432
433 /*
434 * ought to do some setup of the tx side here
435 */
436
437 netif_wake_queue(dev);
438}
439
440/*
441 * Transmit a packet
442 */
443static int
444am79c961_sendpacket(struct sk_buff *skb, struct net_device *dev)
445{
446 struct dev_priv *priv = netdev_priv(dev);
447 unsigned int hdraddr, bufaddr;
448 unsigned int head;
449 unsigned long flags;
450
451 head = priv->txhead;
452 hdraddr = priv->txhdr + (head << 3);
453 bufaddr = priv->txbuffer[head];
454 head += 1;
455 if (head >= TX_BUFFERS)
456 head = 0;
457
458 am_writebuffer (dev, bufaddr, skb->data, skb->len);
459 am_writeword (dev, hdraddr + 4, -skb->len);
460 am_writeword (dev, hdraddr + 2, TMD_OWN|TMD_STP|TMD_ENP);
461 priv->txhead = head;
462
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100463 spin_lock_irqsave(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 write_rreg (dev->base_addr, CSR0, CSR0_TDMD|CSR0_IENA);
Uwe Kleine-Königfb22d722009-01-22 23:29:42 +0100465 spin_unlock_irqrestore(&priv->chip_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 /*
468 * If the next packet is owned by the ethernet device,
469 * then the tx ring is full and we can't add another
470 * packet.
471 */
472 if (am_readword(dev, priv->txhdr + (priv->txhead << 3) + 2) & TMD_OWN)
473 netif_stop_queue(dev);
474
Eric W. Biedermane21106b2014-03-24 21:18:40 -0700475 dev_consume_skb_any(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Patrick McHardy6ed10652009-06-23 06:03:08 +0000477 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
480/*
481 * If we have a good packet(s), get it/them out of the buffers.
482 */
483static void
484am79c961_rx(struct net_device *dev, struct dev_priv *priv)
485{
486 do {
487 struct sk_buff *skb;
488 u_int hdraddr;
489 u_int pktaddr;
490 u_int status;
491 int len;
492
493 hdraddr = priv->rxhdr + (priv->rxtail << 3);
494 pktaddr = priv->rxbuffer[priv->rxtail];
495
496 status = am_readword (dev, hdraddr + 2);
497 if (status & RMD_OWN) /* do we own it? */
498 break;
499
500 priv->rxtail ++;
501 if (priv->rxtail >= RX_BUFFERS)
502 priv->rxtail = 0;
503
504 if ((status & (RMD_ERR|RMD_STP|RMD_ENP)) != (RMD_STP|RMD_ENP)) {
505 am_writeword (dev, hdraddr + 2, RMD_OWN);
Tobias Klauser264fd772010-08-09 05:04:34 +0000506 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (status & RMD_ERR) {
508 if (status & RMD_FRAM)
Tobias Klauser264fd772010-08-09 05:04:34 +0000509 dev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (status & RMD_CRC)
Tobias Klauser264fd772010-08-09 05:04:34 +0000511 dev->stats.rx_crc_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 } else if (status & RMD_STP)
Tobias Klauser264fd772010-08-09 05:04:34 +0000513 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 continue;
515 }
516
517 len = am_readword(dev, hdraddr + 6);
Pradeep A Dalvi1d266432012-02-05 02:49:09 +0000518 skb = netdev_alloc_skb(dev, len + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 skb_reserve(skb, 2);
522
523 am_readbuffer(dev, pktaddr, skb_put(skb, len), len);
524 am_writeword(dev, hdraddr + 2, RMD_OWN);
525 skb->protocol = eth_type_trans(skb, dev);
526 netif_rx(skb);
Tobias Klauser264fd772010-08-09 05:04:34 +0000527 dev->stats.rx_bytes += len;
528 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 } else {
530 am_writeword (dev, hdraddr + 2, RMD_OWN);
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,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000663 .ndo_set_rx_mode = am79c961_setmulticastlist,
Alexander Beregalovfefbfb12009-04-09 17:25:25 +0000664 .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
Bill Pemberton92a66592012-12-03 09:22:45 -0500673static int 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);