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/init.h>
28 #include <linux/delay.h>
29 #include <linux/netdevice.h>
30 #include <linux/etherdevice.h>
31 #include <linux/skbuff.h>
32 #include <linux/spinlock.h>
33 #include <linux/mii.h>
34 #include <linux/ethtool.h>
35 #include <linux/bitops.h>
37 #include <linux/platform_device.h>
38 #include <linux/phy.h>
40 #include <linux/of_mdio.h>
41 #include <linux/of_platform.h>
42 #include <linux/of_gpio.h>
43 #include <linux/of_net.h>
45 #include <linux/vmalloc.h>
46 #include <asm/pgtable.h>
48 #include <asm/uaccess.h>
52 /*************************************************/
54 MODULE_AUTHOR("Pantelis Antoniou <panto@intracom.gr>");
55 MODULE_DESCRIPTION("Freescale Ethernet Driver");
56 MODULE_LICENSE("GPL");
57 MODULE_VERSION(DRV_MODULE_VERSION
);
59 static int fs_enet_debug
= -1; /* -1 == use FS_ENET_DEF_MSG_ENABLE as value */
60 module_param(fs_enet_debug
, int, 0);
61 MODULE_PARM_DESC(fs_enet_debug
,
62 "Freescale bitmapped debugging message enable value");
64 #ifdef CONFIG_NET_POLL_CONTROLLER
65 static void fs_enet_netpoll(struct net_device
*dev
);
68 static void fs_set_multicast_list(struct net_device
*dev
)
70 struct fs_enet_private
*fep
= netdev_priv(dev
);
72 (*fep
->ops
->set_multicast_list
)(dev
);
75 static void skb_align(struct sk_buff
*skb
, int align
)
77 int off
= ((unsigned long)skb
->data
) & (align
- 1);
80 skb_reserve(skb
, align
- off
);
83 /* NAPI receive function */
84 static int fs_enet_rx_napi(struct napi_struct
*napi
, int budget
)
86 struct fs_enet_private
*fep
= container_of(napi
, struct fs_enet_private
, napi
);
87 struct net_device
*dev
= fep
->ndev
;
88 const struct fs_platform_info
*fpi
= fep
->fpi
;
90 struct sk_buff
*skb
, *skbn
, *skbt
;
96 * First, grab all of the stats for the incoming packet.
97 * These get messed up if we get called due to a busy condition.
101 /* clear RX status bits for napi*/
102 (*fep
->ops
->napi_clear_rx_event
)(dev
);
104 while (((sc
= CBDR_SC(bdp
)) & BD_ENET_RX_EMPTY
) == 0) {
105 curidx
= bdp
- fep
->rx_bd_base
;
108 * Since we have allocated space to hold a complete frame,
109 * the last indicator should be set.
111 if ((sc
& BD_ENET_RX_LAST
) == 0)
112 dev_warn(fep
->dev
, "rcv is not +last\n");
117 if (sc
& (BD_ENET_RX_LG
| BD_ENET_RX_SH
| BD_ENET_RX_CL
|
118 BD_ENET_RX_NO
| BD_ENET_RX_CR
| BD_ENET_RX_OV
)) {
119 fep
->stats
.rx_errors
++;
120 /* Frame too long or too short. */
121 if (sc
& (BD_ENET_RX_LG
| BD_ENET_RX_SH
))
122 fep
->stats
.rx_length_errors
++;
123 /* Frame alignment */
124 if (sc
& (BD_ENET_RX_NO
| BD_ENET_RX_CL
))
125 fep
->stats
.rx_frame_errors
++;
127 if (sc
& BD_ENET_RX_CR
)
128 fep
->stats
.rx_crc_errors
++;
130 if (sc
& BD_ENET_RX_OV
)
131 fep
->stats
.rx_crc_errors
++;
133 skb
= fep
->rx_skbuff
[curidx
];
135 dma_unmap_single(fep
->dev
, CBDR_BUFADDR(bdp
),
136 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
142 skb
= fep
->rx_skbuff
[curidx
];
144 dma_unmap_single(fep
->dev
, CBDR_BUFADDR(bdp
),
145 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
149 * Process the incoming frame.
151 fep
->stats
.rx_packets
++;
152 pkt_len
= CBDR_DATLEN(bdp
) - 4; /* remove CRC */
153 fep
->stats
.rx_bytes
+= pkt_len
+ 4;
155 if (pkt_len
<= fpi
->rx_copybreak
) {
156 /* +2 to make IP header L1 cache aligned */
157 skbn
= netdev_alloc_skb(dev
, pkt_len
+ 2);
159 skb_reserve(skbn
, 2); /* align IP header */
160 skb_copy_from_linear_data(skb
,
161 skbn
->data
, pkt_len
);
168 skbn
= netdev_alloc_skb(dev
, ENET_RX_FRSIZE
);
171 skb_align(skbn
, ENET_RX_ALIGN
);
175 skb_put(skb
, pkt_len
); /* Make room */
176 skb
->protocol
= eth_type_trans(skb
, dev
);
178 netif_receive_skb(skb
);
180 fep
->stats
.rx_dropped
++;
185 fep
->rx_skbuff
[curidx
] = skbn
;
186 CBDW_BUFADDR(bdp
, dma_map_single(fep
->dev
, skbn
->data
,
187 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
190 CBDW_SC(bdp
, (sc
& ~BD_ENET_RX_STATS
) | BD_ENET_RX_EMPTY
);
193 * Update BD pointer to next entry.
195 if ((sc
& BD_ENET_RX_WRAP
) == 0)
198 bdp
= fep
->rx_bd_base
;
200 (*fep
->ops
->rx_bd_done
)(dev
);
202 if (received
>= budget
)
208 if (received
< budget
) {
211 (*fep
->ops
->napi_enable_rx
)(dev
);
216 /* non NAPI receive function */
217 static int fs_enet_rx_non_napi(struct net_device
*dev
)
219 struct fs_enet_private
*fep
= netdev_priv(dev
);
220 const struct fs_platform_info
*fpi
= fep
->fpi
;
222 struct sk_buff
*skb
, *skbn
, *skbt
;
227 * First, grab all of the stats for the incoming packet.
228 * These get messed up if we get called due to a busy condition.
232 while (((sc
= CBDR_SC(bdp
)) & BD_ENET_RX_EMPTY
) == 0) {
234 curidx
= bdp
- fep
->rx_bd_base
;
237 * Since we have allocated space to hold a complete frame,
238 * the last indicator should be set.
240 if ((sc
& BD_ENET_RX_LAST
) == 0)
241 dev_warn(fep
->dev
, "rcv is not +last\n");
246 if (sc
& (BD_ENET_RX_LG
| BD_ENET_RX_SH
| BD_ENET_RX_CL
|
247 BD_ENET_RX_NO
| BD_ENET_RX_CR
| BD_ENET_RX_OV
)) {
248 fep
->stats
.rx_errors
++;
249 /* Frame too long or too short. */
250 if (sc
& (BD_ENET_RX_LG
| BD_ENET_RX_SH
))
251 fep
->stats
.rx_length_errors
++;
252 /* Frame alignment */
253 if (sc
& (BD_ENET_RX_NO
| BD_ENET_RX_CL
))
254 fep
->stats
.rx_frame_errors
++;
256 if (sc
& BD_ENET_RX_CR
)
257 fep
->stats
.rx_crc_errors
++;
259 if (sc
& BD_ENET_RX_OV
)
260 fep
->stats
.rx_crc_errors
++;
262 skb
= fep
->rx_skbuff
[curidx
];
264 dma_unmap_single(fep
->dev
, CBDR_BUFADDR(bdp
),
265 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
272 skb
= fep
->rx_skbuff
[curidx
];
274 dma_unmap_single(fep
->dev
, CBDR_BUFADDR(bdp
),
275 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
279 * Process the incoming frame.
281 fep
->stats
.rx_packets
++;
282 pkt_len
= CBDR_DATLEN(bdp
) - 4; /* remove CRC */
283 fep
->stats
.rx_bytes
+= pkt_len
+ 4;
285 if (pkt_len
<= fpi
->rx_copybreak
) {
286 /* +2 to make IP header L1 cache aligned */
287 skbn
= netdev_alloc_skb(dev
, pkt_len
+ 2);
289 skb_reserve(skbn
, 2); /* align IP header */
290 skb_copy_from_linear_data(skb
,
291 skbn
->data
, pkt_len
);
298 skbn
= netdev_alloc_skb(dev
, ENET_RX_FRSIZE
);
301 skb_align(skbn
, ENET_RX_ALIGN
);
305 skb_put(skb
, pkt_len
); /* Make room */
306 skb
->protocol
= eth_type_trans(skb
, dev
);
310 fep
->stats
.rx_dropped
++;
315 fep
->rx_skbuff
[curidx
] = skbn
;
316 CBDW_BUFADDR(bdp
, dma_map_single(fep
->dev
, skbn
->data
,
317 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
320 CBDW_SC(bdp
, (sc
& ~BD_ENET_RX_STATS
) | BD_ENET_RX_EMPTY
);
323 * Update BD pointer to next entry.
325 if ((sc
& BD_ENET_RX_WRAP
) == 0)
328 bdp
= fep
->rx_bd_base
;
330 (*fep
->ops
->rx_bd_done
)(dev
);
338 static void fs_enet_tx(struct net_device
*dev
)
340 struct fs_enet_private
*fep
= netdev_priv(dev
);
343 int dirtyidx
, do_wake
, do_restart
;
346 spin_lock(&fep
->tx_lock
);
349 do_wake
= do_restart
= 0;
350 while (((sc
= CBDR_SC(bdp
)) & BD_ENET_TX_READY
) == 0) {
351 dirtyidx
= bdp
- fep
->tx_bd_base
;
353 if (fep
->tx_free
== fep
->tx_ring
)
356 skb
= fep
->tx_skbuff
[dirtyidx
];
361 if (sc
& (BD_ENET_TX_HB
| BD_ENET_TX_LC
|
362 BD_ENET_TX_RL
| BD_ENET_TX_UN
| BD_ENET_TX_CSL
)) {
364 if (sc
& BD_ENET_TX_HB
) /* No heartbeat */
365 fep
->stats
.tx_heartbeat_errors
++;
366 if (sc
& BD_ENET_TX_LC
) /* Late collision */
367 fep
->stats
.tx_window_errors
++;
368 if (sc
& BD_ENET_TX_RL
) /* Retrans limit */
369 fep
->stats
.tx_aborted_errors
++;
370 if (sc
& BD_ENET_TX_UN
) /* Underrun */
371 fep
->stats
.tx_fifo_errors
++;
372 if (sc
& BD_ENET_TX_CSL
) /* Carrier lost */
373 fep
->stats
.tx_carrier_errors
++;
375 if (sc
& (BD_ENET_TX_LC
| BD_ENET_TX_RL
| BD_ENET_TX_UN
)) {
376 fep
->stats
.tx_errors
++;
380 fep
->stats
.tx_packets
++;
382 if (sc
& BD_ENET_TX_READY
) {
384 "HEY! Enet xmit interrupt and TX_READY.\n");
388 * Deferred means some collisions occurred during transmit,
389 * but we eventually sent the packet OK.
391 if (sc
& BD_ENET_TX_DEF
)
392 fep
->stats
.collisions
++;
395 dma_unmap_single(fep
->dev
, CBDR_BUFADDR(bdp
),
396 skb
->len
, DMA_TO_DEVICE
);
399 * Free the sk buffer associated with this last transmit.
401 dev_kfree_skb_irq(skb
);
402 fep
->tx_skbuff
[dirtyidx
] = NULL
;
405 * Update pointer to next buffer descriptor to be transmitted.
407 if ((sc
& BD_ENET_TX_WRAP
) == 0)
410 bdp
= fep
->tx_bd_base
;
413 * Since we have freed up a buffer, the ring is no longer
423 (*fep
->ops
->tx_restart
)(dev
);
425 spin_unlock(&fep
->tx_lock
);
428 netif_wake_queue(dev
);
432 * The interrupt handler.
433 * This is called from the MPC core interrupt.
436 fs_enet_interrupt(int irq
, void *dev_id
)
438 struct net_device
*dev
= dev_id
;
439 struct fs_enet_private
*fep
;
440 const struct fs_platform_info
*fpi
;
446 fep
= netdev_priv(dev
);
450 while ((int_events
= (*fep
->ops
->get_int_events
)(dev
)) != 0) {
453 int_clr_events
= int_events
;
455 int_clr_events
&= ~fep
->ev_napi_rx
;
457 (*fep
->ops
->clear_int_events
)(dev
, int_clr_events
);
459 if (int_events
& fep
->ev_err
)
460 (*fep
->ops
->ev_error
)(dev
, int_events
);
462 if (int_events
& fep
->ev_rx
) {
464 fs_enet_rx_non_napi(dev
);
466 napi_ok
= napi_schedule_prep(&fep
->napi
);
468 (*fep
->ops
->napi_disable_rx
)(dev
);
469 (*fep
->ops
->clear_int_events
)(dev
, fep
->ev_napi_rx
);
471 /* NOTE: it is possible for FCCs in NAPI mode */
472 /* to submit a spurious interrupt while in poll */
474 __napi_schedule(&fep
->napi
);
478 if (int_events
& fep
->ev_tx
)
483 return IRQ_RETVAL(handled
);
486 void fs_init_bds(struct net_device
*dev
)
488 struct fs_enet_private
*fep
= netdev_priv(dev
);
495 fep
->dirty_tx
= fep
->cur_tx
= fep
->tx_bd_base
;
496 fep
->tx_free
= fep
->tx_ring
;
497 fep
->cur_rx
= fep
->rx_bd_base
;
500 * Initialize the receive buffer descriptors.
502 for (i
= 0, bdp
= fep
->rx_bd_base
; i
< fep
->rx_ring
; i
++, bdp
++) {
503 skb
= netdev_alloc_skb(dev
, ENET_RX_FRSIZE
);
507 skb_align(skb
, ENET_RX_ALIGN
);
508 fep
->rx_skbuff
[i
] = skb
;
510 dma_map_single(fep
->dev
, skb
->data
,
511 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
513 CBDW_DATLEN(bdp
, 0); /* zero */
514 CBDW_SC(bdp
, BD_ENET_RX_EMPTY
|
515 ((i
< fep
->rx_ring
- 1) ? 0 : BD_SC_WRAP
));
518 * if we failed, fillup remainder
520 for (; i
< fep
->rx_ring
; i
++, bdp
++) {
521 fep
->rx_skbuff
[i
] = NULL
;
522 CBDW_SC(bdp
, (i
< fep
->rx_ring
- 1) ? 0 : BD_SC_WRAP
);
526 * ...and the same for transmit.
528 for (i
= 0, bdp
= fep
->tx_bd_base
; i
< fep
->tx_ring
; i
++, bdp
++) {
529 fep
->tx_skbuff
[i
] = NULL
;
530 CBDW_BUFADDR(bdp
, 0);
532 CBDW_SC(bdp
, (i
< fep
->tx_ring
- 1) ? 0 : BD_SC_WRAP
);
536 void fs_cleanup_bds(struct net_device
*dev
)
538 struct fs_enet_private
*fep
= netdev_priv(dev
);
544 * Reset SKB transmit buffers.
546 for (i
= 0, bdp
= fep
->tx_bd_base
; i
< fep
->tx_ring
; i
++, bdp
++) {
547 if ((skb
= fep
->tx_skbuff
[i
]) == NULL
)
551 dma_unmap_single(fep
->dev
, CBDR_BUFADDR(bdp
),
552 skb
->len
, DMA_TO_DEVICE
);
554 fep
->tx_skbuff
[i
] = NULL
;
559 * Reset SKB receive buffers
561 for (i
= 0, bdp
= fep
->rx_bd_base
; i
< fep
->rx_ring
; i
++, bdp
++) {
562 if ((skb
= fep
->rx_skbuff
[i
]) == NULL
)
566 dma_unmap_single(fep
->dev
, CBDR_BUFADDR(bdp
),
567 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE
),
570 fep
->rx_skbuff
[i
] = NULL
;
576 /**********************************************************************************/
578 #ifdef CONFIG_FS_ENET_MPC5121_FEC
580 * MPC5121 FEC requeries 4-byte alignment for TX data buffer!
582 static struct sk_buff
*tx_skb_align_workaround(struct net_device
*dev
,
585 struct sk_buff
*new_skb
;
586 struct fs_enet_private
*fep
= netdev_priv(dev
);
589 new_skb
= netdev_alloc_skb(dev
, skb
->len
+ 4);
593 /* Make sure new skb is properly aligned */
594 skb_align(new_skb
, 4);
596 /* Copy data to new skb ... */
597 skb_copy_from_linear_data(skb
, new_skb
->data
, skb
->len
);
598 skb_put(new_skb
, skb
->len
);
600 /* ... and free an old one */
601 dev_kfree_skb_any(skb
);
607 static int fs_enet_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
609 struct fs_enet_private
*fep
= netdev_priv(dev
);
615 #ifdef CONFIG_FS_ENET_MPC5121_FEC
616 if (((unsigned long)skb
->data
) & 0x3) {
617 skb
= tx_skb_align_workaround(dev
, skb
);
620 * We have lost packet due to memory allocation error
621 * in tx_skb_align_workaround(). Hopefully original
622 * skb is still valid, so try transmit it later.
624 return NETDEV_TX_BUSY
;
628 spin_lock_irqsave(&fep
->tx_lock
, flags
);
631 * Fill in a Tx ring entry
635 if (!fep
->tx_free
|| (CBDR_SC(bdp
) & BD_ENET_TX_READY
)) {
636 netif_stop_queue(dev
);
637 spin_unlock_irqrestore(&fep
->tx_lock
, flags
);
640 * Ooops. All transmit buffers are full. Bail out.
641 * This should not happen, since the tx queue should be stopped.
643 dev_warn(fep
->dev
, "tx queue full!.\n");
644 return NETDEV_TX_BUSY
;
647 curidx
= bdp
- fep
->tx_bd_base
;
649 * Clear all of the status flags.
651 CBDC_SC(bdp
, BD_ENET_TX_STATS
);
656 fep
->tx_skbuff
[curidx
] = skb
;
658 fep
->stats
.tx_bytes
+= skb
->len
;
661 * Push the data cache so the CPM does not get stale memory data.
663 CBDW_BUFADDR(bdp
, dma_map_single(fep
->dev
,
664 skb
->data
, skb
->len
, DMA_TO_DEVICE
));
665 CBDW_DATLEN(bdp
, skb
->len
);
668 * If this was the last BD in the ring, start at the beginning again.
670 if ((CBDR_SC(bdp
) & BD_ENET_TX_WRAP
) == 0)
673 fep
->cur_tx
= fep
->tx_bd_base
;
676 netif_stop_queue(dev
);
678 /* Trigger transmission start */
679 sc
= BD_ENET_TX_READY
| BD_ENET_TX_INTR
|
680 BD_ENET_TX_LAST
| BD_ENET_TX_TC
;
682 /* note that while FEC does not have this bit
683 * it marks it as available for software use
684 * yay for hw reuse :) */
686 sc
|= BD_ENET_TX_PAD
;
689 skb_tx_timestamp(skb
);
691 (*fep
->ops
->tx_kickstart
)(dev
);
693 spin_unlock_irqrestore(&fep
->tx_lock
, flags
);
698 static void fs_timeout(struct net_device
*dev
)
700 struct fs_enet_private
*fep
= netdev_priv(dev
);
704 fep
->stats
.tx_errors
++;
706 spin_lock_irqsave(&fep
->lock
, flags
);
708 if (dev
->flags
& IFF_UP
) {
709 phy_stop(fep
->phydev
);
710 (*fep
->ops
->stop
)(dev
);
711 (*fep
->ops
->restart
)(dev
);
712 phy_start(fep
->phydev
);
715 phy_start(fep
->phydev
);
716 wake
= fep
->tx_free
&& !(CBDR_SC(fep
->cur_tx
) & BD_ENET_TX_READY
);
717 spin_unlock_irqrestore(&fep
->lock
, flags
);
720 netif_wake_queue(dev
);
723 /*-----------------------------------------------------------------------------
724 * generic link-change handler - should be sufficient for most cases
725 *-----------------------------------------------------------------------------*/
726 static void generic_adjust_link(struct net_device
*dev
)
728 struct fs_enet_private
*fep
= netdev_priv(dev
);
729 struct phy_device
*phydev
= fep
->phydev
;
733 /* adjust to duplex mode */
734 if (phydev
->duplex
!= fep
->oldduplex
) {
736 fep
->oldduplex
= phydev
->duplex
;
739 if (phydev
->speed
!= fep
->oldspeed
) {
741 fep
->oldspeed
= phydev
->speed
;
750 fep
->ops
->restart(dev
);
751 } else if (fep
->oldlink
) {
758 if (new_state
&& netif_msg_link(fep
))
759 phy_print_status(phydev
);
763 static void fs_adjust_link(struct net_device
*dev
)
765 struct fs_enet_private
*fep
= netdev_priv(dev
);
768 spin_lock_irqsave(&fep
->lock
, flags
);
770 if(fep
->ops
->adjust_link
)
771 fep
->ops
->adjust_link(dev
);
773 generic_adjust_link(dev
);
775 spin_unlock_irqrestore(&fep
->lock
, flags
);
778 static int fs_init_phy(struct net_device
*dev
)
780 struct fs_enet_private
*fep
= netdev_priv(dev
);
781 struct phy_device
*phydev
;
782 phy_interface_t iface
;
788 iface
= fep
->fpi
->use_rmii
?
789 PHY_INTERFACE_MODE_RMII
: PHY_INTERFACE_MODE_MII
;
791 phydev
= of_phy_connect(dev
, fep
->fpi
->phy_node
, &fs_adjust_link
, 0,
794 phydev
= of_phy_connect_fixed_link(dev
, &fs_adjust_link
,
798 dev_err(&dev
->dev
, "Could not attach to PHY\n");
802 fep
->phydev
= phydev
;
807 static int fs_enet_open(struct net_device
*dev
)
809 struct fs_enet_private
*fep
= netdev_priv(dev
);
813 /* to initialize the fep->cur_rx,... */
814 /* not doing this, will cause a crash in fs_enet_rx_napi */
815 fs_init_bds(fep
->ndev
);
817 if (fep
->fpi
->use_napi
)
818 napi_enable(&fep
->napi
);
820 /* Install our interrupt handler. */
821 r
= request_irq(fep
->interrupt
, fs_enet_interrupt
, IRQF_SHARED
,
824 dev_err(fep
->dev
, "Could not allocate FS_ENET IRQ!");
825 if (fep
->fpi
->use_napi
)
826 napi_disable(&fep
->napi
);
830 err
= fs_init_phy(dev
);
832 free_irq(fep
->interrupt
, dev
);
833 if (fep
->fpi
->use_napi
)
834 napi_disable(&fep
->napi
);
837 phy_start(fep
->phydev
);
839 netif_start_queue(dev
);
844 static int fs_enet_close(struct net_device
*dev
)
846 struct fs_enet_private
*fep
= netdev_priv(dev
);
849 netif_stop_queue(dev
);
850 netif_carrier_off(dev
);
851 if (fep
->fpi
->use_napi
)
852 napi_disable(&fep
->napi
);
853 phy_stop(fep
->phydev
);
855 spin_lock_irqsave(&fep
->lock
, flags
);
856 spin_lock(&fep
->tx_lock
);
857 (*fep
->ops
->stop
)(dev
);
858 spin_unlock(&fep
->tx_lock
);
859 spin_unlock_irqrestore(&fep
->lock
, flags
);
861 /* release any irqs */
862 phy_disconnect(fep
->phydev
);
864 free_irq(fep
->interrupt
, dev
);
869 static struct net_device_stats
*fs_enet_get_stats(struct net_device
*dev
)
871 struct fs_enet_private
*fep
= netdev_priv(dev
);
875 /*************************************************************************/
877 static void fs_get_drvinfo(struct net_device
*dev
,
878 struct ethtool_drvinfo
*info
)
880 strlcpy(info
->driver
, DRV_MODULE_NAME
, sizeof(info
->driver
));
881 strlcpy(info
->version
, DRV_MODULE_VERSION
, sizeof(info
->version
));
884 static int fs_get_regs_len(struct net_device
*dev
)
886 struct fs_enet_private
*fep
= netdev_priv(dev
);
888 return (*fep
->ops
->get_regs_len
)(dev
);
891 static void fs_get_regs(struct net_device
*dev
, struct ethtool_regs
*regs
,
894 struct fs_enet_private
*fep
= netdev_priv(dev
);
900 spin_lock_irqsave(&fep
->lock
, flags
);
901 r
= (*fep
->ops
->get_regs
)(dev
, p
, &len
);
902 spin_unlock_irqrestore(&fep
->lock
, flags
);
908 static int fs_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
910 struct fs_enet_private
*fep
= netdev_priv(dev
);
915 return phy_ethtool_gset(fep
->phydev
, cmd
);
918 static int fs_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
920 struct fs_enet_private
*fep
= netdev_priv(dev
);
925 return phy_ethtool_sset(fep
->phydev
, cmd
);
928 static int fs_nway_reset(struct net_device
*dev
)
933 static u32
fs_get_msglevel(struct net_device
*dev
)
935 struct fs_enet_private
*fep
= netdev_priv(dev
);
936 return fep
->msg_enable
;
939 static void fs_set_msglevel(struct net_device
*dev
, u32 value
)
941 struct fs_enet_private
*fep
= netdev_priv(dev
);
942 fep
->msg_enable
= value
;
945 static const struct ethtool_ops fs_ethtool_ops
= {
946 .get_drvinfo
= fs_get_drvinfo
,
947 .get_regs_len
= fs_get_regs_len
,
948 .get_settings
= fs_get_settings
,
949 .set_settings
= fs_set_settings
,
950 .nway_reset
= fs_nway_reset
,
951 .get_link
= ethtool_op_get_link
,
952 .get_msglevel
= fs_get_msglevel
,
953 .set_msglevel
= fs_set_msglevel
,
954 .get_regs
= fs_get_regs
,
955 .get_ts_info
= ethtool_op_get_ts_info
,
958 static int fs_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
960 struct fs_enet_private
*fep
= netdev_priv(dev
);
962 if (!netif_running(dev
))
965 return phy_mii_ioctl(fep
->phydev
, rq
, cmd
);
968 extern int fs_mii_connect(struct net_device
*dev
);
969 extern void fs_mii_disconnect(struct net_device
*dev
);
971 /**************************************************************************************/
973 #ifdef CONFIG_FS_ENET_HAS_FEC
974 #define IS_FEC(match) ((match)->data == &fs_fec_ops)
976 #define IS_FEC(match) 0
979 static const struct net_device_ops fs_enet_netdev_ops
= {
980 .ndo_open
= fs_enet_open
,
981 .ndo_stop
= fs_enet_close
,
982 .ndo_get_stats
= fs_enet_get_stats
,
983 .ndo_start_xmit
= fs_enet_start_xmit
,
984 .ndo_tx_timeout
= fs_timeout
,
985 .ndo_set_rx_mode
= fs_set_multicast_list
,
986 .ndo_do_ioctl
= fs_ioctl
,
987 .ndo_validate_addr
= eth_validate_addr
,
988 .ndo_set_mac_address
= eth_mac_addr
,
989 .ndo_change_mtu
= eth_change_mtu
,
990 #ifdef CONFIG_NET_POLL_CONTROLLER
991 .ndo_poll_controller
= fs_enet_netpoll
,
995 static struct of_device_id fs_enet_match
[];
996 static int fs_enet_probe(struct platform_device
*ofdev
)
998 const struct of_device_id
*match
;
999 struct net_device
*ndev
;
1000 struct fs_enet_private
*fep
;
1001 struct fs_platform_info
*fpi
;
1004 const char *phy_connection_type
;
1005 int privsize
, len
, ret
= -ENODEV
;
1007 match
= of_match_device(fs_enet_match
, &ofdev
->dev
);
1011 fpi
= kzalloc(sizeof(*fpi
), GFP_KERNEL
);
1015 if (!IS_FEC(match
)) {
1016 data
= of_get_property(ofdev
->dev
.of_node
, "fsl,cpm-command", &len
);
1017 if (!data
|| len
!= 4)
1020 fpi
->cp_command
= *data
;
1025 fpi
->rx_copybreak
= 240;
1027 fpi
->napi_weight
= 17;
1028 fpi
->phy_node
= of_parse_phandle(ofdev
->dev
.of_node
, "phy-handle", 0);
1029 if ((!fpi
->phy_node
) && (!of_get_property(ofdev
->dev
.of_node
, "fixed-link",
1033 if (of_device_is_compatible(ofdev
->dev
.of_node
, "fsl,mpc5125-fec")) {
1034 phy_connection_type
= of_get_property(ofdev
->dev
.of_node
,
1035 "phy-connection-type", NULL
);
1036 if (phy_connection_type
&& !strcmp("rmii", phy_connection_type
))
1040 privsize
= sizeof(*fep
) +
1041 sizeof(struct sk_buff
**) *
1042 (fpi
->rx_ring
+ fpi
->tx_ring
);
1044 ndev
= alloc_etherdev(privsize
);
1050 SET_NETDEV_DEV(ndev
, &ofdev
->dev
);
1051 platform_set_drvdata(ofdev
, ndev
);
1053 fep
= netdev_priv(ndev
);
1054 fep
->dev
= &ofdev
->dev
;
1057 fep
->ops
= match
->data
;
1059 ret
= fep
->ops
->setup_data(ndev
);
1063 fep
->rx_skbuff
= (struct sk_buff
**)&fep
[1];
1064 fep
->tx_skbuff
= fep
->rx_skbuff
+ fpi
->rx_ring
;
1066 spin_lock_init(&fep
->lock
);
1067 spin_lock_init(&fep
->tx_lock
);
1069 mac_addr
= of_get_mac_address(ofdev
->dev
.of_node
);
1071 memcpy(ndev
->dev_addr
, mac_addr
, 6);
1073 ret
= fep
->ops
->allocate_bd(ndev
);
1075 goto out_cleanup_data
;
1077 fep
->rx_bd_base
= fep
->ring_base
;
1078 fep
->tx_bd_base
= fep
->rx_bd_base
+ fpi
->rx_ring
;
1080 fep
->tx_ring
= fpi
->tx_ring
;
1081 fep
->rx_ring
= fpi
->rx_ring
;
1083 ndev
->netdev_ops
= &fs_enet_netdev_ops
;
1084 ndev
->watchdog_timeo
= 2 * HZ
;
1086 netif_napi_add(ndev
, &fep
->napi
, fs_enet_rx_napi
,
1089 ndev
->ethtool_ops
= &fs_ethtool_ops
;
1091 init_timer(&fep
->phy_timer_list
);
1093 netif_carrier_off(ndev
);
1095 ret
= register_netdev(ndev
);
1099 pr_info("%s: fs_enet: %pM\n", ndev
->name
, ndev
->dev_addr
);
1104 fep
->ops
->free_bd(ndev
);
1106 fep
->ops
->cleanup_data(ndev
);
1110 of_node_put(fpi
->phy_node
);
1116 static int fs_enet_remove(struct platform_device
*ofdev
)
1118 struct net_device
*ndev
= platform_get_drvdata(ofdev
);
1119 struct fs_enet_private
*fep
= netdev_priv(ndev
);
1121 unregister_netdev(ndev
);
1123 fep
->ops
->free_bd(ndev
);
1124 fep
->ops
->cleanup_data(ndev
);
1125 dev_set_drvdata(fep
->dev
, NULL
);
1126 of_node_put(fep
->fpi
->phy_node
);
1131 static struct of_device_id fs_enet_match
[] = {
1132 #ifdef CONFIG_FS_ENET_HAS_SCC
1134 .compatible
= "fsl,cpm1-scc-enet",
1135 .data
= (void *)&fs_scc_ops
,
1138 .compatible
= "fsl,cpm2-scc-enet",
1139 .data
= (void *)&fs_scc_ops
,
1142 #ifdef CONFIG_FS_ENET_HAS_FCC
1144 .compatible
= "fsl,cpm2-fcc-enet",
1145 .data
= (void *)&fs_fcc_ops
,
1148 #ifdef CONFIG_FS_ENET_HAS_FEC
1149 #ifdef CONFIG_FS_ENET_MPC5121_FEC
1151 .compatible
= "fsl,mpc5121-fec",
1152 .data
= (void *)&fs_fec_ops
,
1155 .compatible
= "fsl,mpc5125-fec",
1156 .data
= (void *)&fs_fec_ops
,
1160 .compatible
= "fsl,pq1-fec-enet",
1161 .data
= (void *)&fs_fec_ops
,
1167 MODULE_DEVICE_TABLE(of
, fs_enet_match
);
1169 static struct platform_driver fs_enet_driver
= {
1171 .owner
= THIS_MODULE
,
1173 .of_match_table
= fs_enet_match
,
1175 .probe
= fs_enet_probe
,
1176 .remove
= fs_enet_remove
,
1179 #ifdef CONFIG_NET_POLL_CONTROLLER
1180 static void fs_enet_netpoll(struct net_device
*dev
)
1182 disable_irq(dev
->irq
);
1183 fs_enet_interrupt(dev
->irq
, dev
);
1184 enable_irq(dev
->irq
);
1188 module_platform_driver(fs_enet_driver
);