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>
42 #include <linux/slab.h>
44 #include <asm/processor.h>
47 #include <asm/uaccess.h>
49 #include <asm/dcr-regs.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);
76 ("Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>");
77 MODULE_LICENSE("GPL");
80 * PPC64 doesn't (yet) have a cacheable_memcpy
83 #define cacheable_memcpy(d,s,n) memcpy((d),(s),(n))
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
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,
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->node->full_name, error);
142 /* EMAC PHY clock workaround:
143 * 440EP/440GR has more sane SDR0_MFR register implementation than 440GX,
144 * which allows controlling each EMAC clock
146 static inline void emac_rx_clk_tx(struct emac_instance *dev)
148 #ifdef CONFIG_PPC_DCR_NATIVE
149 if (emac_has_feature(dev, EMAC_FTR_440EP_PHY_CLK_FIX))
150 dcri_clrset(SDR0, SDR0_MFR,
151 0, SDR0_MFR_ECS >> dev->cell_index);
155 static inline void emac_rx_clk_default(struct emac_instance *dev)
157 #ifdef CONFIG_PPC_DCR_NATIVE
158 if (emac_has_feature(dev, EMAC_FTR_440EP_PHY_CLK_FIX))
159 dcri_clrset(SDR0, SDR0_MFR,
160 SDR0_MFR_ECS >> dev->cell_index, 0);
164 /* PHY polling intervals */
165 #define PHY_POLL_LINK_ON HZ
166 #define PHY_POLL_LINK_OFF (HZ / 5)
168 /* Graceful stop timeouts in us.
169 * We should allow up to 1 frame time (full-duplex, ignoring collisions)
171 #define STOP_TIMEOUT_10 1230
172 #define STOP_TIMEOUT_100 124
173 #define STOP_TIMEOUT_1000 13
174 #define STOP_TIMEOUT_1000_JUMBO 73
176 static unsigned char default_mcast_addr[] = {
177 0x01, 0x80, 0xC2, 0x00, 0x00, 0x01
180 /* Please, keep in sync with struct ibm_emac_stats/ibm_emac_error_stats */
181 static const char emac_stats_keys[EMAC_ETHTOOL_STATS_COUNT][ETH_GSTRING_LEN] = {
182 "rx_packets", "rx_bytes", "tx_packets", "tx_bytes", "rx_packets_csum",
183 "tx_packets_csum", "tx_undo", "rx_dropped_stack", "rx_dropped_oom",
184 "rx_dropped_error", "rx_dropped_resize", "rx_dropped_mtu",
185 "rx_stopped", "rx_bd_errors", "rx_bd_overrun", "rx_bd_bad_packet",
186 "rx_bd_runt_packet", "rx_bd_short_event", "rx_bd_alignment_error",
187 "rx_bd_bad_fcs", "rx_bd_packet_too_long", "rx_bd_out_of_range",
188 "rx_bd_in_range", "rx_parity", "rx_fifo_overrun", "rx_overrun",
189 "rx_bad_packet", "rx_runt_packet", "rx_short_event",
190 "rx_alignment_error", "rx_bad_fcs", "rx_packet_too_long",
191 "rx_out_of_range", "rx_in_range", "tx_dropped", "tx_bd_errors",
192 "tx_bd_bad_fcs", "tx_bd_carrier_loss", "tx_bd_excessive_deferral",
193 "tx_bd_excessive_collisions", "tx_bd_late_collision",
194 "tx_bd_multple_collisions", "tx_bd_single_collision",
195 "tx_bd_underrun", "tx_bd_sqe", "tx_parity", "tx_underrun", "tx_sqe",
199 static irqreturn_t emac_irq(int irq, void *dev_instance);
200 static void emac_clean_tx_ring(struct emac_instance *dev);
201 static void __emac_set_multicast_list(struct emac_instance *dev);
203 static inline int emac_phy_supports_gige(int phy_mode)
205 return phy_mode == PHY_MODE_GMII ||
206 phy_mode == PHY_MODE_RGMII ||
207 phy_mode == PHY_MODE_SGMII ||
208 phy_mode == PHY_MODE_TBI ||
209 phy_mode == PHY_MODE_RTBI;
212 static inline int emac_phy_gpcs(int phy_mode)
214 return phy_mode == PHY_MODE_SGMII ||
215 phy_mode == PHY_MODE_TBI ||
216 phy_mode == PHY_MODE_RTBI;
219 static inline void emac_tx_enable(struct emac_instance *dev)
221 struct emac_regs __iomem *p = dev->emacp;
224 DBG(dev, "tx_enable" NL);
226 r = in_be32(&p->mr0);
227 if (!(r & EMAC_MR0_TXE))
228 out_be32(&p->mr0, r | EMAC_MR0_TXE);
231 static void emac_tx_disable(struct emac_instance *dev)
233 struct emac_regs __iomem *p = dev->emacp;
236 DBG(dev, "tx_disable" NL);
238 r = in_be32(&p->mr0);
239 if (r & EMAC_MR0_TXE) {
240 int n = dev->stop_timeout;
241 out_be32(&p->mr0, r & ~EMAC_MR0_TXE);
242 while (!(in_be32(&p->mr0) & EMAC_MR0_TXI) && n) {
247 emac_report_timeout_error(dev, "TX disable timeout");
251 static void emac_rx_enable(struct emac_instance *dev)
253 struct emac_regs __iomem *p = dev->emacp;
256 if (unlikely(test_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags)))
259 DBG(dev, "rx_enable" NL);
261 r = in_be32(&p->mr0);
262 if (!(r & EMAC_MR0_RXE)) {
263 if (unlikely(!(r & EMAC_MR0_RXI))) {
264 /* Wait if previous async disable is still in progress */
265 int n = dev->stop_timeout;
266 while (!(r = in_be32(&p->mr0) & EMAC_MR0_RXI) && n) {
271 emac_report_timeout_error(dev,
272 "RX disable timeout");
274 out_be32(&p->mr0, r | EMAC_MR0_RXE);
280 static void emac_rx_disable(struct emac_instance *dev)
282 struct emac_regs __iomem *p = dev->emacp;
285 DBG(dev, "rx_disable" NL);
287 r = in_be32(&p->mr0);
288 if (r & EMAC_MR0_RXE) {
289 int n = dev->stop_timeout;
290 out_be32(&p->mr0, r & ~EMAC_MR0_RXE);
291 while (!(in_be32(&p->mr0) & EMAC_MR0_RXI) && n) {
296 emac_report_timeout_error(dev, "RX disable timeout");
300 static inline void emac_netif_stop(struct emac_instance *dev)
302 netif_tx_lock_bh(dev->ndev);
303 netif_addr_lock(dev->ndev);
305 netif_addr_unlock(dev->ndev);
306 netif_tx_unlock_bh(dev->ndev);
307 dev->ndev->trans_start = jiffies; /* prevent tx timeout */
308 mal_poll_disable(dev->mal, &dev->commac);
309 netif_tx_disable(dev->ndev);
312 static inline void emac_netif_start(struct emac_instance *dev)
314 netif_tx_lock_bh(dev->ndev);
315 netif_addr_lock(dev->ndev);
317 if (dev->mcast_pending && netif_running(dev->ndev))
318 __emac_set_multicast_list(dev);
319 netif_addr_unlock(dev->ndev);
320 netif_tx_unlock_bh(dev->ndev);
322 netif_wake_queue(dev->ndev);
324 /* NOTE: unconditional netif_wake_queue is only appropriate
325 * so long as all callers are assured to have free tx slots
326 * (taken from tg3... though the case where that is wrong is
327 * not terribly harmful)
329 mal_poll_enable(dev->mal, &dev->commac);
332 static inline void emac_rx_disable_async(struct emac_instance *dev)
334 struct emac_regs __iomem *p = dev->emacp;
337 DBG(dev, "rx_disable_async" NL);
339 r = in_be32(&p->mr0);
340 if (r & EMAC_MR0_RXE)
341 out_be32(&p->mr0, r & ~EMAC_MR0_RXE);
344 static int emac_reset(struct emac_instance *dev)
346 struct emac_regs __iomem *p = dev->emacp;
349 DBG(dev, "reset" NL);
351 if (!dev->reset_failed) {
352 /* 40x erratum suggests stopping RX channel before reset,
355 emac_rx_disable(dev);
356 emac_tx_disable(dev);
359 #ifdef CONFIG_PPC_DCR_NATIVE
360 /* Enable internal clock source */
361 if (emac_has_feature(dev, EMAC_FTR_460EX_PHY_CLK_FIX))
362 dcri_clrset(SDR0, SDR0_ETH_CFG,
363 0, SDR0_ETH_CFG_ECS << dev->cell_index);
366 out_be32(&p->mr0, EMAC_MR0_SRST);
367 while ((in_be32(&p->mr0) & EMAC_MR0_SRST) && n)
370 #ifdef CONFIG_PPC_DCR_NATIVE
371 /* Enable external clock source */
372 if (emac_has_feature(dev, EMAC_FTR_460EX_PHY_CLK_FIX))
373 dcri_clrset(SDR0, SDR0_ETH_CFG,
374 SDR0_ETH_CFG_ECS << dev->cell_index, 0);
378 dev->reset_failed = 0;
381 emac_report_timeout_error(dev, "reset timeout");
382 dev->reset_failed = 1;
387 static void emac_hash_mc(struct emac_instance *dev)
389 const int regs = EMAC_XAHT_REGS(dev);
390 u32 *gaht_base = emac_gaht_base(dev);
392 struct dev_mc_list *dmi;
395 DBG(dev, "hash_mc %d" NL, netdev_mc_count(dev->ndev));
397 memset(gaht_temp, 0, sizeof (gaht_temp));
399 netdev_for_each_mc_addr(dmi, dev->ndev) {
401 DBG2(dev, "mc %pM" NL, dmi->dmi_addr);
403 slot = EMAC_XAHT_CRC_TO_SLOT(dev, ether_crc(ETH_ALEN, dmi->dmi_addr));
404 reg = EMAC_XAHT_SLOT_TO_REG(dev, slot);
405 mask = EMAC_XAHT_SLOT_TO_MASK(dev, slot);
407 gaht_temp[reg] |= mask;
410 for (i = 0; i < regs; i++)
411 out_be32(gaht_base + i, gaht_temp[i]);
414 static inline u32 emac_iff2rmr(struct net_device *ndev)
416 struct emac_instance *dev = netdev_priv(ndev);
419 r = EMAC_RMR_SP | EMAC_RMR_SFCS | EMAC_RMR_IAE | EMAC_RMR_BAE;
421 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
426 if (ndev->flags & IFF_PROMISC)
428 else if (ndev->flags & IFF_ALLMULTI ||
429 (netdev_mc_count(ndev) > EMAC_XAHT_SLOTS(dev)))
431 else if (!netdev_mc_empty(ndev))
437 static u32 __emac_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
439 u32 ret = EMAC_MR1_VLE | EMAC_MR1_IST | EMAC_MR1_TR0_MULT;
441 DBG2(dev, "__emac_calc_base_mr1" NL);
445 ret |= EMAC_MR1_TFS_2K;
448 printk(KERN_WARNING "%s: Unknown Tx FIFO size %d\n",
449 dev->ndev->name, tx_size);
454 ret |= EMAC_MR1_RFS_16K;
457 ret |= EMAC_MR1_RFS_4K;
460 printk(KERN_WARNING "%s: Unknown Rx FIFO size %d\n",
461 dev->ndev->name, rx_size);
467 static u32 __emac4_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
469 u32 ret = EMAC_MR1_VLE | EMAC_MR1_IST | EMAC4_MR1_TR |
470 EMAC4_MR1_OBCI(dev->opb_bus_freq / 1000000);
472 DBG2(dev, "__emac4_calc_base_mr1" NL);
476 ret |= EMAC4_MR1_TFS_16K;
479 ret |= EMAC4_MR1_TFS_4K;
482 ret |= EMAC4_MR1_TFS_2K;
485 printk(KERN_WARNING "%s: Unknown Tx FIFO size %d\n",
486 dev->ndev->name, tx_size);
491 ret |= EMAC4_MR1_RFS_16K;
494 ret |= EMAC4_MR1_RFS_4K;
497 ret |= EMAC4_MR1_RFS_2K;
500 printk(KERN_WARNING "%s: Unknown Rx FIFO size %d\n",
501 dev->ndev->name, rx_size);
507 static u32 emac_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
509 return emac_has_feature(dev, EMAC_FTR_EMAC4) ?
510 __emac4_calc_base_mr1(dev, tx_size, rx_size) :
511 __emac_calc_base_mr1(dev, tx_size, rx_size);
514 static inline u32 emac_calc_trtr(struct emac_instance *dev, unsigned int size)
516 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
517 return ((size >> 6) - 1) << EMAC_TRTR_SHIFT_EMAC4;
519 return ((size >> 6) - 1) << EMAC_TRTR_SHIFT;
522 static inline u32 emac_calc_rwmr(struct emac_instance *dev,
523 unsigned int low, unsigned int high)
525 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
526 return (low << 22) | ( (high & 0x3ff) << 6);
528 return (low << 23) | ( (high & 0x1ff) << 7);
531 static int emac_configure(struct emac_instance *dev)
533 struct emac_regs __iomem *p = dev->emacp;
534 struct net_device *ndev = dev->ndev;
535 int tx_size, rx_size, link = netif_carrier_ok(dev->ndev);
538 DBG(dev, "configure" NL);
541 out_be32(&p->mr1, in_be32(&p->mr1)
542 | EMAC_MR1_FDE | EMAC_MR1_ILE);
544 } else if (emac_reset(dev) < 0)
547 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
548 tah_reset(dev->tah_dev);
550 DBG(dev, " link = %d duplex = %d, pause = %d, asym_pause = %d\n",
551 link, dev->phy.duplex, dev->phy.pause, dev->phy.asym_pause);
553 /* Default fifo sizes */
554 tx_size = dev->tx_fifo_size;
555 rx_size = dev->rx_fifo_size;
557 /* No link, force loopback */
559 mr1 = EMAC_MR1_FDE | EMAC_MR1_ILE;
561 /* Check for full duplex */
562 else if (dev->phy.duplex == DUPLEX_FULL)
563 mr1 |= EMAC_MR1_FDE | EMAC_MR1_MWSW_001;
565 /* Adjust fifo sizes, mr1 and timeouts based on link speed */
566 dev->stop_timeout = STOP_TIMEOUT_10;
567 switch (dev->phy.speed) {
569 if (emac_phy_gpcs(dev->phy.mode)) {
570 mr1 |= EMAC_MR1_MF_1000GPCS | EMAC_MR1_MF_IPPA(
571 (dev->phy.gpcs_address != 0xffffffff) ?
572 dev->phy.gpcs_address : dev->phy.address);
574 /* Put some arbitrary OUI, Manuf & Rev IDs so we can
575 * identify this GPCS PHY later.
577 out_be32(&p->u1.emac4.ipcr, 0xdeadbeef);
579 mr1 |= EMAC_MR1_MF_1000;
581 /* Extended fifo sizes */
582 tx_size = dev->tx_fifo_size_gige;
583 rx_size = dev->rx_fifo_size_gige;
585 if (dev->ndev->mtu > ETH_DATA_LEN) {
586 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
587 mr1 |= EMAC4_MR1_JPSM;
589 mr1 |= EMAC_MR1_JPSM;
590 dev->stop_timeout = STOP_TIMEOUT_1000_JUMBO;
592 dev->stop_timeout = STOP_TIMEOUT_1000;
595 mr1 |= EMAC_MR1_MF_100;
596 dev->stop_timeout = STOP_TIMEOUT_100;
598 default: /* make gcc happy */
602 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
603 rgmii_set_speed(dev->rgmii_dev, dev->rgmii_port,
605 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
606 zmii_set_speed(dev->zmii_dev, dev->zmii_port, dev->phy.speed);
608 /* on 40x erratum forces us to NOT use integrated flow control,
609 * let's hope it works on 44x ;)
611 if (!emac_has_feature(dev, EMAC_FTR_NO_FLOW_CONTROL_40x) &&
612 dev->phy.duplex == DUPLEX_FULL) {
614 mr1 |= EMAC_MR1_EIFC | EMAC_MR1_APP;
615 else if (dev->phy.asym_pause)
619 /* Add base settings & fifo sizes & program MR1 */
620 mr1 |= emac_calc_base_mr1(dev, tx_size, rx_size);
621 out_be32(&p->mr1, mr1);
623 /* Set individual MAC address */
624 out_be32(&p->iahr, (ndev->dev_addr[0] << 8) | ndev->dev_addr[1]);
625 out_be32(&p->ialr, (ndev->dev_addr[2] << 24) |
626 (ndev->dev_addr[3] << 16) | (ndev->dev_addr[4] << 8) |
629 /* VLAN Tag Protocol ID */
630 out_be32(&p->vtpid, 0x8100);
632 /* Receive mode register */
633 r = emac_iff2rmr(ndev);
634 if (r & EMAC_RMR_MAE)
636 out_be32(&p->rmr, r);
638 /* FIFOs thresholds */
639 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
640 r = EMAC4_TMR1((dev->mal_burst_size / dev->fifo_entry_size) + 1,
641 tx_size / 2 / dev->fifo_entry_size);
643 r = EMAC_TMR1((dev->mal_burst_size / dev->fifo_entry_size) + 1,
644 tx_size / 2 / dev->fifo_entry_size);
645 out_be32(&p->tmr1, r);
646 out_be32(&p->trtr, emac_calc_trtr(dev, tx_size / 2));
648 /* PAUSE frame is sent when RX FIFO reaches its high-water mark,
649 there should be still enough space in FIFO to allow the our link
650 partner time to process this frame and also time to send PAUSE
653 Here is the worst case scenario for the RX FIFO "headroom"
654 (from "The Switch Book") (100Mbps, without preamble, inter-frame gap):
656 1) One maximum-length frame on TX 1522 bytes
657 2) One PAUSE frame time 64 bytes
658 3) PAUSE frame decode time allowance 64 bytes
659 4) One maximum-length frame on RX 1522 bytes
660 5) Round-trip propagation delay of the link (100Mb) 15 bytes
664 I chose to set high-water mark to RX_FIFO_SIZE / 4 (1024 bytes)
665 low-water mark to RX_FIFO_SIZE / 8 (512 bytes)
667 r = emac_calc_rwmr(dev, rx_size / 8 / dev->fifo_entry_size,
668 rx_size / 4 / dev->fifo_entry_size);
669 out_be32(&p->rwmr, r);
671 /* Set PAUSE timer to the maximum */
672 out_be32(&p->ptr, 0xffff);
675 r = EMAC_ISR_OVR | EMAC_ISR_BP | EMAC_ISR_SE |
676 EMAC_ISR_ALE | EMAC_ISR_BFCS | EMAC_ISR_PTLE | EMAC_ISR_ORE |
677 EMAC_ISR_IRE | EMAC_ISR_TE;
678 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
679 r |= EMAC4_ISR_TXPE | EMAC4_ISR_RXPE /* | EMAC4_ISR_TXUE |
681 out_be32(&p->iser, r);
683 /* We need to take GPCS PHY out of isolate mode after EMAC reset */
684 if (emac_phy_gpcs(dev->phy.mode)) {
685 if (dev->phy.gpcs_address != 0xffffffff)
686 emac_mii_reset_gpcs(&dev->phy);
688 emac_mii_reset_phy(&dev->phy);
694 static void emac_reinitialize(struct emac_instance *dev)
696 DBG(dev, "reinitialize" NL);
698 emac_netif_stop(dev);
699 if (!emac_configure(dev)) {
703 emac_netif_start(dev);
706 static void emac_full_tx_reset(struct emac_instance *dev)
708 DBG(dev, "full_tx_reset" NL);
710 emac_tx_disable(dev);
711 mal_disable_tx_channel(dev->mal, dev->mal_tx_chan);
712 emac_clean_tx_ring(dev);
713 dev->tx_cnt = dev->tx_slot = dev->ack_slot = 0;
717 mal_enable_tx_channel(dev->mal, dev->mal_tx_chan);
722 static void emac_reset_work(struct work_struct *work)
724 struct emac_instance *dev = container_of(work, struct emac_instance, reset_work);
726 DBG(dev, "reset_work" NL);
728 mutex_lock(&dev->link_lock);
730 emac_netif_stop(dev);
731 emac_full_tx_reset(dev);
732 emac_netif_start(dev);
734 mutex_unlock(&dev->link_lock);
737 static void emac_tx_timeout(struct net_device *ndev)
739 struct emac_instance *dev = netdev_priv(ndev);
741 DBG(dev, "tx_timeout" NL);
743 schedule_work(&dev->reset_work);
747 static inline int emac_phy_done(struct emac_instance *dev, u32 stacr)
749 int done = !!(stacr & EMAC_STACR_OC);
751 if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
757 static int __emac_mdio_read(struct emac_instance *dev, u8 id, u8 reg)
759 struct emac_regs __iomem *p = dev->emacp;
761 int n, err = -ETIMEDOUT;
763 mutex_lock(&dev->mdio_lock);
765 DBG2(dev, "mdio_read(%02x,%02x)" NL, id, reg);
767 /* Enable proper MDIO port */
768 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
769 zmii_get_mdio(dev->zmii_dev, dev->zmii_port);
770 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
771 rgmii_get_mdio(dev->rgmii_dev, dev->rgmii_port);
773 /* Wait for management interface to become idle */
775 while (!emac_phy_done(dev, in_be32(&p->stacr))) {
778 DBG2(dev, " -> timeout wait idle\n");
783 /* Issue read command */
784 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
785 r = EMAC4_STACR_BASE(dev->opb_bus_freq);
787 r = EMAC_STACR_BASE(dev->opb_bus_freq);
788 if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
790 if (emac_has_feature(dev, EMAC_FTR_HAS_NEW_STACR))
791 r |= EMACX_STACR_STAC_READ;
793 r |= EMAC_STACR_STAC_READ;
794 r |= (reg & EMAC_STACR_PRA_MASK)
795 | ((id & EMAC_STACR_PCDA_MASK) << EMAC_STACR_PCDA_SHIFT);
796 out_be32(&p->stacr, r);
798 /* Wait for read to complete */
800 while (!emac_phy_done(dev, (r = in_be32(&p->stacr)))) {
803 DBG2(dev, " -> timeout wait complete\n");
808 if (unlikely(r & EMAC_STACR_PHYE)) {
809 DBG(dev, "mdio_read(%02x, %02x) failed" NL, id, reg);
814 r = ((r >> EMAC_STACR_PHYD_SHIFT) & EMAC_STACR_PHYD_MASK);
816 DBG2(dev, "mdio_read -> %04x" NL, r);
819 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
820 rgmii_put_mdio(dev->rgmii_dev, dev->rgmii_port);
821 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
822 zmii_put_mdio(dev->zmii_dev, dev->zmii_port);
823 mutex_unlock(&dev->mdio_lock);
825 return err == 0 ? r : err;
828 static void __emac_mdio_write(struct emac_instance *dev, u8 id, u8 reg,
831 struct emac_regs __iomem *p = dev->emacp;
833 int n, err = -ETIMEDOUT;
835 mutex_lock(&dev->mdio_lock);
837 DBG2(dev, "mdio_write(%02x,%02x,%04x)" NL, id, reg, val);
839 /* Enable proper MDIO port */
840 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
841 zmii_get_mdio(dev->zmii_dev, dev->zmii_port);
842 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
843 rgmii_get_mdio(dev->rgmii_dev, dev->rgmii_port);
845 /* Wait for management interface to be idle */
847 while (!emac_phy_done(dev, in_be32(&p->stacr))) {
850 DBG2(dev, " -> timeout wait idle\n");
855 /* Issue write command */
856 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
857 r = EMAC4_STACR_BASE(dev->opb_bus_freq);
859 r = EMAC_STACR_BASE(dev->opb_bus_freq);
860 if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
862 if (emac_has_feature(dev, EMAC_FTR_HAS_NEW_STACR))
863 r |= EMACX_STACR_STAC_WRITE;
865 r |= EMAC_STACR_STAC_WRITE;
866 r |= (reg & EMAC_STACR_PRA_MASK) |
867 ((id & EMAC_STACR_PCDA_MASK) << EMAC_STACR_PCDA_SHIFT) |
868 (val << EMAC_STACR_PHYD_SHIFT);
869 out_be32(&p->stacr, r);
871 /* Wait for write to complete */
873 while (!emac_phy_done(dev, in_be32(&p->stacr))) {
876 DBG2(dev, " -> timeout wait complete\n");
882 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
883 rgmii_put_mdio(dev->rgmii_dev, dev->rgmii_port);
884 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
885 zmii_put_mdio(dev->zmii_dev, dev->zmii_port);
886 mutex_unlock(&dev->mdio_lock);
889 static int emac_mdio_read(struct net_device *ndev, int id, int reg)
891 struct emac_instance *dev = netdev_priv(ndev);
894 res = __emac_mdio_read((dev->mdio_instance &&
895 dev->phy.gpcs_address != id) ?
896 dev->mdio_instance : dev,
901 static void emac_mdio_write(struct net_device *ndev, int id, int reg, int val)
903 struct emac_instance *dev = netdev_priv(ndev);
905 __emac_mdio_write((dev->mdio_instance &&
906 dev->phy.gpcs_address != id) ?
907 dev->mdio_instance : dev,
908 (u8) id, (u8) reg, (u16) val);
912 static void __emac_set_multicast_list(struct emac_instance *dev)
914 struct emac_regs __iomem *p = dev->emacp;
915 u32 rmr = emac_iff2rmr(dev->ndev);
917 DBG(dev, "__multicast %08x" NL, rmr);
919 /* I decided to relax register access rules here to avoid
922 * There is a real problem with EMAC4 core if we use MWSW_001 bit
923 * in MR1 register and do a full EMAC reset.
924 * One TX BD status update is delayed and, after EMAC reset, it
925 * never happens, resulting in TX hung (it'll be recovered by TX
926 * timeout handler eventually, but this is just gross).
927 * So we either have to do full TX reset or try to cheat here :)
929 * The only required change is to RX mode register, so I *think* all
930 * we need is just to stop RX channel. This seems to work on all
933 * If we need the full reset, we might just trigger the workqueue
934 * and do it async... a bit nasty but should work --BenH
936 dev->mcast_pending = 0;
937 emac_rx_disable(dev);
938 if (rmr & EMAC_RMR_MAE)
940 out_be32(&p->rmr, rmr);
945 static void emac_set_multicast_list(struct net_device *ndev)
947 struct emac_instance *dev = netdev_priv(ndev);
949 DBG(dev, "multicast" NL);
951 BUG_ON(!netif_running(dev->ndev));
954 dev->mcast_pending = 1;
957 __emac_set_multicast_list(dev);
960 static int emac_resize_rx_ring(struct emac_instance *dev, int new_mtu)
962 int rx_sync_size = emac_rx_sync_size(new_mtu);
963 int rx_skb_size = emac_rx_skb_size(new_mtu);
966 mutex_lock(&dev->link_lock);
967 emac_netif_stop(dev);
968 emac_rx_disable(dev);
969 mal_disable_rx_channel(dev->mal, dev->mal_rx_chan);
971 if (dev->rx_sg_skb) {
972 ++dev->estats.rx_dropped_resize;
973 dev_kfree_skb(dev->rx_sg_skb);
974 dev->rx_sg_skb = NULL;
977 /* Make a first pass over RX ring and mark BDs ready, dropping
978 * non-processed packets on the way. We need this as a separate pass
979 * to simplify error recovery in the case of allocation failure later.
981 for (i = 0; i < NUM_RX_BUFF; ++i) {
982 if (dev->rx_desc[i].ctrl & MAL_RX_CTRL_FIRST)
983 ++dev->estats.rx_dropped_resize;
985 dev->rx_desc[i].data_len = 0;
986 dev->rx_desc[i].ctrl = MAL_RX_CTRL_EMPTY |
987 (i == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
990 /* Reallocate RX ring only if bigger skb buffers are required */
991 if (rx_skb_size <= dev->rx_skb_size)
994 /* Second pass, allocate new skbs */
995 for (i = 0; i < NUM_RX_BUFF; ++i) {
996 struct sk_buff *skb = alloc_skb(rx_skb_size, GFP_ATOMIC);
1002 BUG_ON(!dev->rx_skb[i]);
1003 dev_kfree_skb(dev->rx_skb[i]);
1005 skb_reserve(skb, EMAC_RX_SKB_HEADROOM + 2);
1006 dev->rx_desc[i].data_ptr =
1007 dma_map_single(&dev->ofdev->dev, skb->data - 2, rx_sync_size,
1008 DMA_FROM_DEVICE) + 2;
1009 dev->rx_skb[i] = skb;
1012 /* Check if we need to change "Jumbo" bit in MR1 */
1013 if ((new_mtu > ETH_DATA_LEN) ^ (dev->ndev->mtu > ETH_DATA_LEN)) {
1014 /* This is to prevent starting RX channel in emac_rx_enable() */
1015 set_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1017 dev->ndev->mtu = new_mtu;
1018 emac_full_tx_reset(dev);
1021 mal_set_rcbs(dev->mal, dev->mal_rx_chan, emac_rx_size(new_mtu));
1024 clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1026 mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1027 emac_rx_enable(dev);
1028 emac_netif_start(dev);
1029 mutex_unlock(&dev->link_lock);
1034 /* Process ctx, rtnl_lock semaphore */
1035 static int emac_change_mtu(struct net_device *ndev, int new_mtu)
1037 struct emac_instance *dev = netdev_priv(ndev);
1040 if (new_mtu < EMAC_MIN_MTU || new_mtu > dev->max_mtu)
1043 DBG(dev, "change_mtu(%d)" NL, new_mtu);
1045 if (netif_running(ndev)) {
1046 /* Check if we really need to reinitalize RX ring */
1047 if (emac_rx_skb_size(ndev->mtu) != emac_rx_skb_size(new_mtu))
1048 ret = emac_resize_rx_ring(dev, new_mtu);
1052 ndev->mtu = new_mtu;
1053 dev->rx_skb_size = emac_rx_skb_size(new_mtu);
1054 dev->rx_sync_size = emac_rx_sync_size(new_mtu);
1060 static void emac_clean_tx_ring(struct emac_instance *dev)
1064 for (i = 0; i < NUM_TX_BUFF; ++i) {
1065 if (dev->tx_skb[i]) {
1066 dev_kfree_skb(dev->tx_skb[i]);
1067 dev->tx_skb[i] = NULL;
1068 if (dev->tx_desc[i].ctrl & MAL_TX_CTRL_READY)
1069 ++dev->estats.tx_dropped;
1071 dev->tx_desc[i].ctrl = 0;
1072 dev->tx_desc[i].data_ptr = 0;
1076 static void emac_clean_rx_ring(struct emac_instance *dev)
1080 for (i = 0; i < NUM_RX_BUFF; ++i)
1081 if (dev->rx_skb[i]) {
1082 dev->rx_desc[i].ctrl = 0;
1083 dev_kfree_skb(dev->rx_skb[i]);
1084 dev->rx_skb[i] = NULL;
1085 dev->rx_desc[i].data_ptr = 0;
1088 if (dev->rx_sg_skb) {
1089 dev_kfree_skb(dev->rx_sg_skb);
1090 dev->rx_sg_skb = NULL;
1094 static inline int emac_alloc_rx_skb(struct emac_instance *dev, int slot,
1097 struct sk_buff *skb = alloc_skb(dev->rx_skb_size, flags);
1101 dev->rx_skb[slot] = skb;
1102 dev->rx_desc[slot].data_len = 0;
1104 skb_reserve(skb, EMAC_RX_SKB_HEADROOM + 2);
1105 dev->rx_desc[slot].data_ptr =
1106 dma_map_single(&dev->ofdev->dev, skb->data - 2, dev->rx_sync_size,
1107 DMA_FROM_DEVICE) + 2;
1109 dev->rx_desc[slot].ctrl = MAL_RX_CTRL_EMPTY |
1110 (slot == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
1115 static void emac_print_link_status(struct emac_instance *dev)
1117 if (netif_carrier_ok(dev->ndev))
1118 printk(KERN_INFO "%s: link is up, %d %s%s\n",
1119 dev->ndev->name, dev->phy.speed,
1120 dev->phy.duplex == DUPLEX_FULL ? "FDX" : "HDX",
1121 dev->phy.pause ? ", pause enabled" :
1122 dev->phy.asym_pause ? ", asymmetric pause enabled" : "");
1124 printk(KERN_INFO "%s: link is down\n", dev->ndev->name);
1127 /* Process ctx, rtnl_lock semaphore */
1128 static int emac_open(struct net_device *ndev)
1130 struct emac_instance *dev = netdev_priv(ndev);
1133 DBG(dev, "open" NL);
1135 /* Setup error IRQ handler */
1136 err = request_irq(dev->emac_irq, emac_irq, 0, "EMAC", dev);
1138 printk(KERN_ERR "%s: failed to request IRQ %d\n",
1139 ndev->name, dev->emac_irq);
1143 /* Allocate RX ring */
1144 for (i = 0; i < NUM_RX_BUFF; ++i)
1145 if (emac_alloc_rx_skb(dev, i, GFP_KERNEL)) {
1146 printk(KERN_ERR "%s: failed to allocate RX ring\n",
1151 dev->tx_cnt = dev->tx_slot = dev->ack_slot = dev->rx_slot = 0;
1152 clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1153 dev->rx_sg_skb = NULL;
1155 mutex_lock(&dev->link_lock);
1158 /* Start PHY polling now.
1160 if (dev->phy.address >= 0) {
1161 int link_poll_interval;
1162 if (dev->phy.def->ops->poll_link(&dev->phy)) {
1163 dev->phy.def->ops->read_link(&dev->phy);
1164 emac_rx_clk_default(dev);
1165 netif_carrier_on(dev->ndev);
1166 link_poll_interval = PHY_POLL_LINK_ON;
1168 emac_rx_clk_tx(dev);
1169 netif_carrier_off(dev->ndev);
1170 link_poll_interval = PHY_POLL_LINK_OFF;
1172 dev->link_polling = 1;
1174 schedule_delayed_work(&dev->link_work, link_poll_interval);
1175 emac_print_link_status(dev);
1177 netif_carrier_on(dev->ndev);
1179 /* Required for Pause packet support in EMAC */
1180 dev_mc_add(ndev, default_mcast_addr, sizeof(default_mcast_addr), 1);
1182 emac_configure(dev);
1183 mal_poll_add(dev->mal, &dev->commac);
1184 mal_enable_tx_channel(dev->mal, dev->mal_tx_chan);
1185 mal_set_rcbs(dev->mal, dev->mal_rx_chan, emac_rx_size(ndev->mtu));
1186 mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1187 emac_tx_enable(dev);
1188 emac_rx_enable(dev);
1189 emac_netif_start(dev);
1191 mutex_unlock(&dev->link_lock);
1195 emac_clean_rx_ring(dev);
1196 free_irq(dev->emac_irq, dev);
1203 static int emac_link_differs(struct emac_instance *dev)
1205 u32 r = in_be32(&dev->emacp->mr1);
1207 int duplex = r & EMAC_MR1_FDE ? DUPLEX_FULL : DUPLEX_HALF;
1208 int speed, pause, asym_pause;
1210 if (r & EMAC_MR1_MF_1000)
1212 else if (r & EMAC_MR1_MF_100)
1217 switch (r & (EMAC_MR1_EIFC | EMAC_MR1_APP)) {
1218 case (EMAC_MR1_EIFC | EMAC_MR1_APP):
1227 pause = asym_pause = 0;
1229 return speed != dev->phy.speed || duplex != dev->phy.duplex ||
1230 pause != dev->phy.pause || asym_pause != dev->phy.asym_pause;
1234 static void emac_link_timer(struct work_struct *work)
1236 struct emac_instance *dev =
1237 container_of(to_delayed_work(work),
1238 struct emac_instance, link_work);
1239 int link_poll_interval;
1241 mutex_lock(&dev->link_lock);
1242 DBG2(dev, "link timer" NL);
1247 if (dev->phy.def->ops->poll_link(&dev->phy)) {
1248 if (!netif_carrier_ok(dev->ndev)) {
1249 emac_rx_clk_default(dev);
1250 /* Get new link parameters */
1251 dev->phy.def->ops->read_link(&dev->phy);
1253 netif_carrier_on(dev->ndev);
1254 emac_netif_stop(dev);
1255 emac_full_tx_reset(dev);
1256 emac_netif_start(dev);
1257 emac_print_link_status(dev);
1259 link_poll_interval = PHY_POLL_LINK_ON;
1261 if (netif_carrier_ok(dev->ndev)) {
1262 emac_rx_clk_tx(dev);
1263 netif_carrier_off(dev->ndev);
1264 netif_tx_disable(dev->ndev);
1265 emac_reinitialize(dev);
1266 emac_print_link_status(dev);
1268 link_poll_interval = PHY_POLL_LINK_OFF;
1270 schedule_delayed_work(&dev->link_work, link_poll_interval);
1272 mutex_unlock(&dev->link_lock);
1275 static void emac_force_link_update(struct emac_instance *dev)
1277 netif_carrier_off(dev->ndev);
1279 if (dev->link_polling) {
1280 cancel_rearming_delayed_work(&dev->link_work);
1281 if (dev->link_polling)
1282 schedule_delayed_work(&dev->link_work, PHY_POLL_LINK_OFF);
1286 /* Process ctx, rtnl_lock semaphore */
1287 static int emac_close(struct net_device *ndev)
1289 struct emac_instance *dev = netdev_priv(ndev);
1291 DBG(dev, "close" NL);
1293 if (dev->phy.address >= 0) {
1294 dev->link_polling = 0;
1295 cancel_rearming_delayed_work(&dev->link_work);
1297 mutex_lock(&dev->link_lock);
1298 emac_netif_stop(dev);
1300 mutex_unlock(&dev->link_lock);
1302 emac_rx_disable(dev);
1303 emac_tx_disable(dev);
1304 mal_disable_rx_channel(dev->mal, dev->mal_rx_chan);
1305 mal_disable_tx_channel(dev->mal, dev->mal_tx_chan);
1306 mal_poll_del(dev->mal, &dev->commac);
1308 emac_clean_tx_ring(dev);
1309 emac_clean_rx_ring(dev);
1311 free_irq(dev->emac_irq, dev);
1313 netif_carrier_off(ndev);
1318 static inline u16 emac_tx_csum(struct emac_instance *dev,
1319 struct sk_buff *skb)
1321 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH) &&
1322 (skb->ip_summed == CHECKSUM_PARTIAL)) {
1323 ++dev->stats.tx_packets_csum;
1324 return EMAC_TX_CTRL_TAH_CSUM;
1329 static inline int emac_xmit_finish(struct emac_instance *dev, int len)
1331 struct emac_regs __iomem *p = dev->emacp;
1332 struct net_device *ndev = dev->ndev;
1334 /* Send the packet out. If the if makes a significant perf
1335 * difference, then we can store the TMR0 value in "dev"
1338 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
1339 out_be32(&p->tmr0, EMAC4_TMR0_XMIT);
1341 out_be32(&p->tmr0, EMAC_TMR0_XMIT);
1343 if (unlikely(++dev->tx_cnt == NUM_TX_BUFF)) {
1344 netif_stop_queue(ndev);
1345 DBG2(dev, "stopped TX queue" NL);
1348 ndev->trans_start = jiffies;
1349 ++dev->stats.tx_packets;
1350 dev->stats.tx_bytes += len;
1352 return NETDEV_TX_OK;
1356 static int emac_start_xmit(struct sk_buff *skb, struct net_device *ndev)
1358 struct emac_instance *dev = netdev_priv(ndev);
1359 unsigned int len = skb->len;
1362 u16 ctrl = EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP | MAL_TX_CTRL_READY |
1363 MAL_TX_CTRL_LAST | emac_tx_csum(dev, skb);
1365 slot = dev->tx_slot++;
1366 if (dev->tx_slot == NUM_TX_BUFF) {
1368 ctrl |= MAL_TX_CTRL_WRAP;
1371 DBG2(dev, "xmit(%u) %d" NL, len, slot);
1373 dev->tx_skb[slot] = skb;
1374 dev->tx_desc[slot].data_ptr = dma_map_single(&dev->ofdev->dev,
1377 dev->tx_desc[slot].data_len = (u16) len;
1379 dev->tx_desc[slot].ctrl = ctrl;
1381 return emac_xmit_finish(dev, len);
1384 static inline int emac_xmit_split(struct emac_instance *dev, int slot,
1385 u32 pd, int len, int last, u16 base_ctrl)
1388 u16 ctrl = base_ctrl;
1389 int chunk = min(len, MAL_MAX_TX_SIZE);
1392 slot = (slot + 1) % NUM_TX_BUFF;
1395 ctrl |= MAL_TX_CTRL_LAST;
1396 if (slot == NUM_TX_BUFF - 1)
1397 ctrl |= MAL_TX_CTRL_WRAP;
1399 dev->tx_skb[slot] = NULL;
1400 dev->tx_desc[slot].data_ptr = pd;
1401 dev->tx_desc[slot].data_len = (u16) chunk;
1402 dev->tx_desc[slot].ctrl = ctrl;
1413 /* Tx lock BH disabled (SG version for TAH equipped EMACs) */
1414 static int emac_start_xmit_sg(struct sk_buff *skb, struct net_device *ndev)
1416 struct emac_instance *dev = netdev_priv(ndev);
1417 int nr_frags = skb_shinfo(skb)->nr_frags;
1418 int len = skb->len, chunk;
1423 /* This is common "fast" path */
1424 if (likely(!nr_frags && len <= MAL_MAX_TX_SIZE))
1425 return emac_start_xmit(skb, ndev);
1427 len -= skb->data_len;
1429 /* Note, this is only an *estimation*, we can still run out of empty
1430 * slots because of the additional fragmentation into
1431 * MAL_MAX_TX_SIZE-sized chunks
1433 if (unlikely(dev->tx_cnt + nr_frags + mal_tx_chunks(len) > NUM_TX_BUFF))
1436 ctrl = EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP | MAL_TX_CTRL_READY |
1437 emac_tx_csum(dev, skb);
1438 slot = dev->tx_slot;
1441 dev->tx_skb[slot] = NULL;
1442 chunk = min(len, MAL_MAX_TX_SIZE);
1443 dev->tx_desc[slot].data_ptr = pd =
1444 dma_map_single(&dev->ofdev->dev, skb->data, len, DMA_TO_DEVICE);
1445 dev->tx_desc[slot].data_len = (u16) chunk;
1448 slot = emac_xmit_split(dev, slot, pd + chunk, len, !nr_frags,
1451 for (i = 0; i < nr_frags; ++i) {
1452 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
1455 if (unlikely(dev->tx_cnt + mal_tx_chunks(len) >= NUM_TX_BUFF))
1458 pd = dma_map_page(&dev->ofdev->dev, frag->page, frag->page_offset, len,
1461 slot = emac_xmit_split(dev, slot, pd, len, i == nr_frags - 1,
1465 DBG2(dev, "xmit_sg(%u) %d - %d" NL, skb->len, dev->tx_slot, slot);
1467 /* Attach skb to the last slot so we don't release it too early */
1468 dev->tx_skb[slot] = skb;
1470 /* Send the packet out */
1471 if (dev->tx_slot == NUM_TX_BUFF - 1)
1472 ctrl |= MAL_TX_CTRL_WRAP;
1474 dev->tx_desc[dev->tx_slot].ctrl = ctrl;
1475 dev->tx_slot = (slot + 1) % NUM_TX_BUFF;
1477 return emac_xmit_finish(dev, skb->len);
1480 /* Well, too bad. Our previous estimation was overly optimistic.
1483 while (slot != dev->tx_slot) {
1484 dev->tx_desc[slot].ctrl = 0;
1487 slot = NUM_TX_BUFF - 1;
1489 ++dev->estats.tx_undo;
1492 netif_stop_queue(ndev);
1493 DBG2(dev, "stopped TX queue" NL);
1494 return NETDEV_TX_BUSY;
1498 static void emac_parse_tx_error(struct emac_instance *dev, u16 ctrl)
1500 struct emac_error_stats *st = &dev->estats;
1502 DBG(dev, "BD TX error %04x" NL, ctrl);
1505 if (ctrl & EMAC_TX_ST_BFCS)
1506 ++st->tx_bd_bad_fcs;
1507 if (ctrl & EMAC_TX_ST_LCS)
1508 ++st->tx_bd_carrier_loss;
1509 if (ctrl & EMAC_TX_ST_ED)
1510 ++st->tx_bd_excessive_deferral;
1511 if (ctrl & EMAC_TX_ST_EC)
1512 ++st->tx_bd_excessive_collisions;
1513 if (ctrl & EMAC_TX_ST_LC)
1514 ++st->tx_bd_late_collision;
1515 if (ctrl & EMAC_TX_ST_MC)
1516 ++st->tx_bd_multple_collisions;
1517 if (ctrl & EMAC_TX_ST_SC)
1518 ++st->tx_bd_single_collision;
1519 if (ctrl & EMAC_TX_ST_UR)
1520 ++st->tx_bd_underrun;
1521 if (ctrl & EMAC_TX_ST_SQE)
1525 static void emac_poll_tx(void *param)
1527 struct emac_instance *dev = param;
1530 DBG2(dev, "poll_tx, %d %d" NL, dev->tx_cnt, dev->ack_slot);
1532 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
1533 bad_mask = EMAC_IS_BAD_TX_TAH;
1535 bad_mask = EMAC_IS_BAD_TX;
1537 netif_tx_lock_bh(dev->ndev);
1540 int slot = dev->ack_slot, n = 0;
1542 ctrl = dev->tx_desc[slot].ctrl;
1543 if (!(ctrl & MAL_TX_CTRL_READY)) {
1544 struct sk_buff *skb = dev->tx_skb[slot];
1549 dev->tx_skb[slot] = NULL;
1551 slot = (slot + 1) % NUM_TX_BUFF;
1553 if (unlikely(ctrl & bad_mask))
1554 emac_parse_tx_error(dev, ctrl);
1560 dev->ack_slot = slot;
1561 if (netif_queue_stopped(dev->ndev) &&
1562 dev->tx_cnt < EMAC_TX_WAKEUP_THRESH)
1563 netif_wake_queue(dev->ndev);
1565 DBG2(dev, "tx %d pkts" NL, n);
1568 netif_tx_unlock_bh(dev->ndev);
1571 static inline void emac_recycle_rx_skb(struct emac_instance *dev, int slot,
1574 struct sk_buff *skb = dev->rx_skb[slot];
1576 DBG2(dev, "recycle %d %d" NL, slot, len);
1579 dma_map_single(&dev->ofdev->dev, skb->data - 2,
1580 EMAC_DMA_ALIGN(len + 2), DMA_FROM_DEVICE);
1582 dev->rx_desc[slot].data_len = 0;
1584 dev->rx_desc[slot].ctrl = MAL_RX_CTRL_EMPTY |
1585 (slot == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
1588 static void emac_parse_rx_error(struct emac_instance *dev, u16 ctrl)
1590 struct emac_error_stats *st = &dev->estats;
1592 DBG(dev, "BD RX error %04x" NL, ctrl);
1595 if (ctrl & EMAC_RX_ST_OE)
1596 ++st->rx_bd_overrun;
1597 if (ctrl & EMAC_RX_ST_BP)
1598 ++st->rx_bd_bad_packet;
1599 if (ctrl & EMAC_RX_ST_RP)
1600 ++st->rx_bd_runt_packet;
1601 if (ctrl & EMAC_RX_ST_SE)
1602 ++st->rx_bd_short_event;
1603 if (ctrl & EMAC_RX_ST_AE)
1604 ++st->rx_bd_alignment_error;
1605 if (ctrl & EMAC_RX_ST_BFCS)
1606 ++st->rx_bd_bad_fcs;
1607 if (ctrl & EMAC_RX_ST_PTL)
1608 ++st->rx_bd_packet_too_long;
1609 if (ctrl & EMAC_RX_ST_ORE)
1610 ++st->rx_bd_out_of_range;
1611 if (ctrl & EMAC_RX_ST_IRE)
1612 ++st->rx_bd_in_range;
1615 static inline void emac_rx_csum(struct emac_instance *dev,
1616 struct sk_buff *skb, u16 ctrl)
1618 #ifdef CONFIG_IBM_NEW_EMAC_TAH
1619 if (!ctrl && dev->tah_dev) {
1620 skb->ip_summed = CHECKSUM_UNNECESSARY;
1621 ++dev->stats.rx_packets_csum;
1626 static inline int emac_rx_sg_append(struct emac_instance *dev, int slot)
1628 if (likely(dev->rx_sg_skb != NULL)) {
1629 int len = dev->rx_desc[slot].data_len;
1630 int tot_len = dev->rx_sg_skb->len + len;
1632 if (unlikely(tot_len + 2 > dev->rx_skb_size)) {
1633 ++dev->estats.rx_dropped_mtu;
1634 dev_kfree_skb(dev->rx_sg_skb);
1635 dev->rx_sg_skb = NULL;
1637 cacheable_memcpy(skb_tail_pointer(dev->rx_sg_skb),
1638 dev->rx_skb[slot]->data, len);
1639 skb_put(dev->rx_sg_skb, len);
1640 emac_recycle_rx_skb(dev, slot, len);
1644 emac_recycle_rx_skb(dev, slot, 0);
1648 /* NAPI poll context */
1649 static int emac_poll_rx(void *param, int budget)
1651 struct emac_instance *dev = param;
1652 int slot = dev->rx_slot, received = 0;
1654 DBG2(dev, "poll_rx(%d)" NL, budget);
1657 while (budget > 0) {
1659 struct sk_buff *skb;
1660 u16 ctrl = dev->rx_desc[slot].ctrl;
1662 if (ctrl & MAL_RX_CTRL_EMPTY)
1665 skb = dev->rx_skb[slot];
1667 len = dev->rx_desc[slot].data_len;
1669 if (unlikely(!MAL_IS_SINGLE_RX(ctrl)))
1672 ctrl &= EMAC_BAD_RX_MASK;
1673 if (unlikely(ctrl && ctrl != EMAC_RX_TAH_BAD_CSUM)) {
1674 emac_parse_rx_error(dev, ctrl);
1675 ++dev->estats.rx_dropped_error;
1676 emac_recycle_rx_skb(dev, slot, 0);
1681 if (len < ETH_HLEN) {
1682 ++dev->estats.rx_dropped_stack;
1683 emac_recycle_rx_skb(dev, slot, len);
1687 if (len && len < EMAC_RX_COPY_THRESH) {
1688 struct sk_buff *copy_skb =
1689 alloc_skb(len + EMAC_RX_SKB_HEADROOM + 2, GFP_ATOMIC);
1690 if (unlikely(!copy_skb))
1693 skb_reserve(copy_skb, EMAC_RX_SKB_HEADROOM + 2);
1694 cacheable_memcpy(copy_skb->data - 2, skb->data - 2,
1696 emac_recycle_rx_skb(dev, slot, len);
1698 } else if (unlikely(emac_alloc_rx_skb(dev, slot, GFP_ATOMIC)))
1703 skb->dev = dev->ndev;
1704 skb->protocol = eth_type_trans(skb, dev->ndev);
1705 emac_rx_csum(dev, skb, ctrl);
1707 if (unlikely(netif_receive_skb(skb) == NET_RX_DROP))
1708 ++dev->estats.rx_dropped_stack;
1710 ++dev->stats.rx_packets;
1712 dev->stats.rx_bytes += len;
1713 slot = (slot + 1) % NUM_RX_BUFF;
1718 if (ctrl & MAL_RX_CTRL_FIRST) {
1719 BUG_ON(dev->rx_sg_skb);
1720 if (unlikely(emac_alloc_rx_skb(dev, slot, GFP_ATOMIC))) {
1721 DBG(dev, "rx OOM %d" NL, slot);
1722 ++dev->estats.rx_dropped_oom;
1723 emac_recycle_rx_skb(dev, slot, 0);
1725 dev->rx_sg_skb = skb;
1728 } else if (!emac_rx_sg_append(dev, slot) &&
1729 (ctrl & MAL_RX_CTRL_LAST)) {
1731 skb = dev->rx_sg_skb;
1732 dev->rx_sg_skb = NULL;
1734 ctrl &= EMAC_BAD_RX_MASK;
1735 if (unlikely(ctrl && ctrl != EMAC_RX_TAH_BAD_CSUM)) {
1736 emac_parse_rx_error(dev, ctrl);
1737 ++dev->estats.rx_dropped_error;
1745 DBG(dev, "rx OOM %d" NL, slot);
1746 /* Drop the packet and recycle skb */
1747 ++dev->estats.rx_dropped_oom;
1748 emac_recycle_rx_skb(dev, slot, 0);
1753 DBG2(dev, "rx %d BDs" NL, received);
1754 dev->rx_slot = slot;
1757 if (unlikely(budget && test_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags))) {
1759 if (!(dev->rx_desc[slot].ctrl & MAL_RX_CTRL_EMPTY)) {
1760 DBG2(dev, "rx restart" NL);
1765 if (dev->rx_sg_skb) {
1766 DBG2(dev, "dropping partial rx packet" NL);
1767 ++dev->estats.rx_dropped_error;
1768 dev_kfree_skb(dev->rx_sg_skb);
1769 dev->rx_sg_skb = NULL;
1772 clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1773 mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1774 emac_rx_enable(dev);
1780 /* NAPI poll context */
1781 static int emac_peek_rx(void *param)
1783 struct emac_instance *dev = param;
1785 return !(dev->rx_desc[dev->rx_slot].ctrl & MAL_RX_CTRL_EMPTY);
1788 /* NAPI poll context */
1789 static int emac_peek_rx_sg(void *param)
1791 struct emac_instance *dev = param;
1793 int slot = dev->rx_slot;
1795 u16 ctrl = dev->rx_desc[slot].ctrl;
1796 if (ctrl & MAL_RX_CTRL_EMPTY)
1798 else if (ctrl & MAL_RX_CTRL_LAST)
1801 slot = (slot + 1) % NUM_RX_BUFF;
1803 /* I'm just being paranoid here :) */
1804 if (unlikely(slot == dev->rx_slot))
1810 static void emac_rxde(void *param)
1812 struct emac_instance *dev = param;
1814 ++dev->estats.rx_stopped;
1815 emac_rx_disable_async(dev);
1819 static irqreturn_t emac_irq(int irq, void *dev_instance)
1821 struct emac_instance *dev = dev_instance;
1822 struct emac_regs __iomem *p = dev->emacp;
1823 struct emac_error_stats *st = &dev->estats;
1826 spin_lock(&dev->lock);
1828 isr = in_be32(&p->isr);
1829 out_be32(&p->isr, isr);
1831 DBG(dev, "isr = %08x" NL, isr);
1833 if (isr & EMAC4_ISR_TXPE)
1835 if (isr & EMAC4_ISR_RXPE)
1837 if (isr & EMAC4_ISR_TXUE)
1839 if (isr & EMAC4_ISR_RXOE)
1840 ++st->rx_fifo_overrun;
1841 if (isr & EMAC_ISR_OVR)
1843 if (isr & EMAC_ISR_BP)
1844 ++st->rx_bad_packet;
1845 if (isr & EMAC_ISR_RP)
1846 ++st->rx_runt_packet;
1847 if (isr & EMAC_ISR_SE)
1848 ++st->rx_short_event;
1849 if (isr & EMAC_ISR_ALE)
1850 ++st->rx_alignment_error;
1851 if (isr & EMAC_ISR_BFCS)
1853 if (isr & EMAC_ISR_PTLE)
1854 ++st->rx_packet_too_long;
1855 if (isr & EMAC_ISR_ORE)
1856 ++st->rx_out_of_range;
1857 if (isr & EMAC_ISR_IRE)
1859 if (isr & EMAC_ISR_SQE)
1861 if (isr & EMAC_ISR_TE)
1864 spin_unlock(&dev->lock);
1869 static struct net_device_stats *emac_stats(struct net_device *ndev)
1871 struct emac_instance *dev = netdev_priv(ndev);
1872 struct emac_stats *st = &dev->stats;
1873 struct emac_error_stats *est = &dev->estats;
1874 struct net_device_stats *nst = &dev->nstats;
1875 unsigned long flags;
1877 DBG2(dev, "stats" NL);
1879 /* Compute "legacy" statistics */
1880 spin_lock_irqsave(&dev->lock, flags);
1881 nst->rx_packets = (unsigned long)st->rx_packets;
1882 nst->rx_bytes = (unsigned long)st->rx_bytes;
1883 nst->tx_packets = (unsigned long)st->tx_packets;
1884 nst->tx_bytes = (unsigned long)st->tx_bytes;
1885 nst->rx_dropped = (unsigned long)(est->rx_dropped_oom +
1886 est->rx_dropped_error +
1887 est->rx_dropped_resize +
1888 est->rx_dropped_mtu);
1889 nst->tx_dropped = (unsigned long)est->tx_dropped;
1891 nst->rx_errors = (unsigned long)est->rx_bd_errors;
1892 nst->rx_fifo_errors = (unsigned long)(est->rx_bd_overrun +
1893 est->rx_fifo_overrun +
1895 nst->rx_frame_errors = (unsigned long)(est->rx_bd_alignment_error +
1896 est->rx_alignment_error);
1897 nst->rx_crc_errors = (unsigned long)(est->rx_bd_bad_fcs +
1899 nst->rx_length_errors = (unsigned long)(est->rx_bd_runt_packet +
1900 est->rx_bd_short_event +
1901 est->rx_bd_packet_too_long +
1902 est->rx_bd_out_of_range +
1903 est->rx_bd_in_range +
1904 est->rx_runt_packet +
1905 est->rx_short_event +
1906 est->rx_packet_too_long +
1907 est->rx_out_of_range +
1910 nst->tx_errors = (unsigned long)(est->tx_bd_errors + est->tx_errors);
1911 nst->tx_fifo_errors = (unsigned long)(est->tx_bd_underrun +
1913 nst->tx_carrier_errors = (unsigned long)est->tx_bd_carrier_loss;
1914 nst->collisions = (unsigned long)(est->tx_bd_excessive_deferral +
1915 est->tx_bd_excessive_collisions +
1916 est->tx_bd_late_collision +
1917 est->tx_bd_multple_collisions);
1918 spin_unlock_irqrestore(&dev->lock, flags);
1922 static struct mal_commac_ops emac_commac_ops = {
1923 .poll_tx = &emac_poll_tx,
1924 .poll_rx = &emac_poll_rx,
1925 .peek_rx = &emac_peek_rx,
1929 static struct mal_commac_ops emac_commac_sg_ops = {
1930 .poll_tx = &emac_poll_tx,
1931 .poll_rx = &emac_poll_rx,
1932 .peek_rx = &emac_peek_rx_sg,
1936 /* Ethtool support */
1937 static int emac_ethtool_get_settings(struct net_device *ndev,
1938 struct ethtool_cmd *cmd)
1940 struct emac_instance *dev = netdev_priv(ndev);
1942 cmd->supported = dev->phy.features;
1943 cmd->port = PORT_MII;
1944 cmd->phy_address = dev->phy.address;
1946 dev->phy.address >= 0 ? XCVR_EXTERNAL : XCVR_INTERNAL;
1948 mutex_lock(&dev->link_lock);
1949 cmd->advertising = dev->phy.advertising;
1950 cmd->autoneg = dev->phy.autoneg;
1951 cmd->speed = dev->phy.speed;
1952 cmd->duplex = dev->phy.duplex;
1953 mutex_unlock(&dev->link_lock);
1958 static int emac_ethtool_set_settings(struct net_device *ndev,
1959 struct ethtool_cmd *cmd)
1961 struct emac_instance *dev = netdev_priv(ndev);
1962 u32 f = dev->phy.features;
1964 DBG(dev, "set_settings(%d, %d, %d, 0x%08x)" NL,
1965 cmd->autoneg, cmd->speed, cmd->duplex, cmd->advertising);
1967 /* Basic sanity checks */
1968 if (dev->phy.address < 0)
1970 if (cmd->autoneg != AUTONEG_ENABLE && cmd->autoneg != AUTONEG_DISABLE)
1972 if (cmd->autoneg == AUTONEG_ENABLE && cmd->advertising == 0)
1974 if (cmd->duplex != DUPLEX_HALF && cmd->duplex != DUPLEX_FULL)
1977 if (cmd->autoneg == AUTONEG_DISABLE) {
1978 switch (cmd->speed) {
1980 if (cmd->duplex == DUPLEX_HALF &&
1981 !(f & SUPPORTED_10baseT_Half))
1983 if (cmd->duplex == DUPLEX_FULL &&
1984 !(f & SUPPORTED_10baseT_Full))
1988 if (cmd->duplex == DUPLEX_HALF &&
1989 !(f & SUPPORTED_100baseT_Half))
1991 if (cmd->duplex == DUPLEX_FULL &&
1992 !(f & SUPPORTED_100baseT_Full))
1996 if (cmd->duplex == DUPLEX_HALF &&
1997 !(f & SUPPORTED_1000baseT_Half))
1999 if (cmd->duplex == DUPLEX_FULL &&
2000 !(f & SUPPORTED_1000baseT_Full))
2007 mutex_lock(&dev->link_lock);
2008 dev->phy.def->ops->setup_forced(&dev->phy, cmd->speed,
2010 mutex_unlock(&dev->link_lock);
2013 if (!(f & SUPPORTED_Autoneg))
2016 mutex_lock(&dev->link_lock);
2017 dev->phy.def->ops->setup_aneg(&dev->phy,
2018 (cmd->advertising & f) |
2019 (dev->phy.advertising &
2021 ADVERTISED_Asym_Pause)));
2022 mutex_unlock(&dev->link_lock);
2024 emac_force_link_update(dev);
2029 static void emac_ethtool_get_ringparam(struct net_device *ndev,
2030 struct ethtool_ringparam *rp)
2032 rp->rx_max_pending = rp->rx_pending = NUM_RX_BUFF;
2033 rp->tx_max_pending = rp->tx_pending = NUM_TX_BUFF;
2036 static void emac_ethtool_get_pauseparam(struct net_device *ndev,
2037 struct ethtool_pauseparam *pp)
2039 struct emac_instance *dev = netdev_priv(ndev);
2041 mutex_lock(&dev->link_lock);
2042 if ((dev->phy.features & SUPPORTED_Autoneg) &&
2043 (dev->phy.advertising & (ADVERTISED_Pause | ADVERTISED_Asym_Pause)))
2046 if (dev->phy.duplex == DUPLEX_FULL) {
2048 pp->rx_pause = pp->tx_pause = 1;
2049 else if (dev->phy.asym_pause)
2052 mutex_unlock(&dev->link_lock);
2055 static u32 emac_ethtool_get_rx_csum(struct net_device *ndev)
2057 struct emac_instance *dev = netdev_priv(ndev);
2059 return dev->tah_dev != NULL;
2062 static int emac_get_regs_len(struct emac_instance *dev)
2064 if (emac_has_feature(dev, EMAC_FTR_EMAC4))
2065 return sizeof(struct emac_ethtool_regs_subhdr) +
2066 EMAC4_ETHTOOL_REGS_SIZE(dev);
2068 return sizeof(struct emac_ethtool_regs_subhdr) +
2069 EMAC_ETHTOOL_REGS_SIZE(dev);
2072 static int emac_ethtool_get_regs_len(struct net_device *ndev)
2074 struct emac_instance *dev = netdev_priv(ndev);
2077 size = sizeof(struct emac_ethtool_regs_hdr) +
2078 emac_get_regs_len(dev) + mal_get_regs_len(dev->mal);
2079 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
2080 size += zmii_get_regs_len(dev->zmii_dev);
2081 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
2082 size += rgmii_get_regs_len(dev->rgmii_dev);
2083 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
2084 size += tah_get_regs_len(dev->tah_dev);
2089 static void *emac_dump_regs(struct emac_instance *dev, void *buf)
2091 struct emac_ethtool_regs_subhdr *hdr = buf;
2093 hdr->index = dev->cell_index;
2094 if (emac_has_feature(dev, EMAC_FTR_EMAC4)) {
2095 hdr->version = EMAC4_ETHTOOL_REGS_VER;
2096 memcpy_fromio(hdr + 1, dev->emacp, EMAC4_ETHTOOL_REGS_SIZE(dev));
2097 return ((void *)(hdr + 1) + EMAC4_ETHTOOL_REGS_SIZE(dev));
2099 hdr->version = EMAC_ETHTOOL_REGS_VER;
2100 memcpy_fromio(hdr + 1, dev->emacp, EMAC_ETHTOOL_REGS_SIZE(dev));
2101 return ((void *)(hdr + 1) + EMAC_ETHTOOL_REGS_SIZE(dev));
2105 static void emac_ethtool_get_regs(struct net_device *ndev,
2106 struct ethtool_regs *regs, void *buf)
2108 struct emac_instance *dev = netdev_priv(ndev);
2109 struct emac_ethtool_regs_hdr *hdr = buf;
2111 hdr->components = 0;
2114 buf = mal_dump_regs(dev->mal, buf);
2115 buf = emac_dump_regs(dev, buf);
2116 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII)) {
2117 hdr->components |= EMAC_ETHTOOL_REGS_ZMII;
2118 buf = zmii_dump_regs(dev->zmii_dev, buf);
2120 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII)) {
2121 hdr->components |= EMAC_ETHTOOL_REGS_RGMII;
2122 buf = rgmii_dump_regs(dev->rgmii_dev, buf);
2124 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH)) {
2125 hdr->components |= EMAC_ETHTOOL_REGS_TAH;
2126 buf = tah_dump_regs(dev->tah_dev, buf);
2130 static int emac_ethtool_nway_reset(struct net_device *ndev)
2132 struct emac_instance *dev = netdev_priv(ndev);
2135 DBG(dev, "nway_reset" NL);
2137 if (dev->phy.address < 0)
2140 mutex_lock(&dev->link_lock);
2141 if (!dev->phy.autoneg) {
2146 dev->phy.def->ops->setup_aneg(&dev->phy, dev->phy.advertising);
2148 mutex_unlock(&dev->link_lock);
2149 emac_force_link_update(dev);
2153 static int emac_ethtool_get_sset_count(struct net_device *ndev, int stringset)
2155 if (stringset == ETH_SS_STATS)
2156 return EMAC_ETHTOOL_STATS_COUNT;
2161 static void emac_ethtool_get_strings(struct net_device *ndev, u32 stringset,
2164 if (stringset == ETH_SS_STATS)
2165 memcpy(buf, &emac_stats_keys, sizeof(emac_stats_keys));
2168 static void emac_ethtool_get_ethtool_stats(struct net_device *ndev,
2169 struct ethtool_stats *estats,
2172 struct emac_instance *dev = netdev_priv(ndev);
2174 memcpy(tmp_stats, &dev->stats, sizeof(dev->stats));
2175 tmp_stats += sizeof(dev->stats) / sizeof(u64);
2176 memcpy(tmp_stats, &dev->estats, sizeof(dev->estats));
2179 static void emac_ethtool_get_drvinfo(struct net_device *ndev,
2180 struct ethtool_drvinfo *info)
2182 struct emac_instance *dev = netdev_priv(ndev);
2184 strcpy(info->driver, "ibm_emac");
2185 strcpy(info->version, DRV_VERSION);
2186 info->fw_version[0] = '\0';
2187 sprintf(info->bus_info, "PPC 4xx EMAC-%d %s",
2188 dev->cell_index, dev->ofdev->node->full_name);
2189 info->regdump_len = emac_ethtool_get_regs_len(ndev);
2192 static const struct ethtool_ops emac_ethtool_ops = {
2193 .get_settings = emac_ethtool_get_settings,
2194 .set_settings = emac_ethtool_set_settings,
2195 .get_drvinfo = emac_ethtool_get_drvinfo,
2197 .get_regs_len = emac_ethtool_get_regs_len,
2198 .get_regs = emac_ethtool_get_regs,
2200 .nway_reset = emac_ethtool_nway_reset,
2202 .get_ringparam = emac_ethtool_get_ringparam,
2203 .get_pauseparam = emac_ethtool_get_pauseparam,
2205 .get_rx_csum = emac_ethtool_get_rx_csum,
2207 .get_strings = emac_ethtool_get_strings,
2208 .get_sset_count = emac_ethtool_get_sset_count,
2209 .get_ethtool_stats = emac_ethtool_get_ethtool_stats,
2211 .get_link = ethtool_op_get_link,
2212 .get_tx_csum = ethtool_op_get_tx_csum,
2213 .get_sg = ethtool_op_get_sg,
2216 static int emac_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
2218 struct emac_instance *dev = netdev_priv(ndev);
2219 struct mii_ioctl_data *data = if_mii(rq);
2221 DBG(dev, "ioctl %08x" NL, cmd);
2223 if (dev->phy.address < 0)
2228 data->phy_id = dev->phy.address;
2231 data->val_out = emac_mdio_read(ndev, dev->phy.address,
2236 emac_mdio_write(ndev, dev->phy.address, data->reg_num,
2244 struct emac_depentry {
2246 struct device_node *node;
2247 struct of_device *ofdev;
2251 #define EMAC_DEP_MAL_IDX 0
2252 #define EMAC_DEP_ZMII_IDX 1
2253 #define EMAC_DEP_RGMII_IDX 2
2254 #define EMAC_DEP_TAH_IDX 3
2255 #define EMAC_DEP_MDIO_IDX 4
2256 #define EMAC_DEP_PREV_IDX 5
2257 #define EMAC_DEP_COUNT 6
2259 static int __devinit emac_check_deps(struct emac_instance *dev,
2260 struct emac_depentry *deps)
2263 struct device_node *np;
2265 for (i = 0; i < EMAC_DEP_COUNT; i++) {
2266 /* no dependency on that item, allright */
2267 if (deps[i].phandle == 0) {
2271 /* special case for blist as the dependency might go away */
2272 if (i == EMAC_DEP_PREV_IDX) {
2273 np = *(dev->blist - 1);
2275 deps[i].phandle = 0;
2279 if (deps[i].node == NULL)
2280 deps[i].node = of_node_get(np);
2282 if (deps[i].node == NULL)
2283 deps[i].node = of_find_node_by_phandle(deps[i].phandle);
2284 if (deps[i].node == NULL)
2286 if (deps[i].ofdev == NULL)
2287 deps[i].ofdev = of_find_device_by_node(deps[i].node);
2288 if (deps[i].ofdev == NULL)
2290 if (deps[i].drvdata == NULL)
2291 deps[i].drvdata = dev_get_drvdata(&deps[i].ofdev->dev);
2292 if (deps[i].drvdata != NULL)
2295 return (there == EMAC_DEP_COUNT);
2298 static void emac_put_deps(struct emac_instance *dev)
2301 of_dev_put(dev->mal_dev);
2303 of_dev_put(dev->zmii_dev);
2305 of_dev_put(dev->rgmii_dev);
2307 of_dev_put(dev->mdio_dev);
2309 of_dev_put(dev->tah_dev);
2312 static int __devinit emac_of_bus_notify(struct notifier_block *nb,
2313 unsigned long action, void *data)
2315 /* We are only intereted in device addition */
2316 if (action == BUS_NOTIFY_BOUND_DRIVER)
2317 wake_up_all(&emac_probe_wait);
2321 static struct notifier_block emac_of_bus_notifier __devinitdata = {
2322 .notifier_call = emac_of_bus_notify
2325 static int __devinit emac_wait_deps(struct emac_instance *dev)
2327 struct emac_depentry deps[EMAC_DEP_COUNT];
2330 memset(&deps, 0, sizeof(deps));
2332 deps[EMAC_DEP_MAL_IDX].phandle = dev->mal_ph;
2333 deps[EMAC_DEP_ZMII_IDX].phandle = dev->zmii_ph;
2334 deps[EMAC_DEP_RGMII_IDX].phandle = dev->rgmii_ph;
2336 deps[EMAC_DEP_TAH_IDX].phandle = dev->tah_ph;
2338 deps[EMAC_DEP_MDIO_IDX].phandle = dev->mdio_ph;
2339 if (dev->blist && dev->blist > emac_boot_list)
2340 deps[EMAC_DEP_PREV_IDX].phandle = 0xffffffffu;
2341 bus_register_notifier(&of_platform_bus_type, &emac_of_bus_notifier);
2342 wait_event_timeout(emac_probe_wait,
2343 emac_check_deps(dev, deps),
2344 EMAC_PROBE_DEP_TIMEOUT);
2345 bus_unregister_notifier(&of_platform_bus_type, &emac_of_bus_notifier);
2346 err = emac_check_deps(dev, deps) ? 0 : -ENODEV;
2347 for (i = 0; i < EMAC_DEP_COUNT; i++) {
2349 of_node_put(deps[i].node);
2350 if (err && deps[i].ofdev)
2351 of_dev_put(deps[i].ofdev);
2354 dev->mal_dev = deps[EMAC_DEP_MAL_IDX].ofdev;
2355 dev->zmii_dev = deps[EMAC_DEP_ZMII_IDX].ofdev;
2356 dev->rgmii_dev = deps[EMAC_DEP_RGMII_IDX].ofdev;
2357 dev->tah_dev = deps[EMAC_DEP_TAH_IDX].ofdev;
2358 dev->mdio_dev = deps[EMAC_DEP_MDIO_IDX].ofdev;
2360 if (deps[EMAC_DEP_PREV_IDX].ofdev)
2361 of_dev_put(deps[EMAC_DEP_PREV_IDX].ofdev);
2365 static int __devinit emac_read_uint_prop(struct device_node *np, const char *name,
2366 u32 *val, int fatal)
2369 const u32 *prop = of_get_property(np, name, &len);
2370 if (prop == NULL || len < sizeof(u32)) {
2372 printk(KERN_ERR "%s: missing %s property\n",
2373 np->full_name, name);
2380 static int __devinit emac_init_phy(struct emac_instance *dev)
2382 struct device_node *np = dev->ofdev->node;
2383 struct net_device *ndev = dev->ndev;
2387 dev->phy.dev = ndev;
2388 dev->phy.mode = dev->phy_mode;
2390 /* PHY-less configuration.
2391 * XXX I probably should move these settings to the dev tree
2393 if (dev->phy_address == 0xffffffff && dev->phy_map == 0xffffffff) {
2396 /* PHY-less configuration.
2397 * XXX I probably should move these settings to the dev tree
2399 dev->phy.address = -1;
2400 dev->phy.features = SUPPORTED_MII;
2401 if (emac_phy_supports_gige(dev->phy_mode))
2402 dev->phy.features |= SUPPORTED_1000baseT_Full;
2404 dev->phy.features |= SUPPORTED_100baseT_Full;
2410 mutex_lock(&emac_phy_map_lock);
2411 phy_map = dev->phy_map | busy_phy_map;
2413 DBG(dev, "PHY maps %08x %08x" NL, dev->phy_map, busy_phy_map);
2415 dev->phy.mdio_read = emac_mdio_read;
2416 dev->phy.mdio_write = emac_mdio_write;
2418 /* Enable internal clock source */
2419 #ifdef CONFIG_PPC_DCR_NATIVE
2420 if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2421 dcri_clrset(SDR0, SDR0_MFR, 0, SDR0_MFR_ECS);
2423 /* PHY clock workaround */
2424 emac_rx_clk_tx(dev);
2426 /* Enable internal clock source on 440GX*/
2427 #ifdef CONFIG_PPC_DCR_NATIVE
2428 if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2429 dcri_clrset(SDR0, SDR0_MFR, 0, SDR0_MFR_ECS);
2431 /* Configure EMAC with defaults so we can at least use MDIO
2432 * This is needed mostly for 440GX
2434 if (emac_phy_gpcs(dev->phy.mode)) {
2436 * Make GPCS PHY address equal to EMAC index.
2437 * We probably should take into account busy_phy_map
2438 * and/or phy_map here.
2440 * Note that the busy_phy_map is currently global
2441 * while it should probably be per-ASIC...
2443 dev->phy.gpcs_address = dev->gpcs_address;
2444 if (dev->phy.gpcs_address == 0xffffffff)
2445 dev->phy.address = dev->cell_index;
2448 emac_configure(dev);
2450 if (dev->phy_address != 0xffffffff)
2451 phy_map = ~(1 << dev->phy_address);
2453 for (i = 0; i < 0x20; phy_map >>= 1, ++i)
2454 if (!(phy_map & 1)) {
2456 busy_phy_map |= 1 << i;
2458 /* Quick check if there is a PHY at the address */
2459 r = emac_mdio_read(dev->ndev, i, MII_BMCR);
2460 if (r == 0xffff || r < 0)
2462 if (!emac_mii_phy_probe(&dev->phy, i))
2466 /* Enable external clock source */
2467 #ifdef CONFIG_PPC_DCR_NATIVE
2468 if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2469 dcri_clrset(SDR0, SDR0_MFR, SDR0_MFR_ECS, 0);
2471 mutex_unlock(&emac_phy_map_lock);
2473 printk(KERN_WARNING "%s: can't find PHY!\n", np->full_name);
2478 if (dev->phy.def->ops->init)
2479 dev->phy.def->ops->init(&dev->phy);
2481 /* Disable any PHY features not supported by the platform */
2482 dev->phy.def->features &= ~dev->phy_feat_exc;
2484 /* Setup initial link parameters */
2485 if (dev->phy.features & SUPPORTED_Autoneg) {
2486 adv = dev->phy.features;
2487 if (!emac_has_feature(dev, EMAC_FTR_NO_FLOW_CONTROL_40x))
2488 adv |= ADVERTISED_Pause | ADVERTISED_Asym_Pause;
2489 /* Restart autonegotiation */
2490 dev->phy.def->ops->setup_aneg(&dev->phy, adv);
2492 u32 f = dev->phy.def->features;
2493 int speed = SPEED_10, fd = DUPLEX_HALF;
2495 /* Select highest supported speed/duplex */
2496 if (f & SUPPORTED_1000baseT_Full) {
2499 } else if (f & SUPPORTED_1000baseT_Half)
2501 else if (f & SUPPORTED_100baseT_Full) {
2504 } else if (f & SUPPORTED_100baseT_Half)
2506 else if (f & SUPPORTED_10baseT_Full)
2509 /* Force link parameters */
2510 dev->phy.def->ops->setup_forced(&dev->phy, speed, fd);
2515 static int __devinit emac_init_config(struct emac_instance *dev)
2517 struct device_node *np = dev->ofdev->node;
2520 const char *pm, *phy_modes[] = {
2522 [PHY_MODE_MII] = "mii",
2523 [PHY_MODE_RMII] = "rmii",
2524 [PHY_MODE_SMII] = "smii",
2525 [PHY_MODE_RGMII] = "rgmii",
2526 [PHY_MODE_TBI] = "tbi",
2527 [PHY_MODE_GMII] = "gmii",
2528 [PHY_MODE_RTBI] = "rtbi",
2529 [PHY_MODE_SGMII] = "sgmii",
2532 /* Read config from device-tree */
2533 if (emac_read_uint_prop(np, "mal-device", &dev->mal_ph, 1))
2535 if (emac_read_uint_prop(np, "mal-tx-channel", &dev->mal_tx_chan, 1))
2537 if (emac_read_uint_prop(np, "mal-rx-channel", &dev->mal_rx_chan, 1))
2539 if (emac_read_uint_prop(np, "cell-index", &dev->cell_index, 1))
2541 if (emac_read_uint_prop(np, "max-frame-size", &dev->max_mtu, 0))
2542 dev->max_mtu = 1500;
2543 if (emac_read_uint_prop(np, "rx-fifo-size", &dev->rx_fifo_size, 0))
2544 dev->rx_fifo_size = 2048;
2545 if (emac_read_uint_prop(np, "tx-fifo-size", &dev->tx_fifo_size, 0))
2546 dev->tx_fifo_size = 2048;
2547 if (emac_read_uint_prop(np, "rx-fifo-size-gige", &dev->rx_fifo_size_gige, 0))
2548 dev->rx_fifo_size_gige = dev->rx_fifo_size;
2549 if (emac_read_uint_prop(np, "tx-fifo-size-gige", &dev->tx_fifo_size_gige, 0))
2550 dev->tx_fifo_size_gige = dev->tx_fifo_size;
2551 if (emac_read_uint_prop(np, "phy-address", &dev->phy_address, 0))
2552 dev->phy_address = 0xffffffff;
2553 if (emac_read_uint_prop(np, "phy-map", &dev->phy_map, 0))
2554 dev->phy_map = 0xffffffff;
2555 if (emac_read_uint_prop(np, "gpcs-address", &dev->gpcs_address, 0))
2556 dev->gpcs_address = 0xffffffff;
2557 if (emac_read_uint_prop(np->parent, "clock-frequency", &dev->opb_bus_freq, 1))
2559 if (emac_read_uint_prop(np, "tah-device", &dev->tah_ph, 0))
2561 if (emac_read_uint_prop(np, "tah-channel", &dev->tah_port, 0))
2563 if (emac_read_uint_prop(np, "mdio-device", &dev->mdio_ph, 0))
2565 if (emac_read_uint_prop(np, "zmii-device", &dev->zmii_ph, 0))
2567 if (emac_read_uint_prop(np, "zmii-channel", &dev->zmii_port, 0))
2568 dev->zmii_port = 0xffffffff;
2569 if (emac_read_uint_prop(np, "rgmii-device", &dev->rgmii_ph, 0))
2571 if (emac_read_uint_prop(np, "rgmii-channel", &dev->rgmii_port, 0))
2572 dev->rgmii_port = 0xffffffff;
2573 if (emac_read_uint_prop(np, "fifo-entry-size", &dev->fifo_entry_size, 0))
2574 dev->fifo_entry_size = 16;
2575 if (emac_read_uint_prop(np, "mal-burst-size", &dev->mal_burst_size, 0))
2576 dev->mal_burst_size = 256;
2578 /* PHY mode needs some decoding */
2579 dev->phy_mode = PHY_MODE_NA;
2580 pm = of_get_property(np, "phy-mode", &plen);
2583 for (i = 0; i < ARRAY_SIZE(phy_modes); i++)
2584 if (!strcasecmp(pm, phy_modes[i])) {
2590 /* Backward compat with non-final DT */
2591 if (dev->phy_mode == PHY_MODE_NA && pm != NULL && plen == 4) {
2592 u32 nmode = *(const u32 *)pm;
2593 if (nmode > PHY_MODE_NA && nmode <= PHY_MODE_SGMII)
2594 dev->phy_mode = nmode;
2597 /* Check EMAC version */
2598 if (of_device_is_compatible(np, "ibm,emac4sync")) {
2599 dev->features |= (EMAC_FTR_EMAC4 | EMAC_FTR_EMAC4SYNC);
2600 if (of_device_is_compatible(np, "ibm,emac-460ex") ||
2601 of_device_is_compatible(np, "ibm,emac-460gt"))
2602 dev->features |= EMAC_FTR_460EX_PHY_CLK_FIX;
2603 if (of_device_is_compatible(np, "ibm,emac-405ex") ||
2604 of_device_is_compatible(np, "ibm,emac-405exr"))
2605 dev->features |= EMAC_FTR_440EP_PHY_CLK_FIX;
2606 } else if (of_device_is_compatible(np, "ibm,emac4")) {
2607 dev->features |= EMAC_FTR_EMAC4;
2608 if (of_device_is_compatible(np, "ibm,emac-440gx"))
2609 dev->features |= EMAC_FTR_440GX_PHY_CLK_FIX;
2611 if (of_device_is_compatible(np, "ibm,emac-440ep") ||
2612 of_device_is_compatible(np, "ibm,emac-440gr"))
2613 dev->features |= EMAC_FTR_440EP_PHY_CLK_FIX;
2614 if (of_device_is_compatible(np, "ibm,emac-405ez")) {
2615 #ifdef CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL
2616 dev->features |= EMAC_FTR_NO_FLOW_CONTROL_40x;
2618 printk(KERN_ERR "%s: Flow control not disabled!\n",
2626 /* Fixup some feature bits based on the device tree */
2627 if (of_get_property(np, "has-inverted-stacr-oc", NULL))
2628 dev->features |= EMAC_FTR_STACR_OC_INVERT;
2629 if (of_get_property(np, "has-new-stacr-staopc", NULL))
2630 dev->features |= EMAC_FTR_HAS_NEW_STACR;
2632 /* CAB lacks the appropriate properties */
2633 if (of_device_is_compatible(np, "ibm,emac-axon"))
2634 dev->features |= EMAC_FTR_HAS_NEW_STACR |
2635 EMAC_FTR_STACR_OC_INVERT;
2637 /* Enable TAH/ZMII/RGMII features as found */
2638 if (dev->tah_ph != 0) {
2639 #ifdef CONFIG_IBM_NEW_EMAC_TAH
2640 dev->features |= EMAC_FTR_HAS_TAH;
2642 printk(KERN_ERR "%s: TAH support not enabled !\n",
2648 if (dev->zmii_ph != 0) {
2649 #ifdef CONFIG_IBM_NEW_EMAC_ZMII
2650 dev->features |= EMAC_FTR_HAS_ZMII;
2652 printk(KERN_ERR "%s: ZMII support not enabled !\n",
2658 if (dev->rgmii_ph != 0) {
2659 #ifdef CONFIG_IBM_NEW_EMAC_RGMII
2660 dev->features |= EMAC_FTR_HAS_RGMII;
2662 printk(KERN_ERR "%s: RGMII support not enabled !\n",
2668 /* Read MAC-address */
2669 p = of_get_property(np, "local-mac-address", NULL);
2671 printk(KERN_ERR "%s: Can't find local-mac-address property\n",
2675 memcpy(dev->ndev->dev_addr, p, 6);
2677 /* IAHT and GAHT filter parameterization */
2678 if (emac_has_feature(dev, EMAC_FTR_EMAC4SYNC)) {
2679 dev->xaht_slots_shift = EMAC4SYNC_XAHT_SLOTS_SHIFT;
2680 dev->xaht_width_shift = EMAC4SYNC_XAHT_WIDTH_SHIFT;
2682 dev->xaht_slots_shift = EMAC4_XAHT_SLOTS_SHIFT;
2683 dev->xaht_width_shift = EMAC4_XAHT_WIDTH_SHIFT;
2686 DBG(dev, "features : 0x%08x / 0x%08x\n", dev->features, EMAC_FTRS_POSSIBLE);
2687 DBG(dev, "tx_fifo_size : %d (%d gige)\n", dev->tx_fifo_size, dev->tx_fifo_size_gige);
2688 DBG(dev, "rx_fifo_size : %d (%d gige)\n", dev->rx_fifo_size, dev->rx_fifo_size_gige);
2689 DBG(dev, "max_mtu : %d\n", dev->max_mtu);
2690 DBG(dev, "OPB freq : %d\n", dev->opb_bus_freq);
2695 static const struct net_device_ops emac_netdev_ops = {
2696 .ndo_open = emac_open,
2697 .ndo_stop = emac_close,
2698 .ndo_get_stats = emac_stats,
2699 .ndo_set_multicast_list = emac_set_multicast_list,
2700 .ndo_do_ioctl = emac_ioctl,
2701 .ndo_tx_timeout = emac_tx_timeout,
2702 .ndo_validate_addr = eth_validate_addr,
2703 .ndo_set_mac_address = eth_mac_addr,
2704 .ndo_start_xmit = emac_start_xmit,
2705 .ndo_change_mtu = eth_change_mtu,
2708 static const struct net_device_ops emac_gige_netdev_ops = {
2709 .ndo_open = emac_open,
2710 .ndo_stop = emac_close,
2711 .ndo_get_stats = emac_stats,
2712 .ndo_set_multicast_list = emac_set_multicast_list,
2713 .ndo_do_ioctl = emac_ioctl,
2714 .ndo_tx_timeout = emac_tx_timeout,
2715 .ndo_validate_addr = eth_validate_addr,
2716 .ndo_set_mac_address = eth_mac_addr,
2717 .ndo_start_xmit = emac_start_xmit_sg,
2718 .ndo_change_mtu = emac_change_mtu,
2721 static int __devinit emac_probe(struct of_device *ofdev,
2722 const struct of_device_id *match)
2724 struct net_device *ndev;
2725 struct emac_instance *dev;
2726 struct device_node *np = ofdev->node;
2727 struct device_node **blist = NULL;
2730 /* Skip unused/unwired EMACS. We leave the check for an unused
2731 * property here for now, but new flat device trees should set a
2732 * status property to "disabled" instead.
2734 if (of_get_property(np, "unused", NULL) || !of_device_is_available(np))
2737 /* Find ourselves in the bootlist if we are there */
2738 for (i = 0; i < EMAC_BOOT_LIST_SIZE; i++)
2739 if (emac_boot_list[i] == np)
2740 blist = &emac_boot_list[i];
2742 /* Allocate our net_device structure */
2744 ndev = alloc_etherdev(sizeof(struct emac_instance));
2746 printk(KERN_ERR "%s: could not allocate ethernet device!\n",
2750 dev = netdev_priv(ndev);
2754 SET_NETDEV_DEV(ndev, &ofdev->dev);
2756 /* Initialize some embedded data structures */
2757 mutex_init(&dev->mdio_lock);
2758 mutex_init(&dev->link_lock);
2759 spin_lock_init(&dev->lock);
2760 INIT_WORK(&dev->reset_work, emac_reset_work);
2762 /* Init various config data based on device-tree */
2763 err = emac_init_config(dev);
2767 /* Get interrupts. EMAC irq is mandatory, WOL irq is optional */
2768 dev->emac_irq = irq_of_parse_and_map(np, 0);
2769 dev->wol_irq = irq_of_parse_and_map(np, 1);
2770 if (dev->emac_irq == NO_IRQ) {
2771 printk(KERN_ERR "%s: Can't map main interrupt\n", np->full_name);
2774 ndev->irq = dev->emac_irq;
2777 if (of_address_to_resource(np, 0, &dev->rsrc_regs)) {
2778 printk(KERN_ERR "%s: Can't get registers address\n",
2782 // TODO : request_mem_region
2783 dev->emacp = ioremap(dev->rsrc_regs.start,
2784 dev->rsrc_regs.end - dev->rsrc_regs.start + 1);
2785 if (dev->emacp == NULL) {
2786 printk(KERN_ERR "%s: Can't map device registers!\n",
2792 /* Wait for dependent devices */
2793 err = emac_wait_deps(dev);
2796 "%s: Timeout waiting for dependent devices\n",
2798 /* display more info about what's missing ? */
2801 dev->mal = dev_get_drvdata(&dev->mal_dev->dev);
2802 if (dev->mdio_dev != NULL)
2803 dev->mdio_instance = dev_get_drvdata(&dev->mdio_dev->dev);
2805 /* Register with MAL */
2806 dev->commac.ops = &emac_commac_ops;
2807 dev->commac.dev = dev;
2808 dev->commac.tx_chan_mask = MAL_CHAN_MASK(dev->mal_tx_chan);
2809 dev->commac.rx_chan_mask = MAL_CHAN_MASK(dev->mal_rx_chan);
2810 err = mal_register_commac(dev->mal, &dev->commac);
2812 printk(KERN_ERR "%s: failed to register with mal %s!\n",
2813 np->full_name, dev->mal_dev->node->full_name);
2816 dev->rx_skb_size = emac_rx_skb_size(ndev->mtu);
2817 dev->rx_sync_size = emac_rx_sync_size(ndev->mtu);
2819 /* Get pointers to BD rings */
2821 dev->mal->bd_virt + mal_tx_bd_offset(dev->mal, dev->mal_tx_chan);
2823 dev->mal->bd_virt + mal_rx_bd_offset(dev->mal, dev->mal_rx_chan);
2825 DBG(dev, "tx_desc %p" NL, dev->tx_desc);
2826 DBG(dev, "rx_desc %p" NL, dev->rx_desc);
2829 memset(dev->tx_desc, 0, NUM_TX_BUFF * sizeof(struct mal_descriptor));
2830 memset(dev->rx_desc, 0, NUM_RX_BUFF * sizeof(struct mal_descriptor));
2831 memset(dev->tx_skb, 0, NUM_TX_BUFF * sizeof(struct sk_buff *));
2832 memset(dev->rx_skb, 0, NUM_RX_BUFF * sizeof(struct sk_buff *));
2834 /* Attach to ZMII, if needed */
2835 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII) &&
2836 (err = zmii_attach(dev->zmii_dev, dev->zmii_port, &dev->phy_mode)) != 0)
2837 goto err_unreg_commac;
2839 /* Attach to RGMII, if needed */
2840 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII) &&
2841 (err = rgmii_attach(dev->rgmii_dev, dev->rgmii_port, dev->phy_mode)) != 0)
2842 goto err_detach_zmii;
2844 /* Attach to TAH, if needed */
2845 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH) &&
2846 (err = tah_attach(dev->tah_dev, dev->tah_port)) != 0)
2847 goto err_detach_rgmii;
2849 /* Set some link defaults before we can find out real parameters */
2850 dev->phy.speed = SPEED_100;
2851 dev->phy.duplex = DUPLEX_FULL;
2852 dev->phy.autoneg = AUTONEG_DISABLE;
2853 dev->phy.pause = dev->phy.asym_pause = 0;
2854 dev->stop_timeout = STOP_TIMEOUT_100;
2855 INIT_DELAYED_WORK(&dev->link_work, emac_link_timer);
2857 /* Find PHY if any */
2858 err = emac_init_phy(dev);
2860 goto err_detach_tah;
2863 ndev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;
2864 ndev->watchdog_timeo = 5 * HZ;
2865 if (emac_phy_supports_gige(dev->phy_mode)) {
2866 ndev->netdev_ops = &emac_gige_netdev_ops;
2867 dev->commac.ops = &emac_commac_sg_ops;
2869 ndev->netdev_ops = &emac_netdev_ops;
2870 SET_ETHTOOL_OPS(ndev, &emac_ethtool_ops);
2872 netif_carrier_off(ndev);
2873 netif_stop_queue(ndev);
2875 err = register_netdev(ndev);
2877 printk(KERN_ERR "%s: failed to register net device (%d)!\n",
2878 np->full_name, err);
2879 goto err_detach_tah;
2882 /* Set our drvdata last as we don't want them visible until we are
2886 dev_set_drvdata(&ofdev->dev, dev);
2888 /* There's a new kid in town ! Let's tell everybody */
2889 wake_up_all(&emac_probe_wait);
2892 printk(KERN_INFO "%s: EMAC-%d %s, MAC %pM\n",
2893 ndev->name, dev->cell_index, np->full_name, ndev->dev_addr);
2895 if (dev->phy_mode == PHY_MODE_SGMII)
2896 printk(KERN_NOTICE "%s: in SGMII mode\n", ndev->name);
2898 if (dev->phy.address >= 0)
2899 printk("%s: found %s PHY (0x%02x)\n", ndev->name,
2900 dev->phy.def->name, dev->phy.address);
2902 emac_dbg_register(dev);
2907 /* I have a bad feeling about this ... */
2910 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
2911 tah_detach(dev->tah_dev, dev->tah_port);
2913 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
2914 rgmii_detach(dev->rgmii_dev, dev->rgmii_port);
2916 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
2917 zmii_detach(dev->zmii_dev, dev->zmii_port);
2919 mal_unregister_commac(dev->mal, &dev->commac);
2923 iounmap(dev->emacp);
2925 if (dev->wol_irq != NO_IRQ)
2926 irq_dispose_mapping(dev->wol_irq);
2927 if (dev->emac_irq != NO_IRQ)
2928 irq_dispose_mapping(dev->emac_irq);
2932 /* if we were on the bootlist, remove us as we won't show up and
2933 * wake up all waiters to notify them in case they were waiting
2938 wake_up_all(&emac_probe_wait);
2943 static int __devexit emac_remove(struct of_device *ofdev)
2945 struct emac_instance *dev = dev_get_drvdata(&ofdev->dev);
2947 DBG(dev, "remove" NL);
2949 dev_set_drvdata(&ofdev->dev, NULL);
2951 unregister_netdev(dev->ndev);
2953 flush_scheduled_work();
2955 if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
2956 tah_detach(dev->tah_dev, dev->tah_port);
2957 if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
2958 rgmii_detach(dev->rgmii_dev, dev->rgmii_port);
2959 if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
2960 zmii_detach(dev->zmii_dev, dev->zmii_port);
2962 mal_unregister_commac(dev->mal, &dev->commac);
2965 emac_dbg_unregister(dev);
2966 iounmap(dev->emacp);
2968 if (dev->wol_irq != NO_IRQ)
2969 irq_dispose_mapping(dev->wol_irq);
2970 if (dev->emac_irq != NO_IRQ)
2971 irq_dispose_mapping(dev->emac_irq);
2978 /* XXX Features in here should be replaced by properties... */
2979 static struct of_device_id emac_match[] =
2983 .compatible = "ibm,emac",
2987 .compatible = "ibm,emac4",
2991 .compatible = "ibm,emac4sync",
2995 MODULE_DEVICE_TABLE(of, emac_match);
2997 static struct of_platform_driver emac_driver = {
2999 .match_table = emac_match,
3001 .probe = emac_probe,
3002 .remove = emac_remove,
3005 static void __init emac_make_bootlist(void)
3007 struct device_node *np = NULL;
3008 int j, max, i = 0, k;
3009 int cell_indices[EMAC_BOOT_LIST_SIZE];
3012 while((np = of_find_all_nodes(np)) != NULL) {
3015 if (of_match_node(emac_match, np) == NULL)
3017 if (of_get_property(np, "unused", NULL))
3019 idx = of_get_property(np, "cell-index", NULL);
3022 cell_indices[i] = *idx;
3023 emac_boot_list[i++] = of_node_get(np);
3024 if (i >= EMAC_BOOT_LIST_SIZE) {
3031 /* Bubble sort them (doh, what a creative algorithm :-) */
3032 for (i = 0; max > 1 && (i < (max - 1)); i++)
3033 for (j = i; j < max; j++) {
3034 if (cell_indices[i] > cell_indices[j]) {
3035 np = emac_boot_list[i];
3036 emac_boot_list[i] = emac_boot_list[j];
3037 emac_boot_list[j] = np;
3038 k = cell_indices[i];
3039 cell_indices[i] = cell_indices[j];
3040 cell_indices[j] = k;
3045 static int __init emac_init(void)
3049 printk(KERN_INFO DRV_DESC ", version " DRV_VERSION "\n");
3051 /* Init debug stuff */
3054 /* Build EMAC boot list */
3055 emac_make_bootlist();
3057 /* Init submodules */
3070 rc = of_register_platform_driver(&emac_driver);
3088 static void __exit emac_exit(void)
3092 of_unregister_platform_driver(&emac_driver);
3100 /* Destroy EMAC boot list */
3101 for (i = 0; i < EMAC_BOOT_LIST_SIZE; i++)
3102 if (emac_boot_list[i])
3103 of_node_put(emac_boot_list[i]);
3106 module_init(emac_init);
3107 module_exit(emac_exit);