2 * Combined Ethernet driver for Motorola MPC8xx and MPC82xx.
4 * Copyright (c) 2003 Intracom S.A.
5 * by Pantelis Antoniou <panto@intracom.gr>
7 * 2005 (c) MontaVista Software, Inc.
8 * Vitaly Bordug <vbordug@ru.mvista.com>
10 * Heavily based on original FEC driver by Dan Malek <dan@embeddededge.com>
11 * and modifications by Joakim Tjernlund <joakim.tjernlund@lumentis.se>
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
18 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/types.h>
21 #include <linux/string.h>
22 #include <linux/ptrace.h>
23 #include <linux/errno.h>
24 #include <linux/ioport.h>
25 #include <linux/slab.h>
26 #include <linux/interrupt.h>
27 #include <linux/delay.h>
28 #include <linux/netdevice.h>
29 #include <linux/etherdevice.h>
30 #include <linux/skbuff.h>
31 #include <linux/spinlock.h>
32 #include <linux/mii.h>
33 #include <linux/ethtool.h>
34 #include <linux/bitops.h>
36 #include <linux/platform_device.h>
37 #include <linux/phy.h>
39 #include <linux/of_mdio.h>
40 #include <linux/of_platform.h>
41 #include <linux/of_gpio.h>
42 #include <linux/of_net.h>
44 #include <linux/vmalloc.h>
45 #include <asm/pgtable.h>
47 #include <asm/uaccess.h>
51 /*************************************************/
53 MODULE_AUTHOR("Pantelis Antoniou <panto@intracom.gr>");
54 MODULE_DESCRIPTION("Freescale Ethernet Driver");
55 MODULE_LICENSE("GPL");
56 MODULE_VERSION(DRV_MODULE_VERSION);
58 static int fs_enet_debug = -1; /* -1 == use FS_ENET_DEF_MSG_ENABLE as value */
59 module_param(fs_enet_debug, int, 0);
60 MODULE_PARM_DESC(fs_enet_debug,
61 "Freescale bitmapped debugging message enable value");
63 #define RX_RING_SIZE 32
64 #define TX_RING_SIZE 64
66 #ifdef CONFIG_NET_POLL_CONTROLLER
67 static void fs_enet_netpoll(struct net_device *dev);
70 static void fs_set_multicast_list(struct net_device *dev)
72 struct fs_enet_private *fep = netdev_priv(dev);
74 (*fep->ops->set_multicast_list)(dev);
77 static void skb_align(struct sk_buff *skb, int align)
79 int off = ((unsigned long)skb->data) & (align - 1);
82 skb_reserve(skb, align - off);
86 static int fs_enet_napi(struct napi_struct *napi, int budget)
88 struct fs_enet_private *fep = container_of(napi, struct fs_enet_private, napi);
89 struct net_device *dev = fep->ndev;
90 const struct fs_platform_info *fpi = fep->fpi;
92 struct sk_buff *skb, *skbn;
96 int dirtyidx, do_wake, do_restart;
97 int tx_left = TX_RING_SIZE;
99 spin_lock(&fep->tx_lock);
102 /* clear status bits for napi*/
103 (*fep->ops->napi_clear_event)(dev);
105 do_wake = do_restart = 0;
106 while (((sc = CBDR_SC(bdp)) & BD_ENET_TX_READY) == 0 && tx_left) {
107 dirtyidx = bdp - fep->tx_bd_base;
109 if (fep->tx_free == fep->tx_ring)
112 skb = fep->tx_skbuff[dirtyidx];
117 if (sc & (BD_ENET_TX_HB | BD_ENET_TX_LC |
118 BD_ENET_TX_RL | BD_ENET_TX_UN | BD_ENET_TX_CSL)) {
120 if (sc & BD_ENET_TX_HB) /* No heartbeat */
121 dev->stats.tx_heartbeat_errors++;
122 if (sc & BD_ENET_TX_LC) /* Late collision */
123 dev->stats.tx_window_errors++;
124 if (sc & BD_ENET_TX_RL) /* Retrans limit */
125 dev->stats.tx_aborted_errors++;
126 if (sc & BD_ENET_TX_UN) /* Underrun */
127 dev->stats.tx_fifo_errors++;
128 if (sc & BD_ENET_TX_CSL) /* Carrier lost */
129 dev->stats.tx_carrier_errors++;
131 if (sc & (BD_ENET_TX_LC | BD_ENET_TX_RL | BD_ENET_TX_UN)) {
132 dev->stats.tx_errors++;
136 dev->stats.tx_packets++;
138 if (sc & BD_ENET_TX_READY) {
140 "HEY! Enet xmit interrupt and TX_READY.\n");
144 * Deferred means some collisions occurred during transmit,
145 * but we eventually sent the packet OK.
147 if (sc & BD_ENET_TX_DEF)
148 dev->stats.collisions++;
151 if (fep->mapped_as_page[dirtyidx])
152 dma_unmap_page(fep->dev, CBDR_BUFADDR(bdp),
153 CBDR_DATLEN(bdp), DMA_TO_DEVICE);
155 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
156 CBDR_DATLEN(bdp), DMA_TO_DEVICE);
159 * Free the sk buffer associated with this last transmit.
163 fep->tx_skbuff[dirtyidx] = NULL;
167 * Update pointer to next buffer descriptor to be transmitted.
169 if ((sc & BD_ENET_TX_WRAP) == 0)
172 bdp = fep->tx_bd_base;
175 * Since we have freed up a buffer, the ring is no longer
178 if (++fep->tx_free == MAX_SKB_FRAGS)
186 (*fep->ops->tx_restart)(dev);
188 spin_unlock(&fep->tx_lock);
191 netif_wake_queue(dev);
194 * First, grab all of the stats for the incoming packet.
195 * These get messed up if we get called due to a busy condition.
199 while (((sc = CBDR_SC(bdp)) & BD_ENET_RX_EMPTY) == 0 &&
201 curidx = bdp - fep->rx_bd_base;
204 * Since we have allocated space to hold a complete frame,
205 * the last indicator should be set.
207 if ((sc & BD_ENET_RX_LAST) == 0)
208 dev_warn(fep->dev, "rcv is not +last\n");
213 if (sc & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_CL |
214 BD_ENET_RX_NO | BD_ENET_RX_CR | BD_ENET_RX_OV)) {
215 dev->stats.rx_errors++;
216 /* Frame too long or too short. */
217 if (sc & (BD_ENET_RX_LG | BD_ENET_RX_SH))
218 dev->stats.rx_length_errors++;
219 /* Frame alignment */
220 if (sc & (BD_ENET_RX_NO | BD_ENET_RX_CL))
221 dev->stats.rx_frame_errors++;
223 if (sc & BD_ENET_RX_CR)
224 dev->stats.rx_crc_errors++;
226 if (sc & BD_ENET_RX_OV)
227 dev->stats.rx_crc_errors++;
229 skbn = fep->rx_skbuff[curidx];
231 skb = fep->rx_skbuff[curidx];
234 * Process the incoming frame.
236 dev->stats.rx_packets++;
237 pkt_len = CBDR_DATLEN(bdp) - 4; /* remove CRC */
238 dev->stats.rx_bytes += pkt_len + 4;
240 if (pkt_len <= fpi->rx_copybreak) {
241 /* +2 to make IP header L1 cache aligned */
242 skbn = netdev_alloc_skb(dev, pkt_len + 2);
244 skb_reserve(skbn, 2); /* align IP header */
245 skb_copy_from_linear_data(skb,
246 skbn->data, pkt_len);
248 dma_sync_single_for_cpu(fep->dev,
250 L1_CACHE_ALIGN(pkt_len),
254 skbn = netdev_alloc_skb(dev, ENET_RX_FRSIZE);
259 skb_align(skbn, ENET_RX_ALIGN);
261 dma_unmap_single(fep->dev,
263 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
266 dma = dma_map_single(fep->dev,
268 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
270 CBDW_BUFADDR(bdp, dma);
275 skb_put(skb, pkt_len); /* Make room */
276 skb->protocol = eth_type_trans(skb, dev);
278 netif_receive_skb(skb);
280 dev->stats.rx_dropped++;
285 fep->rx_skbuff[curidx] = skbn;
287 CBDW_SC(bdp, (sc & ~BD_ENET_RX_STATS) | BD_ENET_RX_EMPTY);
290 * Update BD pointer to next entry.
292 if ((sc & BD_ENET_RX_WRAP) == 0)
295 bdp = fep->rx_bd_base;
297 (*fep->ops->rx_bd_done)(dev);
302 if (received < budget && tx_left) {
305 (*fep->ops->napi_enable)(dev);
314 * The interrupt handler.
315 * This is called from the MPC core interrupt.
318 fs_enet_interrupt(int irq, void *dev_id)
320 struct net_device *dev = dev_id;
321 struct fs_enet_private *fep;
322 const struct fs_platform_info *fpi;
328 fep = netdev_priv(dev);
332 while ((int_events = (*fep->ops->get_int_events)(dev)) != 0) {
335 int_clr_events = int_events;
336 int_clr_events &= ~fep->ev_napi;
338 (*fep->ops->clear_int_events)(dev, int_clr_events);
340 if (int_events & fep->ev_err)
341 (*fep->ops->ev_error)(dev, int_events);
343 if (int_events & fep->ev) {
344 napi_ok = napi_schedule_prep(&fep->napi);
346 (*fep->ops->napi_disable)(dev);
347 (*fep->ops->clear_int_events)(dev, fep->ev_napi);
349 /* NOTE: it is possible for FCCs in NAPI mode */
350 /* to submit a spurious interrupt while in poll */
352 __napi_schedule(&fep->napi);
358 return IRQ_RETVAL(handled);
361 void fs_init_bds(struct net_device *dev)
363 struct fs_enet_private *fep = netdev_priv(dev);
370 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
371 fep->tx_free = fep->tx_ring;
372 fep->cur_rx = fep->rx_bd_base;
375 * Initialize the receive buffer descriptors.
377 for (i = 0, bdp = fep->rx_bd_base; i < fep->rx_ring; i++, bdp++) {
378 skb = netdev_alloc_skb(dev, ENET_RX_FRSIZE);
382 skb_align(skb, ENET_RX_ALIGN);
383 fep->rx_skbuff[i] = skb;
385 dma_map_single(fep->dev, skb->data,
386 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
388 CBDW_DATLEN(bdp, 0); /* zero */
389 CBDW_SC(bdp, BD_ENET_RX_EMPTY |
390 ((i < fep->rx_ring - 1) ? 0 : BD_SC_WRAP));
393 * if we failed, fillup remainder
395 for (; i < fep->rx_ring; i++, bdp++) {
396 fep->rx_skbuff[i] = NULL;
397 CBDW_SC(bdp, (i < fep->rx_ring - 1) ? 0 : BD_SC_WRAP);
401 * ...and the same for transmit.
403 for (i = 0, bdp = fep->tx_bd_base; i < fep->tx_ring; i++, bdp++) {
404 fep->tx_skbuff[i] = NULL;
405 CBDW_BUFADDR(bdp, 0);
407 CBDW_SC(bdp, (i < fep->tx_ring - 1) ? 0 : BD_SC_WRAP);
411 void fs_cleanup_bds(struct net_device *dev)
413 struct fs_enet_private *fep = netdev_priv(dev);
419 * Reset SKB transmit buffers.
421 for (i = 0, bdp = fep->tx_bd_base; i < fep->tx_ring; i++, bdp++) {
422 if ((skb = fep->tx_skbuff[i]) == NULL)
426 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
427 skb->len, DMA_TO_DEVICE);
429 fep->tx_skbuff[i] = NULL;
434 * Reset SKB receive buffers
436 for (i = 0, bdp = fep->rx_bd_base; i < fep->rx_ring; i++, bdp++) {
437 if ((skb = fep->rx_skbuff[i]) == NULL)
441 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
442 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
445 fep->rx_skbuff[i] = NULL;
451 /**********************************************************************************/
453 #ifdef CONFIG_FS_ENET_MPC5121_FEC
455 * MPC5121 FEC requeries 4-byte alignment for TX data buffer!
457 static struct sk_buff *tx_skb_align_workaround(struct net_device *dev,
460 struct sk_buff *new_skb;
462 if (skb_linearize(skb))
466 new_skb = netdev_alloc_skb(dev, skb->len + 4);
470 /* Make sure new skb is properly aligned */
471 skb_align(new_skb, 4);
473 /* Copy data to new skb ... */
474 skb_copy_from_linear_data(skb, new_skb->data, skb->len);
475 skb_put(new_skb, skb->len);
477 /* ... and free an old one */
478 dev_kfree_skb_any(skb);
484 static int fs_enet_start_xmit(struct sk_buff *skb, struct net_device *dev)
486 struct fs_enet_private *fep = netdev_priv(dev);
493 #ifdef CONFIG_FS_ENET_MPC5121_FEC
497 if (!IS_ALIGNED((unsigned long)skb->data, 4)) {
500 nr_frags = skb_shinfo(skb)->nr_frags;
501 frag = skb_shinfo(skb)->frags;
502 for (i = 0; i < nr_frags; i++, frag++) {
503 if (!IS_ALIGNED(frag->page_offset, 4)) {
511 skb = tx_skb_align_workaround(dev, skb);
514 * We have lost packet due to memory allocation error
515 * in tx_skb_align_workaround(). Hopefully original
516 * skb is still valid, so try transmit it later.
518 return NETDEV_TX_BUSY;
523 spin_lock(&fep->tx_lock);
526 * Fill in a Tx ring entry
530 nr_frags = skb_shinfo(skb)->nr_frags;
531 if (fep->tx_free <= nr_frags || (CBDR_SC(bdp) & BD_ENET_TX_READY)) {
532 netif_stop_queue(dev);
533 spin_unlock(&fep->tx_lock);
536 * Ooops. All transmit buffers are full. Bail out.
537 * This should not happen, since the tx queue should be stopped.
539 dev_warn(fep->dev, "tx queue full!.\n");
540 return NETDEV_TX_BUSY;
543 curidx = bdp - fep->tx_bd_base;
546 dev->stats.tx_bytes += len;
548 len -= skb->data_len;
549 fep->tx_free -= nr_frags + 1;
551 * Push the data cache so the CPM does not get stale memory data.
553 CBDW_BUFADDR(bdp, dma_map_single(fep->dev,
554 skb->data, len, DMA_TO_DEVICE));
555 CBDW_DATLEN(bdp, len);
557 fep->mapped_as_page[curidx] = 0;
558 frag = skb_shinfo(skb)->frags;
561 BD_ENET_TX_STATS | BD_ENET_TX_INTR | BD_ENET_TX_LAST |
563 CBDS_SC(bdp, BD_ENET_TX_READY);
565 if ((CBDR_SC(bdp) & BD_ENET_TX_WRAP) == 0)
568 bdp = fep->tx_bd_base, curidx = 0;
570 len = skb_frag_size(frag);
571 CBDW_BUFADDR(bdp, skb_frag_dma_map(fep->dev, frag, 0, len,
573 CBDW_DATLEN(bdp, len);
575 fep->tx_skbuff[curidx] = NULL;
576 fep->mapped_as_page[curidx] = 1;
582 /* Trigger transmission start */
583 sc = BD_ENET_TX_READY | BD_ENET_TX_INTR |
584 BD_ENET_TX_LAST | BD_ENET_TX_TC;
586 /* note that while FEC does not have this bit
587 * it marks it as available for software use
588 * yay for hw reuse :) */
590 sc |= BD_ENET_TX_PAD;
591 CBDC_SC(bdp, BD_ENET_TX_STATS);
594 /* Save skb pointer. */
595 fep->tx_skbuff[curidx] = skb;
597 /* If this was the last BD in the ring, start at the beginning again. */
598 if ((CBDR_SC(bdp) & BD_ENET_TX_WRAP) == 0)
601 bdp = fep->tx_bd_base;
604 if (fep->tx_free < MAX_SKB_FRAGS)
605 netif_stop_queue(dev);
607 skb_tx_timestamp(skb);
609 (*fep->ops->tx_kickstart)(dev);
611 spin_unlock(&fep->tx_lock);
616 static void fs_timeout(struct net_device *dev)
618 struct fs_enet_private *fep = netdev_priv(dev);
622 dev->stats.tx_errors++;
624 spin_lock_irqsave(&fep->lock, flags);
626 if (dev->flags & IFF_UP) {
627 phy_stop(dev->phydev);
628 (*fep->ops->stop)(dev);
629 (*fep->ops->restart)(dev);
630 phy_start(dev->phydev);
633 phy_start(dev->phydev);
634 wake = fep->tx_free >= MAX_SKB_FRAGS &&
635 !(CBDR_SC(fep->cur_tx) & BD_ENET_TX_READY);
636 spin_unlock_irqrestore(&fep->lock, flags);
639 netif_wake_queue(dev);
642 /*-----------------------------------------------------------------------------
643 * generic link-change handler - should be sufficient for most cases
644 *-----------------------------------------------------------------------------*/
645 static void generic_adjust_link(struct net_device *dev)
647 struct fs_enet_private *fep = netdev_priv(dev);
648 struct phy_device *phydev = dev->phydev;
652 /* adjust to duplex mode */
653 if (phydev->duplex != fep->oldduplex) {
655 fep->oldduplex = phydev->duplex;
658 if (phydev->speed != fep->oldspeed) {
660 fep->oldspeed = phydev->speed;
669 fep->ops->restart(dev);
670 } else if (fep->oldlink) {
677 if (new_state && netif_msg_link(fep))
678 phy_print_status(phydev);
682 static void fs_adjust_link(struct net_device *dev)
684 struct fs_enet_private *fep = netdev_priv(dev);
687 spin_lock_irqsave(&fep->lock, flags);
689 if(fep->ops->adjust_link)
690 fep->ops->adjust_link(dev);
692 generic_adjust_link(dev);
694 spin_unlock_irqrestore(&fep->lock, flags);
697 static int fs_init_phy(struct net_device *dev)
699 struct fs_enet_private *fep = netdev_priv(dev);
700 struct phy_device *phydev;
701 phy_interface_t iface;
707 iface = fep->fpi->use_rmii ?
708 PHY_INTERFACE_MODE_RMII : PHY_INTERFACE_MODE_MII;
710 phydev = of_phy_connect(dev, fep->fpi->phy_node, &fs_adjust_link, 0,
713 dev_err(&dev->dev, "Could not attach to PHY\n");
720 static int fs_enet_open(struct net_device *dev)
722 struct fs_enet_private *fep = netdev_priv(dev);
726 /* to initialize the fep->cur_rx,... */
727 /* not doing this, will cause a crash in fs_enet_napi */
728 fs_init_bds(fep->ndev);
730 napi_enable(&fep->napi);
732 /* Install our interrupt handler. */
733 r = request_irq(fep->interrupt, fs_enet_interrupt, IRQF_SHARED,
736 dev_err(fep->dev, "Could not allocate FS_ENET IRQ!");
737 napi_disable(&fep->napi);
741 err = fs_init_phy(dev);
743 free_irq(fep->interrupt, dev);
744 napi_disable(&fep->napi);
747 phy_start(dev->phydev);
749 netif_start_queue(dev);
754 static int fs_enet_close(struct net_device *dev)
756 struct fs_enet_private *fep = netdev_priv(dev);
759 netif_stop_queue(dev);
760 netif_carrier_off(dev);
761 napi_disable(&fep->napi);
762 phy_stop(dev->phydev);
764 spin_lock_irqsave(&fep->lock, flags);
765 spin_lock(&fep->tx_lock);
766 (*fep->ops->stop)(dev);
767 spin_unlock(&fep->tx_lock);
768 spin_unlock_irqrestore(&fep->lock, flags);
770 /* release any irqs */
771 phy_disconnect(dev->phydev);
772 free_irq(fep->interrupt, dev);
777 /*************************************************************************/
779 static void fs_get_drvinfo(struct net_device *dev,
780 struct ethtool_drvinfo *info)
782 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
783 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
786 static int fs_get_regs_len(struct net_device *dev)
788 struct fs_enet_private *fep = netdev_priv(dev);
790 return (*fep->ops->get_regs_len)(dev);
793 static void fs_get_regs(struct net_device *dev, struct ethtool_regs *regs,
796 struct fs_enet_private *fep = netdev_priv(dev);
802 spin_lock_irqsave(&fep->lock, flags);
803 r = (*fep->ops->get_regs)(dev, p, &len);
804 spin_unlock_irqrestore(&fep->lock, flags);
810 static u32 fs_get_msglevel(struct net_device *dev)
812 struct fs_enet_private *fep = netdev_priv(dev);
813 return fep->msg_enable;
816 static void fs_set_msglevel(struct net_device *dev, u32 value)
818 struct fs_enet_private *fep = netdev_priv(dev);
819 fep->msg_enable = value;
822 static int fs_get_tunable(struct net_device *dev,
823 const struct ethtool_tunable *tuna, void *data)
825 struct fs_enet_private *fep = netdev_priv(dev);
826 struct fs_platform_info *fpi = fep->fpi;
830 case ETHTOOL_RX_COPYBREAK:
831 *(u32 *)data = fpi->rx_copybreak;
841 static int fs_set_tunable(struct net_device *dev,
842 const struct ethtool_tunable *tuna, const void *data)
844 struct fs_enet_private *fep = netdev_priv(dev);
845 struct fs_platform_info *fpi = fep->fpi;
849 case ETHTOOL_RX_COPYBREAK:
850 fpi->rx_copybreak = *(u32 *)data;
860 static const struct ethtool_ops fs_ethtool_ops = {
861 .get_drvinfo = fs_get_drvinfo,
862 .get_regs_len = fs_get_regs_len,
863 .nway_reset = phy_ethtool_nway_reset,
864 .get_link = ethtool_op_get_link,
865 .get_msglevel = fs_get_msglevel,
866 .set_msglevel = fs_set_msglevel,
867 .get_regs = fs_get_regs,
868 .get_ts_info = ethtool_op_get_ts_info,
869 .get_link_ksettings = phy_ethtool_get_link_ksettings,
870 .set_link_ksettings = phy_ethtool_set_link_ksettings,
871 .get_tunable = fs_get_tunable,
872 .set_tunable = fs_set_tunable,
875 static int fs_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
877 if (!netif_running(dev))
880 return phy_mii_ioctl(dev->phydev, rq, cmd);
883 extern int fs_mii_connect(struct net_device *dev);
884 extern void fs_mii_disconnect(struct net_device *dev);
886 /**************************************************************************************/
888 #ifdef CONFIG_FS_ENET_HAS_FEC
889 #define IS_FEC(match) ((match)->data == &fs_fec_ops)
891 #define IS_FEC(match) 0
894 static const struct net_device_ops fs_enet_netdev_ops = {
895 .ndo_open = fs_enet_open,
896 .ndo_stop = fs_enet_close,
897 .ndo_start_xmit = fs_enet_start_xmit,
898 .ndo_tx_timeout = fs_timeout,
899 .ndo_set_rx_mode = fs_set_multicast_list,
900 .ndo_do_ioctl = fs_ioctl,
901 .ndo_validate_addr = eth_validate_addr,
902 .ndo_set_mac_address = eth_mac_addr,
903 #ifdef CONFIG_NET_POLL_CONTROLLER
904 .ndo_poll_controller = fs_enet_netpoll,
908 static const struct of_device_id fs_enet_match[];
909 static int fs_enet_probe(struct platform_device *ofdev)
911 const struct of_device_id *match;
912 struct net_device *ndev;
913 struct fs_enet_private *fep;
914 struct fs_platform_info *fpi;
919 const char *phy_connection_type;
920 int privsize, len, ret = -ENODEV;
922 match = of_match_device(fs_enet_match, &ofdev->dev);
926 fpi = kzalloc(sizeof(*fpi), GFP_KERNEL);
930 if (!IS_FEC(match)) {
931 data = of_get_property(ofdev->dev.of_node, "fsl,cpm-command", &len);
932 if (!data || len != 4)
935 fpi->cp_command = *data;
938 fpi->rx_ring = RX_RING_SIZE;
939 fpi->tx_ring = TX_RING_SIZE;
940 fpi->rx_copybreak = 240;
941 fpi->napi_weight = 17;
942 fpi->phy_node = of_parse_phandle(ofdev->dev.of_node, "phy-handle", 0);
943 if (!fpi->phy_node && of_phy_is_fixed_link(ofdev->dev.of_node)) {
944 err = of_phy_register_fixed_link(ofdev->dev.of_node);
948 /* In the case of a fixed PHY, the DT node associated
949 * to the PHY is the Ethernet MAC DT node.
951 fpi->phy_node = of_node_get(ofdev->dev.of_node);
954 if (of_device_is_compatible(ofdev->dev.of_node, "fsl,mpc5125-fec")) {
955 phy_connection_type = of_get_property(ofdev->dev.of_node,
956 "phy-connection-type", NULL);
957 if (phy_connection_type && !strcmp("rmii", phy_connection_type))
961 /* make clock lookup non-fatal (the driver is shared among platforms),
962 * but require enable to succeed when a clock was specified/found,
963 * keep a reference to the clock upon successful acquisition
965 clk = devm_clk_get(&ofdev->dev, "per");
967 err = clk_prepare_enable(clk);
970 goto out_deregister_fixed_link;
975 privsize = sizeof(*fep) +
976 sizeof(struct sk_buff **) *
977 (fpi->rx_ring + fpi->tx_ring) +
978 sizeof(char) * fpi->tx_ring;
980 ndev = alloc_etherdev(privsize);
986 SET_NETDEV_DEV(ndev, &ofdev->dev);
987 platform_set_drvdata(ofdev, ndev);
989 fep = netdev_priv(ndev);
990 fep->dev = &ofdev->dev;
993 fep->ops = match->data;
995 ret = fep->ops->setup_data(ndev);
999 fep->rx_skbuff = (struct sk_buff **)&fep[1];
1000 fep->tx_skbuff = fep->rx_skbuff + fpi->rx_ring;
1001 fep->mapped_as_page = (char *)(fep->rx_skbuff + fpi->rx_ring +
1004 spin_lock_init(&fep->lock);
1005 spin_lock_init(&fep->tx_lock);
1007 mac_addr = of_get_mac_address(ofdev->dev.of_node);
1009 memcpy(ndev->dev_addr, mac_addr, ETH_ALEN);
1011 ret = fep->ops->allocate_bd(ndev);
1013 goto out_cleanup_data;
1015 fep->rx_bd_base = fep->ring_base;
1016 fep->tx_bd_base = fep->rx_bd_base + fpi->rx_ring;
1018 fep->tx_ring = fpi->tx_ring;
1019 fep->rx_ring = fpi->rx_ring;
1021 ndev->netdev_ops = &fs_enet_netdev_ops;
1022 ndev->watchdog_timeo = 2 * HZ;
1023 netif_napi_add(ndev, &fep->napi, fs_enet_napi, fpi->napi_weight);
1025 ndev->ethtool_ops = &fs_ethtool_ops;
1027 init_timer(&fep->phy_timer_list);
1029 netif_carrier_off(ndev);
1031 ndev->features |= NETIF_F_SG;
1033 ret = register_netdev(ndev);
1037 pr_info("%s: fs_enet: %pM\n", ndev->name, ndev->dev_addr);
1042 fep->ops->free_bd(ndev);
1044 fep->ops->cleanup_data(ndev);
1048 of_node_put(fpi->phy_node);
1050 clk_disable_unprepare(fpi->clk_per);
1051 out_deregister_fixed_link:
1052 if (of_phy_is_fixed_link(ofdev->dev.of_node))
1053 of_phy_deregister_fixed_link(ofdev->dev.of_node);
1059 static int fs_enet_remove(struct platform_device *ofdev)
1061 struct net_device *ndev = platform_get_drvdata(ofdev);
1062 struct fs_enet_private *fep = netdev_priv(ndev);
1064 unregister_netdev(ndev);
1066 fep->ops->free_bd(ndev);
1067 fep->ops->cleanup_data(ndev);
1068 dev_set_drvdata(fep->dev, NULL);
1069 of_node_put(fep->fpi->phy_node);
1070 if (fep->fpi->clk_per)
1071 clk_disable_unprepare(fep->fpi->clk_per);
1072 if (of_phy_is_fixed_link(ofdev->dev.of_node))
1073 of_phy_deregister_fixed_link(ofdev->dev.of_node);
1078 static const struct of_device_id fs_enet_match[] = {
1079 #ifdef CONFIG_FS_ENET_HAS_SCC
1081 .compatible = "fsl,cpm1-scc-enet",
1082 .data = (void *)&fs_scc_ops,
1085 .compatible = "fsl,cpm2-scc-enet",
1086 .data = (void *)&fs_scc_ops,
1089 #ifdef CONFIG_FS_ENET_HAS_FCC
1091 .compatible = "fsl,cpm2-fcc-enet",
1092 .data = (void *)&fs_fcc_ops,
1095 #ifdef CONFIG_FS_ENET_HAS_FEC
1096 #ifdef CONFIG_FS_ENET_MPC5121_FEC
1098 .compatible = "fsl,mpc5121-fec",
1099 .data = (void *)&fs_fec_ops,
1102 .compatible = "fsl,mpc5125-fec",
1103 .data = (void *)&fs_fec_ops,
1107 .compatible = "fsl,pq1-fec-enet",
1108 .data = (void *)&fs_fec_ops,
1114 MODULE_DEVICE_TABLE(of, fs_enet_match);
1116 static struct platform_driver fs_enet_driver = {
1119 .of_match_table = fs_enet_match,
1121 .probe = fs_enet_probe,
1122 .remove = fs_enet_remove,
1125 #ifdef CONFIG_NET_POLL_CONTROLLER
1126 static void fs_enet_netpoll(struct net_device *dev)
1128 disable_irq(dev->irq);
1129 fs_enet_interrupt(dev->irq, dev);
1130 enable_irq(dev->irq);
1134 module_platform_driver(fs_enet_driver);