atheros: add blank line after declarations
[openwrt/svn-archive/archive.git] / target / linux / atheros / patches-3.14 / 110-ar2313_ethernet.patch
1 --- a/drivers/net/ethernet/atheros/Makefile
2 +++ b/drivers/net/ethernet/atheros/Makefile
3 @@ -7,3 +7,4 @@ obj-$(CONFIG_ATL2) += atlx/
4 obj-$(CONFIG_ATL1E) += atl1e/
5 obj-$(CONFIG_ATL1C) += atl1c/
6 obj-$(CONFIG_ALX) += alx/
7 +obj-$(CONFIG_NET_AR231X) += ar231x/
8 --- a/drivers/net/ethernet/atheros/Kconfig
9 +++ b/drivers/net/ethernet/atheros/Kconfig
10 @@ -5,7 +5,7 @@
11 config NET_VENDOR_ATHEROS
12 bool "Atheros devices"
13 default y
14 - depends on PCI
15 + depends on (PCI || ATHEROS_AR231X)
16 ---help---
17 If you have a network (Ethernet) card belonging to this class, say Y
18 and read the Ethernet-HOWTO, available from
19 @@ -80,4 +80,10 @@ config ALX
20 To compile this driver as a module, choose M here. The module
21 will be called alx.
22
23 +config NET_AR231X
24 + tristate "Atheros AR231X built-in Ethernet support"
25 + depends on ATHEROS_AR231X
26 + help
27 + Support for the AR231x/531x ethernet controller
28 +
29 endif # NET_VENDOR_ATHEROS
30 --- /dev/null
31 +++ b/drivers/net/ethernet/atheros/ar231x/Makefile
32 @@ -0,0 +1 @@
33 +obj-$(CONFIG_NET_AR231X) += ar231x.o
34 --- /dev/null
35 +++ b/drivers/net/ethernet/atheros/ar231x/ar231x.c
36 @@ -0,0 +1,1254 @@
37 +/*
38 + * ar231x.c: Linux driver for the Atheros AR231x Ethernet device.
39 + *
40 + * Copyright (C) 2004 by Sameer Dekate <sdekate@arubanetworks.com>
41 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
42 + * Copyright (C) 2006-2009 Felix Fietkau <nbd@openwrt.org>
43 + *
44 + * Thanks to Atheros for providing hardware and documentation
45 + * enabling me to write this driver.
46 + *
47 + * This program is free software; you can redistribute it and/or modify
48 + * it under the terms of the GNU General Public License as published by
49 + * the Free Software Foundation; either version 2 of the License, or
50 + * (at your option) any later version.
51 + *
52 + * Additional credits:
53 + * This code is taken from John Taylor's Sibyte driver and then
54 + * modified for the AR2313.
55 + */
56 +
57 +#include <linux/module.h>
58 +#include <linux/version.h>
59 +#include <linux/types.h>
60 +#include <linux/errno.h>
61 +#include <linux/ioport.h>
62 +#include <linux/pci.h>
63 +#include <linux/netdevice.h>
64 +#include <linux/etherdevice.h>
65 +#include <linux/interrupt.h>
66 +#include <linux/hardirq.h>
67 +#include <linux/skbuff.h>
68 +#include <linux/init.h>
69 +#include <linux/delay.h>
70 +#include <linux/mm.h>
71 +#include <linux/highmem.h>
72 +#include <linux/sockios.h>
73 +#include <linux/pkt_sched.h>
74 +#include <linux/mii.h>
75 +#include <linux/phy.h>
76 +#include <linux/ethtool.h>
77 +#include <linux/ctype.h>
78 +#include <linux/platform_device.h>
79 +#include <linux/io.h>
80 +#include <linux/uaccess.h>
81 +
82 +#include <net/sock.h>
83 +#include <net/ip.h>
84 +
85 +#define AR2313_MTU 1692
86 +#define AR2313_PRIOS 1
87 +#define AR2313_QUEUES (2*AR2313_PRIOS)
88 +#define AR2313_DESCR_ENTRIES 64
89 +
90 +
91 +#ifndef min
92 +#define min(a, b) (((a) < (b)) ? (a) : (b))
93 +#endif
94 +
95 +#ifndef SMP_CACHE_BYTES
96 +#define SMP_CACHE_BYTES L1_CACHE_BYTES
97 +#endif
98 +
99 +#define AR2313_MBOX_SET_BIT 0x8
100 +
101 +#include "ar231x.h"
102 +
103 +/**
104 + * New interrupt handler strategy:
105 + *
106 + * An old interrupt handler worked using the traditional method of
107 + * replacing an skbuff with a new one when a packet arrives. However
108 + * the rx rings do not need to contain a static number of buffer
109 + * descriptors, thus it makes sense to move the memory allocation out
110 + * of the main interrupt handler and do it in a bottom half handler
111 + * and only allocate new buffers when the number of buffers in the
112 + * ring is below a certain threshold. In order to avoid starving the
113 + * NIC under heavy load it is however necessary to force allocation
114 + * when hitting a minimum threshold. The strategy for alloction is as
115 + * follows:
116 + *
117 + * RX_LOW_BUF_THRES - allocate buffers in the bottom half
118 + * RX_PANIC_LOW_THRES - we are very low on buffers, allocate
119 + * the buffers in the interrupt handler
120 + * RX_RING_THRES - maximum number of buffers in the rx ring
121 + *
122 + * One advantagous side effect of this allocation approach is that the
123 + * entire rx processing can be done without holding any spin lock
124 + * since the rx rings and registers are totally independent of the tx
125 + * ring and its registers. This of course includes the kmalloc's of
126 + * new skb's. Thus start_xmit can run in parallel with rx processing
127 + * and the memory allocation on SMP systems.
128 + *
129 + * Note that running the skb reallocation in a bottom half opens up
130 + * another can of races which needs to be handled properly. In
131 + * particular it can happen that the interrupt handler tries to run
132 + * the reallocation while the bottom half is either running on another
133 + * CPU or was interrupted on the same CPU. To get around this the
134 + * driver uses bitops to prevent the reallocation routines from being
135 + * reentered.
136 + *
137 + * TX handling can also be done without holding any spin lock, wheee
138 + * this is fun! since tx_csm is only written to by the interrupt
139 + * handler.
140 + */
141 +
142 +/**
143 + * Threshold values for RX buffer allocation - the low water marks for
144 + * when to start refilling the rings are set to 75% of the ring
145 + * sizes. It seems to make sense to refill the rings entirely from the
146 + * intrrupt handler once it gets below the panic threshold, that way
147 + * we don't risk that the refilling is moved to another CPU when the
148 + * one running the interrupt handler just got the slab code hot in its
149 + * cache.
150 + */
151 +#define RX_RING_SIZE AR2313_DESCR_ENTRIES
152 +#define RX_PANIC_THRES (RX_RING_SIZE/4)
153 +#define RX_LOW_THRES ((3*RX_RING_SIZE)/4)
154 +#define CRC_LEN 4
155 +#define RX_OFFSET 2
156 +
157 +#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
158 +#define VLAN_HDR 4
159 +#else
160 +#define VLAN_HDR 0
161 +#endif
162 +
163 +#define AR2313_BUFSIZE (AR2313_MTU + VLAN_HDR + ETH_HLEN + CRC_LEN + \
164 + RX_OFFSET)
165 +
166 +#ifdef MODULE
167 +MODULE_LICENSE("GPL");
168 +MODULE_AUTHOR("Sameer Dekate <sdekate@arubanetworks.com>, Imre Kaloz <kaloz@openwrt.org>, Felix Fietkau <nbd@openwrt.org>");
169 +MODULE_DESCRIPTION("AR231x Ethernet driver");
170 +#endif
171 +
172 +#define virt_to_phys(x) ((u32)(x) & 0x1fffffff)
173 +
174 +/* prototypes */
175 +static void ar231x_halt(struct net_device *dev);
176 +static void rx_tasklet_func(unsigned long data);
177 +static void rx_tasklet_cleanup(struct net_device *dev);
178 +static void ar231x_multicast_list(struct net_device *dev);
179 +static void ar231x_tx_timeout(struct net_device *dev);
180 +
181 +static int ar231x_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum);
182 +static int ar231x_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
183 + u16 value);
184 +static int ar231x_mdiobus_reset(struct mii_bus *bus);
185 +static int ar231x_mdiobus_probe(struct net_device *dev);
186 +static void ar231x_adjust_link(struct net_device *dev);
187 +
188 +#ifndef ERR
189 +#define ERR(fmt, args...) printk("%s: " fmt, __func__, ##args)
190 +#endif
191 +
192 +#ifdef CONFIG_NET_POLL_CONTROLLER
193 +static void
194 +ar231x_netpoll(struct net_device *dev)
195 +{
196 + unsigned long flags;
197 +
198 + local_irq_save(flags);
199 + ar231x_interrupt(dev->irq, dev);
200 + local_irq_restore(flags);
201 +}
202 +#endif
203 +
204 +static const struct net_device_ops ar231x_ops = {
205 + .ndo_open = ar231x_open,
206 + .ndo_stop = ar231x_close,
207 + .ndo_start_xmit = ar231x_start_xmit,
208 + .ndo_set_rx_mode = ar231x_multicast_list,
209 + .ndo_do_ioctl = ar231x_ioctl,
210 + .ndo_change_mtu = eth_change_mtu,
211 + .ndo_validate_addr = eth_validate_addr,
212 + .ndo_set_mac_address = eth_mac_addr,
213 + .ndo_tx_timeout = ar231x_tx_timeout,
214 +#ifdef CONFIG_NET_POLL_CONTROLLER
215 + .ndo_poll_controller = ar231x_netpoll,
216 +#endif
217 +};
218 +
219 +static int ar231x_probe(struct platform_device *pdev)
220 +{
221 + struct net_device *dev;
222 + struct ar231x_private *sp;
223 + struct resource *res;
224 + unsigned long ar_eth_base;
225 + char buf[64];
226 +
227 + dev = alloc_etherdev(sizeof(struct ar231x_private));
228 +
229 + if (dev == NULL) {
230 + printk(KERN_ERR
231 + "ar231x: Unable to allocate net_device structure!\n");
232 + return -ENOMEM;
233 + }
234 +
235 + platform_set_drvdata(pdev, dev);
236 +
237 + sp = netdev_priv(dev);
238 + sp->dev = dev;
239 + sp->cfg = pdev->dev.platform_data;
240 +
241 + sprintf(buf, "eth%d_membase", pdev->id);
242 + res = platform_get_resource_byname(pdev, IORESOURCE_MEM, buf);
243 + if (!res)
244 + return -ENODEV;
245 +
246 + sp->link = 0;
247 + ar_eth_base = res->start;
248 +
249 + sprintf(buf, "eth%d_irq", pdev->id);
250 + dev->irq = platform_get_irq_byname(pdev, buf);
251 +
252 + spin_lock_init(&sp->lock);
253 +
254 + dev->features |= NETIF_F_HIGHDMA;
255 + dev->netdev_ops = &ar231x_ops;
256 +
257 + tasklet_init(&sp->rx_tasklet, rx_tasklet_func, (unsigned long) dev);
258 + tasklet_disable(&sp->rx_tasklet);
259 +
260 + sp->eth_regs = ioremap_nocache(ar_eth_base, sizeof(*sp->eth_regs));
261 + if (!sp->eth_regs) {
262 + printk("Can't remap eth registers\n");
263 + return -ENXIO;
264 + }
265 +
266 + /**
267 + * When there's only one MAC, PHY regs are typically on ENET0,
268 + * even though the MAC might be on ENET1.
269 + * So remap PHY regs separately.
270 + */
271 + res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "eth0_mii");
272 + if (!res) {
273 + res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
274 + "eth1_mii");
275 + if (!res)
276 + return -ENODEV;
277 + }
278 + sp->phy_regs = ioremap_nocache(res->start, resource_size(res));
279 + if (!sp->phy_regs) {
280 + printk("Can't remap phy registers\n");
281 + return -ENXIO;
282 + }
283 +
284 + sp->dma_regs = ioremap_nocache(ar_eth_base + 0x1000,
285 + sizeof(*sp->dma_regs));
286 + if (!sp->dma_regs) {
287 + printk("Can't remap DMA registers\n");
288 + return -ENXIO;
289 + }
290 + dev->base_addr = ar_eth_base + 0x1000;
291 +
292 + strncpy(sp->name, "Atheros AR231x", sizeof(sp->name) - 1);
293 + sp->name[sizeof(sp->name) - 1] = '\0';
294 + memcpy(dev->dev_addr, sp->cfg->macaddr, 6);
295 +
296 + if (ar231x_init(dev)) {
297 + /* ar231x_init() calls ar231x_init_cleanup() on error */
298 + kfree(dev);
299 + return -ENODEV;
300 + }
301 +
302 + if (register_netdev(dev)) {
303 + printk("%s: register_netdev failed\n", __func__);
304 + return -1;
305 + }
306 +
307 + printk("%s: %s: %pM, irq %d\n", dev->name, sp->name, dev->dev_addr,
308 + dev->irq);
309 +
310 + sp->mii_bus = mdiobus_alloc();
311 + if (sp->mii_bus == NULL)
312 + return -1;
313 +
314 + sp->mii_bus->priv = dev;
315 + sp->mii_bus->read = ar231x_mdiobus_read;
316 + sp->mii_bus->write = ar231x_mdiobus_write;
317 + sp->mii_bus->reset = ar231x_mdiobus_reset;
318 + sp->mii_bus->name = "ar231x_eth_mii";
319 + snprintf(sp->mii_bus->id, MII_BUS_ID_SIZE, "%d", pdev->id);
320 + sp->mii_bus->irq = kmalloc(sizeof(int), GFP_KERNEL);
321 + *sp->mii_bus->irq = PHY_POLL;
322 +
323 + mdiobus_register(sp->mii_bus);
324 +
325 + if (ar231x_mdiobus_probe(dev) != 0) {
326 + printk(KERN_ERR "%s: mdiobus_probe failed\n", dev->name);
327 + rx_tasklet_cleanup(dev);
328 + ar231x_init_cleanup(dev);
329 + unregister_netdev(dev);
330 + kfree(dev);
331 + return -ENODEV;
332 + }
333 +
334 + /* start link poll timer */
335 + ar231x_setup_timer(dev);
336 +
337 + return 0;
338 +}
339 +
340 +
341 +static void ar231x_multicast_list(struct net_device *dev)
342 +{
343 + struct ar231x_private *sp = netdev_priv(dev);
344 + unsigned int filter;
345 +
346 + filter = sp->eth_regs->mac_control;
347 +
348 + if (dev->flags & IFF_PROMISC)
349 + filter |= MAC_CONTROL_PR;
350 + else
351 + filter &= ~MAC_CONTROL_PR;
352 + if ((dev->flags & IFF_ALLMULTI) || (netdev_mc_count(dev) > 0))
353 + filter |= MAC_CONTROL_PM;
354 + else
355 + filter &= ~MAC_CONTROL_PM;
356 +
357 + sp->eth_regs->mac_control = filter;
358 +}
359 +
360 +static void rx_tasklet_cleanup(struct net_device *dev)
361 +{
362 + struct ar231x_private *sp = netdev_priv(dev);
363 +
364 + /**
365 + * Tasklet may be scheduled. Need to get it removed from the list
366 + * since we're about to free the struct.
367 + */
368 +
369 + sp->unloading = 1;
370 + tasklet_enable(&sp->rx_tasklet);
371 + tasklet_kill(&sp->rx_tasklet);
372 +}
373 +
374 +static int ar231x_remove(struct platform_device *pdev)
375 +{
376 + struct net_device *dev = platform_get_drvdata(pdev);
377 + struct ar231x_private *sp = netdev_priv(dev);
378 +
379 + rx_tasklet_cleanup(dev);
380 + ar231x_init_cleanup(dev);
381 + unregister_netdev(dev);
382 + mdiobus_unregister(sp->mii_bus);
383 + mdiobus_free(sp->mii_bus);
384 + kfree(dev);
385 + return 0;
386 +}
387 +
388 +
389 +/**
390 + * Restart the AR2313 ethernet controller.
391 + */
392 +static int ar231x_restart(struct net_device *dev)
393 +{
394 + /* disable interrupts */
395 + disable_irq(dev->irq);
396 +
397 + /* stop mac */
398 + ar231x_halt(dev);
399 +
400 + /* initialize */
401 + ar231x_init(dev);
402 +
403 + /* enable interrupts */
404 + enable_irq(dev->irq);
405 +
406 + return 0;
407 +}
408 +
409 +static struct platform_driver ar231x_driver = {
410 + .driver.name = "ar231x-eth",
411 + .probe = ar231x_probe,
412 + .remove = ar231x_remove,
413 +};
414 +
415 +module_platform_driver(ar231x_driver);
416 +
417 +static void ar231x_free_descriptors(struct net_device *dev)
418 +{
419 + struct ar231x_private *sp = netdev_priv(dev);
420 +
421 + if (sp->rx_ring != NULL) {
422 + kfree((void *)KSEG0ADDR(sp->rx_ring));
423 + sp->rx_ring = NULL;
424 + sp->tx_ring = NULL;
425 + }
426 +}
427 +
428 +
429 +static int ar231x_allocate_descriptors(struct net_device *dev)
430 +{
431 + struct ar231x_private *sp = netdev_priv(dev);
432 + int size;
433 + int j;
434 + ar231x_descr_t *space;
435 +
436 + if (sp->rx_ring != NULL) {
437 + printk("%s: already done.\n", __func__);
438 + return 0;
439 + }
440 +
441 + size = sizeof(ar231x_descr_t) * (AR2313_DESCR_ENTRIES * AR2313_QUEUES);
442 + space = kmalloc(size, GFP_KERNEL);
443 + if (space == NULL)
444 + return 1;
445 +
446 + /* invalidate caches */
447 + dma_cache_inv((unsigned int) space, size);
448 +
449 + /* now convert pointer to KSEG1 */
450 + space = (ar231x_descr_t *)KSEG1ADDR(space);
451 +
452 + memset((void *)space, 0, size);
453 +
454 + sp->rx_ring = space;
455 + space += AR2313_DESCR_ENTRIES;
456 +
457 + sp->tx_ring = space;
458 + space += AR2313_DESCR_ENTRIES;
459 +
460 + /* Initialize the transmit Descriptors */
461 + for (j = 0; j < AR2313_DESCR_ENTRIES; j++) {
462 + ar231x_descr_t *td = &sp->tx_ring[j];
463 +
464 + td->status = 0;
465 + td->devcs = DMA_TX1_CHAINED;
466 + td->addr = 0;
467 + td->descr = virt_to_phys(&sp->tx_ring[DSC_NEXT(j)]);
468 + }
469 +
470 + return 0;
471 +}
472 +
473 +
474 +/**
475 + * Generic cleanup handling data allocated during init. Used when the
476 + * module is unloaded or if an error occurs during initialization
477 + */
478 +static void ar231x_init_cleanup(struct net_device *dev)
479 +{
480 + struct ar231x_private *sp = netdev_priv(dev);
481 + struct sk_buff *skb;
482 + int j;
483 +
484 + ar231x_free_descriptors(dev);
485 +
486 + if (sp->eth_regs)
487 + iounmap((void *)sp->eth_regs);
488 + if (sp->dma_regs)
489 + iounmap((void *)sp->dma_regs);
490 + if (sp->phy_regs)
491 + iounmap((void *)sp->phy_regs);
492 +
493 + if (sp->rx_skb) {
494 + for (j = 0; j < AR2313_DESCR_ENTRIES; j++) {
495 + skb = sp->rx_skb[j];
496 + if (skb) {
497 + sp->rx_skb[j] = NULL;
498 + dev_kfree_skb(skb);
499 + }
500 + }
501 + kfree(sp->rx_skb);
502 + sp->rx_skb = NULL;
503 + }
504 +
505 + if (sp->tx_skb) {
506 + for (j = 0; j < AR2313_DESCR_ENTRIES; j++) {
507 + skb = sp->tx_skb[j];
508 + if (skb) {
509 + sp->tx_skb[j] = NULL;
510 + dev_kfree_skb(skb);
511 + }
512 + }
513 + kfree(sp->tx_skb);
514 + sp->tx_skb = NULL;
515 + }
516 +}
517 +
518 +static int ar231x_setup_timer(struct net_device *dev)
519 +{
520 + struct ar231x_private *sp = netdev_priv(dev);
521 +
522 + init_timer(&sp->link_timer);
523 +
524 + sp->link_timer.function = ar231x_link_timer_fn;
525 + sp->link_timer.data = (int) dev;
526 + sp->link_timer.expires = jiffies + HZ;
527 +
528 + add_timer(&sp->link_timer);
529 + return 0;
530 +}
531 +
532 +static void ar231x_link_timer_fn(unsigned long data)
533 +{
534 + struct net_device *dev = (struct net_device *)data;
535 + struct ar231x_private *sp = netdev_priv(dev);
536 +
537 + /**
538 + * See if the link status changed.
539 + * This was needed to make sure we set the PHY to the
540 + * autonegotiated value of half or full duplex.
541 + */
542 + ar231x_check_link(dev);
543 +
544 + /**
545 + * Loop faster when we don't have link.
546 + * This was needed to speed up the AP bootstrap time.
547 + */
548 + if (sp->link == 0)
549 + mod_timer(&sp->link_timer, jiffies + HZ / 2);
550 + else
551 + mod_timer(&sp->link_timer, jiffies + LINK_TIMER);
552 +}
553 +
554 +static void ar231x_check_link(struct net_device *dev)
555 +{
556 + struct ar231x_private *sp = netdev_priv(dev);
557 + u16 phy_data;
558 +
559 + phy_data = ar231x_mdiobus_read(sp->mii_bus, sp->phy, MII_BMSR);
560 + if (sp->phy_data != phy_data) {
561 + if (phy_data & BMSR_LSTATUS) {
562 + /**
563 + * Link is present, ready link partner ability to
564 + * deterine duplexity.
565 + */
566 + int duplex = 0;
567 + u16 reg;
568 +
569 + sp->link = 1;
570 + reg = ar231x_mdiobus_read(sp->mii_bus, sp->phy,
571 + MII_BMCR);
572 + if (reg & BMCR_ANENABLE) {
573 + /* auto neg enabled */
574 + reg = ar231x_mdiobus_read(sp->mii_bus, sp->phy,
575 + MII_LPA);
576 + duplex = reg & (LPA_100FULL | LPA_10FULL) ?
577 + 1 : 0;
578 + } else {
579 + /* no auto neg, just read duplex config */
580 + duplex = (reg & BMCR_FULLDPLX) ? 1 : 0;
581 + }
582 +
583 + printk(KERN_INFO "%s: Configuring MAC for %s duplex\n",
584 + dev->name, (duplex) ? "full" : "half");
585 +
586 + if (duplex) {
587 + /* full duplex */
588 + sp->eth_regs->mac_control =
589 + (sp->eth_regs->mac_control |
590 + MAC_CONTROL_F) & ~MAC_CONTROL_DRO;
591 + } else {
592 + /* half duplex */
593 + sp->eth_regs->mac_control =
594 + (sp->eth_regs->mac_control |
595 + MAC_CONTROL_DRO) & ~MAC_CONTROL_F;
596 + }
597 + } else {
598 + /* no link */
599 + sp->link = 0;
600 + }
601 + sp->phy_data = phy_data;
602 + }
603 +}
604 +
605 +static int ar231x_reset_reg(struct net_device *dev)
606 +{
607 + struct ar231x_private *sp = netdev_priv(dev);
608 + unsigned int ethsal, ethsah;
609 + unsigned int flags;
610 +
611 + sp->cfg->reset_set(sp->cfg->reset_mac);
612 + mdelay(10);
613 + sp->cfg->reset_clear(sp->cfg->reset_mac);
614 + mdelay(10);
615 + sp->cfg->reset_set(sp->cfg->reset_phy);
616 + mdelay(10);
617 + sp->cfg->reset_clear(sp->cfg->reset_phy);
618 + mdelay(10);
619 +
620 + sp->dma_regs->bus_mode = (DMA_BUS_MODE_SWR);
621 + mdelay(10);
622 + sp->dma_regs->bus_mode =
623 + ((32 << DMA_BUS_MODE_PBL_SHIFT) | DMA_BUS_MODE_BLE);
624 +
625 + /* enable interrupts */
626 + sp->dma_regs->intr_ena = DMA_STATUS_AIS | DMA_STATUS_NIS |
627 + DMA_STATUS_RI | DMA_STATUS_TI |
628 + DMA_STATUS_FBE;
629 + sp->dma_regs->xmt_base = virt_to_phys(sp->tx_ring);
630 + sp->dma_regs->rcv_base = virt_to_phys(sp->rx_ring);
631 + sp->dma_regs->control =
632 + (DMA_CONTROL_SR | DMA_CONTROL_ST | DMA_CONTROL_SF);
633 +
634 + sp->eth_regs->flow_control = (FLOW_CONTROL_FCE);
635 + sp->eth_regs->vlan_tag = (0x8100);
636 +
637 + /* Enable Ethernet Interface */
638 + flags = (MAC_CONTROL_TE | /* transmit enable */
639 + MAC_CONTROL_PM | /* pass mcast */
640 + MAC_CONTROL_F | /* full duplex */
641 + MAC_CONTROL_HBD); /* heart beat disabled */
642 +
643 + if (dev->flags & IFF_PROMISC) { /* set promiscuous mode */
644 + flags |= MAC_CONTROL_PR;
645 + }
646 + sp->eth_regs->mac_control = flags;
647 +
648 + /* Set all Ethernet station address registers to their initial values */
649 + ethsah = (((u_int) (dev->dev_addr[5]) << 8) & (u_int) 0x0000FF00) |
650 + (((u_int) (dev->dev_addr[4]) << 0) & (u_int) 0x000000FF);
651 +
652 + ethsal = (((u_int) (dev->dev_addr[3]) << 24) & (u_int) 0xFF000000) |
653 + (((u_int) (dev->dev_addr[2]) << 16) & (u_int) 0x00FF0000) |
654 + (((u_int) (dev->dev_addr[1]) << 8) & (u_int) 0x0000FF00) |
655 + (((u_int) (dev->dev_addr[0]) << 0) & (u_int) 0x000000FF);
656 +
657 + sp->eth_regs->mac_addr[0] = ethsah;
658 + sp->eth_regs->mac_addr[1] = ethsal;
659 +
660 + mdelay(10);
661 +
662 + return 0;
663 +}
664 +
665 +
666 +static int ar231x_init(struct net_device *dev)
667 +{
668 + struct ar231x_private *sp = netdev_priv(dev);
669 + int ecode = 0;
670 +
671 + /* Allocate descriptors */
672 + if (ar231x_allocate_descriptors(dev)) {
673 + printk("%s: %s: ar231x_allocate_descriptors failed\n",
674 + dev->name, __func__);
675 + ecode = -EAGAIN;
676 + goto init_error;
677 + }
678 +
679 + /* Get the memory for the skb rings */
680 + if (sp->rx_skb == NULL) {
681 + sp->rx_skb =
682 + kmalloc(sizeof(struct sk_buff *) * AR2313_DESCR_ENTRIES,
683 + GFP_KERNEL);
684 + if (!(sp->rx_skb)) {
685 + printk("%s: %s: rx_skb kmalloc failed\n",
686 + dev->name, __func__);
687 + ecode = -EAGAIN;
688 + goto init_error;
689 + }
690 + }
691 + memset(sp->rx_skb, 0, sizeof(struct sk_buff *) * AR2313_DESCR_ENTRIES);
692 +
693 + if (sp->tx_skb == NULL) {
694 + sp->tx_skb =
695 + kmalloc(sizeof(struct sk_buff *) * AR2313_DESCR_ENTRIES,
696 + GFP_KERNEL);
697 + if (!(sp->tx_skb)) {
698 + printk("%s: %s: tx_skb kmalloc failed\n",
699 + dev->name, __func__);
700 + ecode = -EAGAIN;
701 + goto init_error;
702 + }
703 + }
704 + memset(sp->tx_skb, 0, sizeof(struct sk_buff *) * AR2313_DESCR_ENTRIES);
705 +
706 + /**
707 + * Set tx_csm before we start receiving interrupts, otherwise
708 + * the interrupt handler might think it is supposed to process
709 + * tx ints before we are up and running, which may cause a null
710 + * pointer access in the int handler.
711 + */
712 + sp->rx_skbprd = 0;
713 + sp->cur_rx = 0;
714 + sp->tx_prd = 0;
715 + sp->tx_csm = 0;
716 +
717 + /* Zero the stats before starting the interface */
718 + memset(&dev->stats, 0, sizeof(dev->stats));
719 +
720 + /**
721 + * We load the ring here as there seem to be no way to tell the
722 + * firmware to wipe the ring without re-initializing it.
723 + */
724 + ar231x_load_rx_ring(dev, RX_RING_SIZE);
725 +
726 + /* Init hardware */
727 + ar231x_reset_reg(dev);
728 +
729 + /* Get the IRQ */
730 + ecode =
731 + request_irq(dev->irq, &ar231x_interrupt,
732 + IRQF_DISABLED,
733 + dev->name, dev);
734 + if (ecode) {
735 + printk(KERN_WARNING "%s: %s: Requested IRQ %d is busy\n",
736 + dev->name, __func__, dev->irq);
737 + goto init_error;
738 + }
739 +
740 +
741 + tasklet_enable(&sp->rx_tasklet);
742 +
743 + return 0;
744 +
745 +init_error:
746 + ar231x_init_cleanup(dev);
747 + return ecode;
748 +}
749 +
750 +/**
751 + * Load the rx ring.
752 + *
753 + * Loading rings is safe without holding the spin lock since this is
754 + * done only before the device is enabled, thus no interrupts are
755 + * generated and by the interrupt handler/tasklet handler.
756 + */
757 +static void ar231x_load_rx_ring(struct net_device *dev, int nr_bufs)
758 +{
759 + struct ar231x_private *sp = netdev_priv(dev);
760 + short i, idx;
761 +
762 + idx = sp->rx_skbprd;
763 +
764 + for (i = 0; i < nr_bufs; i++) {
765 + struct sk_buff *skb;
766 + ar231x_descr_t *rd;
767 +
768 + if (sp->rx_skb[idx])
769 + break;
770 +
771 + skb = netdev_alloc_skb_ip_align(dev, AR2313_BUFSIZE);
772 + if (!skb) {
773 + printk("\n\n\n\n %s: No memory in system\n\n\n\n",
774 + __func__);
775 + break;
776 + }
777 +
778 + /* Make sure IP header starts on a fresh cache line */
779 + skb->dev = dev;
780 + sp->rx_skb[idx] = skb;
781 +
782 + rd = (ar231x_descr_t *)&sp->rx_ring[idx];
783 +
784 + /* initialize dma descriptor */
785 + rd->devcs = ((AR2313_BUFSIZE << DMA_RX1_BSIZE_SHIFT) |
786 + DMA_RX1_CHAINED);
787 + rd->addr = virt_to_phys(skb->data);
788 + rd->descr = virt_to_phys(&sp->rx_ring[DSC_NEXT(idx)]);
789 + rd->status = DMA_RX_OWN;
790 +
791 + idx = DSC_NEXT(idx);
792 + }
793 +
794 + if (i)
795 + sp->rx_skbprd = idx;
796 +
797 + return;
798 +}
799 +
800 +#define AR2313_MAX_PKTS_PER_CALL 64
801 +
802 +static int ar231x_rx_int(struct net_device *dev)
803 +{
804 + struct ar231x_private *sp = netdev_priv(dev);
805 + struct sk_buff *skb, *skb_new;
806 + ar231x_descr_t *rxdesc;
807 + unsigned int status;
808 + u32 idx;
809 + int pkts = 0;
810 + int rval;
811 +
812 + idx = sp->cur_rx;
813 +
814 + /* process at most the entire ring and then wait for another int */
815 + while (1) {
816 + rxdesc = &sp->rx_ring[idx];
817 + status = rxdesc->status;
818 +
819 + if (status & DMA_RX_OWN) {
820 + /* SiByte owns descriptor or descr not yet filled in */
821 + rval = 0;
822 + break;
823 + }
824 +
825 + if (++pkts > AR2313_MAX_PKTS_PER_CALL) {
826 + rval = 1;
827 + break;
828 + }
829 +
830 + if ((status & DMA_RX_ERROR) && !(status & DMA_RX_LONG)) {
831 + dev->stats.rx_errors++;
832 + dev->stats.rx_dropped++;
833 +
834 + /* add statistics counters */
835 + if (status & DMA_RX_ERR_CRC)
836 + dev->stats.rx_crc_errors++;
837 + if (status & DMA_RX_ERR_COL)
838 + dev->stats.rx_over_errors++;
839 + if (status & DMA_RX_ERR_LENGTH)
840 + dev->stats.rx_length_errors++;
841 + if (status & DMA_RX_ERR_RUNT)
842 + dev->stats.rx_over_errors++;
843 + if (status & DMA_RX_ERR_DESC)
844 + dev->stats.rx_over_errors++;
845 +
846 + } else {
847 + /* alloc new buffer. */
848 + skb_new = netdev_alloc_skb_ip_align(dev,
849 + AR2313_BUFSIZE);
850 + if (skb_new != NULL) {
851 + skb = sp->rx_skb[idx];
852 + /* set skb */
853 + skb_put(skb, ((status >> DMA_RX_LEN_SHIFT) &
854 + 0x3fff) - CRC_LEN);
855 +
856 + dev->stats.rx_bytes += skb->len;
857 + skb->protocol = eth_type_trans(skb, dev);
858 + /* pass the packet to upper layers */
859 + netif_rx(skb);
860 +
861 + skb_new->dev = dev;
862 + /* reset descriptor's curr_addr */
863 + rxdesc->addr = virt_to_phys(skb_new->data);
864 +
865 + dev->stats.rx_packets++;
866 + sp->rx_skb[idx] = skb_new;
867 + } else {
868 + dev->stats.rx_dropped++;
869 + }
870 + }
871 +
872 + rxdesc->devcs = ((AR2313_BUFSIZE << DMA_RX1_BSIZE_SHIFT) |
873 + DMA_RX1_CHAINED);
874 + rxdesc->status = DMA_RX_OWN;
875 +
876 + idx = DSC_NEXT(idx);
877 + }
878 +
879 + sp->cur_rx = idx;
880 +
881 + return rval;
882 +}
883 +
884 +
885 +static void ar231x_tx_int(struct net_device *dev)
886 +{
887 + struct ar231x_private *sp = netdev_priv(dev);
888 + u32 idx;
889 + struct sk_buff *skb;
890 + ar231x_descr_t *txdesc;
891 + unsigned int status = 0;
892 +
893 + idx = sp->tx_csm;
894 +
895 + while (idx != sp->tx_prd) {
896 + txdesc = &sp->tx_ring[idx];
897 + status = txdesc->status;
898 +
899 + if (status & DMA_TX_OWN) {
900 + /* ar231x dma still owns descr */
901 + break;
902 + }
903 + /* done with this descriptor */
904 + dma_unmap_single(NULL, txdesc->addr,
905 + txdesc->devcs & DMA_TX1_BSIZE_MASK,
906 + DMA_TO_DEVICE);
907 + txdesc->status = 0;
908 +
909 + if (status & DMA_TX_ERROR) {
910 + dev->stats.tx_errors++;
911 + dev->stats.tx_dropped++;
912 + if (status & DMA_TX_ERR_UNDER)
913 + dev->stats.tx_fifo_errors++;
914 + if (status & DMA_TX_ERR_HB)
915 + dev->stats.tx_heartbeat_errors++;
916 + if (status & (DMA_TX_ERR_LOSS | DMA_TX_ERR_LINK))
917 + dev->stats.tx_carrier_errors++;
918 + if (status & (DMA_TX_ERR_LATE | DMA_TX_ERR_COL |
919 + DMA_TX_ERR_JABBER | DMA_TX_ERR_DEFER))
920 + dev->stats.tx_aborted_errors++;
921 + } else {
922 + /* transmit OK */
923 + dev->stats.tx_packets++;
924 + }
925 +
926 + skb = sp->tx_skb[idx];
927 + sp->tx_skb[idx] = NULL;
928 + idx = DSC_NEXT(idx);
929 + dev->stats.tx_bytes += skb->len;
930 + dev_kfree_skb_irq(skb);
931 + }
932 +
933 + sp->tx_csm = idx;
934 +
935 + return;
936 +}
937 +
938 +
939 +static void rx_tasklet_func(unsigned long data)
940 +{
941 + struct net_device *dev = (struct net_device *)data;
942 + struct ar231x_private *sp = netdev_priv(dev);
943 +
944 + if (sp->unloading)
945 + return;
946 +
947 + if (ar231x_rx_int(dev)) {
948 + tasklet_hi_schedule(&sp->rx_tasklet);
949 + } else {
950 + unsigned long flags;
951 +
952 + spin_lock_irqsave(&sp->lock, flags);
953 + sp->dma_regs->intr_ena |= DMA_STATUS_RI;
954 + spin_unlock_irqrestore(&sp->lock, flags);
955 + }
956 +}
957 +
958 +static void rx_schedule(struct net_device *dev)
959 +{
960 + struct ar231x_private *sp = netdev_priv(dev);
961 +
962 + sp->dma_regs->intr_ena &= ~DMA_STATUS_RI;
963 +
964 + tasklet_hi_schedule(&sp->rx_tasklet);
965 +}
966 +
967 +static irqreturn_t ar231x_interrupt(int irq, void *dev_id)
968 +{
969 + struct net_device *dev = (struct net_device *)dev_id;
970 + struct ar231x_private *sp = netdev_priv(dev);
971 + unsigned int status, enabled;
972 +
973 + /* clear interrupt */
974 + /* Don't clear RI bit if currently disabled */
975 + status = sp->dma_regs->status;
976 + enabled = sp->dma_regs->intr_ena;
977 + sp->dma_regs->status = status & enabled;
978 +
979 + if (status & DMA_STATUS_NIS) {
980 + /* normal status */
981 + /**
982 + * Don't schedule rx processing if interrupt
983 + * is already disabled.
984 + */
985 + if (status & enabled & DMA_STATUS_RI) {
986 + /* receive interrupt */
987 + rx_schedule(dev);
988 + }
989 + if (status & DMA_STATUS_TI) {
990 + /* transmit interrupt */
991 + ar231x_tx_int(dev);
992 + }
993 + }
994 +
995 + /* abnormal status */
996 + if (status & (DMA_STATUS_FBE | DMA_STATUS_TPS))
997 + ar231x_restart(dev);
998 +
999 + return IRQ_HANDLED;
1000 +}
1001 +
1002 +
1003 +static int ar231x_open(struct net_device *dev)
1004 +{
1005 + struct ar231x_private *sp = netdev_priv(dev);
1006 + unsigned int ethsal, ethsah;
1007 +
1008 + /* reset the hardware, in case the MAC address changed */
1009 + ethsah = (((u_int) (dev->dev_addr[5]) << 8) & (u_int) 0x0000FF00) |
1010 + (((u_int) (dev->dev_addr[4]) << 0) & (u_int) 0x000000FF);
1011 +
1012 + ethsal = (((u_int) (dev->dev_addr[3]) << 24) & (u_int) 0xFF000000) |
1013 + (((u_int) (dev->dev_addr[2]) << 16) & (u_int) 0x00FF0000) |
1014 + (((u_int) (dev->dev_addr[1]) << 8) & (u_int) 0x0000FF00) |
1015 + (((u_int) (dev->dev_addr[0]) << 0) & (u_int) 0x000000FF);
1016 +
1017 + sp->eth_regs->mac_addr[0] = ethsah;
1018 + sp->eth_regs->mac_addr[1] = ethsal;
1019 +
1020 + mdelay(10);
1021 +
1022 + dev->mtu = 1500;
1023 + netif_start_queue(dev);
1024 +
1025 + sp->eth_regs->mac_control |= MAC_CONTROL_RE;
1026 +
1027 + return 0;
1028 +}
1029 +
1030 +static void ar231x_tx_timeout(struct net_device *dev)
1031 +{
1032 + struct ar231x_private *sp = netdev_priv(dev);
1033 + unsigned long flags;
1034 +
1035 + spin_lock_irqsave(&sp->lock, flags);
1036 + ar231x_restart(dev);
1037 + spin_unlock_irqrestore(&sp->lock, flags);
1038 +}
1039 +
1040 +static void ar231x_halt(struct net_device *dev)
1041 +{
1042 + struct ar231x_private *sp = netdev_priv(dev);
1043 + int j;
1044 +
1045 + tasklet_disable(&sp->rx_tasklet);
1046 +
1047 + /* kill the MAC */
1048 + sp->eth_regs->mac_control &= ~(MAC_CONTROL_RE | /* disable Receives */
1049 + MAC_CONTROL_TE); /* disable Transmits */
1050 + /* stop dma */
1051 + sp->dma_regs->control = 0;
1052 + sp->dma_regs->bus_mode = DMA_BUS_MODE_SWR;
1053 +
1054 + /* place phy and MAC in reset */
1055 + sp->cfg->reset_set(sp->cfg->reset_mac);
1056 + sp->cfg->reset_set(sp->cfg->reset_phy);
1057 +
1058 + /* free buffers on tx ring */
1059 + for (j = 0; j < AR2313_DESCR_ENTRIES; j++) {
1060 + struct sk_buff *skb;
1061 + ar231x_descr_t *txdesc;
1062 +
1063 + txdesc = &sp->tx_ring[j];
1064 + txdesc->descr = 0;
1065 +
1066 + skb = sp->tx_skb[j];
1067 + if (skb) {
1068 + dev_kfree_skb(skb);
1069 + sp->tx_skb[j] = NULL;
1070 + }
1071 + }
1072 +}
1073 +
1074 +/**
1075 + * close should do nothing. Here's why. It's called when
1076 + * 'ifconfig bond0 down' is run. If it calls free_irq then
1077 + * the irq is gone forever ! When bond0 is made 'up' again,
1078 + * the ar231x_open () does not call request_irq (). Worse,
1079 + * the call to ar231x_halt() generates a WDOG reset due to
1080 + * the write to reset register and the box reboots.
1081 + * Commenting this out is good since it allows the
1082 + * system to resume when bond0 is made up again.
1083 + */
1084 +static int ar231x_close(struct net_device *dev)
1085 +{
1086 +#if 0
1087 + /* Disable interrupts */
1088 + disable_irq(dev->irq);
1089 +
1090 + /**
1091 + * Without (or before) releasing irq and stopping hardware, this
1092 + * is an absolute non-sense, by the way. It will be reset instantly
1093 + * by the first irq.
1094 + */
1095 + netif_stop_queue(dev);
1096 +
1097 + /* stop the MAC and DMA engines */
1098 + ar231x_halt(dev);
1099 +
1100 + /* release the interrupt */
1101 + free_irq(dev->irq, dev);
1102 +
1103 +#endif
1104 + return 0;
1105 +}
1106 +
1107 +static int ar231x_start_xmit(struct sk_buff *skb, struct net_device *dev)
1108 +{
1109 + struct ar231x_private *sp = netdev_priv(dev);
1110 + ar231x_descr_t *td;
1111 + u32 idx;
1112 +
1113 + idx = sp->tx_prd;
1114 + td = &sp->tx_ring[idx];
1115 +
1116 + if (td->status & DMA_TX_OWN) {
1117 + /* free skbuf and lie to the caller that we sent it out */
1118 + dev->stats.tx_dropped++;
1119 + dev_kfree_skb(skb);
1120 +
1121 + /* restart transmitter in case locked */
1122 + sp->dma_regs->xmt_poll = 0;
1123 + return 0;
1124 + }
1125 +
1126 + /* Setup the transmit descriptor. */
1127 + td->devcs = ((skb->len << DMA_TX1_BSIZE_SHIFT) |
1128 + (DMA_TX1_LS | DMA_TX1_IC | DMA_TX1_CHAINED));
1129 + td->addr = dma_map_single(NULL, skb->data, skb->len, DMA_TO_DEVICE);
1130 + td->status = DMA_TX_OWN;
1131 +
1132 + /* kick transmitter last */
1133 + sp->dma_regs->xmt_poll = 0;
1134 +
1135 + sp->tx_skb[idx] = skb;
1136 + idx = DSC_NEXT(idx);
1137 + sp->tx_prd = idx;
1138 +
1139 + return 0;
1140 +}
1141 +
1142 +static int ar231x_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1143 +{
1144 + struct ar231x_private *sp = netdev_priv(dev);
1145 + int ret;
1146 +
1147 + switch (cmd) {
1148 + case SIOCETHTOOL:
1149 + spin_lock_irq(&sp->lock);
1150 + ret = phy_ethtool_ioctl(sp->phy_dev, (void *)ifr->ifr_data);
1151 + spin_unlock_irq(&sp->lock);
1152 + return ret;
1153 +
1154 + case SIOCSIFHWADDR:
1155 + if (copy_from_user
1156 + (dev->dev_addr, ifr->ifr_data, sizeof(dev->dev_addr)))
1157 + return -EFAULT;
1158 + return 0;
1159 +
1160 + case SIOCGIFHWADDR:
1161 + if (copy_to_user
1162 + (ifr->ifr_data, dev->dev_addr, sizeof(dev->dev_addr)))
1163 + return -EFAULT;
1164 + return 0;
1165 +
1166 + case SIOCGMIIPHY:
1167 + case SIOCGMIIREG:
1168 + case SIOCSMIIREG:
1169 + return phy_mii_ioctl(sp->phy_dev, ifr, cmd);
1170 +
1171 + default:
1172 + break;
1173 + }
1174 +
1175 + return -EOPNOTSUPP;
1176 +}
1177 +
1178 +static void ar231x_adjust_link(struct net_device *dev)
1179 +{
1180 + struct ar231x_private *sp = netdev_priv(dev);
1181 + unsigned int mc;
1182 +
1183 + if (!sp->phy_dev->link)
1184 + return;
1185 +
1186 + if (sp->phy_dev->duplex != sp->oldduplex) {
1187 + mc = readl(&sp->eth_regs->mac_control);
1188 + mc &= ~(MAC_CONTROL_F | MAC_CONTROL_DRO);
1189 + if (sp->phy_dev->duplex)
1190 + mc |= MAC_CONTROL_F;
1191 + else
1192 + mc |= MAC_CONTROL_DRO;
1193 + writel(mc, &sp->eth_regs->mac_control);
1194 + sp->oldduplex = sp->phy_dev->duplex;
1195 + }
1196 +}
1197 +
1198 +#define MII_ADDR(phy, reg) \
1199 + ((reg << MII_ADDR_REG_SHIFT) | (phy << MII_ADDR_PHY_SHIFT))
1200 +
1201 +static int
1202 +ar231x_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
1203 +{
1204 + struct net_device *const dev = bus->priv;
1205 + struct ar231x_private *sp = netdev_priv(dev);
1206 + volatile MII *ethernet = sp->phy_regs;
1207 +
1208 + ethernet->mii_addr = MII_ADDR(phy_addr, regnum);
1209 + while (ethernet->mii_addr & MII_ADDR_BUSY)
1210 + ;
1211 + return ethernet->mii_data >> MII_DATA_SHIFT;
1212 +}
1213 +
1214 +static int
1215 +ar231x_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum, u16 value)
1216 +{
1217 + struct net_device *const dev = bus->priv;
1218 + struct ar231x_private *sp = netdev_priv(dev);
1219 + volatile MII *ethernet = sp->phy_regs;
1220 +
1221 + while (ethernet->mii_addr & MII_ADDR_BUSY)
1222 + ;
1223 + ethernet->mii_data = value << MII_DATA_SHIFT;
1224 + ethernet->mii_addr = MII_ADDR(phy_addr, regnum) | MII_ADDR_WRITE;
1225 +
1226 + return 0;
1227 +}
1228 +
1229 +static int ar231x_mdiobus_reset(struct mii_bus *bus)
1230 +{
1231 + struct net_device *const dev = bus->priv;
1232 +
1233 + ar231x_reset_reg(dev);
1234 +
1235 + return 0;
1236 +}
1237 +
1238 +static int ar231x_mdiobus_probe(struct net_device *dev)
1239 +{
1240 + struct ar231x_private *const sp = netdev_priv(dev);
1241 + struct phy_device *phydev = NULL;
1242 + int phy_addr;
1243 +
1244 + /* find the first (lowest address) PHY on the current MAC's MII bus */
1245 + for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++)
1246 + if (sp->mii_bus->phy_map[phy_addr]) {
1247 + phydev = sp->mii_bus->phy_map[phy_addr];
1248 + sp->phy = phy_addr;
1249 + break; /* break out with first one found */
1250 + }
1251 +
1252 + if (!phydev) {
1253 + printk(KERN_ERR "ar231x: %s: no PHY found\n", dev->name);
1254 + return -1;
1255 + }
1256 +
1257 + /* now we are supposed to have a proper phydev, to attach to... */
1258 + BUG_ON(!phydev);
1259 + BUG_ON(phydev->attached_dev);
1260 +
1261 + phydev = phy_connect(dev, dev_name(&phydev->dev), &ar231x_adjust_link,
1262 + PHY_INTERFACE_MODE_MII);
1263 +
1264 + if (IS_ERR(phydev)) {
1265 + printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name);
1266 + return PTR_ERR(phydev);
1267 + }
1268 +
1269 + /* mask with MAC supported features */
1270 + phydev->supported &= (SUPPORTED_10baseT_Half
1271 + | SUPPORTED_10baseT_Full
1272 + | SUPPORTED_100baseT_Half
1273 + | SUPPORTED_100baseT_Full
1274 + | SUPPORTED_Autoneg
1275 + /* | SUPPORTED_Pause | SUPPORTED_Asym_Pause */
1276 + | SUPPORTED_MII
1277 + | SUPPORTED_TP);
1278 +
1279 + phydev->advertising = phydev->supported;
1280 +
1281 + sp->oldduplex = -1;
1282 + sp->phy_dev = phydev;
1283 +
1284 + printk(KERN_INFO "%s: attached PHY driver [%s] "
1285 + "(mii_bus:phy_addr=%s)\n",
1286 + dev->name, phydev->drv->name, dev_name(&phydev->dev));
1287 +
1288 + return 0;
1289 +}
1290 +
1291 --- /dev/null
1292 +++ b/drivers/net/ethernet/atheros/ar231x/ar231x.h
1293 @@ -0,0 +1,295 @@
1294 +/*
1295 + * ar231x.h: Linux driver for the Atheros AR231x Ethernet device.
1296 + *
1297 + * Copyright (C) 2004 by Sameer Dekate <sdekate@arubanetworks.com>
1298 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
1299 + * Copyright (C) 2006-2009 Felix Fietkau <nbd@openwrt.org>
1300 + *
1301 + * Thanks to Atheros for providing hardware and documentation
1302 + * enabling me to write this driver.
1303 + *
1304 + * This program is free software; you can redistribute it and/or modify
1305 + * it under the terms of the GNU General Public License as published by
1306 + * the Free Software Foundation; either version 2 of the License, or
1307 + * (at your option) any later version.
1308 + */
1309 +
1310 +#ifndef _AR2313_H_
1311 +#define _AR2313_H_
1312 +
1313 +#include <linux/interrupt.h>
1314 +#include <generated/autoconf.h>
1315 +#include <linux/bitops.h>
1316 +#include <ar231x_platform.h>
1317 +
1318 +/* probe link timer - 5 secs */
1319 +#define LINK_TIMER (5*HZ)
1320 +
1321 +#define IS_DMA_TX_INT(X) (((X) & (DMA_STATUS_TI)) != 0)
1322 +#define IS_DMA_RX_INT(X) (((X) & (DMA_STATUS_RI)) != 0)
1323 +#define IS_DRIVER_OWNED(X) (((X) & (DMA_TX_OWN)) == 0)
1324 +
1325 +#define AR2313_TX_TIMEOUT (HZ/4)
1326 +
1327 +/* Rings */
1328 +#define DSC_RING_ENTRIES_SIZE (AR2313_DESCR_ENTRIES * sizeof(struct desc))
1329 +#define DSC_NEXT(idx) ((idx + 1) & (AR2313_DESCR_ENTRIES - 1))
1330 +
1331 +#define AR2313_MBGET 2
1332 +#define AR2313_MBSET 3
1333 +#define AR2313_PCI_RECONFIG 4
1334 +#define AR2313_PCI_DUMP 5
1335 +#define AR2313_TEST_PANIC 6
1336 +#define AR2313_TEST_NULLPTR 7
1337 +#define AR2313_READ_DATA 8
1338 +#define AR2313_WRITE_DATA 9
1339 +#define AR2313_GET_VERSION 10
1340 +#define AR2313_TEST_HANG 11
1341 +#define AR2313_SYNC 12
1342 +
1343 +#define DMA_RX_ERR_CRC BIT(1)
1344 +#define DMA_RX_ERR_DRIB BIT(2)
1345 +#define DMA_RX_ERR_MII BIT(3)
1346 +#define DMA_RX_EV2 BIT(5)
1347 +#define DMA_RX_ERR_COL BIT(6)
1348 +#define DMA_RX_LONG BIT(7)
1349 +#define DMA_RX_LS BIT(8) /* last descriptor */
1350 +#define DMA_RX_FS BIT(9) /* first descriptor */
1351 +#define DMA_RX_MF BIT(10) /* multicast frame */
1352 +#define DMA_RX_ERR_RUNT BIT(11) /* runt frame */
1353 +#define DMA_RX_ERR_LENGTH BIT(12) /* length error */
1354 +#define DMA_RX_ERR_DESC BIT(14) /* descriptor error */
1355 +#define DMA_RX_ERROR BIT(15) /* error summary */
1356 +#define DMA_RX_LEN_MASK 0x3fff0000
1357 +#define DMA_RX_LEN_SHIFT 16
1358 +#define DMA_RX_FILT BIT(30)
1359 +#define DMA_RX_OWN BIT(31) /* desc owned by DMA controller */
1360 +
1361 +#define DMA_RX1_BSIZE_MASK 0x000007ff
1362 +#define DMA_RX1_BSIZE_SHIFT 0
1363 +#define DMA_RX1_CHAINED BIT(24)
1364 +#define DMA_RX1_RER BIT(25)
1365 +
1366 +#define DMA_TX_ERR_UNDER BIT(1) /* underflow error */
1367 +#define DMA_TX_ERR_DEFER BIT(2) /* excessive deferral */
1368 +#define DMA_TX_COL_MASK 0x78
1369 +#define DMA_TX_COL_SHIFT 3
1370 +#define DMA_TX_ERR_HB BIT(7) /* hearbeat failure */
1371 +#define DMA_TX_ERR_COL BIT(8) /* excessive collisions */
1372 +#define DMA_TX_ERR_LATE BIT(9) /* late collision */
1373 +#define DMA_TX_ERR_LINK BIT(10) /* no carrier */
1374 +#define DMA_TX_ERR_LOSS BIT(11) /* loss of carrier */
1375 +#define DMA_TX_ERR_JABBER BIT(14) /* transmit jabber timeout */
1376 +#define DMA_TX_ERROR BIT(15) /* frame aborted */
1377 +#define DMA_TX_OWN BIT(31) /* descr owned by DMA controller */
1378 +
1379 +#define DMA_TX1_BSIZE_MASK 0x000007ff
1380 +#define DMA_TX1_BSIZE_SHIFT 0
1381 +#define DMA_TX1_CHAINED BIT(24) /* chained descriptors */
1382 +#define DMA_TX1_TER BIT(25) /* transmit end of ring */
1383 +#define DMA_TX1_FS BIT(29) /* first segment */
1384 +#define DMA_TX1_LS BIT(30) /* last segment */
1385 +#define DMA_TX1_IC BIT(31) /* interrupt on completion */
1386 +
1387 +#define RCVPKT_LENGTH(X) (X >> 16) /* Received pkt Length */
1388 +
1389 +#define MAC_CONTROL_RE BIT(2) /* receive enable */
1390 +#define MAC_CONTROL_TE BIT(3) /* transmit enable */
1391 +#define MAC_CONTROL_DC BIT(5) /* Deferral check */
1392 +#define MAC_CONTROL_ASTP BIT(8) /* Auto pad strip */
1393 +#define MAC_CONTROL_DRTY BIT(10) /* Disable retry */
1394 +#define MAC_CONTROL_DBF BIT(11) /* Disable bcast frames */
1395 +#define MAC_CONTROL_LCC BIT(12) /* late collision ctrl */
1396 +#define MAC_CONTROL_HP BIT(13) /* Hash Perfect filtering */
1397 +#define MAC_CONTROL_HASH BIT(14) /* Unicast hash filtering */
1398 +#define MAC_CONTROL_HO BIT(15) /* Hash only filtering */
1399 +#define MAC_CONTROL_PB BIT(16) /* Pass Bad frames */
1400 +#define MAC_CONTROL_IF BIT(17) /* Inverse filtering */
1401 +#define MAC_CONTROL_PR BIT(18) /* promis mode (valid frames only) */
1402 +#define MAC_CONTROL_PM BIT(19) /* pass multicast */
1403 +#define MAC_CONTROL_F BIT(20) /* full-duplex */
1404 +#define MAC_CONTROL_DRO BIT(23) /* Disable Receive Own */
1405 +#define MAC_CONTROL_HBD BIT(28) /* heart-beat disabled (MUST BE SET) */
1406 +#define MAC_CONTROL_BLE BIT(30) /* big endian mode */
1407 +#define MAC_CONTROL_RA BIT(31) /* rcv all (valid and invalid frames) */
1408 +
1409 +#define MII_ADDR_BUSY BIT(0)
1410 +#define MII_ADDR_WRITE BIT(1)
1411 +#define MII_ADDR_REG_SHIFT 6
1412 +#define MII_ADDR_PHY_SHIFT 11
1413 +#define MII_DATA_SHIFT 0
1414 +
1415 +#define FLOW_CONTROL_FCE BIT(1)
1416 +
1417 +#define DMA_BUS_MODE_SWR BIT(0) /* software reset */
1418 +#define DMA_BUS_MODE_BLE BIT(7) /* big endian mode */
1419 +#define DMA_BUS_MODE_PBL_SHIFT 8 /* programmable burst length 32 */
1420 +#define DMA_BUS_MODE_DBO BIT(20) /* big-endian descriptors */
1421 +
1422 +#define DMA_STATUS_TI BIT(0) /* transmit interrupt */
1423 +#define DMA_STATUS_TPS BIT(1) /* transmit process stopped */
1424 +#define DMA_STATUS_TU BIT(2) /* transmit buffer unavailable */
1425 +#define DMA_STATUS_TJT BIT(3) /* transmit buffer timeout */
1426 +#define DMA_STATUS_UNF BIT(5) /* transmit underflow */
1427 +#define DMA_STATUS_RI BIT(6) /* receive interrupt */
1428 +#define DMA_STATUS_RU BIT(7) /* receive buffer unavailable */
1429 +#define DMA_STATUS_RPS BIT(8) /* receive process stopped */
1430 +#define DMA_STATUS_ETI BIT(10) /* early transmit interrupt */
1431 +#define DMA_STATUS_FBE BIT(13) /* fatal bus interrupt */
1432 +#define DMA_STATUS_ERI BIT(14) /* early receive interrupt */
1433 +#define DMA_STATUS_AIS BIT(15) /* abnormal interrupt summary */
1434 +#define DMA_STATUS_NIS BIT(16) /* normal interrupt summary */
1435 +#define DMA_STATUS_RS_SHIFT 17 /* receive process state */
1436 +#define DMA_STATUS_TS_SHIFT 20 /* transmit process state */
1437 +#define DMA_STATUS_EB_SHIFT 23 /* error bits */
1438 +
1439 +#define DMA_CONTROL_SR BIT(1) /* start receive */
1440 +#define DMA_CONTROL_ST BIT(13) /* start transmit */
1441 +#define DMA_CONTROL_SF BIT(21) /* store and forward */
1442 +
1443 +
1444 +typedef struct {
1445 + volatile unsigned int status; /* OWN, Device control and status. */
1446 + volatile unsigned int devcs; /* pkt Control bits + Length */
1447 + volatile unsigned int addr; /* Current Address. */
1448 + volatile unsigned int descr; /* Next descriptor in chain. */
1449 +} ar231x_descr_t;
1450 +
1451 +
1452 +
1453 +/**
1454 + * New Combo structure for Both Eth0 AND eth1
1455 + *
1456 + * Don't directly access MII related regs since phy chip could be actually
1457 + * connected to another ethernet block.
1458 + */
1459 +typedef struct {
1460 + volatile unsigned int mac_control; /* 0x00 */
1461 + volatile unsigned int mac_addr[2]; /* 0x04 - 0x08 */
1462 + volatile unsigned int mcast_table[2]; /* 0x0c - 0x10 */
1463 + volatile unsigned int __mii_addr; /* 0x14 */
1464 + volatile unsigned int __mii_data; /* 0x18 */
1465 + volatile unsigned int flow_control; /* 0x1c */
1466 + volatile unsigned int vlan_tag; /* 0x20 */
1467 + volatile unsigned int pad[7]; /* 0x24 - 0x3c */
1468 + volatile unsigned int ucast_table[8]; /* 0x40-0x5c */
1469 +
1470 +} ETHERNET_STRUCT;
1471 +
1472 +typedef struct {
1473 + volatile unsigned int mii_addr;
1474 + volatile unsigned int mii_data;
1475 +} MII;
1476 +
1477 +/********************************************************************
1478 + * Interrupt controller
1479 + ********************************************************************/
1480 +
1481 +typedef struct {
1482 + volatile unsigned int wdog_control; /* 0x08 */
1483 + volatile unsigned int wdog_timer; /* 0x0c */
1484 + volatile unsigned int misc_status; /* 0x10 */
1485 + volatile unsigned int misc_mask; /* 0x14 */
1486 + volatile unsigned int global_status; /* 0x18 */
1487 + volatile unsigned int reserved; /* 0x1c */
1488 + volatile unsigned int reset_control; /* 0x20 */
1489 +} INTERRUPT;
1490 +
1491 +/********************************************************************
1492 + * DMA controller
1493 + ********************************************************************/
1494 +typedef struct {
1495 + volatile unsigned int bus_mode; /* 0x00 (CSR0) */
1496 + volatile unsigned int xmt_poll; /* 0x04 (CSR1) */
1497 + volatile unsigned int rcv_poll; /* 0x08 (CSR2) */
1498 + volatile unsigned int rcv_base; /* 0x0c (CSR3) */
1499 + volatile unsigned int xmt_base; /* 0x10 (CSR4) */
1500 + volatile unsigned int status; /* 0x14 (CSR5) */
1501 + volatile unsigned int control; /* 0x18 (CSR6) */
1502 + volatile unsigned int intr_ena; /* 0x1c (CSR7) */
1503 + volatile unsigned int rcv_missed; /* 0x20 (CSR8) */
1504 + volatile unsigned int reserved[11]; /* 0x24-0x4c (CSR9-19) */
1505 + volatile unsigned int cur_tx_buf_addr; /* 0x50 (CSR20) */
1506 + volatile unsigned int cur_rx_buf_addr; /* 0x50 (CSR21) */
1507 +} DMA;
1508 +
1509 +/**
1510 + * Struct private for the Sibyte.
1511 + *
1512 + * Elements are grouped so variables used by the tx handling goes
1513 + * together, and will go into the same cache lines etc. in order to
1514 + * avoid cache line contention between the rx and tx handling on SMP.
1515 + *
1516 + * Frequently accessed variables are put at the beginning of the
1517 + * struct to help the compiler generate better/shorter code.
1518 + */
1519 +struct ar231x_private {
1520 + struct net_device *dev;
1521 + int version;
1522 + u32 mb[2];
1523 +
1524 + volatile MII *phy_regs;
1525 + volatile ETHERNET_STRUCT *eth_regs;
1526 + volatile DMA *dma_regs;
1527 + struct ar231x_eth *cfg;
1528 +
1529 + spinlock_t lock; /* Serialise access to device */
1530 +
1531 + /* RX and TX descriptors, must be adjacent */
1532 + ar231x_descr_t *rx_ring;
1533 + ar231x_descr_t *tx_ring;
1534 +
1535 +
1536 + struct sk_buff **rx_skb;
1537 + struct sk_buff **tx_skb;
1538 +
1539 + /* RX elements */
1540 + u32 rx_skbprd;
1541 + u32 cur_rx;
1542 +
1543 + /* TX elements */
1544 + u32 tx_prd;
1545 + u32 tx_csm;
1546 +
1547 + /* Misc elements */
1548 + char name[48];
1549 + struct {
1550 + u32 address;
1551 + u32 length;
1552 + char *mapping;
1553 + } desc;
1554 +
1555 +
1556 + struct timer_list link_timer;
1557 + unsigned short phy; /* merlot phy = 1, samsung phy = 0x1f */
1558 + unsigned short mac;
1559 + unsigned short link; /* 0 - link down, 1 - link up */
1560 + u16 phy_data;
1561 +
1562 + struct tasklet_struct rx_tasklet;
1563 + int unloading;
1564 +
1565 + struct phy_device *phy_dev;
1566 + struct mii_bus *mii_bus;
1567 + int oldduplex;
1568 +};
1569 +
1570 +
1571 +/* Prototypes */
1572 +static int ar231x_init(struct net_device *dev);
1573 +#ifdef TX_TIMEOUT
1574 +static void ar231x_tx_timeout(struct net_device *dev);
1575 +#endif
1576 +static int ar231x_restart(struct net_device *dev);
1577 +static void ar231x_load_rx_ring(struct net_device *dev, int bufs);
1578 +static irqreturn_t ar231x_interrupt(int irq, void *dev_id);
1579 +static int ar231x_open(struct net_device *dev);
1580 +static int ar231x_start_xmit(struct sk_buff *skb, struct net_device *dev);
1581 +static int ar231x_close(struct net_device *dev);
1582 +static int ar231x_ioctl(struct net_device *dev, struct ifreq *ifr,
1583 + int cmd);
1584 +static void ar231x_init_cleanup(struct net_device *dev);
1585 +static int ar231x_setup_timer(struct net_device *dev);
1586 +static void ar231x_link_timer_fn(unsigned long data);
1587 +static void ar231x_check_link(struct net_device *dev);
1588 +#endif /* _AR2313_H_ */