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>
43 #include <linux/pgtable.h>
45 #include <linux/vmalloc.h>
47 #include <linux/uaccess.h>
51 /*************************************************/
53 MODULE_AUTHOR("Pantelis Antoniou <panto@intracom.gr>");
54 MODULE_DESCRIPTION("Freescale Ethernet Driver");
55 MODULE_LICENSE("GPL");
57 static int fs_enet_debug
= -1; /* -1 == use FS_ENET_DEF_MSG_ENABLE as value */
58 module_param(fs_enet_debug
, int, 0);
59 MODULE_PARM_DESC(fs_enet_debug
,
60 "Freescale bitmapped debugging message enable value");
62 #define RX_RING_SIZE 32
63 #define TX_RING_SIZE 64
65 #ifdef CONFIG_NET_POLL_CONTROLLER
66 static void fs_enet_netpoll(struct net_device
*dev
);
69 static void fs_set_multicast_list(struct net_device
*dev
)
71 struct fs_enet_private
*fep
= netdev_priv(dev
);
73 (*fep
->ops
->set_multicast_list
)(dev
);
76 static void skb_align(struct sk_buff
*skb
, int align
)
78 int off
= ((unsigned long)skb
->data
) & (align
- 1);
81 skb_reserve(skb
, align
- off
);
85 static int fs_enet_napi(struct napi_struct
*napi
, int budget
)
87 struct fs_enet_private
*fep
= container_of(napi
, struct fs_enet_private
, napi
);
88 struct net_device
*dev
= fep
->ndev
;
89 const struct fs_platform_info
*fpi
= fep
->fpi
;
91 struct sk_buff
*skb
, *skbn
;
95 int dirtyidx
, do_wake
, do_restart
;
96 int tx_left
= TX_RING_SIZE
;
98 spin_lock(&fep
->tx_lock
);
101 /* clear status bits for napi*/
102 (*fep
->ops
->napi_clear_event
)(dev
);
104 do_wake
= do_restart
= 0;
105 while (((sc
= CBDR_SC(bdp
)) & BD_ENET_TX_READY
) == 0 && tx_left
) {
106 dirtyidx
= bdp
- fep
->tx_bd_base
;
108 if (fep
->tx_free
== fep
->tx_ring
)
111 skb
= fep
->tx_skbuff
[dirtyidx
];
116 if (sc
& (BD_ENET_TX_HB
| BD_ENET_TX_LC
|
117 BD_ENET_TX_RL
| BD_ENET_TX_UN
| BD_ENET_TX_CSL
)) {
119 if (sc
& BD_ENET_TX_HB
) /* No heartbeat */
120 dev
->stats
.tx_heartbeat_errors
++;
121 if (sc
& BD_ENET_TX_LC
) /* Late collision */
122 dev
->stats
.tx_window_errors
++;
123 if (sc
& BD_ENET_TX_RL
) /* Retrans limit */
124 dev
->stats
.tx_aborted_errors
++;
125 if (sc
& BD_ENET_TX_UN
) /* Underrun */
126 dev
->stats
.tx_fifo_errors
++;
127 if (sc
& BD_ENET_TX_CSL
) /* Carrier lost */
128 dev
->stats
.tx_carrier_errors
++;
130 if (sc
& (BD_ENET_TX_LC
| BD_ENET_TX_RL
| BD_ENET_TX_UN
)) {
131 dev
->stats
.tx_errors
++;
135 dev
->stats
.tx_packets
++;
137 if (sc
& BD_ENET_TX_READY
) {
139 "HEY! Enet xmit interrupt and TX_READY.\n");
143 * Deferred means some collisions occurred during transmit,
144 * but we eventually sent the packet OK.
146 if (sc
& BD_ENET_TX_DEF
)
147 dev
->stats
.collisions
++;
150 if (fep
->mapped_as_page
[dirtyidx
])
151 dma_unmap_page(fep
->dev
, CBDR_BUFADDR(bdp
),
152 CBDR_DATLEN(bdp
), DMA_TO_DEVICE
);
154 dma_unmap_single(fep
->dev
, CBDR_BUFADDR(bdp
),
155 CBDR_DATLEN(bdp
), DMA_TO_DEVICE
);
158 * Free the sk buffer associated with this last transmit.
162 fep
->tx_skbuff
[dirtyidx
] = NULL
;
166 * Update pointer to next buffer descriptor to be transmitted.
168 if ((sc
& BD_ENET_TX_WRAP
) == 0)
171 bdp
= fep
->tx_bd_base
;
174 * Since we have freed up a buffer, the ring is no longer
177 if (++fep
->tx_free
== MAX_SKB_FRAGS
)
185 (*fep
->ops
->tx_restart
)(dev
);
187 spin_unlock(&fep
->tx_lock
);
190 netif_wake_queue(dev
);
193 * First, grab all of the stats for the incoming packet.
194 * These get messed up if we get called due to a busy condition.
198 while (((sc
= CBDR_SC(bdp
)) & BD_ENET_RX_EMPTY
) == 0 &&
200 curidx
= bdp
- fep
->rx_bd_base
;
203 * Since we have allocated space to hold a complete frame,
204 * the last indicator should be set.
206 if ((sc
& BD_ENET_RX_LAST
) == 0)
207 dev_warn(fep
->dev
, "rcv is not +last\n");
212 if (sc
& (BD_ENET_RX_LG
| BD_ENET_RX_SH
| BD_ENET_RX_CL
|
213 BD_ENET_RX_NO
| BD_ENET_RX_CR
| BD_ENET_RX_OV
)) {
214 dev
->stats
.rx_errors
++;
215 /* Frame too long or too short. */
216 if (sc
& (BD_ENET_RX_LG
| BD_ENET_RX_SH
))
217 dev
->stats
.rx_length_errors
++;
218 /* Frame alignment */
219 if (sc
& (BD_ENET_RX_NO
| BD_ENET_RX_CL
))
220 dev
->stats
.rx_frame_errors
++;
222 if (sc
& BD_ENET_RX_CR
)
223 dev
->stats
.rx_crc_errors
++;
225 if (sc
& BD_ENET_RX_OV
)
226 dev
->stats
.rx_crc_errors
++;
228 skbn
= fep
->rx_skbuff
[curidx
];
230 skb
= fep
->rx_skbuff
[curidx
];
233 * Process the incoming frame.
235 dev
->stats
.rx_packets
++;
236 pkt_len
= CBDR_DATLEN(bdp
) - 4; /* remove CRC */
237 dev
->stats
.rx_bytes
+= pkt_len
+ 4;
239 if (pkt_len
<= fpi
->rx_copybreak
) {
240 /* +2 to make IP header L1 cache aligned */
241 skbn
= netdev_alloc_skb(dev
, pkt_len
+ 2);
243 skb_reserve(skbn
, 2); /* align IP header */
244 skb_copy_from_linear_data(skb
,
245 skbn
->data
, pkt_len
);
247 dma_sync_single_for_cpu(fep
->dev
,
249 L1_CACHE_ALIGN(pkt_len
),
253 skbn
= netdev_alloc_skb(dev
, ENET_RX_FRSIZE
);
258 skb_align(skbn
, ENET_RX_ALIGN
);
260 dma_unmap_single(fep
->dev
,
262 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
265 dma
= dma_map_single(fep
->dev
,
267 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
269 CBDW_BUFADDR(bdp
, dma
);
274 skb_put(skb
, pkt_len
); /* Make room */
275 skb
->protocol
= eth_type_trans(skb
, dev
);
277 netif_receive_skb(skb
);
279 dev
->stats
.rx_dropped
++;
284 fep
->rx_skbuff
[curidx
] = skbn
;
286 CBDW_SC(bdp
, (sc
& ~BD_ENET_RX_STATS
) | BD_ENET_RX_EMPTY
);
289 * Update BD pointer to next entry.
291 if ((sc
& BD_ENET_RX_WRAP
) == 0)
294 bdp
= fep
->rx_bd_base
;
296 (*fep
->ops
->rx_bd_done
)(dev
);
301 if (received
< budget
&& tx_left
) {
303 napi_complete_done(napi
, received
);
304 (*fep
->ops
->napi_enable
)(dev
);
313 * The interrupt handler.
314 * This is called from the MPC core interrupt.
317 fs_enet_interrupt(int irq
, void *dev_id
)
319 struct net_device
*dev
= dev_id
;
320 struct fs_enet_private
*fep
;
321 const struct fs_platform_info
*fpi
;
327 fep
= netdev_priv(dev
);
331 while ((int_events
= (*fep
->ops
->get_int_events
)(dev
)) != 0) {
334 int_clr_events
= int_events
;
335 int_clr_events
&= ~fep
->ev_napi
;
337 (*fep
->ops
->clear_int_events
)(dev
, int_clr_events
);
339 if (int_events
& fep
->ev_err
)
340 (*fep
->ops
->ev_error
)(dev
, int_events
);
342 if (int_events
& fep
->ev
) {
343 napi_ok
= napi_schedule_prep(&fep
->napi
);
345 (*fep
->ops
->napi_disable
)(dev
);
346 (*fep
->ops
->clear_int_events
)(dev
, fep
->ev_napi
);
348 /* NOTE: it is possible for FCCs in NAPI mode */
349 /* to submit a spurious interrupt while in poll */
351 __napi_schedule(&fep
->napi
);
357 return IRQ_RETVAL(handled
);
360 void fs_init_bds(struct net_device
*dev
)
362 struct fs_enet_private
*fep
= netdev_priv(dev
);
369 fep
->dirty_tx
= fep
->cur_tx
= fep
->tx_bd_base
;
370 fep
->tx_free
= fep
->tx_ring
;
371 fep
->cur_rx
= fep
->rx_bd_base
;
374 * Initialize the receive buffer descriptors.
376 for (i
= 0, bdp
= fep
->rx_bd_base
; i
< fep
->rx_ring
; i
++, bdp
++) {
377 skb
= netdev_alloc_skb(dev
, ENET_RX_FRSIZE
);
381 skb_align(skb
, ENET_RX_ALIGN
);
382 fep
->rx_skbuff
[i
] = skb
;
384 dma_map_single(fep
->dev
, skb
->data
,
385 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
387 CBDW_DATLEN(bdp
, 0); /* zero */
388 CBDW_SC(bdp
, BD_ENET_RX_EMPTY
|
389 ((i
< fep
->rx_ring
- 1) ? 0 : BD_SC_WRAP
));
392 * if we failed, fillup remainder
394 for (; i
< fep
->rx_ring
; i
++, bdp
++) {
395 fep
->rx_skbuff
[i
] = NULL
;
396 CBDW_SC(bdp
, (i
< fep
->rx_ring
- 1) ? 0 : BD_SC_WRAP
);
400 * ...and the same for transmit.
402 for (i
= 0, bdp
= fep
->tx_bd_base
; i
< fep
->tx_ring
; i
++, bdp
++) {
403 fep
->tx_skbuff
[i
] = NULL
;
404 CBDW_BUFADDR(bdp
, 0);
406 CBDW_SC(bdp
, (i
< fep
->tx_ring
- 1) ? 0 : BD_SC_WRAP
);
410 void fs_cleanup_bds(struct net_device
*dev
)
412 struct fs_enet_private
*fep
= netdev_priv(dev
);
418 * Reset SKB transmit buffers.
420 for (i
= 0, bdp
= fep
->tx_bd_base
; i
< fep
->tx_ring
; i
++, bdp
++) {
421 if ((skb
= fep
->tx_skbuff
[i
]) == NULL
)
425 dma_unmap_single(fep
->dev
, CBDR_BUFADDR(bdp
),
426 skb
->len
, DMA_TO_DEVICE
);
428 fep
->tx_skbuff
[i
] = NULL
;
433 * Reset SKB receive buffers
435 for (i
= 0, bdp
= fep
->rx_bd_base
; i
< fep
->rx_ring
; i
++, bdp
++) {
436 if ((skb
= fep
->rx_skbuff
[i
]) == NULL
)
440 dma_unmap_single(fep
->dev
, CBDR_BUFADDR(bdp
),
441 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
444 fep
->rx_skbuff
[i
] = NULL
;
450 /**********************************************************************************/
452 #ifdef CONFIG_FS_ENET_MPC5121_FEC
454 * MPC5121 FEC requeries 4-byte alignment for TX data buffer!
456 static struct sk_buff
*tx_skb_align_workaround(struct net_device
*dev
,
459 struct sk_buff
*new_skb
;
461 if (skb_linearize(skb
))
465 new_skb
= netdev_alloc_skb(dev
, skb
->len
+ 4);
469 /* Make sure new skb is properly aligned */
470 skb_align(new_skb
, 4);
472 /* Copy data to new skb ... */
473 skb_copy_from_linear_data(skb
, new_skb
->data
, skb
->len
);
474 skb_put(new_skb
, skb
->len
);
476 /* ... and free an old one */
477 dev_kfree_skb_any(skb
);
484 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(skb_frag_off(frag
), 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) {
569 bdp
= fep
->tx_bd_base
;
573 len
= skb_frag_size(frag
);
574 CBDW_BUFADDR(bdp
, skb_frag_dma_map(fep
->dev
, frag
, 0, len
,
576 CBDW_DATLEN(bdp
, len
);
578 fep
->tx_skbuff
[curidx
] = NULL
;
579 fep
->mapped_as_page
[curidx
] = 1;
585 /* Trigger transmission start */
586 sc
= BD_ENET_TX_READY
| BD_ENET_TX_INTR
|
587 BD_ENET_TX_LAST
| BD_ENET_TX_TC
;
589 /* note that while FEC does not have this bit
590 * it marks it as available for software use
591 * yay for hw reuse :) */
593 sc
|= BD_ENET_TX_PAD
;
594 CBDC_SC(bdp
, BD_ENET_TX_STATS
);
597 /* Save skb pointer. */
598 fep
->tx_skbuff
[curidx
] = skb
;
600 /* If this was the last BD in the ring, start at the beginning again. */
601 if ((CBDR_SC(bdp
) & BD_ENET_TX_WRAP
) == 0)
604 bdp
= fep
->tx_bd_base
;
607 if (fep
->tx_free
< MAX_SKB_FRAGS
)
608 netif_stop_queue(dev
);
610 skb_tx_timestamp(skb
);
612 (*fep
->ops
->tx_kickstart
)(dev
);
614 spin_unlock(&fep
->tx_lock
);
619 static void fs_timeout_work(struct work_struct
*work
)
621 struct fs_enet_private
*fep
= container_of(work
, struct fs_enet_private
,
623 struct net_device
*dev
= fep
->ndev
;
627 dev
->stats
.tx_errors
++;
629 spin_lock_irqsave(&fep
->lock
, flags
);
631 if (dev
->flags
& IFF_UP
) {
632 phy_stop(dev
->phydev
);
633 (*fep
->ops
->stop
)(dev
);
634 (*fep
->ops
->restart
)(dev
);
637 phy_start(dev
->phydev
);
638 wake
= fep
->tx_free
>= MAX_SKB_FRAGS
&&
639 !(CBDR_SC(fep
->cur_tx
) & BD_ENET_TX_READY
);
640 spin_unlock_irqrestore(&fep
->lock
, flags
);
643 netif_wake_queue(dev
);
646 static void fs_timeout(struct net_device
*dev
, unsigned int txqueue
)
648 struct fs_enet_private
*fep
= netdev_priv(dev
);
650 schedule_work(&fep
->timeout_work
);
653 /*-----------------------------------------------------------------------------
654 * generic link-change handler - should be sufficient for most cases
655 *-----------------------------------------------------------------------------*/
656 static void generic_adjust_link(struct net_device
*dev
)
658 struct fs_enet_private
*fep
= netdev_priv(dev
);
659 struct phy_device
*phydev
= dev
->phydev
;
663 /* adjust to duplex mode */
664 if (phydev
->duplex
!= fep
->oldduplex
) {
666 fep
->oldduplex
= phydev
->duplex
;
669 if (phydev
->speed
!= fep
->oldspeed
) {
671 fep
->oldspeed
= phydev
->speed
;
680 fep
->ops
->restart(dev
);
681 } else if (fep
->oldlink
) {
688 if (new_state
&& netif_msg_link(fep
))
689 phy_print_status(phydev
);
693 static void fs_adjust_link(struct net_device
*dev
)
695 struct fs_enet_private
*fep
= netdev_priv(dev
);
698 spin_lock_irqsave(&fep
->lock
, flags
);
700 if(fep
->ops
->adjust_link
)
701 fep
->ops
->adjust_link(dev
);
703 generic_adjust_link(dev
);
705 spin_unlock_irqrestore(&fep
->lock
, flags
);
708 static int fs_init_phy(struct net_device
*dev
)
710 struct fs_enet_private
*fep
= netdev_priv(dev
);
711 struct phy_device
*phydev
;
712 phy_interface_t iface
;
718 iface
= fep
->fpi
->use_rmii
?
719 PHY_INTERFACE_MODE_RMII
: PHY_INTERFACE_MODE_MII
;
721 phydev
= of_phy_connect(dev
, fep
->fpi
->phy_node
, &fs_adjust_link
, 0,
724 dev_err(&dev
->dev
, "Could not attach to PHY\n");
731 static int fs_enet_open(struct net_device
*dev
)
733 struct fs_enet_private
*fep
= netdev_priv(dev
);
737 /* to initialize the fep->cur_rx,... */
738 /* not doing this, will cause a crash in fs_enet_napi */
739 fs_init_bds(fep
->ndev
);
741 napi_enable(&fep
->napi
);
743 /* Install our interrupt handler. */
744 r
= request_irq(fep
->interrupt
, fs_enet_interrupt
, IRQF_SHARED
,
747 dev_err(fep
->dev
, "Could not allocate FS_ENET IRQ!");
748 napi_disable(&fep
->napi
);
752 err
= fs_init_phy(dev
);
754 free_irq(fep
->interrupt
, dev
);
755 napi_disable(&fep
->napi
);
758 phy_start(dev
->phydev
);
760 netif_start_queue(dev
);
765 static int fs_enet_close(struct net_device
*dev
)
767 struct fs_enet_private
*fep
= netdev_priv(dev
);
770 netif_stop_queue(dev
);
771 netif_carrier_off(dev
);
772 napi_disable(&fep
->napi
);
773 cancel_work_sync(&fep
->timeout_work
);
774 phy_stop(dev
->phydev
);
776 spin_lock_irqsave(&fep
->lock
, flags
);
777 spin_lock(&fep
->tx_lock
);
778 (*fep
->ops
->stop
)(dev
);
779 spin_unlock(&fep
->tx_lock
);
780 spin_unlock_irqrestore(&fep
->lock
, flags
);
782 /* release any irqs */
783 phy_disconnect(dev
->phydev
);
784 free_irq(fep
->interrupt
, dev
);
789 /*************************************************************************/
791 static void fs_get_drvinfo(struct net_device
*dev
,
792 struct ethtool_drvinfo
*info
)
794 strlcpy(info
->driver
, DRV_MODULE_NAME
, sizeof(info
->driver
));
797 static int fs_get_regs_len(struct net_device
*dev
)
799 struct fs_enet_private
*fep
= netdev_priv(dev
);
801 return (*fep
->ops
->get_regs_len
)(dev
);
804 static void fs_get_regs(struct net_device
*dev
, struct ethtool_regs
*regs
,
807 struct fs_enet_private
*fep
= netdev_priv(dev
);
813 spin_lock_irqsave(&fep
->lock
, flags
);
814 r
= (*fep
->ops
->get_regs
)(dev
, p
, &len
);
815 spin_unlock_irqrestore(&fep
->lock
, flags
);
821 static u32
fs_get_msglevel(struct net_device
*dev
)
823 struct fs_enet_private
*fep
= netdev_priv(dev
);
824 return fep
->msg_enable
;
827 static void fs_set_msglevel(struct net_device
*dev
, u32 value
)
829 struct fs_enet_private
*fep
= netdev_priv(dev
);
830 fep
->msg_enable
= value
;
833 static int fs_get_tunable(struct net_device
*dev
,
834 const struct ethtool_tunable
*tuna
, void *data
)
836 struct fs_enet_private
*fep
= netdev_priv(dev
);
837 struct fs_platform_info
*fpi
= fep
->fpi
;
841 case ETHTOOL_RX_COPYBREAK
:
842 *(u32
*)data
= fpi
->rx_copybreak
;
852 static int fs_set_tunable(struct net_device
*dev
,
853 const struct ethtool_tunable
*tuna
, const void *data
)
855 struct fs_enet_private
*fep
= netdev_priv(dev
);
856 struct fs_platform_info
*fpi
= fep
->fpi
;
860 case ETHTOOL_RX_COPYBREAK
:
861 fpi
->rx_copybreak
= *(u32
*)data
;
871 static const struct ethtool_ops fs_ethtool_ops
= {
872 .get_drvinfo
= fs_get_drvinfo
,
873 .get_regs_len
= fs_get_regs_len
,
874 .nway_reset
= phy_ethtool_nway_reset
,
875 .get_link
= ethtool_op_get_link
,
876 .get_msglevel
= fs_get_msglevel
,
877 .set_msglevel
= fs_set_msglevel
,
878 .get_regs
= fs_get_regs
,
879 .get_ts_info
= ethtool_op_get_ts_info
,
880 .get_link_ksettings
= phy_ethtool_get_link_ksettings
,
881 .set_link_ksettings
= phy_ethtool_set_link_ksettings
,
882 .get_tunable
= fs_get_tunable
,
883 .set_tunable
= fs_set_tunable
,
886 extern int fs_mii_connect(struct net_device
*dev
);
887 extern void fs_mii_disconnect(struct net_device
*dev
);
889 /**************************************************************************************/
891 #ifdef CONFIG_FS_ENET_HAS_FEC
892 #define IS_FEC(match) ((match)->data == &fs_fec_ops)
894 #define IS_FEC(match) 0
897 static const struct net_device_ops fs_enet_netdev_ops
= {
898 .ndo_open
= fs_enet_open
,
899 .ndo_stop
= fs_enet_close
,
900 .ndo_start_xmit
= fs_enet_start_xmit
,
901 .ndo_tx_timeout
= fs_timeout
,
902 .ndo_set_rx_mode
= fs_set_multicast_list
,
903 .ndo_do_ioctl
= phy_do_ioctl_running
,
904 .ndo_validate_addr
= eth_validate_addr
,
905 .ndo_set_mac_address
= eth_mac_addr
,
906 #ifdef CONFIG_NET_POLL_CONTROLLER
907 .ndo_poll_controller
= fs_enet_netpoll
,
911 static const struct of_device_id fs_enet_match
[];
912 static int fs_enet_probe(struct platform_device
*ofdev
)
914 const struct of_device_id
*match
;
915 struct net_device
*ndev
;
916 struct fs_enet_private
*fep
;
917 struct fs_platform_info
*fpi
;
922 const char *phy_connection_type
;
923 int privsize
, len
, ret
= -ENODEV
;
925 match
= of_match_device(fs_enet_match
, &ofdev
->dev
);
929 fpi
= kzalloc(sizeof(*fpi
), GFP_KERNEL
);
933 if (!IS_FEC(match
)) {
934 data
= of_get_property(ofdev
->dev
.of_node
, "fsl,cpm-command", &len
);
935 if (!data
|| len
!= 4)
938 fpi
->cp_command
= *data
;
941 fpi
->rx_ring
= RX_RING_SIZE
;
942 fpi
->tx_ring
= TX_RING_SIZE
;
943 fpi
->rx_copybreak
= 240;
944 fpi
->napi_weight
= 17;
945 fpi
->phy_node
= of_parse_phandle(ofdev
->dev
.of_node
, "phy-handle", 0);
946 if (!fpi
->phy_node
&& of_phy_is_fixed_link(ofdev
->dev
.of_node
)) {
947 err
= of_phy_register_fixed_link(ofdev
->dev
.of_node
);
951 /* In the case of a fixed PHY, the DT node associated
952 * to the PHY is the Ethernet MAC DT node.
954 fpi
->phy_node
= of_node_get(ofdev
->dev
.of_node
);
957 if (of_device_is_compatible(ofdev
->dev
.of_node
, "fsl,mpc5125-fec")) {
958 phy_connection_type
= of_get_property(ofdev
->dev
.of_node
,
959 "phy-connection-type", NULL
);
960 if (phy_connection_type
&& !strcmp("rmii", phy_connection_type
))
964 /* make clock lookup non-fatal (the driver is shared among platforms),
965 * but require enable to succeed when a clock was specified/found,
966 * keep a reference to the clock upon successful acquisition
968 clk
= devm_clk_get(&ofdev
->dev
, "per");
970 ret
= clk_prepare_enable(clk
);
972 goto out_deregister_fixed_link
;
977 privsize
= sizeof(*fep
) +
978 sizeof(struct sk_buff
**) *
979 (fpi
->rx_ring
+ fpi
->tx_ring
) +
980 sizeof(char) * fpi
->tx_ring
;
982 ndev
= alloc_etherdev(privsize
);
988 SET_NETDEV_DEV(ndev
, &ofdev
->dev
);
989 platform_set_drvdata(ofdev
, ndev
);
991 fep
= netdev_priv(ndev
);
992 fep
->dev
= &ofdev
->dev
;
995 fep
->ops
= match
->data
;
997 ret
= fep
->ops
->setup_data(ndev
);
1001 fep
->rx_skbuff
= (struct sk_buff
**)&fep
[1];
1002 fep
->tx_skbuff
= fep
->rx_skbuff
+ fpi
->rx_ring
;
1003 fep
->mapped_as_page
= (char *)(fep
->rx_skbuff
+ fpi
->rx_ring
+
1006 spin_lock_init(&fep
->lock
);
1007 spin_lock_init(&fep
->tx_lock
);
1009 mac_addr
= of_get_mac_address(ofdev
->dev
.of_node
);
1010 if (!IS_ERR(mac_addr
))
1011 ether_addr_copy(ndev
->dev_addr
, mac_addr
);
1013 ret
= fep
->ops
->allocate_bd(ndev
);
1015 goto out_cleanup_data
;
1017 fep
->rx_bd_base
= fep
->ring_base
;
1018 fep
->tx_bd_base
= fep
->rx_bd_base
+ fpi
->rx_ring
;
1020 fep
->tx_ring
= fpi
->tx_ring
;
1021 fep
->rx_ring
= fpi
->rx_ring
;
1023 ndev
->netdev_ops
= &fs_enet_netdev_ops
;
1024 ndev
->watchdog_timeo
= 2 * HZ
;
1025 INIT_WORK(&fep
->timeout_work
, fs_timeout_work
);
1026 netif_napi_add(ndev
, &fep
->napi
, fs_enet_napi
, fpi
->napi_weight
);
1028 ndev
->ethtool_ops
= &fs_ethtool_ops
;
1030 netif_carrier_off(ndev
);
1032 ndev
->features
|= NETIF_F_SG
;
1034 ret
= register_netdev(ndev
);
1038 pr_info("%s: fs_enet: %pM\n", ndev
->name
, ndev
->dev_addr
);
1043 fep
->ops
->free_bd(ndev
);
1045 fep
->ops
->cleanup_data(ndev
);
1049 clk_disable_unprepare(fpi
->clk_per
);
1050 out_deregister_fixed_link
:
1051 of_node_put(fpi
->phy_node
);
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 clk_disable_unprepare(fep
->fpi
->clk_per
);
1071 if (of_phy_is_fixed_link(ofdev
->dev
.of_node
))
1072 of_phy_deregister_fixed_link(ofdev
->dev
.of_node
);
1077 static const struct of_device_id fs_enet_match
[] = {
1078 #ifdef CONFIG_FS_ENET_HAS_SCC
1080 .compatible
= "fsl,cpm1-scc-enet",
1081 .data
= (void *)&fs_scc_ops
,
1084 .compatible
= "fsl,cpm2-scc-enet",
1085 .data
= (void *)&fs_scc_ops
,
1088 #ifdef CONFIG_FS_ENET_HAS_FCC
1090 .compatible
= "fsl,cpm2-fcc-enet",
1091 .data
= (void *)&fs_fcc_ops
,
1094 #ifdef CONFIG_FS_ENET_HAS_FEC
1095 #ifdef CONFIG_FS_ENET_MPC5121_FEC
1097 .compatible
= "fsl,mpc5121-fec",
1098 .data
= (void *)&fs_fec_ops
,
1101 .compatible
= "fsl,mpc5125-fec",
1102 .data
= (void *)&fs_fec_ops
,
1106 .compatible
= "fsl,pq1-fec-enet",
1107 .data
= (void *)&fs_fec_ops
,
1113 MODULE_DEVICE_TABLE(of
, fs_enet_match
);
1115 static struct platform_driver fs_enet_driver
= {
1118 .of_match_table
= fs_enet_match
,
1120 .probe
= fs_enet_probe
,
1121 .remove
= fs_enet_remove
,
1124 #ifdef CONFIG_NET_POLL_CONTROLLER
1125 static void fs_enet_netpoll(struct net_device
*dev
)
1127 disable_irq(dev
->irq
);
1128 fs_enet_interrupt(dev
->irq
, dev
);
1129 enable_irq(dev
->irq
);
1133 module_platform_driver(fs_enet_driver
);