of: Remove duplicate fields from of_platform_driver
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / ibm_newemac / core.c
blobf8c36a5eb4d79c9d10af257d76faf361e336ce3d
1 /*
2 * drivers/net/ibm_newemac/core.c
4 * Driver for PowerPC 4xx on-chip ethernet controller.
6 * Copyright 2007 Benjamin Herrenschmidt, IBM Corp.
7 * <benh@kernel.crashing.org>
9 * Based on the arch/ppc version of the driver:
11 * Copyright (c) 2004, 2005 Zultys Technologies.
12 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
14 * Based on original work by
15 * Matt Porter <mporter@kernel.crashing.org>
16 * (c) 2003 Benjamin Herrenschmidt <benh@kernel.crashing.org>
17 * Armin Kuster <akuster@mvista.com>
18 * Johnnie Peters <jpeters@mvista.com>
20 * This program is free software; you can redistribute it and/or modify it
21 * under the terms of the GNU General Public License as published by the
22 * Free Software Foundation; either version 2 of the License, or (at your
23 * option) any later version.
27 #include <linux/module.h>
28 #include <linux/sched.h>
29 #include <linux/string.h>
30 #include <linux/errno.h>
31 #include <linux/delay.h>
32 #include <linux/types.h>
33 #include <linux/pci.h>
34 #include <linux/etherdevice.h>
35 #include <linux/skbuff.h>
36 #include <linux/crc32.h>
37 #include <linux/ethtool.h>
38 #include <linux/mii.h>
39 #include <linux/bitops.h>
40 #include <linux/workqueue.h>
41 #include <linux/of.h>
42 #include <linux/slab.h>
44 #include <asm/processor.h>
45 #include <asm/io.h>
46 #include <asm/dma.h>
47 #include <asm/uaccess.h>
48 #include <asm/dcr.h>
49 #include <asm/dcr-regs.h>
51 #include "core.h"
54 * Lack of dma_unmap_???? calls is intentional.
56 * API-correct usage requires additional support state information to be
57 * maintained for every RX and TX buffer descriptor (BD). Unfortunately, due to
58 * EMAC design (e.g. TX buffer passed from network stack can be split into
59 * several BDs, dma_map_single/dma_map_page can be used to map particular BD),
60 * maintaining such information will add additional overhead.
61 * Current DMA API implementation for 4xx processors only ensures cache coherency
62 * and dma_unmap_???? routines are empty and are likely to stay this way.
63 * I decided to omit dma_unmap_??? calls because I don't want to add additional
64 * complexity just for the sake of following some abstract API, when it doesn't
65 * add any real benefit to the driver. I understand that this decision maybe
66 * controversial, but I really tried to make code API-correct and efficient
67 * at the same time and didn't come up with code I liked :(. --ebs
70 #define DRV_NAME "emac"
71 #define DRV_VERSION "3.54"
72 #define DRV_DESC "PPC 4xx OCP EMAC driver"
74 MODULE_DESCRIPTION(DRV_DESC);
75 MODULE_AUTHOR
76 ("Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>");
77 MODULE_LICENSE("GPL");
80 * PPC64 doesn't (yet) have a cacheable_memcpy
82 #ifdef CONFIG_PPC64
83 #define cacheable_memcpy(d,s,n) memcpy((d),(s),(n))
84 #endif
86 /* minimum number of free TX descriptors required to wake up TX process */
87 #define EMAC_TX_WAKEUP_THRESH (NUM_TX_BUFF / 4)
89 /* If packet size is less than this number, we allocate small skb and copy packet
90 * contents into it instead of just sending original big skb up
92 #define EMAC_RX_COPY_THRESH CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD
94 /* Since multiple EMACs share MDIO lines in various ways, we need
95 * to avoid re-using the same PHY ID in cases where the arch didn't
96 * setup precise phy_map entries
98 * XXX This is something that needs to be reworked as we can have multiple
99 * EMAC "sets" (multiple ASICs containing several EMACs) though we can
100 * probably require in that case to have explicit PHY IDs in the device-tree
102 static u32 busy_phy_map;
103 static DEFINE_MUTEX(emac_phy_map_lock);
105 /* This is the wait queue used to wait on any event related to probe, that
106 * is discovery of MALs, other EMACs, ZMII/RGMIIs, etc...
108 static DECLARE_WAIT_QUEUE_HEAD(emac_probe_wait);
110 /* Having stable interface names is a doomed idea. However, it would be nice
111 * if we didn't have completely random interface names at boot too :-) It's
112 * just a matter of making everybody's life easier. Since we are doing
113 * threaded probing, it's a bit harder though. The base idea here is that
114 * we make up a list of all emacs in the device-tree before we register the
115 * driver. Every emac will then wait for the previous one in the list to
116 * initialize before itself. We should also keep that list ordered by
117 * cell_index.
118 * That list is only 4 entries long, meaning that additional EMACs don't
119 * get ordering guarantees unless EMAC_BOOT_LIST_SIZE is increased.
122 #define EMAC_BOOT_LIST_SIZE 4
123 static struct device_node *emac_boot_list[EMAC_BOOT_LIST_SIZE];
125 /* How long should I wait for dependent devices ? */
126 #define EMAC_PROBE_DEP_TIMEOUT (HZ * 5)
128 /* I don't want to litter system log with timeout errors
129 * when we have brain-damaged PHY.
131 static inline void emac_report_timeout_error(struct emac_instance *dev,
132 const char *error)
134 if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX |
135 EMAC_FTR_460EX_PHY_CLK_FIX |
136 EMAC_FTR_440EP_PHY_CLK_FIX))
137 DBG(dev, "%s" NL, error);
138 else if (net_ratelimit())
139 printk(KERN_ERR "%s: %s\n", dev->ofdev->dev.of_node->full_name,
140 error);
143 /* EMAC PHY clock workaround:
144 * 440EP/440GR has more sane SDR0_MFR register implementation than 440GX,
145 * which allows controlling each EMAC clock
147 static inline void emac_rx_clk_tx(struct emac_instance *dev)
149 #ifdef CONFIG_PPC_DCR_NATIVE
150 if (emac_has_feature(dev, EMAC_FTR_440EP_PHY_CLK_FIX))
151 dcri_clrset(SDR0, SDR0_MFR,
152 0, SDR0_MFR_ECS >> dev->cell_index);
153 #endif
156 static inline void emac_rx_clk_default(struct emac_instance *dev)
158 #ifdef CONFIG_PPC_DCR_NATIVE
159 if (emac_has_feature(dev, EMAC_FTR_440EP_PHY_CLK_FIX))
160 dcri_clrset(SDR0, SDR0_MFR,
161 SDR0_MFR_ECS >> dev->cell_index, 0);
162 #endif
165 /* PHY polling intervals */
166 #define PHY_POLL_LINK_ON HZ
167 #define PHY_POLL_LINK_OFF (HZ / 5)
169 /* Graceful stop timeouts in us.
170 * We should allow up to 1 frame time (full-duplex, ignoring collisions)
172 #define STOP_TIMEOUT_10 1230
173 #define STOP_TIMEOUT_100 124
174 #define STOP_TIMEOUT_1000 13
175 #define STOP_TIMEOUT_1000_JUMBO 73
177 static unsigned char default_mcast_addr[] = {
178 0x01, 0x80, 0xC2, 0x00, 0x00, 0x01
181 /* Please, keep in sync with struct ibm_emac_stats/ibm_emac_error_stats */
182 static const char emac_stats_keys[EMAC_ETHTOOL_STATS_COUNT][ETH_GSTRING_LEN] = {
183 "rx_packets", "rx_bytes", "tx_packets", "tx_bytes", "rx_packets_csum",
184 "tx_packets_csum", "tx_undo", "rx_dropped_stack", "rx_dropped_oom",
185 "rx_dropped_error", "rx_dropped_resize", "rx_dropped_mtu",
186 "rx_stopped", "rx_bd_errors", "rx_bd_overrun", "rx_bd_bad_packet",
187 "rx_bd_runt_packet", "rx_bd_short_event", "rx_bd_alignment_error",
188 "rx_bd_bad_fcs", "rx_bd_packet_too_long", "rx_bd_out_of_range",
189 "rx_bd_in_range", "rx_parity", "rx_fifo_overrun", "rx_overrun",
190 "rx_bad_packet", "rx_runt_packet", "rx_short_event",
191 "rx_alignment_error", "rx_bad_fcs", "rx_packet_too_long",
192 "rx_out_of_range", "rx_in_range", "tx_dropped", "tx_bd_errors",
193 "tx_bd_bad_fcs", "tx_bd_carrier_loss", "tx_bd_excessive_deferral",
194 "tx_bd_excessive_collisions", "tx_bd_late_collision",
195 "tx_bd_multple_collisions", "tx_bd_single_collision",
196 "tx_bd_underrun", "tx_bd_sqe", "tx_parity", "tx_underrun", "tx_sqe",
197 "tx_errors"
200 static irqreturn_t emac_irq(int irq, void *dev_instance);
201 static void emac_clean_tx_ring(struct emac_instance *dev);
202 static void __emac_set_multicast_list(struct emac_instance *dev);
204 static inline int emac_phy_supports_gige(int phy_mode)
206 return phy_mode == PHY_MODE_GMII ||
207 phy_mode == PHY_MODE_RGMII ||
208 phy_mode == PHY_MODE_SGMII ||
209 phy_mode == PHY_MODE_TBI ||
210 phy_mode == PHY_MODE_RTBI;
213 static inline int emac_phy_gpcs(int phy_mode)
215 return phy_mode == PHY_MODE_SGMII ||
216 phy_mode == PHY_MODE_TBI ||
217 phy_mode == PHY_MODE_RTBI;
220 static inline void emac_tx_enable(struct emac_instance *dev)
222 struct emac_regs __iomem *p = dev->emacp;
223 u32 r;
225 DBG(dev, "tx_enable" NL);
227 r = in_be32(&p->mr0);
228 if (!(r & EMAC_MR0_TXE))
229 out_be32(&p->mr0, r | EMAC_MR0_TXE);
232 static void emac_tx_disable(struct emac_instance *dev)
234 struct emac_regs __iomem *p = dev->emacp;
235 u32 r;
237 DBG(dev, "tx_disable" NL);
239 r = in_be32(&p->mr0);
240 if (r & EMAC_MR0_TXE) {
241 int n = dev->stop_timeout;
242 out_be32(&p->mr0, r & ~EMAC_MR0_TXE);
243 while (!(in_be32(&p->mr0) & EMAC_MR0_TXI) && n) {
244 udelay(1);
245 --n;
247 if (unlikely(!n))
248 emac_report_timeout_error(dev, "TX disable timeout");
252 static void emac_rx_enable(struct emac_instance *dev)
254 struct emac_regs __iomem *p = dev->emacp;
255 u32 r;
257 if (unlikely(test_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags)))
258 goto out;
260 DBG(dev, "rx_enable" NL);
262 r = in_be32(&p->mr0);
263 if (!(r & EMAC_MR0_RXE)) {
264 if (unlikely(!(r & EMAC_MR0_RXI))) {
265 /* Wait if previous async disable is still in progress */
266 int n = dev->stop_timeout;
267 while (!(r = in_be32(&p->mr0) & EMAC_MR0_RXI) && n) {
268 udelay(1);
269 --n;
271 if (unlikely(!n))
272 emac_report_timeout_error(dev,
273 "RX disable timeout");
275 out_be32(&p->mr0, r | EMAC_MR0_RXE);
277 out:
281 static void emac_rx_disable(struct emac_instance *dev)
283 struct emac_regs __iomem *p = dev->emacp;
284 u32 r;
286 DBG(dev, "rx_disable" NL);
288 r = in_be32(&p->mr0);
289 if (r & EMAC_MR0_RXE) {
290 int n = dev->stop_timeout;
291 out_be32(&p->mr0, r & ~EMAC_MR0_RXE);
292 while (!(in_be32(&p->mr0) & EMAC_MR0_RXI) && n) {
293 udelay(1);
294 --n;
296 if (unlikely(!n))
297 emac_report_timeout_error(dev, "RX disable timeout");
301 static inline void emac_netif_stop(struct emac_instance *dev)
303 netif_tx_lock_bh(dev->ndev);
304 netif_addr_lock(dev->ndev);
305 dev->no_mcast = 1;
306 netif_addr_unlock(dev->ndev);
307 netif_tx_unlock_bh(dev->ndev);
308 dev->ndev->trans_start = jiffies; /* prevent tx timeout */
309 mal_poll_disable(dev->mal, &dev->commac);
310 netif_tx_disable(dev->ndev);
313 static inline void emac_netif_start(struct emac_instance *dev)
315 netif_tx_lock_bh(dev->ndev);
316 netif_addr_lock(dev->ndev);
317 dev->no_mcast = 0;
318 if (dev->mcast_pending && netif_running(dev->ndev))
319 __emac_set_multicast_list(dev);
320 netif_addr_unlock(dev->ndev);
321 netif_tx_unlock_bh(dev->ndev);
323 netif_wake_queue(dev->ndev);
325 /* NOTE: unconditional netif_wake_queue is only appropriate
326 * so long as all callers are assured to have free tx slots
327 * (taken from tg3... though the case where that is wrong is
328 * not terribly harmful)
330 mal_poll_enable(dev->mal, &dev->commac);
333 static inline void emac_rx_disable_async(struct emac_instance *dev)
335 struct emac_regs __iomem *p = dev->emacp;
336 u32 r;
338 DBG(dev, "rx_disable_async" NL);
340 r = in_be32(&p->mr0);
341 if (r & EMAC_MR0_RXE)
342 out_be32(&p->mr0, r & ~EMAC_MR0_RXE);
345 static int emac_reset(struct emac_instance *dev)
347 struct emac_regs __iomem *p = dev->emacp;
348 int n = 20;
350 DBG(dev, "reset" NL);
352 if (!dev->reset_failed) {
353 /* 40x erratum suggests stopping RX channel before reset,
354 * we stop TX as well
356 emac_rx_disable(dev);
357 emac_tx_disable(dev);
360 #ifdef CONFIG_PPC_DCR_NATIVE
361 /* Enable internal clock source */
362 if (emac_has_feature(dev, EMAC_FTR_460EX_PHY_CLK_FIX))
363 dcri_clrset(SDR0, SDR0_ETH_CFG,
364 0, SDR0_ETH_CFG_ECS << dev->cell_index);
365 #endif
367 out_be32(&p->mr0, EMAC_MR0_SRST);
368 while ((in_be32(&p->mr0) & EMAC_MR0_SRST) && n)
369 --n;
371 #ifdef CONFIG_PPC_DCR_NATIVE
372 /* Enable external clock source */
373 if (emac_has_feature(dev, EMAC_FTR_460EX_PHY_CLK_FIX))
374 dcri_clrset(SDR0, SDR0_ETH_CFG,
375 SDR0_ETH_CFG_ECS << dev->cell_index, 0);
376 #endif
378 if (n) {
379 dev->reset_failed = 0;
380 return 0;
381 } else {
382 emac_report_timeout_error(dev, "reset timeout");
383 dev->reset_failed = 1;
384 return -ETIMEDOUT;
388 static void emac_hash_mc(struct emac_instance *dev)
390 const int regs = EMAC_XAHT_REGS(dev);
391 u32 *gaht_base = emac_gaht_base(dev);
392 u32 gaht_temp[regs];
393 struct dev_mc_list *dmi;
394 int i;
396 DBG(dev, "hash_mc %d" NL, netdev_mc_count(dev->ndev));
398 memset(gaht_temp, 0, sizeof (gaht_temp));
400 netdev_for_each_mc_addr(dmi, dev->ndev) {
401 int slot, reg, mask;
402 DBG2(dev, "mc %pM" NL, dmi->dmi_addr);
404 slot = EMAC_XAHT_CRC_TO_SLOT(dev, ether_crc(ETH_ALEN, dmi->dmi_addr));
405 reg = EMAC_XAHT_SLOT_TO_REG(dev, slot);
406 mask = EMAC_XAHT_SLOT_TO_MASK(dev, slot);
408 gaht_temp[reg] |= mask;
411 for (i = 0; i < regs; i++)
412 out_be32(gaht_base + i, gaht_temp[i]);
415 static inline u32 emac_iff2rmr(struct net_device *ndev)
417 struct emac_instance *dev = netdev_priv(ndev);
418 u32 r;
420 r = EMAC_RMR_SP | EMAC_RMR_SFCS | EMAC_RMR_IAE | EMAC_RMR_BAE;
422 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
423 r |= EMAC4_RMR_BASE;
424 else
425 r |= EMAC_RMR_BASE;
427 if (ndev->flags & IFF_PROMISC)
428 r |= EMAC_RMR_PME;
429 else if (ndev->flags & IFF_ALLMULTI ||
430 (netdev_mc_count(ndev) > EMAC_XAHT_SLOTS(dev)))
431 r |= EMAC_RMR_PMME;
432 else if (!netdev_mc_empty(ndev))
433 r |= EMAC_RMR_MAE;
435 return r;
438 static u32 __emac_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
440 u32 ret = EMAC_MR1_VLE | EMAC_MR1_IST | EMAC_MR1_TR0_MULT;
442 DBG2(dev, "__emac_calc_base_mr1" NL);
444 switch(tx_size) {
445 case 2048:
446 ret |= EMAC_MR1_TFS_2K;
447 break;
448 default:
449 printk(KERN_WARNING "%s: Unknown Tx FIFO size %d\n",
450 dev->ndev->name, tx_size);
453 switch(rx_size) {
454 case 16384:
455 ret |= EMAC_MR1_RFS_16K;
456 break;
457 case 4096:
458 ret |= EMAC_MR1_RFS_4K;
459 break;
460 default:
461 printk(KERN_WARNING "%s: Unknown Rx FIFO size %d\n",
462 dev->ndev->name, rx_size);
465 return ret;
468 static u32 __emac4_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
470 u32 ret = EMAC_MR1_VLE | EMAC_MR1_IST | EMAC4_MR1_TR |
471 EMAC4_MR1_OBCI(dev->opb_bus_freq / 1000000);
473 DBG2(dev, "__emac4_calc_base_mr1" NL);
475 switch(tx_size) {
476 case 16384:
477 ret |= EMAC4_MR1_TFS_16K;
478 break;
479 case 4096:
480 ret |= EMAC4_MR1_TFS_4K;
481 break;
482 case 2048:
483 ret |= EMAC4_MR1_TFS_2K;
484 break;
485 default:
486 printk(KERN_WARNING "%s: Unknown Tx FIFO size %d\n",
487 dev->ndev->name, tx_size);
490 switch(rx_size) {
491 case 16384:
492 ret |= EMAC4_MR1_RFS_16K;
493 break;
494 case 4096:
495 ret |= EMAC4_MR1_RFS_4K;
496 break;
497 case 2048:
498 ret |= EMAC4_MR1_RFS_2K;
499 break;
500 default:
501 printk(KERN_WARNING "%s: Unknown Rx FIFO size %d\n",
502 dev->ndev->name, rx_size);
505 return ret;
508 static u32 emac_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
510 return emac_has_feature(dev, EMAC_FTR_EMAC4) ?
511 __emac4_calc_base_mr1(dev, tx_size, rx_size) :
512 __emac_calc_base_mr1(dev, tx_size, rx_size);
515 static inline u32 emac_calc_trtr(struct emac_instance *dev, unsigned int size)
517 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
518 return ((size >> 6) - 1) << EMAC_TRTR_SHIFT_EMAC4;
519 else
520 return ((size >> 6) - 1) << EMAC_TRTR_SHIFT;
523 static inline u32 emac_calc_rwmr(struct emac_instance *dev,
524 unsigned int low, unsigned int high)
526 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
527 return (low << 22) | ( (high & 0x3ff) << 6);
528 else
529 return (low << 23) | ( (high & 0x1ff) << 7);
532 static int emac_configure(struct emac_instance *dev)
534 struct emac_regs __iomem *p = dev->emacp;
535 struct net_device *ndev = dev->ndev;
536 int tx_size, rx_size, link = netif_carrier_ok(dev->ndev);
537 u32 r, mr1 = 0;
539 DBG(dev, "configure" NL);
541 if (!link) {
542 out_be32(&p->mr1, in_be32(&p->mr1)
543 | EMAC_MR1_FDE | EMAC_MR1_ILE);
544 udelay(100);
545 } else if (emac_reset(dev) < 0)
546 return -ETIMEDOUT;
548 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
549 tah_reset(dev->tah_dev);
551 DBG(dev, " link = %d duplex = %d, pause = %d, asym_pause = %d\n",
552 link, dev->phy.duplex, dev->phy.pause, dev->phy.asym_pause);
554 /* Default fifo sizes */
555 tx_size = dev->tx_fifo_size;
556 rx_size = dev->rx_fifo_size;
558 /* No link, force loopback */
559 if (!link)
560 mr1 = EMAC_MR1_FDE | EMAC_MR1_ILE;
562 /* Check for full duplex */
563 else if (dev->phy.duplex == DUPLEX_FULL)
564 mr1 |= EMAC_MR1_FDE | EMAC_MR1_MWSW_001;
566 /* Adjust fifo sizes, mr1 and timeouts based on link speed */
567 dev->stop_timeout = STOP_TIMEOUT_10;
568 switch (dev->phy.speed) {
569 case SPEED_1000:
570 if (emac_phy_gpcs(dev->phy.mode)) {
571 mr1 |= EMAC_MR1_MF_1000GPCS | EMAC_MR1_MF_IPPA(
572 (dev->phy.gpcs_address != 0xffffffff) ?
573 dev->phy.gpcs_address : dev->phy.address);
575 /* Put some arbitrary OUI, Manuf & Rev IDs so we can
576 * identify this GPCS PHY later.
578 out_be32(&p->u1.emac4.ipcr, 0xdeadbeef);
579 } else
580 mr1 |= EMAC_MR1_MF_1000;
582 /* Extended fifo sizes */
583 tx_size = dev->tx_fifo_size_gige;
584 rx_size = dev->rx_fifo_size_gige;
586 if (dev->ndev->mtu > ETH_DATA_LEN) {
587 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
588 mr1 |= EMAC4_MR1_JPSM;
589 else
590 mr1 |= EMAC_MR1_JPSM;
591 dev->stop_timeout = STOP_TIMEOUT_1000_JUMBO;
592 } else
593 dev->stop_timeout = STOP_TIMEOUT_1000;
594 break;
595 case SPEED_100:
596 mr1 |= EMAC_MR1_MF_100;
597 dev->stop_timeout = STOP_TIMEOUT_100;
598 break;
599 default: /* make gcc happy */
600 break;
603 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
604 rgmii_set_speed(dev->rgmii_dev, dev->rgmii_port,
605 dev->phy.speed);
606 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
607 zmii_set_speed(dev->zmii_dev, dev->zmii_port, dev->phy.speed);
609 /* on 40x erratum forces us to NOT use integrated flow control,
610 * let's hope it works on 44x ;)
612 if (!emac_has_feature(dev, EMAC_FTR_NO_FLOW_CONTROL_40x) &&
613 dev->phy.duplex == DUPLEX_FULL) {
614 if (dev->phy.pause)
615 mr1 |= EMAC_MR1_EIFC | EMAC_MR1_APP;
616 else if (dev->phy.asym_pause)
617 mr1 |= EMAC_MR1_APP;
620 /* Add base settings & fifo sizes & program MR1 */
621 mr1 |= emac_calc_base_mr1(dev, tx_size, rx_size);
622 out_be32(&p->mr1, mr1);
624 /* Set individual MAC address */
625 out_be32(&p->iahr, (ndev->dev_addr[0] << 8) | ndev->dev_addr[1]);
626 out_be32(&p->ialr, (ndev->dev_addr[2] << 24) |
627 (ndev->dev_addr[3] << 16) | (ndev->dev_addr[4] << 8) |
628 ndev->dev_addr[5]);
630 /* VLAN Tag Protocol ID */
631 out_be32(&p->vtpid, 0x8100);
633 /* Receive mode register */
634 r = emac_iff2rmr(ndev);
635 if (r & EMAC_RMR_MAE)
636 emac_hash_mc(dev);
637 out_be32(&p->rmr, r);
639 /* FIFOs thresholds */
640 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
641 r = EMAC4_TMR1((dev->mal_burst_size / dev->fifo_entry_size) + 1,
642 tx_size / 2 / dev->fifo_entry_size);
643 else
644 r = EMAC_TMR1((dev->mal_burst_size / dev->fifo_entry_size) + 1,
645 tx_size / 2 / dev->fifo_entry_size);
646 out_be32(&p->tmr1, r);
647 out_be32(&p->trtr, emac_calc_trtr(dev, tx_size / 2));
649 /* PAUSE frame is sent when RX FIFO reaches its high-water mark,
650 there should be still enough space in FIFO to allow the our link
651 partner time to process this frame and also time to send PAUSE
652 frame itself.
654 Here is the worst case scenario for the RX FIFO "headroom"
655 (from "The Switch Book") (100Mbps, without preamble, inter-frame gap):
657 1) One maximum-length frame on TX 1522 bytes
658 2) One PAUSE frame time 64 bytes
659 3) PAUSE frame decode time allowance 64 bytes
660 4) One maximum-length frame on RX 1522 bytes
661 5) Round-trip propagation delay of the link (100Mb) 15 bytes
662 ----------
663 3187 bytes
665 I chose to set high-water mark to RX_FIFO_SIZE / 4 (1024 bytes)
666 low-water mark to RX_FIFO_SIZE / 8 (512 bytes)
668 r = emac_calc_rwmr(dev, rx_size / 8 / dev->fifo_entry_size,
669 rx_size / 4 / dev->fifo_entry_size);
670 out_be32(&p->rwmr, r);
672 /* Set PAUSE timer to the maximum */
673 out_be32(&p->ptr, 0xffff);
675 /* IRQ sources */
676 r = EMAC_ISR_OVR | EMAC_ISR_BP | EMAC_ISR_SE |
677 EMAC_ISR_ALE | EMAC_ISR_BFCS | EMAC_ISR_PTLE | EMAC_ISR_ORE |
678 EMAC_ISR_IRE | EMAC_ISR_TE;
679 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
680 r |= EMAC4_ISR_TXPE | EMAC4_ISR_RXPE /* | EMAC4_ISR_TXUE |
681 EMAC4_ISR_RXOE | */;
682 out_be32(&p->iser, r);
684 /* We need to take GPCS PHY out of isolate mode after EMAC reset */
685 if (emac_phy_gpcs(dev->phy.mode)) {
686 if (dev->phy.gpcs_address != 0xffffffff)
687 emac_mii_reset_gpcs(&dev->phy);
688 else
689 emac_mii_reset_phy(&dev->phy);
692 return 0;
695 static void emac_reinitialize(struct emac_instance *dev)
697 DBG(dev, "reinitialize" NL);
699 emac_netif_stop(dev);
700 if (!emac_configure(dev)) {
701 emac_tx_enable(dev);
702 emac_rx_enable(dev);
704 emac_netif_start(dev);
707 static void emac_full_tx_reset(struct emac_instance *dev)
709 DBG(dev, "full_tx_reset" NL);
711 emac_tx_disable(dev);
712 mal_disable_tx_channel(dev->mal, dev->mal_tx_chan);
713 emac_clean_tx_ring(dev);
714 dev->tx_cnt = dev->tx_slot = dev->ack_slot = 0;
716 emac_configure(dev);
718 mal_enable_tx_channel(dev->mal, dev->mal_tx_chan);
719 emac_tx_enable(dev);
720 emac_rx_enable(dev);
723 static void emac_reset_work(struct work_struct *work)
725 struct emac_instance *dev = container_of(work, struct emac_instance, reset_work);
727 DBG(dev, "reset_work" NL);
729 mutex_lock(&dev->link_lock);
730 if (dev->opened) {
731 emac_netif_stop(dev);
732 emac_full_tx_reset(dev);
733 emac_netif_start(dev);
735 mutex_unlock(&dev->link_lock);
738 static void emac_tx_timeout(struct net_device *ndev)
740 struct emac_instance *dev = netdev_priv(ndev);
742 DBG(dev, "tx_timeout" NL);
744 schedule_work(&dev->reset_work);
748 static inline int emac_phy_done(struct emac_instance *dev, u32 stacr)
750 int done = !!(stacr & EMAC_STACR_OC);
752 if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
753 done = !done;
755 return done;
758 static int __emac_mdio_read(struct emac_instance *dev, u8 id, u8 reg)
760 struct emac_regs __iomem *p = dev->emacp;
761 u32 r = 0;
762 int n, err = -ETIMEDOUT;
764 mutex_lock(&dev->mdio_lock);
766 DBG2(dev, "mdio_read(%02x,%02x)" NL, id, reg);
768 /* Enable proper MDIO port */
769 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
770 zmii_get_mdio(dev->zmii_dev, dev->zmii_port);
771 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
772 rgmii_get_mdio(dev->rgmii_dev, dev->rgmii_port);
774 /* Wait for management interface to become idle */
775 n = 20;
776 while (!emac_phy_done(dev, in_be32(&p->stacr))) {
777 udelay(1);
778 if (!--n) {
779 DBG2(dev, " -> timeout wait idle\n");
780 goto bail;
784 /* Issue read command */
785 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
786 r = EMAC4_STACR_BASE(dev->opb_bus_freq);
787 else
788 r = EMAC_STACR_BASE(dev->opb_bus_freq);
789 if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
790 r |= EMAC_STACR_OC;
791 if (emac_has_feature(dev, EMAC_FTR_HAS_NEW_STACR))
792 r |= EMACX_STACR_STAC_READ;
793 else
794 r |= EMAC_STACR_STAC_READ;
795 r |= (reg & EMAC_STACR_PRA_MASK)
796 | ((id & EMAC_STACR_PCDA_MASK) << EMAC_STACR_PCDA_SHIFT);
797 out_be32(&p->stacr, r);
799 /* Wait for read to complete */
800 n = 200;
801 while (!emac_phy_done(dev, (r = in_be32(&p->stacr)))) {
802 udelay(1);
803 if (!--n) {
804 DBG2(dev, " -> timeout wait complete\n");
805 goto bail;
809 if (unlikely(r & EMAC_STACR_PHYE)) {
810 DBG(dev, "mdio_read(%02x, %02x) failed" NL, id, reg);
811 err = -EREMOTEIO;
812 goto bail;
815 r = ((r >> EMAC_STACR_PHYD_SHIFT) & EMAC_STACR_PHYD_MASK);
817 DBG2(dev, "mdio_read -> %04x" NL, r);
818 err = 0;
819 bail:
820 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
821 rgmii_put_mdio(dev->rgmii_dev, dev->rgmii_port);
822 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
823 zmii_put_mdio(dev->zmii_dev, dev->zmii_port);
824 mutex_unlock(&dev->mdio_lock);
826 return err == 0 ? r : err;
829 static void __emac_mdio_write(struct emac_instance *dev, u8 id, u8 reg,
830 u16 val)
832 struct emac_regs __iomem *p = dev->emacp;
833 u32 r = 0;
834 int n, err = -ETIMEDOUT;
836 mutex_lock(&dev->mdio_lock);
838 DBG2(dev, "mdio_write(%02x,%02x,%04x)" NL, id, reg, val);
840 /* Enable proper MDIO port */
841 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
842 zmii_get_mdio(dev->zmii_dev, dev->zmii_port);
843 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
844 rgmii_get_mdio(dev->rgmii_dev, dev->rgmii_port);
846 /* Wait for management interface to be idle */
847 n = 20;
848 while (!emac_phy_done(dev, in_be32(&p->stacr))) {
849 udelay(1);
850 if (!--n) {
851 DBG2(dev, " -> timeout wait idle\n");
852 goto bail;
856 /* Issue write command */
857 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
858 r = EMAC4_STACR_BASE(dev->opb_bus_freq);
859 else
860 r = EMAC_STACR_BASE(dev->opb_bus_freq);
861 if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
862 r |= EMAC_STACR_OC;
863 if (emac_has_feature(dev, EMAC_FTR_HAS_NEW_STACR))
864 r |= EMACX_STACR_STAC_WRITE;
865 else
866 r |= EMAC_STACR_STAC_WRITE;
867 r |= (reg & EMAC_STACR_PRA_MASK) |
868 ((id & EMAC_STACR_PCDA_MASK) << EMAC_STACR_PCDA_SHIFT) |
869 (val << EMAC_STACR_PHYD_SHIFT);
870 out_be32(&p->stacr, r);
872 /* Wait for write to complete */
873 n = 200;
874 while (!emac_phy_done(dev, in_be32(&p->stacr))) {
875 udelay(1);
876 if (!--n) {
877 DBG2(dev, " -> timeout wait complete\n");
878 goto bail;
881 err = 0;
882 bail:
883 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
884 rgmii_put_mdio(dev->rgmii_dev, dev->rgmii_port);
885 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
886 zmii_put_mdio(dev->zmii_dev, dev->zmii_port);
887 mutex_unlock(&dev->mdio_lock);
890 static int emac_mdio_read(struct net_device *ndev, int id, int reg)
892 struct emac_instance *dev = netdev_priv(ndev);
893 int res;
895 res = __emac_mdio_read((dev->mdio_instance &&
896 dev->phy.gpcs_address != id) ?
897 dev->mdio_instance : dev,
898 (u8) id, (u8) reg);
899 return res;
902 static void emac_mdio_write(struct net_device *ndev, int id, int reg, int val)
904 struct emac_instance *dev = netdev_priv(ndev);
906 __emac_mdio_write((dev->mdio_instance &&
907 dev->phy.gpcs_address != id) ?
908 dev->mdio_instance : dev,
909 (u8) id, (u8) reg, (u16) val);
912 /* Tx lock BH */
913 static void __emac_set_multicast_list(struct emac_instance *dev)
915 struct emac_regs __iomem *p = dev->emacp;
916 u32 rmr = emac_iff2rmr(dev->ndev);
918 DBG(dev, "__multicast %08x" NL, rmr);
920 /* I decided to relax register access rules here to avoid
921 * full EMAC reset.
923 * There is a real problem with EMAC4 core if we use MWSW_001 bit
924 * in MR1 register and do a full EMAC reset.
925 * One TX BD status update is delayed and, after EMAC reset, it
926 * never happens, resulting in TX hung (it'll be recovered by TX
927 * timeout handler eventually, but this is just gross).
928 * So we either have to do full TX reset or try to cheat here :)
930 * The only required change is to RX mode register, so I *think* all
931 * we need is just to stop RX channel. This seems to work on all
932 * tested SoCs. --ebs
934 * If we need the full reset, we might just trigger the workqueue
935 * and do it async... a bit nasty but should work --BenH
937 dev->mcast_pending = 0;
938 emac_rx_disable(dev);
939 if (rmr & EMAC_RMR_MAE)
940 emac_hash_mc(dev);
941 out_be32(&p->rmr, rmr);
942 emac_rx_enable(dev);
945 /* Tx lock BH */
946 static void emac_set_multicast_list(struct net_device *ndev)
948 struct emac_instance *dev = netdev_priv(ndev);
950 DBG(dev, "multicast" NL);
952 BUG_ON(!netif_running(dev->ndev));
954 if (dev->no_mcast) {
955 dev->mcast_pending = 1;
956 return;
958 __emac_set_multicast_list(dev);
961 static int emac_resize_rx_ring(struct emac_instance *dev, int new_mtu)
963 int rx_sync_size = emac_rx_sync_size(new_mtu);
964 int rx_skb_size = emac_rx_skb_size(new_mtu);
965 int i, ret = 0;
967 mutex_lock(&dev->link_lock);
968 emac_netif_stop(dev);
969 emac_rx_disable(dev);
970 mal_disable_rx_channel(dev->mal, dev->mal_rx_chan);
972 if (dev->rx_sg_skb) {
973 ++dev->estats.rx_dropped_resize;
974 dev_kfree_skb(dev->rx_sg_skb);
975 dev->rx_sg_skb = NULL;
978 /* Make a first pass over RX ring and mark BDs ready, dropping
979 * non-processed packets on the way. We need this as a separate pass
980 * to simplify error recovery in the case of allocation failure later.
982 for (i = 0; i < NUM_RX_BUFF; ++i) {
983 if (dev->rx_desc[i].ctrl & MAL_RX_CTRL_FIRST)
984 ++dev->estats.rx_dropped_resize;
986 dev->rx_desc[i].data_len = 0;
987 dev->rx_desc[i].ctrl = MAL_RX_CTRL_EMPTY |
988 (i == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
991 /* Reallocate RX ring only if bigger skb buffers are required */
992 if (rx_skb_size <= dev->rx_skb_size)
993 goto skip;
995 /* Second pass, allocate new skbs */
996 for (i = 0; i < NUM_RX_BUFF; ++i) {
997 struct sk_buff *skb = alloc_skb(rx_skb_size, GFP_ATOMIC);
998 if (!skb) {
999 ret = -ENOMEM;
1000 goto oom;
1003 BUG_ON(!dev->rx_skb[i]);
1004 dev_kfree_skb(dev->rx_skb[i]);
1006 skb_reserve(skb, EMAC_RX_SKB_HEADROOM + 2);
1007 dev->rx_desc[i].data_ptr =
1008 dma_map_single(&dev->ofdev->dev, skb->data - 2, rx_sync_size,
1009 DMA_FROM_DEVICE) + 2;
1010 dev->rx_skb[i] = skb;
1012 skip:
1013 /* Check if we need to change "Jumbo" bit in MR1 */
1014 if ((new_mtu > ETH_DATA_LEN) ^ (dev->ndev->mtu > ETH_DATA_LEN)) {
1015 /* This is to prevent starting RX channel in emac_rx_enable() */
1016 set_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1018 dev->ndev->mtu = new_mtu;
1019 emac_full_tx_reset(dev);
1022 mal_set_rcbs(dev->mal, dev->mal_rx_chan, emac_rx_size(new_mtu));
1023 oom:
1024 /* Restart RX */
1025 clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1026 dev->rx_slot = 0;
1027 mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1028 emac_rx_enable(dev);
1029 emac_netif_start(dev);
1030 mutex_unlock(&dev->link_lock);
1032 return ret;
1035 /* Process ctx, rtnl_lock semaphore */
1036 static int emac_change_mtu(struct net_device *ndev, int new_mtu)
1038 struct emac_instance *dev = netdev_priv(ndev);
1039 int ret = 0;
1041 if (new_mtu < EMAC_MIN_MTU || new_mtu > dev->max_mtu)
1042 return -EINVAL;
1044 DBG(dev, "change_mtu(%d)" NL, new_mtu);
1046 if (netif_running(ndev)) {
1047 /* Check if we really need to reinitalize RX ring */
1048 if (emac_rx_skb_size(ndev->mtu) != emac_rx_skb_size(new_mtu))
1049 ret = emac_resize_rx_ring(dev, new_mtu);
1052 if (!ret) {
1053 ndev->mtu = new_mtu;
1054 dev->rx_skb_size = emac_rx_skb_size(new_mtu);
1055 dev->rx_sync_size = emac_rx_sync_size(new_mtu);
1058 return ret;
1061 static void emac_clean_tx_ring(struct emac_instance *dev)
1063 int i;
1065 for (i = 0; i < NUM_TX_BUFF; ++i) {
1066 if (dev->tx_skb[i]) {
1067 dev_kfree_skb(dev->tx_skb[i]);
1068 dev->tx_skb[i] = NULL;
1069 if (dev->tx_desc[i].ctrl & MAL_TX_CTRL_READY)
1070 ++dev->estats.tx_dropped;
1072 dev->tx_desc[i].ctrl = 0;
1073 dev->tx_desc[i].data_ptr = 0;
1077 static void emac_clean_rx_ring(struct emac_instance *dev)
1079 int i;
1081 for (i = 0; i < NUM_RX_BUFF; ++i)
1082 if (dev->rx_skb[i]) {
1083 dev->rx_desc[i].ctrl = 0;
1084 dev_kfree_skb(dev->rx_skb[i]);
1085 dev->rx_skb[i] = NULL;
1086 dev->rx_desc[i].data_ptr = 0;
1089 if (dev->rx_sg_skb) {
1090 dev_kfree_skb(dev->rx_sg_skb);
1091 dev->rx_sg_skb = NULL;
1095 static inline int emac_alloc_rx_skb(struct emac_instance *dev, int slot,
1096 gfp_t flags)
1098 struct sk_buff *skb = alloc_skb(dev->rx_skb_size, flags);
1099 if (unlikely(!skb))
1100 return -ENOMEM;
1102 dev->rx_skb[slot] = skb;
1103 dev->rx_desc[slot].data_len = 0;
1105 skb_reserve(skb, EMAC_RX_SKB_HEADROOM + 2);
1106 dev->rx_desc[slot].data_ptr =
1107 dma_map_single(&dev->ofdev->dev, skb->data - 2, dev->rx_sync_size,
1108 DMA_FROM_DEVICE) + 2;
1109 wmb();
1110 dev->rx_desc[slot].ctrl = MAL_RX_CTRL_EMPTY |
1111 (slot == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
1113 return 0;
1116 static void emac_print_link_status(struct emac_instance *dev)
1118 if (netif_carrier_ok(dev->ndev))
1119 printk(KERN_INFO "%s: link is up, %d %s%s\n",
1120 dev->ndev->name, dev->phy.speed,
1121 dev->phy.duplex == DUPLEX_FULL ? "FDX" : "HDX",
1122 dev->phy.pause ? ", pause enabled" :
1123 dev->phy.asym_pause ? ", asymmetric pause enabled" : "");
1124 else
1125 printk(KERN_INFO "%s: link is down\n", dev->ndev->name);
1128 /* Process ctx, rtnl_lock semaphore */
1129 static int emac_open(struct net_device *ndev)
1131 struct emac_instance *dev = netdev_priv(ndev);
1132 int err, i;
1134 DBG(dev, "open" NL);
1136 /* Setup error IRQ handler */
1137 err = request_irq(dev->emac_irq, emac_irq, 0, "EMAC", dev);
1138 if (err) {
1139 printk(KERN_ERR "%s: failed to request IRQ %d\n",
1140 ndev->name, dev->emac_irq);
1141 return err;
1144 /* Allocate RX ring */
1145 for (i = 0; i < NUM_RX_BUFF; ++i)
1146 if (emac_alloc_rx_skb(dev, i, GFP_KERNEL)) {
1147 printk(KERN_ERR "%s: failed to allocate RX ring\n",
1148 ndev->name);
1149 goto oom;
1152 dev->tx_cnt = dev->tx_slot = dev->ack_slot = dev->rx_slot = 0;
1153 clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1154 dev->rx_sg_skb = NULL;
1156 mutex_lock(&dev->link_lock);
1157 dev->opened = 1;
1159 /* Start PHY polling now.
1161 if (dev->phy.address >= 0) {
1162 int link_poll_interval;
1163 if (dev->phy.def->ops->poll_link(&dev->phy)) {
1164 dev->phy.def->ops->read_link(&dev->phy);
1165 emac_rx_clk_default(dev);
1166 netif_carrier_on(dev->ndev);
1167 link_poll_interval = PHY_POLL_LINK_ON;
1168 } else {
1169 emac_rx_clk_tx(dev);
1170 netif_carrier_off(dev->ndev);
1171 link_poll_interval = PHY_POLL_LINK_OFF;
1173 dev->link_polling = 1;
1174 wmb();
1175 schedule_delayed_work(&dev->link_work, link_poll_interval);
1176 emac_print_link_status(dev);
1177 } else
1178 netif_carrier_on(dev->ndev);
1180 /* Required for Pause packet support in EMAC */
1181 dev_mc_add(ndev, default_mcast_addr, sizeof(default_mcast_addr), 1);
1183 emac_configure(dev);
1184 mal_poll_add(dev->mal, &dev->commac);
1185 mal_enable_tx_channel(dev->mal, dev->mal_tx_chan);
1186 mal_set_rcbs(dev->mal, dev->mal_rx_chan, emac_rx_size(ndev->mtu));
1187 mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1188 emac_tx_enable(dev);
1189 emac_rx_enable(dev);
1190 emac_netif_start(dev);
1192 mutex_unlock(&dev->link_lock);
1194 return 0;
1195 oom:
1196 emac_clean_rx_ring(dev);
1197 free_irq(dev->emac_irq, dev);
1199 return -ENOMEM;
1202 /* BHs disabled */
1203 #if 0
1204 static int emac_link_differs(struct emac_instance *dev)
1206 u32 r = in_be32(&dev->emacp->mr1);
1208 int duplex = r & EMAC_MR1_FDE ? DUPLEX_FULL : DUPLEX_HALF;
1209 int speed, pause, asym_pause;
1211 if (r & EMAC_MR1_MF_1000)
1212 speed = SPEED_1000;
1213 else if (r & EMAC_MR1_MF_100)
1214 speed = SPEED_100;
1215 else
1216 speed = SPEED_10;
1218 switch (r & (EMAC_MR1_EIFC | EMAC_MR1_APP)) {
1219 case (EMAC_MR1_EIFC | EMAC_MR1_APP):
1220 pause = 1;
1221 asym_pause = 0;
1222 break;
1223 case EMAC_MR1_APP:
1224 pause = 0;
1225 asym_pause = 1;
1226 break;
1227 default:
1228 pause = asym_pause = 0;
1230 return speed != dev->phy.speed || duplex != dev->phy.duplex ||
1231 pause != dev->phy.pause || asym_pause != dev->phy.asym_pause;
1233 #endif
1235 static void emac_link_timer(struct work_struct *work)
1237 struct emac_instance *dev =
1238 container_of(to_delayed_work(work),
1239 struct emac_instance, link_work);
1240 int link_poll_interval;
1242 mutex_lock(&dev->link_lock);
1243 DBG2(dev, "link timer" NL);
1245 if (!dev->opened)
1246 goto bail;
1248 if (dev->phy.def->ops->poll_link(&dev->phy)) {
1249 if (!netif_carrier_ok(dev->ndev)) {
1250 emac_rx_clk_default(dev);
1251 /* Get new link parameters */
1252 dev->phy.def->ops->read_link(&dev->phy);
1254 netif_carrier_on(dev->ndev);
1255 emac_netif_stop(dev);
1256 emac_full_tx_reset(dev);
1257 emac_netif_start(dev);
1258 emac_print_link_status(dev);
1260 link_poll_interval = PHY_POLL_LINK_ON;
1261 } else {
1262 if (netif_carrier_ok(dev->ndev)) {
1263 emac_rx_clk_tx(dev);
1264 netif_carrier_off(dev->ndev);
1265 netif_tx_disable(dev->ndev);
1266 emac_reinitialize(dev);
1267 emac_print_link_status(dev);
1269 link_poll_interval = PHY_POLL_LINK_OFF;
1271 schedule_delayed_work(&dev->link_work, link_poll_interval);
1272 bail:
1273 mutex_unlock(&dev->link_lock);
1276 static void emac_force_link_update(struct emac_instance *dev)
1278 netif_carrier_off(dev->ndev);
1279 smp_rmb();
1280 if (dev->link_polling) {
1281 cancel_rearming_delayed_work(&dev->link_work);
1282 if (dev->link_polling)
1283 schedule_delayed_work(&dev->link_work, PHY_POLL_LINK_OFF);
1287 /* Process ctx, rtnl_lock semaphore */
1288 static int emac_close(struct net_device *ndev)
1290 struct emac_instance *dev = netdev_priv(ndev);
1292 DBG(dev, "close" NL);
1294 if (dev->phy.address >= 0) {
1295 dev->link_polling = 0;
1296 cancel_rearming_delayed_work(&dev->link_work);
1298 mutex_lock(&dev->link_lock);
1299 emac_netif_stop(dev);
1300 dev->opened = 0;
1301 mutex_unlock(&dev->link_lock);
1303 emac_rx_disable(dev);
1304 emac_tx_disable(dev);
1305 mal_disable_rx_channel(dev->mal, dev->mal_rx_chan);
1306 mal_disable_tx_channel(dev->mal, dev->mal_tx_chan);
1307 mal_poll_del(dev->mal, &dev->commac);
1309 emac_clean_tx_ring(dev);
1310 emac_clean_rx_ring(dev);
1312 free_irq(dev->emac_irq, dev);
1314 netif_carrier_off(ndev);
1316 return 0;
1319 static inline u16 emac_tx_csum(struct emac_instance *dev,
1320 struct sk_buff *skb)
1322 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH) &&
1323 (skb->ip_summed == CHECKSUM_PARTIAL)) {
1324 ++dev->stats.tx_packets_csum;
1325 return EMAC_TX_CTRL_TAH_CSUM;
1327 return 0;
1330 static inline int emac_xmit_finish(struct emac_instance *dev, int len)
1332 struct emac_regs __iomem *p = dev->emacp;
1333 struct net_device *ndev = dev->ndev;
1335 /* Send the packet out. If the if makes a significant perf
1336 * difference, then we can store the TMR0 value in "dev"
1337 * instead
1339 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
1340 out_be32(&p->tmr0, EMAC4_TMR0_XMIT);
1341 else
1342 out_be32(&p->tmr0, EMAC_TMR0_XMIT);
1344 if (unlikely(++dev->tx_cnt == NUM_TX_BUFF)) {
1345 netif_stop_queue(ndev);
1346 DBG2(dev, "stopped TX queue" NL);
1349 ndev->trans_start = jiffies;
1350 ++dev->stats.tx_packets;
1351 dev->stats.tx_bytes += len;
1353 return NETDEV_TX_OK;
1356 /* Tx lock BH */
1357 static int emac_start_xmit(struct sk_buff *skb, struct net_device *ndev)
1359 struct emac_instance *dev = netdev_priv(ndev);
1360 unsigned int len = skb->len;
1361 int slot;
1363 u16 ctrl = EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP | MAL_TX_CTRL_READY |
1364 MAL_TX_CTRL_LAST | emac_tx_csum(dev, skb);
1366 slot = dev->tx_slot++;
1367 if (dev->tx_slot == NUM_TX_BUFF) {
1368 dev->tx_slot = 0;
1369 ctrl |= MAL_TX_CTRL_WRAP;
1372 DBG2(dev, "xmit(%u) %d" NL, len, slot);
1374 dev->tx_skb[slot] = skb;
1375 dev->tx_desc[slot].data_ptr = dma_map_single(&dev->ofdev->dev,
1376 skb->data, len,
1377 DMA_TO_DEVICE);
1378 dev->tx_desc[slot].data_len = (u16) len;
1379 wmb();
1380 dev->tx_desc[slot].ctrl = ctrl;
1382 return emac_xmit_finish(dev, len);
1385 static inline int emac_xmit_split(struct emac_instance *dev, int slot,
1386 u32 pd, int len, int last, u16 base_ctrl)
1388 while (1) {
1389 u16 ctrl = base_ctrl;
1390 int chunk = min(len, MAL_MAX_TX_SIZE);
1391 len -= chunk;
1393 slot = (slot + 1) % NUM_TX_BUFF;
1395 if (last && !len)
1396 ctrl |= MAL_TX_CTRL_LAST;
1397 if (slot == NUM_TX_BUFF - 1)
1398 ctrl |= MAL_TX_CTRL_WRAP;
1400 dev->tx_skb[slot] = NULL;
1401 dev->tx_desc[slot].data_ptr = pd;
1402 dev->tx_desc[slot].data_len = (u16) chunk;
1403 dev->tx_desc[slot].ctrl = ctrl;
1404 ++dev->tx_cnt;
1406 if (!len)
1407 break;
1409 pd += chunk;
1411 return slot;
1414 /* Tx lock BH disabled (SG version for TAH equipped EMACs) */
1415 static int emac_start_xmit_sg(struct sk_buff *skb, struct net_device *ndev)
1417 struct emac_instance *dev = netdev_priv(ndev);
1418 int nr_frags = skb_shinfo(skb)->nr_frags;
1419 int len = skb->len, chunk;
1420 int slot, i;
1421 u16 ctrl;
1422 u32 pd;
1424 /* This is common "fast" path */
1425 if (likely(!nr_frags && len <= MAL_MAX_TX_SIZE))
1426 return emac_start_xmit(skb, ndev);
1428 len -= skb->data_len;
1430 /* Note, this is only an *estimation*, we can still run out of empty
1431 * slots because of the additional fragmentation into
1432 * MAL_MAX_TX_SIZE-sized chunks
1434 if (unlikely(dev->tx_cnt + nr_frags + mal_tx_chunks(len) > NUM_TX_BUFF))
1435 goto stop_queue;
1437 ctrl = EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP | MAL_TX_CTRL_READY |
1438 emac_tx_csum(dev, skb);
1439 slot = dev->tx_slot;
1441 /* skb data */
1442 dev->tx_skb[slot] = NULL;
1443 chunk = min(len, MAL_MAX_TX_SIZE);
1444 dev->tx_desc[slot].data_ptr = pd =
1445 dma_map_single(&dev->ofdev->dev, skb->data, len, DMA_TO_DEVICE);
1446 dev->tx_desc[slot].data_len = (u16) chunk;
1447 len -= chunk;
1448 if (unlikely(len))
1449 slot = emac_xmit_split(dev, slot, pd + chunk, len, !nr_frags,
1450 ctrl);
1451 /* skb fragments */
1452 for (i = 0; i < nr_frags; ++i) {
1453 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
1454 len = frag->size;
1456 if (unlikely(dev->tx_cnt + mal_tx_chunks(len) >= NUM_TX_BUFF))
1457 goto undo_frame;
1459 pd = dma_map_page(&dev->ofdev->dev, frag->page, frag->page_offset, len,
1460 DMA_TO_DEVICE);
1462 slot = emac_xmit_split(dev, slot, pd, len, i == nr_frags - 1,
1463 ctrl);
1466 DBG2(dev, "xmit_sg(%u) %d - %d" NL, skb->len, dev->tx_slot, slot);
1468 /* Attach skb to the last slot so we don't release it too early */
1469 dev->tx_skb[slot] = skb;
1471 /* Send the packet out */
1472 if (dev->tx_slot == NUM_TX_BUFF - 1)
1473 ctrl |= MAL_TX_CTRL_WRAP;
1474 wmb();
1475 dev->tx_desc[dev->tx_slot].ctrl = ctrl;
1476 dev->tx_slot = (slot + 1) % NUM_TX_BUFF;
1478 return emac_xmit_finish(dev, skb->len);
1480 undo_frame:
1481 /* Well, too bad. Our previous estimation was overly optimistic.
1482 * Undo everything.
1484 while (slot != dev->tx_slot) {
1485 dev->tx_desc[slot].ctrl = 0;
1486 --dev->tx_cnt;
1487 if (--slot < 0)
1488 slot = NUM_TX_BUFF - 1;
1490 ++dev->estats.tx_undo;
1492 stop_queue:
1493 netif_stop_queue(ndev);
1494 DBG2(dev, "stopped TX queue" NL);
1495 return NETDEV_TX_BUSY;
1498 /* Tx lock BHs */
1499 static void emac_parse_tx_error(struct emac_instance *dev, u16 ctrl)
1501 struct emac_error_stats *st = &dev->estats;
1503 DBG(dev, "BD TX error %04x" NL, ctrl);
1505 ++st->tx_bd_errors;
1506 if (ctrl & EMAC_TX_ST_BFCS)
1507 ++st->tx_bd_bad_fcs;
1508 if (ctrl & EMAC_TX_ST_LCS)
1509 ++st->tx_bd_carrier_loss;
1510 if (ctrl & EMAC_TX_ST_ED)
1511 ++st->tx_bd_excessive_deferral;
1512 if (ctrl & EMAC_TX_ST_EC)
1513 ++st->tx_bd_excessive_collisions;
1514 if (ctrl & EMAC_TX_ST_LC)
1515 ++st->tx_bd_late_collision;
1516 if (ctrl & EMAC_TX_ST_MC)
1517 ++st->tx_bd_multple_collisions;
1518 if (ctrl & EMAC_TX_ST_SC)
1519 ++st->tx_bd_single_collision;
1520 if (ctrl & EMAC_TX_ST_UR)
1521 ++st->tx_bd_underrun;
1522 if (ctrl & EMAC_TX_ST_SQE)
1523 ++st->tx_bd_sqe;
1526 static void emac_poll_tx(void *param)
1528 struct emac_instance *dev = param;
1529 u32 bad_mask;
1531 DBG2(dev, "poll_tx, %d %d" NL, dev->tx_cnt, dev->ack_slot);
1533 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
1534 bad_mask = EMAC_IS_BAD_TX_TAH;
1535 else
1536 bad_mask = EMAC_IS_BAD_TX;
1538 netif_tx_lock_bh(dev->ndev);
1539 if (dev->tx_cnt) {
1540 u16 ctrl;
1541 int slot = dev->ack_slot, n = 0;
1542 again:
1543 ctrl = dev->tx_desc[slot].ctrl;
1544 if (!(ctrl & MAL_TX_CTRL_READY)) {
1545 struct sk_buff *skb = dev->tx_skb[slot];
1546 ++n;
1548 if (skb) {
1549 dev_kfree_skb(skb);
1550 dev->tx_skb[slot] = NULL;
1552 slot = (slot + 1) % NUM_TX_BUFF;
1554 if (unlikely(ctrl & bad_mask))
1555 emac_parse_tx_error(dev, ctrl);
1557 if (--dev->tx_cnt)
1558 goto again;
1560 if (n) {
1561 dev->ack_slot = slot;
1562 if (netif_queue_stopped(dev->ndev) &&
1563 dev->tx_cnt < EMAC_TX_WAKEUP_THRESH)
1564 netif_wake_queue(dev->ndev);
1566 DBG2(dev, "tx %d pkts" NL, n);
1569 netif_tx_unlock_bh(dev->ndev);
1572 static inline void emac_recycle_rx_skb(struct emac_instance *dev, int slot,
1573 int len)
1575 struct sk_buff *skb = dev->rx_skb[slot];
1577 DBG2(dev, "recycle %d %d" NL, slot, len);
1579 if (len)
1580 dma_map_single(&dev->ofdev->dev, skb->data - 2,
1581 EMAC_DMA_ALIGN(len + 2), DMA_FROM_DEVICE);
1583 dev->rx_desc[slot].data_len = 0;
1584 wmb();
1585 dev->rx_desc[slot].ctrl = MAL_RX_CTRL_EMPTY |
1586 (slot == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
1589 static void emac_parse_rx_error(struct emac_instance *dev, u16 ctrl)
1591 struct emac_error_stats *st = &dev->estats;
1593 DBG(dev, "BD RX error %04x" NL, ctrl);
1595 ++st->rx_bd_errors;
1596 if (ctrl & EMAC_RX_ST_OE)
1597 ++st->rx_bd_overrun;
1598 if (ctrl & EMAC_RX_ST_BP)
1599 ++st->rx_bd_bad_packet;
1600 if (ctrl & EMAC_RX_ST_RP)
1601 ++st->rx_bd_runt_packet;
1602 if (ctrl & EMAC_RX_ST_SE)
1603 ++st->rx_bd_short_event;
1604 if (ctrl & EMAC_RX_ST_AE)
1605 ++st->rx_bd_alignment_error;
1606 if (ctrl & EMAC_RX_ST_BFCS)
1607 ++st->rx_bd_bad_fcs;
1608 if (ctrl & EMAC_RX_ST_PTL)
1609 ++st->rx_bd_packet_too_long;
1610 if (ctrl & EMAC_RX_ST_ORE)
1611 ++st->rx_bd_out_of_range;
1612 if (ctrl & EMAC_RX_ST_IRE)
1613 ++st->rx_bd_in_range;
1616 static inline void emac_rx_csum(struct emac_instance *dev,
1617 struct sk_buff *skb, u16 ctrl)
1619 #ifdef CONFIG_IBM_NEW_EMAC_TAH
1620 if (!ctrl && dev->tah_dev) {
1621 skb->ip_summed = CHECKSUM_UNNECESSARY;
1622 ++dev->stats.rx_packets_csum;
1624 #endif
1627 static inline int emac_rx_sg_append(struct emac_instance *dev, int slot)
1629 if (likely(dev->rx_sg_skb != NULL)) {
1630 int len = dev->rx_desc[slot].data_len;
1631 int tot_len = dev->rx_sg_skb->len + len;
1633 if (unlikely(tot_len + 2 > dev->rx_skb_size)) {
1634 ++dev->estats.rx_dropped_mtu;
1635 dev_kfree_skb(dev->rx_sg_skb);
1636 dev->rx_sg_skb = NULL;
1637 } else {
1638 cacheable_memcpy(skb_tail_pointer(dev->rx_sg_skb),
1639 dev->rx_skb[slot]->data, len);
1640 skb_put(dev->rx_sg_skb, len);
1641 emac_recycle_rx_skb(dev, slot, len);
1642 return 0;
1645 emac_recycle_rx_skb(dev, slot, 0);
1646 return -1;
1649 /* NAPI poll context */
1650 static int emac_poll_rx(void *param, int budget)
1652 struct emac_instance *dev = param;
1653 int slot = dev->rx_slot, received = 0;
1655 DBG2(dev, "poll_rx(%d)" NL, budget);
1657 again:
1658 while (budget > 0) {
1659 int len;
1660 struct sk_buff *skb;
1661 u16 ctrl = dev->rx_desc[slot].ctrl;
1663 if (ctrl & MAL_RX_CTRL_EMPTY)
1664 break;
1666 skb = dev->rx_skb[slot];
1667 mb();
1668 len = dev->rx_desc[slot].data_len;
1670 if (unlikely(!MAL_IS_SINGLE_RX(ctrl)))
1671 goto sg;
1673 ctrl &= EMAC_BAD_RX_MASK;
1674 if (unlikely(ctrl && ctrl != EMAC_RX_TAH_BAD_CSUM)) {
1675 emac_parse_rx_error(dev, ctrl);
1676 ++dev->estats.rx_dropped_error;
1677 emac_recycle_rx_skb(dev, slot, 0);
1678 len = 0;
1679 goto next;
1682 if (len < ETH_HLEN) {
1683 ++dev->estats.rx_dropped_stack;
1684 emac_recycle_rx_skb(dev, slot, len);
1685 goto next;
1688 if (len && len < EMAC_RX_COPY_THRESH) {
1689 struct sk_buff *copy_skb =
1690 alloc_skb(len + EMAC_RX_SKB_HEADROOM + 2, GFP_ATOMIC);
1691 if (unlikely(!copy_skb))
1692 goto oom;
1694 skb_reserve(copy_skb, EMAC_RX_SKB_HEADROOM + 2);
1695 cacheable_memcpy(copy_skb->data - 2, skb->data - 2,
1696 len + 2);
1697 emac_recycle_rx_skb(dev, slot, len);
1698 skb = copy_skb;
1699 } else if (unlikely(emac_alloc_rx_skb(dev, slot, GFP_ATOMIC)))
1700 goto oom;
1702 skb_put(skb, len);
1703 push_packet:
1704 skb->dev = dev->ndev;
1705 skb->protocol = eth_type_trans(skb, dev->ndev);
1706 emac_rx_csum(dev, skb, ctrl);
1708 if (unlikely(netif_receive_skb(skb) == NET_RX_DROP))
1709 ++dev->estats.rx_dropped_stack;
1710 next:
1711 ++dev->stats.rx_packets;
1712 skip:
1713 dev->stats.rx_bytes += len;
1714 slot = (slot + 1) % NUM_RX_BUFF;
1715 --budget;
1716 ++received;
1717 continue;
1719 if (ctrl & MAL_RX_CTRL_FIRST) {
1720 BUG_ON(dev->rx_sg_skb);
1721 if (unlikely(emac_alloc_rx_skb(dev, slot, GFP_ATOMIC))) {
1722 DBG(dev, "rx OOM %d" NL, slot);
1723 ++dev->estats.rx_dropped_oom;
1724 emac_recycle_rx_skb(dev, slot, 0);
1725 } else {
1726 dev->rx_sg_skb = skb;
1727 skb_put(skb, len);
1729 } else if (!emac_rx_sg_append(dev, slot) &&
1730 (ctrl & MAL_RX_CTRL_LAST)) {
1732 skb = dev->rx_sg_skb;
1733 dev->rx_sg_skb = NULL;
1735 ctrl &= EMAC_BAD_RX_MASK;
1736 if (unlikely(ctrl && ctrl != EMAC_RX_TAH_BAD_CSUM)) {
1737 emac_parse_rx_error(dev, ctrl);
1738 ++dev->estats.rx_dropped_error;
1739 dev_kfree_skb(skb);
1740 len = 0;
1741 } else
1742 goto push_packet;
1744 goto skip;
1745 oom:
1746 DBG(dev, "rx OOM %d" NL, slot);
1747 /* Drop the packet and recycle skb */
1748 ++dev->estats.rx_dropped_oom;
1749 emac_recycle_rx_skb(dev, slot, 0);
1750 goto next;
1753 if (received) {
1754 DBG2(dev, "rx %d BDs" NL, received);
1755 dev->rx_slot = slot;
1758 if (unlikely(budget && test_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags))) {
1759 mb();
1760 if (!(dev->rx_desc[slot].ctrl & MAL_RX_CTRL_EMPTY)) {
1761 DBG2(dev, "rx restart" NL);
1762 received = 0;
1763 goto again;
1766 if (dev->rx_sg_skb) {
1767 DBG2(dev, "dropping partial rx packet" NL);
1768 ++dev->estats.rx_dropped_error;
1769 dev_kfree_skb(dev->rx_sg_skb);
1770 dev->rx_sg_skb = NULL;
1773 clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1774 mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1775 emac_rx_enable(dev);
1776 dev->rx_slot = 0;
1778 return received;
1781 /* NAPI poll context */
1782 static int emac_peek_rx(void *param)
1784 struct emac_instance *dev = param;
1786 return !(dev->rx_desc[dev->rx_slot].ctrl & MAL_RX_CTRL_EMPTY);
1789 /* NAPI poll context */
1790 static int emac_peek_rx_sg(void *param)
1792 struct emac_instance *dev = param;
1794 int slot = dev->rx_slot;
1795 while (1) {
1796 u16 ctrl = dev->rx_desc[slot].ctrl;
1797 if (ctrl & MAL_RX_CTRL_EMPTY)
1798 return 0;
1799 else if (ctrl & MAL_RX_CTRL_LAST)
1800 return 1;
1802 slot = (slot + 1) % NUM_RX_BUFF;
1804 /* I'm just being paranoid here :) */
1805 if (unlikely(slot == dev->rx_slot))
1806 return 0;
1810 /* Hard IRQ */
1811 static void emac_rxde(void *param)
1813 struct emac_instance *dev = param;
1815 ++dev->estats.rx_stopped;
1816 emac_rx_disable_async(dev);
1819 /* Hard IRQ */
1820 static irqreturn_t emac_irq(int irq, void *dev_instance)
1822 struct emac_instance *dev = dev_instance;
1823 struct emac_regs __iomem *p = dev->emacp;
1824 struct emac_error_stats *st = &dev->estats;
1825 u32 isr;
1827 spin_lock(&dev->lock);
1829 isr = in_be32(&p->isr);
1830 out_be32(&p->isr, isr);
1832 DBG(dev, "isr = %08x" NL, isr);
1834 if (isr & EMAC4_ISR_TXPE)
1835 ++st->tx_parity;
1836 if (isr & EMAC4_ISR_RXPE)
1837 ++st->rx_parity;
1838 if (isr & EMAC4_ISR_TXUE)
1839 ++st->tx_underrun;
1840 if (isr & EMAC4_ISR_RXOE)
1841 ++st->rx_fifo_overrun;
1842 if (isr & EMAC_ISR_OVR)
1843 ++st->rx_overrun;
1844 if (isr & EMAC_ISR_BP)
1845 ++st->rx_bad_packet;
1846 if (isr & EMAC_ISR_RP)
1847 ++st->rx_runt_packet;
1848 if (isr & EMAC_ISR_SE)
1849 ++st->rx_short_event;
1850 if (isr & EMAC_ISR_ALE)
1851 ++st->rx_alignment_error;
1852 if (isr & EMAC_ISR_BFCS)
1853 ++st->rx_bad_fcs;
1854 if (isr & EMAC_ISR_PTLE)
1855 ++st->rx_packet_too_long;
1856 if (isr & EMAC_ISR_ORE)
1857 ++st->rx_out_of_range;
1858 if (isr & EMAC_ISR_IRE)
1859 ++st->rx_in_range;
1860 if (isr & EMAC_ISR_SQE)
1861 ++st->tx_sqe;
1862 if (isr & EMAC_ISR_TE)
1863 ++st->tx_errors;
1865 spin_unlock(&dev->lock);
1867 return IRQ_HANDLED;
1870 static struct net_device_stats *emac_stats(struct net_device *ndev)
1872 struct emac_instance *dev = netdev_priv(ndev);
1873 struct emac_stats *st = &dev->stats;
1874 struct emac_error_stats *est = &dev->estats;
1875 struct net_device_stats *nst = &dev->nstats;
1876 unsigned long flags;
1878 DBG2(dev, "stats" NL);
1880 /* Compute "legacy" statistics */
1881 spin_lock_irqsave(&dev->lock, flags);
1882 nst->rx_packets = (unsigned long)st->rx_packets;
1883 nst->rx_bytes = (unsigned long)st->rx_bytes;
1884 nst->tx_packets = (unsigned long)st->tx_packets;
1885 nst->tx_bytes = (unsigned long)st->tx_bytes;
1886 nst->rx_dropped = (unsigned long)(est->rx_dropped_oom +
1887 est->rx_dropped_error +
1888 est->rx_dropped_resize +
1889 est->rx_dropped_mtu);
1890 nst->tx_dropped = (unsigned long)est->tx_dropped;
1892 nst->rx_errors = (unsigned long)est->rx_bd_errors;
1893 nst->rx_fifo_errors = (unsigned long)(est->rx_bd_overrun +
1894 est->rx_fifo_overrun +
1895 est->rx_overrun);
1896 nst->rx_frame_errors = (unsigned long)(est->rx_bd_alignment_error +
1897 est->rx_alignment_error);
1898 nst->rx_crc_errors = (unsigned long)(est->rx_bd_bad_fcs +
1899 est->rx_bad_fcs);
1900 nst->rx_length_errors = (unsigned long)(est->rx_bd_runt_packet +
1901 est->rx_bd_short_event +
1902 est->rx_bd_packet_too_long +
1903 est->rx_bd_out_of_range +
1904 est->rx_bd_in_range +
1905 est->rx_runt_packet +
1906 est->rx_short_event +
1907 est->rx_packet_too_long +
1908 est->rx_out_of_range +
1909 est->rx_in_range);
1911 nst->tx_errors = (unsigned long)(est->tx_bd_errors + est->tx_errors);
1912 nst->tx_fifo_errors = (unsigned long)(est->tx_bd_underrun +
1913 est->tx_underrun);
1914 nst->tx_carrier_errors = (unsigned long)est->tx_bd_carrier_loss;
1915 nst->collisions = (unsigned long)(est->tx_bd_excessive_deferral +
1916 est->tx_bd_excessive_collisions +
1917 est->tx_bd_late_collision +
1918 est->tx_bd_multple_collisions);
1919 spin_unlock_irqrestore(&dev->lock, flags);
1920 return nst;
1923 static struct mal_commac_ops emac_commac_ops = {
1924 .poll_tx = &emac_poll_tx,
1925 .poll_rx = &emac_poll_rx,
1926 .peek_rx = &emac_peek_rx,
1927 .rxde = &emac_rxde,
1930 static struct mal_commac_ops emac_commac_sg_ops = {
1931 .poll_tx = &emac_poll_tx,
1932 .poll_rx = &emac_poll_rx,
1933 .peek_rx = &emac_peek_rx_sg,
1934 .rxde = &emac_rxde,
1937 /* Ethtool support */
1938 static int emac_ethtool_get_settings(struct net_device *ndev,
1939 struct ethtool_cmd *cmd)
1941 struct emac_instance *dev = netdev_priv(ndev);
1943 cmd->supported = dev->phy.features;
1944 cmd->port = PORT_MII;
1945 cmd->phy_address = dev->phy.address;
1946 cmd->transceiver =
1947 dev->phy.address >= 0 ? XCVR_EXTERNAL : XCVR_INTERNAL;
1949 mutex_lock(&dev->link_lock);
1950 cmd->advertising = dev->phy.advertising;
1951 cmd->autoneg = dev->phy.autoneg;
1952 cmd->speed = dev->phy.speed;
1953 cmd->duplex = dev->phy.duplex;
1954 mutex_unlock(&dev->link_lock);
1956 return 0;
1959 static int emac_ethtool_set_settings(struct net_device *ndev,
1960 struct ethtool_cmd *cmd)
1962 struct emac_instance *dev = netdev_priv(ndev);
1963 u32 f = dev->phy.features;
1965 DBG(dev, "set_settings(%d, %d, %d, 0x%08x)" NL,
1966 cmd->autoneg, cmd->speed, cmd->duplex, cmd->advertising);
1968 /* Basic sanity checks */
1969 if (dev->phy.address < 0)
1970 return -EOPNOTSUPP;
1971 if (cmd->autoneg != AUTONEG_ENABLE && cmd->autoneg != AUTONEG_DISABLE)
1972 return -EINVAL;
1973 if (cmd->autoneg == AUTONEG_ENABLE && cmd->advertising == 0)
1974 return -EINVAL;
1975 if (cmd->duplex != DUPLEX_HALF && cmd->duplex != DUPLEX_FULL)
1976 return -EINVAL;
1978 if (cmd->autoneg == AUTONEG_DISABLE) {
1979 switch (cmd->speed) {
1980 case SPEED_10:
1981 if (cmd->duplex == DUPLEX_HALF &&
1982 !(f & SUPPORTED_10baseT_Half))
1983 return -EINVAL;
1984 if (cmd->duplex == DUPLEX_FULL &&
1985 !(f & SUPPORTED_10baseT_Full))
1986 return -EINVAL;
1987 break;
1988 case SPEED_100:
1989 if (cmd->duplex == DUPLEX_HALF &&
1990 !(f & SUPPORTED_100baseT_Half))
1991 return -EINVAL;
1992 if (cmd->duplex == DUPLEX_FULL &&
1993 !(f & SUPPORTED_100baseT_Full))
1994 return -EINVAL;
1995 break;
1996 case SPEED_1000:
1997 if (cmd->duplex == DUPLEX_HALF &&
1998 !(f & SUPPORTED_1000baseT_Half))
1999 return -EINVAL;
2000 if (cmd->duplex == DUPLEX_FULL &&
2001 !(f & SUPPORTED_1000baseT_Full))
2002 return -EINVAL;
2003 break;
2004 default:
2005 return -EINVAL;
2008 mutex_lock(&dev->link_lock);
2009 dev->phy.def->ops->setup_forced(&dev->phy, cmd->speed,
2010 cmd->duplex);
2011 mutex_unlock(&dev->link_lock);
2013 } else {
2014 if (!(f & SUPPORTED_Autoneg))
2015 return -EINVAL;
2017 mutex_lock(&dev->link_lock);
2018 dev->phy.def->ops->setup_aneg(&dev->phy,
2019 (cmd->advertising & f) |
2020 (dev->phy.advertising &
2021 (ADVERTISED_Pause |
2022 ADVERTISED_Asym_Pause)));
2023 mutex_unlock(&dev->link_lock);
2025 emac_force_link_update(dev);
2027 return 0;
2030 static void emac_ethtool_get_ringparam(struct net_device *ndev,
2031 struct ethtool_ringparam *rp)
2033 rp->rx_max_pending = rp->rx_pending = NUM_RX_BUFF;
2034 rp->tx_max_pending = rp->tx_pending = NUM_TX_BUFF;
2037 static void emac_ethtool_get_pauseparam(struct net_device *ndev,
2038 struct ethtool_pauseparam *pp)
2040 struct emac_instance *dev = netdev_priv(ndev);
2042 mutex_lock(&dev->link_lock);
2043 if ((dev->phy.features & SUPPORTED_Autoneg) &&
2044 (dev->phy.advertising & (ADVERTISED_Pause | ADVERTISED_Asym_Pause)))
2045 pp->autoneg = 1;
2047 if (dev->phy.duplex == DUPLEX_FULL) {
2048 if (dev->phy.pause)
2049 pp->rx_pause = pp->tx_pause = 1;
2050 else if (dev->phy.asym_pause)
2051 pp->tx_pause = 1;
2053 mutex_unlock(&dev->link_lock);
2056 static u32 emac_ethtool_get_rx_csum(struct net_device *ndev)
2058 struct emac_instance *dev = netdev_priv(ndev);
2060 return dev->tah_dev != NULL;
2063 static int emac_get_regs_len(struct emac_instance *dev)
2065 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
2066 return sizeof(struct emac_ethtool_regs_subhdr) +
2067 EMAC4_ETHTOOL_REGS_SIZE(dev);
2068 else
2069 return sizeof(struct emac_ethtool_regs_subhdr) +
2070 EMAC_ETHTOOL_REGS_SIZE(dev);
2073 static int emac_ethtool_get_regs_len(struct net_device *ndev)
2075 struct emac_instance *dev = netdev_priv(ndev);
2076 int size;
2078 size = sizeof(struct emac_ethtool_regs_hdr) +
2079 emac_get_regs_len(dev) + mal_get_regs_len(dev->mal);
2080 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
2081 size += zmii_get_regs_len(dev->zmii_dev);
2082 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
2083 size += rgmii_get_regs_len(dev->rgmii_dev);
2084 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
2085 size += tah_get_regs_len(dev->tah_dev);
2087 return size;
2090 static void *emac_dump_regs(struct emac_instance *dev, void *buf)
2092 struct emac_ethtool_regs_subhdr *hdr = buf;
2094 hdr->index = dev->cell_index;
2095 if (emac_has_feature(dev, EMAC_FTR_EMAC4)) {
2096 hdr->version = EMAC4_ETHTOOL_REGS_VER;
2097 memcpy_fromio(hdr + 1, dev->emacp, EMAC4_ETHTOOL_REGS_SIZE(dev));
2098 return ((void *)(hdr + 1) + EMAC4_ETHTOOL_REGS_SIZE(dev));
2099 } else {
2100 hdr->version = EMAC_ETHTOOL_REGS_VER;
2101 memcpy_fromio(hdr + 1, dev->emacp, EMAC_ETHTOOL_REGS_SIZE(dev));
2102 return ((void *)(hdr + 1) + EMAC_ETHTOOL_REGS_SIZE(dev));
2106 static void emac_ethtool_get_regs(struct net_device *ndev,
2107 struct ethtool_regs *regs, void *buf)
2109 struct emac_instance *dev = netdev_priv(ndev);
2110 struct emac_ethtool_regs_hdr *hdr = buf;
2112 hdr->components = 0;
2113 buf = hdr + 1;
2115 buf = mal_dump_regs(dev->mal, buf);
2116 buf = emac_dump_regs(dev, buf);
2117 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII)) {
2118 hdr->components |= EMAC_ETHTOOL_REGS_ZMII;
2119 buf = zmii_dump_regs(dev->zmii_dev, buf);
2121 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII)) {
2122 hdr->components |= EMAC_ETHTOOL_REGS_RGMII;
2123 buf = rgmii_dump_regs(dev->rgmii_dev, buf);
2125 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH)) {
2126 hdr->components |= EMAC_ETHTOOL_REGS_TAH;
2127 buf = tah_dump_regs(dev->tah_dev, buf);
2131 static int emac_ethtool_nway_reset(struct net_device *ndev)
2133 struct emac_instance *dev = netdev_priv(ndev);
2134 int res = 0;
2136 DBG(dev, "nway_reset" NL);
2138 if (dev->phy.address < 0)
2139 return -EOPNOTSUPP;
2141 mutex_lock(&dev->link_lock);
2142 if (!dev->phy.autoneg) {
2143 res = -EINVAL;
2144 goto out;
2147 dev->phy.def->ops->setup_aneg(&dev->phy, dev->phy.advertising);
2148 out:
2149 mutex_unlock(&dev->link_lock);
2150 emac_force_link_update(dev);
2151 return res;
2154 static int emac_ethtool_get_sset_count(struct net_device *ndev, int stringset)
2156 if (stringset == ETH_SS_STATS)
2157 return EMAC_ETHTOOL_STATS_COUNT;
2158 else
2159 return -EINVAL;
2162 static void emac_ethtool_get_strings(struct net_device *ndev, u32 stringset,
2163 u8 * buf)
2165 if (stringset == ETH_SS_STATS)
2166 memcpy(buf, &emac_stats_keys, sizeof(emac_stats_keys));
2169 static void emac_ethtool_get_ethtool_stats(struct net_device *ndev,
2170 struct ethtool_stats *estats,
2171 u64 * tmp_stats)
2173 struct emac_instance *dev = netdev_priv(ndev);
2175 memcpy(tmp_stats, &dev->stats, sizeof(dev->stats));
2176 tmp_stats += sizeof(dev->stats) / sizeof(u64);
2177 memcpy(tmp_stats, &dev->estats, sizeof(dev->estats));
2180 static void emac_ethtool_get_drvinfo(struct net_device *ndev,
2181 struct ethtool_drvinfo *info)
2183 struct emac_instance *dev = netdev_priv(ndev);
2185 strcpy(info->driver, "ibm_emac");
2186 strcpy(info->version, DRV_VERSION);
2187 info->fw_version[0] = '\0';
2188 sprintf(info->bus_info, "PPC 4xx EMAC-%d %s",
2189 dev->cell_index, dev->ofdev->dev.of_node->full_name);
2190 info->regdump_len = emac_ethtool_get_regs_len(ndev);
2193 static const struct ethtool_ops emac_ethtool_ops = {
2194 .get_settings = emac_ethtool_get_settings,
2195 .set_settings = emac_ethtool_set_settings,
2196 .get_drvinfo = emac_ethtool_get_drvinfo,
2198 .get_regs_len = emac_ethtool_get_regs_len,
2199 .get_regs = emac_ethtool_get_regs,
2201 .nway_reset = emac_ethtool_nway_reset,
2203 .get_ringparam = emac_ethtool_get_ringparam,
2204 .get_pauseparam = emac_ethtool_get_pauseparam,
2206 .get_rx_csum = emac_ethtool_get_rx_csum,
2208 .get_strings = emac_ethtool_get_strings,
2209 .get_sset_count = emac_ethtool_get_sset_count,
2210 .get_ethtool_stats = emac_ethtool_get_ethtool_stats,
2212 .get_link = ethtool_op_get_link,
2213 .get_tx_csum = ethtool_op_get_tx_csum,
2214 .get_sg = ethtool_op_get_sg,
2217 static int emac_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
2219 struct emac_instance *dev = netdev_priv(ndev);
2220 struct mii_ioctl_data *data = if_mii(rq);
2222 DBG(dev, "ioctl %08x" NL, cmd);
2224 if (dev->phy.address < 0)
2225 return -EOPNOTSUPP;
2227 switch (cmd) {
2228 case SIOCGMIIPHY:
2229 data->phy_id = dev->phy.address;
2230 /* Fall through */
2231 case SIOCGMIIREG:
2232 data->val_out = emac_mdio_read(ndev, dev->phy.address,
2233 data->reg_num);
2234 return 0;
2236 case SIOCSMIIREG:
2237 emac_mdio_write(ndev, dev->phy.address, data->reg_num,
2238 data->val_in);
2239 return 0;
2240 default:
2241 return -EOPNOTSUPP;
2245 struct emac_depentry {
2246 u32 phandle;
2247 struct device_node *node;
2248 struct of_device *ofdev;
2249 void *drvdata;
2252 #define EMAC_DEP_MAL_IDX 0
2253 #define EMAC_DEP_ZMII_IDX 1
2254 #define EMAC_DEP_RGMII_IDX 2
2255 #define EMAC_DEP_TAH_IDX 3
2256 #define EMAC_DEP_MDIO_IDX 4
2257 #define EMAC_DEP_PREV_IDX 5
2258 #define EMAC_DEP_COUNT 6
2260 static int __devinit emac_check_deps(struct emac_instance *dev,
2261 struct emac_depentry *deps)
2263 int i, there = 0;
2264 struct device_node *np;
2266 for (i = 0; i < EMAC_DEP_COUNT; i++) {
2267 /* no dependency on that item, allright */
2268 if (deps[i].phandle == 0) {
2269 there++;
2270 continue;
2272 /* special case for blist as the dependency might go away */
2273 if (i == EMAC_DEP_PREV_IDX) {
2274 np = *(dev->blist - 1);
2275 if (np == NULL) {
2276 deps[i].phandle = 0;
2277 there++;
2278 continue;
2280 if (deps[i].node == NULL)
2281 deps[i].node = of_node_get(np);
2283 if (deps[i].node == NULL)
2284 deps[i].node = of_find_node_by_phandle(deps[i].phandle);
2285 if (deps[i].node == NULL)
2286 continue;
2287 if (deps[i].ofdev == NULL)
2288 deps[i].ofdev = of_find_device_by_node(deps[i].node);
2289 if (deps[i].ofdev == NULL)
2290 continue;
2291 if (deps[i].drvdata == NULL)
2292 deps[i].drvdata = dev_get_drvdata(&deps[i].ofdev->dev);
2293 if (deps[i].drvdata != NULL)
2294 there++;
2296 return (there == EMAC_DEP_COUNT);
2299 static void emac_put_deps(struct emac_instance *dev)
2301 if (dev->mal_dev)
2302 of_dev_put(dev->mal_dev);
2303 if (dev->zmii_dev)
2304 of_dev_put(dev->zmii_dev);
2305 if (dev->rgmii_dev)
2306 of_dev_put(dev->rgmii_dev);
2307 if (dev->mdio_dev)
2308 of_dev_put(dev->mdio_dev);
2309 if (dev->tah_dev)
2310 of_dev_put(dev->tah_dev);
2313 static int __devinit emac_of_bus_notify(struct notifier_block *nb,
2314 unsigned long action, void *data)
2316 /* We are only intereted in device addition */
2317 if (action == BUS_NOTIFY_BOUND_DRIVER)
2318 wake_up_all(&emac_probe_wait);
2319 return 0;
2322 static struct notifier_block emac_of_bus_notifier __devinitdata = {
2323 .notifier_call = emac_of_bus_notify
2326 static int __devinit emac_wait_deps(struct emac_instance *dev)
2328 struct emac_depentry deps[EMAC_DEP_COUNT];
2329 int i, err;
2331 memset(&deps, 0, sizeof(deps));
2333 deps[EMAC_DEP_MAL_IDX].phandle = dev->mal_ph;
2334 deps[EMAC_DEP_ZMII_IDX].phandle = dev->zmii_ph;
2335 deps[EMAC_DEP_RGMII_IDX].phandle = dev->rgmii_ph;
2336 if (dev->tah_ph)
2337 deps[EMAC_DEP_TAH_IDX].phandle = dev->tah_ph;
2338 if (dev->mdio_ph)
2339 deps[EMAC_DEP_MDIO_IDX].phandle = dev->mdio_ph;
2340 if (dev->blist && dev->blist > emac_boot_list)
2341 deps[EMAC_DEP_PREV_IDX].phandle = 0xffffffffu;
2342 bus_register_notifier(&of_platform_bus_type, &emac_of_bus_notifier);
2343 wait_event_timeout(emac_probe_wait,
2344 emac_check_deps(dev, deps),
2345 EMAC_PROBE_DEP_TIMEOUT);
2346 bus_unregister_notifier(&of_platform_bus_type, &emac_of_bus_notifier);
2347 err = emac_check_deps(dev, deps) ? 0 : -ENODEV;
2348 for (i = 0; i < EMAC_DEP_COUNT; i++) {
2349 if (deps[i].node)
2350 of_node_put(deps[i].node);
2351 if (err && deps[i].ofdev)
2352 of_dev_put(deps[i].ofdev);
2354 if (err == 0) {
2355 dev->mal_dev = deps[EMAC_DEP_MAL_IDX].ofdev;
2356 dev->zmii_dev = deps[EMAC_DEP_ZMII_IDX].ofdev;
2357 dev->rgmii_dev = deps[EMAC_DEP_RGMII_IDX].ofdev;
2358 dev->tah_dev = deps[EMAC_DEP_TAH_IDX].ofdev;
2359 dev->mdio_dev = deps[EMAC_DEP_MDIO_IDX].ofdev;
2361 if (deps[EMAC_DEP_PREV_IDX].ofdev)
2362 of_dev_put(deps[EMAC_DEP_PREV_IDX].ofdev);
2363 return err;
2366 static int __devinit emac_read_uint_prop(struct device_node *np, const char *name,
2367 u32 *val, int fatal)
2369 int len;
2370 const u32 *prop = of_get_property(np, name, &len);
2371 if (prop == NULL || len < sizeof(u32)) {
2372 if (fatal)
2373 printk(KERN_ERR "%s: missing %s property\n",
2374 np->full_name, name);
2375 return -ENODEV;
2377 *val = *prop;
2378 return 0;
2381 static int __devinit emac_init_phy(struct emac_instance *dev)
2383 struct device_node *np = dev->ofdev->dev.of_node;
2384 struct net_device *ndev = dev->ndev;
2385 u32 phy_map, adv;
2386 int i;
2388 dev->phy.dev = ndev;
2389 dev->phy.mode = dev->phy_mode;
2391 /* PHY-less configuration.
2392 * XXX I probably should move these settings to the dev tree
2394 if (dev->phy_address == 0xffffffff && dev->phy_map == 0xffffffff) {
2395 emac_reset(dev);
2397 /* PHY-less configuration.
2398 * XXX I probably should move these settings to the dev tree
2400 dev->phy.address = -1;
2401 dev->phy.features = SUPPORTED_MII;
2402 if (emac_phy_supports_gige(dev->phy_mode))
2403 dev->phy.features |= SUPPORTED_1000baseT_Full;
2404 else
2405 dev->phy.features |= SUPPORTED_100baseT_Full;
2406 dev->phy.pause = 1;
2408 return 0;
2411 mutex_lock(&emac_phy_map_lock);
2412 phy_map = dev->phy_map | busy_phy_map;
2414 DBG(dev, "PHY maps %08x %08x" NL, dev->phy_map, busy_phy_map);
2416 dev->phy.mdio_read = emac_mdio_read;
2417 dev->phy.mdio_write = emac_mdio_write;
2419 /* Enable internal clock source */
2420 #ifdef CONFIG_PPC_DCR_NATIVE
2421 if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2422 dcri_clrset(SDR0, SDR0_MFR, 0, SDR0_MFR_ECS);
2423 #endif
2424 /* PHY clock workaround */
2425 emac_rx_clk_tx(dev);
2427 /* Enable internal clock source on 440GX*/
2428 #ifdef CONFIG_PPC_DCR_NATIVE
2429 if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2430 dcri_clrset(SDR0, SDR0_MFR, 0, SDR0_MFR_ECS);
2431 #endif
2432 /* Configure EMAC with defaults so we can at least use MDIO
2433 * This is needed mostly for 440GX
2435 if (emac_phy_gpcs(dev->phy.mode)) {
2436 /* XXX
2437 * Make GPCS PHY address equal to EMAC index.
2438 * We probably should take into account busy_phy_map
2439 * and/or phy_map here.
2441 * Note that the busy_phy_map is currently global
2442 * while it should probably be per-ASIC...
2444 dev->phy.gpcs_address = dev->gpcs_address;
2445 if (dev->phy.gpcs_address == 0xffffffff)
2446 dev->phy.address = dev->cell_index;
2449 emac_configure(dev);
2451 if (dev->phy_address != 0xffffffff)
2452 phy_map = ~(1 << dev->phy_address);
2454 for (i = 0; i < 0x20; phy_map >>= 1, ++i)
2455 if (!(phy_map & 1)) {
2456 int r;
2457 busy_phy_map |= 1 << i;
2459 /* Quick check if there is a PHY at the address */
2460 r = emac_mdio_read(dev->ndev, i, MII_BMCR);
2461 if (r == 0xffff || r < 0)
2462 continue;
2463 if (!emac_mii_phy_probe(&dev->phy, i))
2464 break;
2467 /* Enable external clock source */
2468 #ifdef CONFIG_PPC_DCR_NATIVE
2469 if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2470 dcri_clrset(SDR0, SDR0_MFR, SDR0_MFR_ECS, 0);
2471 #endif
2472 mutex_unlock(&emac_phy_map_lock);
2473 if (i == 0x20) {
2474 printk(KERN_WARNING "%s: can't find PHY!\n", np->full_name);
2475 return -ENXIO;
2478 /* Init PHY */
2479 if (dev->phy.def->ops->init)
2480 dev->phy.def->ops->init(&dev->phy);
2482 /* Disable any PHY features not supported by the platform */
2483 dev->phy.def->features &= ~dev->phy_feat_exc;
2485 /* Setup initial link parameters */
2486 if (dev->phy.features & SUPPORTED_Autoneg) {
2487 adv = dev->phy.features;
2488 if (!emac_has_feature(dev, EMAC_FTR_NO_FLOW_CONTROL_40x))
2489 adv |= ADVERTISED_Pause | ADVERTISED_Asym_Pause;
2490 /* Restart autonegotiation */
2491 dev->phy.def->ops->setup_aneg(&dev->phy, adv);
2492 } else {
2493 u32 f = dev->phy.def->features;
2494 int speed = SPEED_10, fd = DUPLEX_HALF;
2496 /* Select highest supported speed/duplex */
2497 if (f & SUPPORTED_1000baseT_Full) {
2498 speed = SPEED_1000;
2499 fd = DUPLEX_FULL;
2500 } else if (f & SUPPORTED_1000baseT_Half)
2501 speed = SPEED_1000;
2502 else if (f & SUPPORTED_100baseT_Full) {
2503 speed = SPEED_100;
2504 fd = DUPLEX_FULL;
2505 } else if (f & SUPPORTED_100baseT_Half)
2506 speed = SPEED_100;
2507 else if (f & SUPPORTED_10baseT_Full)
2508 fd = DUPLEX_FULL;
2510 /* Force link parameters */
2511 dev->phy.def->ops->setup_forced(&dev->phy, speed, fd);
2513 return 0;
2516 static int __devinit emac_init_config(struct emac_instance *dev)
2518 struct device_node *np = dev->ofdev->dev.of_node;
2519 const void *p;
2520 unsigned int plen;
2521 const char *pm, *phy_modes[] = {
2522 [PHY_MODE_NA] = "",
2523 [PHY_MODE_MII] = "mii",
2524 [PHY_MODE_RMII] = "rmii",
2525 [PHY_MODE_SMII] = "smii",
2526 [PHY_MODE_RGMII] = "rgmii",
2527 [PHY_MODE_TBI] = "tbi",
2528 [PHY_MODE_GMII] = "gmii",
2529 [PHY_MODE_RTBI] = "rtbi",
2530 [PHY_MODE_SGMII] = "sgmii",
2533 /* Read config from device-tree */
2534 if (emac_read_uint_prop(np, "mal-device", &dev->mal_ph, 1))
2535 return -ENXIO;
2536 if (emac_read_uint_prop(np, "mal-tx-channel", &dev->mal_tx_chan, 1))
2537 return -ENXIO;
2538 if (emac_read_uint_prop(np, "mal-rx-channel", &dev->mal_rx_chan, 1))
2539 return -ENXIO;
2540 if (emac_read_uint_prop(np, "cell-index", &dev->cell_index, 1))
2541 return -ENXIO;
2542 if (emac_read_uint_prop(np, "max-frame-size", &dev->max_mtu, 0))
2543 dev->max_mtu = 1500;
2544 if (emac_read_uint_prop(np, "rx-fifo-size", &dev->rx_fifo_size, 0))
2545 dev->rx_fifo_size = 2048;
2546 if (emac_read_uint_prop(np, "tx-fifo-size", &dev->tx_fifo_size, 0))
2547 dev->tx_fifo_size = 2048;
2548 if (emac_read_uint_prop(np, "rx-fifo-size-gige", &dev->rx_fifo_size_gige, 0))
2549 dev->rx_fifo_size_gige = dev->rx_fifo_size;
2550 if (emac_read_uint_prop(np, "tx-fifo-size-gige", &dev->tx_fifo_size_gige, 0))
2551 dev->tx_fifo_size_gige = dev->tx_fifo_size;
2552 if (emac_read_uint_prop(np, "phy-address", &dev->phy_address, 0))
2553 dev->phy_address = 0xffffffff;
2554 if (emac_read_uint_prop(np, "phy-map", &dev->phy_map, 0))
2555 dev->phy_map = 0xffffffff;
2556 if (emac_read_uint_prop(np, "gpcs-address", &dev->gpcs_address, 0))
2557 dev->gpcs_address = 0xffffffff;
2558 if (emac_read_uint_prop(np->parent, "clock-frequency", &dev->opb_bus_freq, 1))
2559 return -ENXIO;
2560 if (emac_read_uint_prop(np, "tah-device", &dev->tah_ph, 0))
2561 dev->tah_ph = 0;
2562 if (emac_read_uint_prop(np, "tah-channel", &dev->tah_port, 0))
2563 dev->tah_port = 0;
2564 if (emac_read_uint_prop(np, "mdio-device", &dev->mdio_ph, 0))
2565 dev->mdio_ph = 0;
2566 if (emac_read_uint_prop(np, "zmii-device", &dev->zmii_ph, 0))
2567 dev->zmii_ph = 0;
2568 if (emac_read_uint_prop(np, "zmii-channel", &dev->zmii_port, 0))
2569 dev->zmii_port = 0xffffffff;
2570 if (emac_read_uint_prop(np, "rgmii-device", &dev->rgmii_ph, 0))
2571 dev->rgmii_ph = 0;
2572 if (emac_read_uint_prop(np, "rgmii-channel", &dev->rgmii_port, 0))
2573 dev->rgmii_port = 0xffffffff;
2574 if (emac_read_uint_prop(np, "fifo-entry-size", &dev->fifo_entry_size, 0))
2575 dev->fifo_entry_size = 16;
2576 if (emac_read_uint_prop(np, "mal-burst-size", &dev->mal_burst_size, 0))
2577 dev->mal_burst_size = 256;
2579 /* PHY mode needs some decoding */
2580 dev->phy_mode = PHY_MODE_NA;
2581 pm = of_get_property(np, "phy-mode", &plen);
2582 if (pm != NULL) {
2583 int i;
2584 for (i = 0; i < ARRAY_SIZE(phy_modes); i++)
2585 if (!strcasecmp(pm, phy_modes[i])) {
2586 dev->phy_mode = i;
2587 break;
2591 /* Backward compat with non-final DT */
2592 if (dev->phy_mode == PHY_MODE_NA && pm != NULL && plen == 4) {
2593 u32 nmode = *(const u32 *)pm;
2594 if (nmode > PHY_MODE_NA && nmode <= PHY_MODE_SGMII)
2595 dev->phy_mode = nmode;
2598 /* Check EMAC version */
2599 if (of_device_is_compatible(np, "ibm,emac4sync")) {
2600 dev->features |= (EMAC_FTR_EMAC4 | EMAC_FTR_EMAC4SYNC);
2601 if (of_device_is_compatible(np, "ibm,emac-460ex") ||
2602 of_device_is_compatible(np, "ibm,emac-460gt"))
2603 dev->features |= EMAC_FTR_460EX_PHY_CLK_FIX;
2604 if (of_device_is_compatible(np, "ibm,emac-405ex") ||
2605 of_device_is_compatible(np, "ibm,emac-405exr"))
2606 dev->features |= EMAC_FTR_440EP_PHY_CLK_FIX;
2607 } else if (of_device_is_compatible(np, "ibm,emac4")) {
2608 dev->features |= EMAC_FTR_EMAC4;
2609 if (of_device_is_compatible(np, "ibm,emac-440gx"))
2610 dev->features |= EMAC_FTR_440GX_PHY_CLK_FIX;
2611 } else {
2612 if (of_device_is_compatible(np, "ibm,emac-440ep") ||
2613 of_device_is_compatible(np, "ibm,emac-440gr"))
2614 dev->features |= EMAC_FTR_440EP_PHY_CLK_FIX;
2615 if (of_device_is_compatible(np, "ibm,emac-405ez")) {
2616 #ifdef CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL
2617 dev->features |= EMAC_FTR_NO_FLOW_CONTROL_40x;
2618 #else
2619 printk(KERN_ERR "%s: Flow control not disabled!\n",
2620 np->full_name);
2621 return -ENXIO;
2622 #endif
2627 /* Fixup some feature bits based on the device tree */
2628 if (of_get_property(np, "has-inverted-stacr-oc", NULL))
2629 dev->features |= EMAC_FTR_STACR_OC_INVERT;
2630 if (of_get_property(np, "has-new-stacr-staopc", NULL))
2631 dev->features |= EMAC_FTR_HAS_NEW_STACR;
2633 /* CAB lacks the appropriate properties */
2634 if (of_device_is_compatible(np, "ibm,emac-axon"))
2635 dev->features |= EMAC_FTR_HAS_NEW_STACR |
2636 EMAC_FTR_STACR_OC_INVERT;
2638 /* Enable TAH/ZMII/RGMII features as found */
2639 if (dev->tah_ph != 0) {
2640 #ifdef CONFIG_IBM_NEW_EMAC_TAH
2641 dev->features |= EMAC_FTR_HAS_TAH;
2642 #else
2643 printk(KERN_ERR "%s: TAH support not enabled !\n",
2644 np->full_name);
2645 return -ENXIO;
2646 #endif
2649 if (dev->zmii_ph != 0) {
2650 #ifdef CONFIG_IBM_NEW_EMAC_ZMII
2651 dev->features |= EMAC_FTR_HAS_ZMII;
2652 #else
2653 printk(KERN_ERR "%s: ZMII support not enabled !\n",
2654 np->full_name);
2655 return -ENXIO;
2656 #endif
2659 if (dev->rgmii_ph != 0) {
2660 #ifdef CONFIG_IBM_NEW_EMAC_RGMII
2661 dev->features |= EMAC_FTR_HAS_RGMII;
2662 #else
2663 printk(KERN_ERR "%s: RGMII support not enabled !\n",
2664 np->full_name);
2665 return -ENXIO;
2666 #endif
2669 /* Read MAC-address */
2670 p = of_get_property(np, "local-mac-address", NULL);
2671 if (p == NULL) {
2672 printk(KERN_ERR "%s: Can't find local-mac-address property\n",
2673 np->full_name);
2674 return -ENXIO;
2676 memcpy(dev->ndev->dev_addr, p, 6);
2678 /* IAHT and GAHT filter parameterization */
2679 if (emac_has_feature(dev, EMAC_FTR_EMAC4SYNC)) {
2680 dev->xaht_slots_shift = EMAC4SYNC_XAHT_SLOTS_SHIFT;
2681 dev->xaht_width_shift = EMAC4SYNC_XAHT_WIDTH_SHIFT;
2682 } else {
2683 dev->xaht_slots_shift = EMAC4_XAHT_SLOTS_SHIFT;
2684 dev->xaht_width_shift = EMAC4_XAHT_WIDTH_SHIFT;
2687 DBG(dev, "features : 0x%08x / 0x%08x\n", dev->features, EMAC_FTRS_POSSIBLE);
2688 DBG(dev, "tx_fifo_size : %d (%d gige)\n", dev->tx_fifo_size, dev->tx_fifo_size_gige);
2689 DBG(dev, "rx_fifo_size : %d (%d gige)\n", dev->rx_fifo_size, dev->rx_fifo_size_gige);
2690 DBG(dev, "max_mtu : %d\n", dev->max_mtu);
2691 DBG(dev, "OPB freq : %d\n", dev->opb_bus_freq);
2693 return 0;
2696 static const struct net_device_ops emac_netdev_ops = {
2697 .ndo_open = emac_open,
2698 .ndo_stop = emac_close,
2699 .ndo_get_stats = emac_stats,
2700 .ndo_set_multicast_list = emac_set_multicast_list,
2701 .ndo_do_ioctl = emac_ioctl,
2702 .ndo_tx_timeout = emac_tx_timeout,
2703 .ndo_validate_addr = eth_validate_addr,
2704 .ndo_set_mac_address = eth_mac_addr,
2705 .ndo_start_xmit = emac_start_xmit,
2706 .ndo_change_mtu = eth_change_mtu,
2709 static const struct net_device_ops emac_gige_netdev_ops = {
2710 .ndo_open = emac_open,
2711 .ndo_stop = emac_close,
2712 .ndo_get_stats = emac_stats,
2713 .ndo_set_multicast_list = emac_set_multicast_list,
2714 .ndo_do_ioctl = emac_ioctl,
2715 .ndo_tx_timeout = emac_tx_timeout,
2716 .ndo_validate_addr = eth_validate_addr,
2717 .ndo_set_mac_address = eth_mac_addr,
2718 .ndo_start_xmit = emac_start_xmit_sg,
2719 .ndo_change_mtu = emac_change_mtu,
2722 static int __devinit emac_probe(struct of_device *ofdev,
2723 const struct of_device_id *match)
2725 struct net_device *ndev;
2726 struct emac_instance *dev;
2727 struct device_node *np = ofdev->dev.of_node;
2728 struct device_node **blist = NULL;
2729 int err, i;
2731 /* Skip unused/unwired EMACS. We leave the check for an unused
2732 * property here for now, but new flat device trees should set a
2733 * status property to "disabled" instead.
2735 if (of_get_property(np, "unused", NULL) || !of_device_is_available(np))
2736 return -ENODEV;
2738 /* Find ourselves in the bootlist if we are there */
2739 for (i = 0; i < EMAC_BOOT_LIST_SIZE; i++)
2740 if (emac_boot_list[i] == np)
2741 blist = &emac_boot_list[i];
2743 /* Allocate our net_device structure */
2744 err = -ENOMEM;
2745 ndev = alloc_etherdev(sizeof(struct emac_instance));
2746 if (!ndev) {
2747 printk(KERN_ERR "%s: could not allocate ethernet device!\n",
2748 np->full_name);
2749 goto err_gone;
2751 dev = netdev_priv(ndev);
2752 dev->ndev = ndev;
2753 dev->ofdev = ofdev;
2754 dev->blist = blist;
2755 SET_NETDEV_DEV(ndev, &ofdev->dev);
2757 /* Initialize some embedded data structures */
2758 mutex_init(&dev->mdio_lock);
2759 mutex_init(&dev->link_lock);
2760 spin_lock_init(&dev->lock);
2761 INIT_WORK(&dev->reset_work, emac_reset_work);
2763 /* Init various config data based on device-tree */
2764 err = emac_init_config(dev);
2765 if (err != 0)
2766 goto err_free;
2768 /* Get interrupts. EMAC irq is mandatory, WOL irq is optional */
2769 dev->emac_irq = irq_of_parse_and_map(np, 0);
2770 dev->wol_irq = irq_of_parse_and_map(np, 1);
2771 if (dev->emac_irq == NO_IRQ) {
2772 printk(KERN_ERR "%s: Can't map main interrupt\n", np->full_name);
2773 goto err_free;
2775 ndev->irq = dev->emac_irq;
2777 /* Map EMAC regs */
2778 if (of_address_to_resource(np, 0, &dev->rsrc_regs)) {
2779 printk(KERN_ERR "%s: Can't get registers address\n",
2780 np->full_name);
2781 goto err_irq_unmap;
2783 // TODO : request_mem_region
2784 dev->emacp = ioremap(dev->rsrc_regs.start,
2785 dev->rsrc_regs.end - dev->rsrc_regs.start + 1);
2786 if (dev->emacp == NULL) {
2787 printk(KERN_ERR "%s: Can't map device registers!\n",
2788 np->full_name);
2789 err = -ENOMEM;
2790 goto err_irq_unmap;
2793 /* Wait for dependent devices */
2794 err = emac_wait_deps(dev);
2795 if (err) {
2796 printk(KERN_ERR
2797 "%s: Timeout waiting for dependent devices\n",
2798 np->full_name);
2799 /* display more info about what's missing ? */
2800 goto err_reg_unmap;
2802 dev->mal = dev_get_drvdata(&dev->mal_dev->dev);
2803 if (dev->mdio_dev != NULL)
2804 dev->mdio_instance = dev_get_drvdata(&dev->mdio_dev->dev);
2806 /* Register with MAL */
2807 dev->commac.ops = &emac_commac_ops;
2808 dev->commac.dev = dev;
2809 dev->commac.tx_chan_mask = MAL_CHAN_MASK(dev->mal_tx_chan);
2810 dev->commac.rx_chan_mask = MAL_CHAN_MASK(dev->mal_rx_chan);
2811 err = mal_register_commac(dev->mal, &dev->commac);
2812 if (err) {
2813 printk(KERN_ERR "%s: failed to register with mal %s!\n",
2814 np->full_name, dev->mal_dev->dev.of_node->full_name);
2815 goto err_rel_deps;
2817 dev->rx_skb_size = emac_rx_skb_size(ndev->mtu);
2818 dev->rx_sync_size = emac_rx_sync_size(ndev->mtu);
2820 /* Get pointers to BD rings */
2821 dev->tx_desc =
2822 dev->mal->bd_virt + mal_tx_bd_offset(dev->mal, dev->mal_tx_chan);
2823 dev->rx_desc =
2824 dev->mal->bd_virt + mal_rx_bd_offset(dev->mal, dev->mal_rx_chan);
2826 DBG(dev, "tx_desc %p" NL, dev->tx_desc);
2827 DBG(dev, "rx_desc %p" NL, dev->rx_desc);
2829 /* Clean rings */
2830 memset(dev->tx_desc, 0, NUM_TX_BUFF * sizeof(struct mal_descriptor));
2831 memset(dev->rx_desc, 0, NUM_RX_BUFF * sizeof(struct mal_descriptor));
2832 memset(dev->tx_skb, 0, NUM_TX_BUFF * sizeof(struct sk_buff *));
2833 memset(dev->rx_skb, 0, NUM_RX_BUFF * sizeof(struct sk_buff *));
2835 /* Attach to ZMII, if needed */
2836 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII) &&
2837 (err = zmii_attach(dev->zmii_dev, dev->zmii_port, &dev->phy_mode)) != 0)
2838 goto err_unreg_commac;
2840 /* Attach to RGMII, if needed */
2841 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII) &&
2842 (err = rgmii_attach(dev->rgmii_dev, dev->rgmii_port, dev->phy_mode)) != 0)
2843 goto err_detach_zmii;
2845 /* Attach to TAH, if needed */
2846 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH) &&
2847 (err = tah_attach(dev->tah_dev, dev->tah_port)) != 0)
2848 goto err_detach_rgmii;
2850 /* Set some link defaults before we can find out real parameters */
2851 dev->phy.speed = SPEED_100;
2852 dev->phy.duplex = DUPLEX_FULL;
2853 dev->phy.autoneg = AUTONEG_DISABLE;
2854 dev->phy.pause = dev->phy.asym_pause = 0;
2855 dev->stop_timeout = STOP_TIMEOUT_100;
2856 INIT_DELAYED_WORK(&dev->link_work, emac_link_timer);
2858 /* Find PHY if any */
2859 err = emac_init_phy(dev);
2860 if (err != 0)
2861 goto err_detach_tah;
2863 if (dev->tah_dev)
2864 ndev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;
2865 ndev->watchdog_timeo = 5 * HZ;
2866 if (emac_phy_supports_gige(dev->phy_mode)) {
2867 ndev->netdev_ops = &emac_gige_netdev_ops;
2868 dev->commac.ops = &emac_commac_sg_ops;
2869 } else
2870 ndev->netdev_ops = &emac_netdev_ops;
2871 SET_ETHTOOL_OPS(ndev, &emac_ethtool_ops);
2873 netif_carrier_off(ndev);
2874 netif_stop_queue(ndev);
2876 err = register_netdev(ndev);
2877 if (err) {
2878 printk(KERN_ERR "%s: failed to register net device (%d)!\n",
2879 np->full_name, err);
2880 goto err_detach_tah;
2883 /* Set our drvdata last as we don't want them visible until we are
2884 * fully initialized
2886 wmb();
2887 dev_set_drvdata(&ofdev->dev, dev);
2889 /* There's a new kid in town ! Let's tell everybody */
2890 wake_up_all(&emac_probe_wait);
2893 printk(KERN_INFO "%s: EMAC-%d %s, MAC %pM\n",
2894 ndev->name, dev->cell_index, np->full_name, ndev->dev_addr);
2896 if (dev->phy_mode == PHY_MODE_SGMII)
2897 printk(KERN_NOTICE "%s: in SGMII mode\n", ndev->name);
2899 if (dev->phy.address >= 0)
2900 printk("%s: found %s PHY (0x%02x)\n", ndev->name,
2901 dev->phy.def->name, dev->phy.address);
2903 emac_dbg_register(dev);
2905 /* Life is good */
2906 return 0;
2908 /* I have a bad feeling about this ... */
2910 err_detach_tah:
2911 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
2912 tah_detach(dev->tah_dev, dev->tah_port);
2913 err_detach_rgmii:
2914 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
2915 rgmii_detach(dev->rgmii_dev, dev->rgmii_port);
2916 err_detach_zmii:
2917 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
2918 zmii_detach(dev->zmii_dev, dev->zmii_port);
2919 err_unreg_commac:
2920 mal_unregister_commac(dev->mal, &dev->commac);
2921 err_rel_deps:
2922 emac_put_deps(dev);
2923 err_reg_unmap:
2924 iounmap(dev->emacp);
2925 err_irq_unmap:
2926 if (dev->wol_irq != NO_IRQ)
2927 irq_dispose_mapping(dev->wol_irq);
2928 if (dev->emac_irq != NO_IRQ)
2929 irq_dispose_mapping(dev->emac_irq);
2930 err_free:
2931 kfree(ndev);
2932 err_gone:
2933 /* if we were on the bootlist, remove us as we won't show up and
2934 * wake up all waiters to notify them in case they were waiting
2935 * on us
2937 if (blist) {
2938 *blist = NULL;
2939 wake_up_all(&emac_probe_wait);
2941 return err;
2944 static int __devexit emac_remove(struct of_device *ofdev)
2946 struct emac_instance *dev = dev_get_drvdata(&ofdev->dev);
2948 DBG(dev, "remove" NL);
2950 dev_set_drvdata(&ofdev->dev, NULL);
2952 unregister_netdev(dev->ndev);
2954 flush_scheduled_work();
2956 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
2957 tah_detach(dev->tah_dev, dev->tah_port);
2958 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
2959 rgmii_detach(dev->rgmii_dev, dev->rgmii_port);
2960 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
2961 zmii_detach(dev->zmii_dev, dev->zmii_port);
2963 mal_unregister_commac(dev->mal, &dev->commac);
2964 emac_put_deps(dev);
2966 emac_dbg_unregister(dev);
2967 iounmap(dev->emacp);
2969 if (dev->wol_irq != NO_IRQ)
2970 irq_dispose_mapping(dev->wol_irq);
2971 if (dev->emac_irq != NO_IRQ)
2972 irq_dispose_mapping(dev->emac_irq);
2974 kfree(dev->ndev);
2976 return 0;
2979 /* XXX Features in here should be replaced by properties... */
2980 static struct of_device_id emac_match[] =
2983 .type = "network",
2984 .compatible = "ibm,emac",
2987 .type = "network",
2988 .compatible = "ibm,emac4",
2991 .type = "network",
2992 .compatible = "ibm,emac4sync",
2996 MODULE_DEVICE_TABLE(of, emac_match);
2998 static struct of_platform_driver emac_driver = {
2999 .driver = {
3000 .name = "emac",
3001 .owner = THIS_MODULE,
3002 .of_match_table = emac_match,
3004 .probe = emac_probe,
3005 .remove = emac_remove,
3008 static void __init emac_make_bootlist(void)
3010 struct device_node *np = NULL;
3011 int j, max, i = 0, k;
3012 int cell_indices[EMAC_BOOT_LIST_SIZE];
3014 /* Collect EMACs */
3015 while((np = of_find_all_nodes(np)) != NULL) {
3016 const u32 *idx;
3018 if (of_match_node(emac_match, np) == NULL)
3019 continue;
3020 if (of_get_property(np, "unused", NULL))
3021 continue;
3022 idx = of_get_property(np, "cell-index", NULL);
3023 if (idx == NULL)
3024 continue;
3025 cell_indices[i] = *idx;
3026 emac_boot_list[i++] = of_node_get(np);
3027 if (i >= EMAC_BOOT_LIST_SIZE) {
3028 of_node_put(np);
3029 break;
3032 max = i;
3034 /* Bubble sort them (doh, what a creative algorithm :-) */
3035 for (i = 0; max > 1 && (i < (max - 1)); i++)
3036 for (j = i; j < max; j++) {
3037 if (cell_indices[i] > cell_indices[j]) {
3038 np = emac_boot_list[i];
3039 emac_boot_list[i] = emac_boot_list[j];
3040 emac_boot_list[j] = np;
3041 k = cell_indices[i];
3042 cell_indices[i] = cell_indices[j];
3043 cell_indices[j] = k;
3048 static int __init emac_init(void)
3050 int rc;
3052 printk(KERN_INFO DRV_DESC ", version " DRV_VERSION "\n");
3054 /* Init debug stuff */
3055 emac_init_debug();
3057 /* Build EMAC boot list */
3058 emac_make_bootlist();
3060 /* Init submodules */
3061 rc = mal_init();
3062 if (rc)
3063 goto err;
3064 rc = zmii_init();
3065 if (rc)
3066 goto err_mal;
3067 rc = rgmii_init();
3068 if (rc)
3069 goto err_zmii;
3070 rc = tah_init();
3071 if (rc)
3072 goto err_rgmii;
3073 rc = of_register_platform_driver(&emac_driver);
3074 if (rc)
3075 goto err_tah;
3077 return 0;
3079 err_tah:
3080 tah_exit();
3081 err_rgmii:
3082 rgmii_exit();
3083 err_zmii:
3084 zmii_exit();
3085 err_mal:
3086 mal_exit();
3087 err:
3088 return rc;
3091 static void __exit emac_exit(void)
3093 int i;
3095 of_unregister_platform_driver(&emac_driver);
3097 tah_exit();
3098 rgmii_exit();
3099 zmii_exit();
3100 mal_exit();
3101 emac_fini_debug();
3103 /* Destroy EMAC boot list */
3104 for (i = 0; i < EMAC_BOOT_LIST_SIZE; i++)
3105 if (emac_boot_list[i])
3106 of_node_put(emac_boot_list[i]);
3109 module_init(emac_init);
3110 module_exit(emac_exit);