2 * Driver for the MPC5200 Fast Ethernet Controller
4 * Originally written by Dale Farnsworth <dfarnsworth@mvista.com> and
5 * now maintained by Sylvain Munaut <tnt@246tNt.com>
7 * Copyright (C) 2007 Domen Puncer, Telargo, Inc.
8 * Copyright (C) 2007 Sylvain Munaut <tnt@246tNt.com>
9 * Copyright (C) 2003-2004 MontaVista, Software, Inc.
11 * This file is licensed under the terms of the GNU General Public License
12 * version 2. This program is licensed "as is" without any warranty of any
13 * kind, whether express or implied.
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19 #include <linux/dma-mapping.h>
20 #include <linux/module.h>
22 #include <linux/kernel.h>
23 #include <linux/types.h>
24 #include <linux/spinlock.h>
25 #include <linux/slab.h>
26 #include <linux/errno.h>
27 #include <linux/init.h>
28 #include <linux/interrupt.h>
29 #include <linux/crc32.h>
30 #include <linux/hardirq.h>
31 #include <linux/delay.h>
32 #include <linux/of_device.h>
33 #include <linux/of_mdio.h>
34 #include <linux/of_net.h>
35 #include <linux/of_platform.h>
37 #include <linux/netdevice.h>
38 #include <linux/etherdevice.h>
39 #include <linux/ethtool.h>
40 #include <linux/skbuff.h>
43 #include <asm/delay.h>
44 #include <asm/mpc52xx.h>
46 #include <linux/fsl/bestcomm/bestcomm.h>
47 #include <linux/fsl/bestcomm/fec.h>
49 #include "fec_mpc52xx.h"
51 #define DRIVER_NAME "mpc52xx-fec"
53 /* Private driver data structure */
54 struct mpc52xx_fec_priv
{
55 struct net_device
*ndev
;
60 struct mpc52xx_fec __iomem
*fec
;
61 struct bcom_task
*rx_dmatsk
;
62 struct bcom_task
*tx_dmatsk
;
66 /* MDIO link details */
67 unsigned int mdio_speed
;
68 struct device_node
*phy_node
;
74 static irqreturn_t
mpc52xx_fec_interrupt(int, void *);
75 static irqreturn_t
mpc52xx_fec_rx_interrupt(int, void *);
76 static irqreturn_t
mpc52xx_fec_tx_interrupt(int, void *);
77 static void mpc52xx_fec_stop(struct net_device
*dev
);
78 static void mpc52xx_fec_start(struct net_device
*dev
);
79 static void mpc52xx_fec_reset(struct net_device
*dev
);
81 #define MPC52xx_MESSAGES_DEFAULT ( NETIF_MSG_DRV | NETIF_MSG_PROBE | \
82 NETIF_MSG_LINK | NETIF_MSG_IFDOWN | NETIF_MSG_IFUP)
83 static int debug
= -1; /* the above default */
84 module_param(debug
, int, 0);
85 MODULE_PARM_DESC(debug
, "debugging messages level");
87 static void mpc52xx_fec_tx_timeout(struct net_device
*dev
, unsigned int txqueue
)
89 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
92 dev_warn(&dev
->dev
, "transmit timed out\n");
94 spin_lock_irqsave(&priv
->lock
, flags
);
95 mpc52xx_fec_reset(dev
);
96 dev
->stats
.tx_errors
++;
97 spin_unlock_irqrestore(&priv
->lock
, flags
);
99 netif_wake_queue(dev
);
102 static void mpc52xx_fec_set_paddr(struct net_device
*dev
, u8
*mac
)
104 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
105 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
107 out_be32(&fec
->paddr1
, *(u32
*)(&mac
[0]));
108 out_be32(&fec
->paddr2
, (*(u16
*)(&mac
[4]) << 16) | FEC_PADDR2_TYPE
);
111 static int mpc52xx_fec_set_mac_address(struct net_device
*dev
, void *addr
)
113 struct sockaddr
*sock
= addr
;
115 memcpy(dev
->dev_addr
, sock
->sa_data
, dev
->addr_len
);
117 mpc52xx_fec_set_paddr(dev
, sock
->sa_data
);
121 static void mpc52xx_fec_free_rx_buffers(struct net_device
*dev
, struct bcom_task
*s
)
123 while (!bcom_queue_empty(s
)) {
124 struct bcom_fec_bd
*bd
;
127 skb
= bcom_retrieve_buffer(s
, NULL
, (struct bcom_bd
**)&bd
);
128 dma_unmap_single(dev
->dev
.parent
, bd
->skb_pa
, skb
->len
,
135 mpc52xx_fec_rx_submit(struct net_device
*dev
, struct sk_buff
*rskb
)
137 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
138 struct bcom_fec_bd
*bd
;
140 bd
= (struct bcom_fec_bd
*) bcom_prepare_next_buffer(priv
->rx_dmatsk
);
141 bd
->status
= FEC_RX_BUFFER_SIZE
;
142 bd
->skb_pa
= dma_map_single(dev
->dev
.parent
, rskb
->data
,
143 FEC_RX_BUFFER_SIZE
, DMA_FROM_DEVICE
);
144 bcom_submit_next_buffer(priv
->rx_dmatsk
, rskb
);
147 static int mpc52xx_fec_alloc_rx_buffers(struct net_device
*dev
, struct bcom_task
*rxtsk
)
151 while (!bcom_queue_full(rxtsk
)) {
152 skb
= netdev_alloc_skb(dev
, FEC_RX_BUFFER_SIZE
);
156 /* zero out the initial receive buffers to aid debugging */
157 memset(skb
->data
, 0, FEC_RX_BUFFER_SIZE
);
158 mpc52xx_fec_rx_submit(dev
, skb
);
163 /* based on generic_adjust_link from fs_enet-main.c */
164 static void mpc52xx_fec_adjust_link(struct net_device
*dev
)
166 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
167 struct phy_device
*phydev
= dev
->phydev
;
170 if (phydev
->link
!= PHY_DOWN
) {
171 if (phydev
->duplex
!= priv
->duplex
) {
172 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
177 priv
->duplex
= phydev
->duplex
;
179 rcntrl
= in_be32(&fec
->r_cntrl
);
180 tcntrl
= in_be32(&fec
->x_cntrl
);
182 rcntrl
&= ~FEC_RCNTRL_DRT
;
183 tcntrl
&= ~FEC_TCNTRL_FDEN
;
184 if (phydev
->duplex
== DUPLEX_FULL
)
185 tcntrl
|= FEC_TCNTRL_FDEN
; /* FD enable */
187 rcntrl
|= FEC_RCNTRL_DRT
; /* disable Rx on Tx (HD) */
189 out_be32(&fec
->r_cntrl
, rcntrl
);
190 out_be32(&fec
->x_cntrl
, tcntrl
);
193 if (phydev
->speed
!= priv
->speed
) {
195 priv
->speed
= phydev
->speed
;
198 if (priv
->link
== PHY_DOWN
) {
200 priv
->link
= phydev
->link
;
203 } else if (priv
->link
) {
205 priv
->link
= PHY_DOWN
;
210 if (new_state
&& netif_msg_link(priv
))
211 phy_print_status(phydev
);
214 static int mpc52xx_fec_open(struct net_device
*dev
)
216 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
217 struct phy_device
*phydev
= NULL
;
220 if (priv
->phy_node
) {
221 phydev
= of_phy_connect(priv
->ndev
, priv
->phy_node
,
222 mpc52xx_fec_adjust_link
, 0, 0);
224 dev_err(&dev
->dev
, "of_phy_connect failed\n");
230 if (request_irq(dev
->irq
, mpc52xx_fec_interrupt
, IRQF_SHARED
,
231 DRIVER_NAME
"_ctrl", dev
)) {
232 dev_err(&dev
->dev
, "ctrl interrupt request failed\n");
235 if (request_irq(priv
->r_irq
, mpc52xx_fec_rx_interrupt
, 0,
236 DRIVER_NAME
"_rx", dev
)) {
237 dev_err(&dev
->dev
, "rx interrupt request failed\n");
240 if (request_irq(priv
->t_irq
, mpc52xx_fec_tx_interrupt
, 0,
241 DRIVER_NAME
"_tx", dev
)) {
242 dev_err(&dev
->dev
, "tx interrupt request failed\n");
246 bcom_fec_rx_reset(priv
->rx_dmatsk
);
247 bcom_fec_tx_reset(priv
->tx_dmatsk
);
249 err
= mpc52xx_fec_alloc_rx_buffers(dev
, priv
->rx_dmatsk
);
251 dev_err(&dev
->dev
, "mpc52xx_fec_alloc_rx_buffers failed\n");
255 bcom_enable(priv
->rx_dmatsk
);
256 bcom_enable(priv
->tx_dmatsk
);
258 mpc52xx_fec_start(dev
);
260 netif_start_queue(dev
);
265 free_irq(priv
->t_irq
, dev
);
267 free_irq(priv
->r_irq
, dev
);
269 free_irq(dev
->irq
, dev
);
273 phy_disconnect(phydev
);
279 static int mpc52xx_fec_close(struct net_device
*dev
)
281 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
282 struct phy_device
*phydev
= dev
->phydev
;
284 netif_stop_queue(dev
);
286 mpc52xx_fec_stop(dev
);
288 mpc52xx_fec_free_rx_buffers(dev
, priv
->rx_dmatsk
);
290 free_irq(dev
->irq
, dev
);
291 free_irq(priv
->r_irq
, dev
);
292 free_irq(priv
->t_irq
, dev
);
297 phy_disconnect(phydev
);
303 /* This will only be invoked if your driver is _not_ in XOFF state.
304 * What this means is that you need not check it, and that this
305 * invariant will hold if you make sure that the netif_*_queue()
306 * calls are done at the proper times.
309 mpc52xx_fec_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
311 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
312 struct bcom_fec_bd
*bd
;
315 if (bcom_queue_full(priv
->tx_dmatsk
)) {
317 dev_err(&dev
->dev
, "transmit queue overrun\n");
318 return NETDEV_TX_BUSY
;
321 spin_lock_irqsave(&priv
->lock
, flags
);
323 bd
= (struct bcom_fec_bd
*)
324 bcom_prepare_next_buffer(priv
->tx_dmatsk
);
326 bd
->status
= skb
->len
| BCOM_FEC_TX_BD_TFD
| BCOM_FEC_TX_BD_TC
;
327 bd
->skb_pa
= dma_map_single(dev
->dev
.parent
, skb
->data
, skb
->len
,
330 skb_tx_timestamp(skb
);
331 bcom_submit_next_buffer(priv
->tx_dmatsk
, skb
);
332 spin_unlock_irqrestore(&priv
->lock
, flags
);
334 if (bcom_queue_full(priv
->tx_dmatsk
)) {
335 netif_stop_queue(dev
);
341 #ifdef CONFIG_NET_POLL_CONTROLLER
342 static void mpc52xx_fec_poll_controller(struct net_device
*dev
)
344 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
346 disable_irq(priv
->t_irq
);
347 mpc52xx_fec_tx_interrupt(priv
->t_irq
, dev
);
348 enable_irq(priv
->t_irq
);
349 disable_irq(priv
->r_irq
);
350 mpc52xx_fec_rx_interrupt(priv
->r_irq
, dev
);
351 enable_irq(priv
->r_irq
);
356 /* This handles BestComm transmit task interrupts
358 static irqreturn_t
mpc52xx_fec_tx_interrupt(int irq
, void *dev_id
)
360 struct net_device
*dev
= dev_id
;
361 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
363 spin_lock(&priv
->lock
);
364 while (bcom_buffer_done(priv
->tx_dmatsk
)) {
366 struct bcom_fec_bd
*bd
;
367 skb
= bcom_retrieve_buffer(priv
->tx_dmatsk
, NULL
,
368 (struct bcom_bd
**)&bd
);
369 dma_unmap_single(dev
->dev
.parent
, bd
->skb_pa
, skb
->len
,
372 dev_consume_skb_irq(skb
);
374 spin_unlock(&priv
->lock
);
376 netif_wake_queue(dev
);
381 static irqreturn_t
mpc52xx_fec_rx_interrupt(int irq
, void *dev_id
)
383 struct net_device
*dev
= dev_id
;
384 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
385 struct sk_buff
*rskb
; /* received sk_buff */
386 struct sk_buff
*skb
; /* new sk_buff to enqueue in its place */
387 struct bcom_fec_bd
*bd
;
388 u32 status
, physaddr
;
391 spin_lock(&priv
->lock
);
393 while (bcom_buffer_done(priv
->rx_dmatsk
)) {
395 rskb
= bcom_retrieve_buffer(priv
->rx_dmatsk
, &status
,
396 (struct bcom_bd
**)&bd
);
397 physaddr
= bd
->skb_pa
;
399 /* Test for errors in received frame */
400 if (status
& BCOM_FEC_RX_BD_ERRORS
) {
401 /* Drop packet and reuse the buffer */
402 mpc52xx_fec_rx_submit(dev
, rskb
);
403 dev
->stats
.rx_dropped
++;
407 /* skbs are allocated on open, so now we allocate a new one,
408 * and remove the old (with the packet) */
409 skb
= netdev_alloc_skb(dev
, FEC_RX_BUFFER_SIZE
);
411 /* Can't get a new one : reuse the same & drop pkt */
412 dev_notice(&dev
->dev
, "Low memory - dropped packet.\n");
413 mpc52xx_fec_rx_submit(dev
, rskb
);
414 dev
->stats
.rx_dropped
++;
418 /* Enqueue the new sk_buff back on the hardware */
419 mpc52xx_fec_rx_submit(dev
, skb
);
421 /* Process the received skb - Drop the spin lock while
422 * calling into the network stack */
423 spin_unlock(&priv
->lock
);
425 dma_unmap_single(dev
->dev
.parent
, physaddr
, rskb
->len
,
427 length
= status
& BCOM_FEC_RX_BD_LEN_MASK
;
428 skb_put(rskb
, length
- 4); /* length without CRC32 */
429 rskb
->protocol
= eth_type_trans(rskb
, dev
);
430 if (!skb_defer_rx_timestamp(rskb
))
433 spin_lock(&priv
->lock
);
436 spin_unlock(&priv
->lock
);
441 static irqreturn_t
mpc52xx_fec_interrupt(int irq
, void *dev_id
)
443 struct net_device
*dev
= dev_id
;
444 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
445 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
448 ievent
= in_be32(&fec
->ievent
);
450 ievent
&= ~FEC_IEVENT_MII
; /* mii is handled separately */
454 out_be32(&fec
->ievent
, ievent
); /* clear pending events */
456 /* on fifo error, soft-reset fec */
457 if (ievent
& (FEC_IEVENT_RFIFO_ERROR
| FEC_IEVENT_XFIFO_ERROR
)) {
459 if (net_ratelimit() && (ievent
& FEC_IEVENT_RFIFO_ERROR
))
460 dev_warn(&dev
->dev
, "FEC_IEVENT_RFIFO_ERROR\n");
461 if (net_ratelimit() && (ievent
& FEC_IEVENT_XFIFO_ERROR
))
462 dev_warn(&dev
->dev
, "FEC_IEVENT_XFIFO_ERROR\n");
464 spin_lock(&priv
->lock
);
465 mpc52xx_fec_reset(dev
);
466 spin_unlock(&priv
->lock
);
471 if (ievent
& ~FEC_IEVENT_TFINT
)
472 dev_dbg(&dev
->dev
, "ievent: %08x\n", ievent
);
478 * Get the current statistics.
479 * This may be called with the card open or closed.
481 static struct net_device_stats
*mpc52xx_fec_get_stats(struct net_device
*dev
)
483 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
484 struct net_device_stats
*stats
= &dev
->stats
;
485 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
487 stats
->rx_bytes
= in_be32(&fec
->rmon_r_octets
);
488 stats
->rx_packets
= in_be32(&fec
->rmon_r_packets
);
489 stats
->rx_errors
= in_be32(&fec
->rmon_r_crc_align
) +
490 in_be32(&fec
->rmon_r_undersize
) +
491 in_be32(&fec
->rmon_r_oversize
) +
492 in_be32(&fec
->rmon_r_frag
) +
493 in_be32(&fec
->rmon_r_jab
);
495 stats
->tx_bytes
= in_be32(&fec
->rmon_t_octets
);
496 stats
->tx_packets
= in_be32(&fec
->rmon_t_packets
);
497 stats
->tx_errors
= in_be32(&fec
->rmon_t_crc_align
) +
498 in_be32(&fec
->rmon_t_undersize
) +
499 in_be32(&fec
->rmon_t_oversize
) +
500 in_be32(&fec
->rmon_t_frag
) +
501 in_be32(&fec
->rmon_t_jab
);
503 stats
->multicast
= in_be32(&fec
->rmon_r_mc_pkt
);
504 stats
->collisions
= in_be32(&fec
->rmon_t_col
);
506 /* detailed rx_errors: */
507 stats
->rx_length_errors
= in_be32(&fec
->rmon_r_undersize
)
508 + in_be32(&fec
->rmon_r_oversize
)
509 + in_be32(&fec
->rmon_r_frag
)
510 + in_be32(&fec
->rmon_r_jab
);
511 stats
->rx_over_errors
= in_be32(&fec
->r_macerr
);
512 stats
->rx_crc_errors
= in_be32(&fec
->ieee_r_crc
);
513 stats
->rx_frame_errors
= in_be32(&fec
->ieee_r_align
);
514 stats
->rx_fifo_errors
= in_be32(&fec
->rmon_r_drop
);
515 stats
->rx_missed_errors
= in_be32(&fec
->rmon_r_drop
);
517 /* detailed tx_errors: */
518 stats
->tx_aborted_errors
= 0;
519 stats
->tx_carrier_errors
= in_be32(&fec
->ieee_t_cserr
);
520 stats
->tx_fifo_errors
= in_be32(&fec
->rmon_t_drop
);
521 stats
->tx_heartbeat_errors
= in_be32(&fec
->ieee_t_sqe
);
522 stats
->tx_window_errors
= in_be32(&fec
->ieee_t_lcol
);
528 * Read MIB counters in order to reset them,
529 * then zero all the stats fields in memory
531 static void mpc52xx_fec_reset_stats(struct net_device
*dev
)
533 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
534 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
536 out_be32(&fec
->mib_control
, FEC_MIB_DISABLE
);
537 memset_io(&fec
->rmon_t_drop
, 0,
538 offsetof(struct mpc52xx_fec
, reserved10
) -
539 offsetof(struct mpc52xx_fec
, rmon_t_drop
));
540 out_be32(&fec
->mib_control
, 0);
542 memset(&dev
->stats
, 0, sizeof(dev
->stats
));
546 * Set or clear the multicast filter for this adaptor.
548 static void mpc52xx_fec_set_multicast_list(struct net_device
*dev
)
550 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
551 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
554 rx_control
= in_be32(&fec
->r_cntrl
);
556 if (dev
->flags
& IFF_PROMISC
) {
557 rx_control
|= FEC_RCNTRL_PROM
;
558 out_be32(&fec
->r_cntrl
, rx_control
);
560 rx_control
&= ~FEC_RCNTRL_PROM
;
561 out_be32(&fec
->r_cntrl
, rx_control
);
563 if (dev
->flags
& IFF_ALLMULTI
) {
564 out_be32(&fec
->gaddr1
, 0xffffffff);
565 out_be32(&fec
->gaddr2
, 0xffffffff);
568 struct netdev_hw_addr
*ha
;
569 u32 gaddr1
= 0x00000000;
570 u32 gaddr2
= 0x00000000;
572 netdev_for_each_mc_addr(ha
, dev
) {
573 crc
= ether_crc_le(6, ha
->addr
) >> 26;
575 gaddr1
|= 1 << (crc
-32);
579 out_be32(&fec
->gaddr1
, gaddr1
);
580 out_be32(&fec
->gaddr2
, gaddr2
);
586 * mpc52xx_fec_hw_init
587 * @dev: network device
589 * Setup various hardware setting, only needed once on start
591 static void mpc52xx_fec_hw_init(struct net_device
*dev
)
593 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
594 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
597 /* Whack a reset. We should wait for this. */
598 out_be32(&fec
->ecntrl
, FEC_ECNTRL_RESET
);
599 for (i
= 0; i
< FEC_RESET_DELAY
; ++i
) {
600 if ((in_be32(&fec
->ecntrl
) & FEC_ECNTRL_RESET
) == 0)
604 if (i
== FEC_RESET_DELAY
)
605 dev_err(&dev
->dev
, "FEC Reset timeout!\n");
607 /* set pause to 0x20 frames */
608 out_be32(&fec
->op_pause
, FEC_OP_PAUSE_OPCODE
| 0x20);
610 /* high service request will be deasserted when there's < 7 bytes in fifo
611 * low service request will be deasserted when there's < 4*7 bytes in fifo
613 out_be32(&fec
->rfifo_cntrl
, FEC_FIFO_CNTRL_FRAME
| FEC_FIFO_CNTRL_LTG_7
);
614 out_be32(&fec
->tfifo_cntrl
, FEC_FIFO_CNTRL_FRAME
| FEC_FIFO_CNTRL_LTG_7
);
616 /* alarm when <= x bytes in FIFO */
617 out_be32(&fec
->rfifo_alarm
, 0x0000030c);
618 out_be32(&fec
->tfifo_alarm
, 0x00000100);
620 /* begin transmittion when 256 bytes are in FIFO (or EOF or FIFO full) */
621 out_be32(&fec
->x_wmrk
, FEC_FIFO_WMRK_256B
);
623 /* enable crc generation */
624 out_be32(&fec
->xmit_fsm
, FEC_XMIT_FSM_APPEND_CRC
| FEC_XMIT_FSM_ENABLE_CRC
);
625 out_be32(&fec
->iaddr1
, 0x00000000); /* No individual filter */
626 out_be32(&fec
->iaddr2
, 0x00000000); /* No individual filter */
629 * this can't be done in phy driver, since it needs to be called
630 * before fec stuff (even on resume) */
631 out_be32(&fec
->mii_speed
, priv
->mdio_speed
);
636 * @dev: network device
638 * This function is called to start or restart the FEC during a link
639 * change. This happens on fifo errors or when switching between half
642 static void mpc52xx_fec_start(struct net_device
*dev
)
644 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
645 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
650 /* clear sticky error bits */
651 tmp
= FEC_FIFO_STATUS_ERR
| FEC_FIFO_STATUS_UF
| FEC_FIFO_STATUS_OF
;
652 out_be32(&fec
->rfifo_status
, in_be32(&fec
->rfifo_status
) & tmp
);
653 out_be32(&fec
->tfifo_status
, in_be32(&fec
->tfifo_status
) & tmp
);
655 /* FIFOs will reset on mpc52xx_fec_enable */
656 out_be32(&fec
->reset_cntrl
, FEC_RESET_CNTRL_ENABLE_IS_RESET
);
658 /* Set station address. */
659 mpc52xx_fec_set_paddr(dev
, dev
->dev_addr
);
661 mpc52xx_fec_set_multicast_list(dev
);
663 /* set max frame len, enable flow control, select mii mode */
664 rcntrl
= FEC_RX_BUFFER_SIZE
<< 16; /* max frame length */
665 rcntrl
|= FEC_RCNTRL_FCE
;
667 if (!priv
->seven_wire_mode
)
668 rcntrl
|= FEC_RCNTRL_MII_MODE
;
670 if (priv
->duplex
== DUPLEX_FULL
)
671 tcntrl
= FEC_TCNTRL_FDEN
; /* FD enable */
673 rcntrl
|= FEC_RCNTRL_DRT
; /* disable Rx on Tx (HD) */
676 out_be32(&fec
->r_cntrl
, rcntrl
);
677 out_be32(&fec
->x_cntrl
, tcntrl
);
679 /* Clear any outstanding interrupt. */
680 out_be32(&fec
->ievent
, 0xffffffff);
682 /* Enable interrupts we wish to service. */
683 out_be32(&fec
->imask
, FEC_IMASK_ENABLE
);
685 /* And last, enable the transmit and receive processing. */
686 out_be32(&fec
->ecntrl
, FEC_ECNTRL_ETHER_EN
);
687 out_be32(&fec
->r_des_active
, 0x01000000);
692 * @dev: network device
694 * stop all activity on fec and empty dma buffers
696 static void mpc52xx_fec_stop(struct net_device
*dev
)
698 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
699 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
700 unsigned long timeout
;
702 /* disable all interrupts */
703 out_be32(&fec
->imask
, 0);
705 /* Disable the rx task. */
706 bcom_disable(priv
->rx_dmatsk
);
708 /* Wait for tx queue to drain, but only if we're in process context */
709 if (!in_interrupt()) {
710 timeout
= jiffies
+ msecs_to_jiffies(2000);
711 while (time_before(jiffies
, timeout
) &&
712 !bcom_queue_empty(priv
->tx_dmatsk
))
715 if (time_after_eq(jiffies
, timeout
))
716 dev_err(&dev
->dev
, "queues didn't drain\n");
718 if (time_after_eq(jiffies
, timeout
)) {
719 dev_err(&dev
->dev
, " tx: index: %i, outdex: %i\n",
720 priv
->tx_dmatsk
->index
,
721 priv
->tx_dmatsk
->outdex
);
722 dev_err(&dev
->dev
, " rx: index: %i, outdex: %i\n",
723 priv
->rx_dmatsk
->index
,
724 priv
->rx_dmatsk
->outdex
);
729 bcom_disable(priv
->tx_dmatsk
);
732 out_be32(&fec
->ecntrl
, in_be32(&fec
->ecntrl
) & ~FEC_ECNTRL_ETHER_EN
);
735 /* reset fec and bestcomm tasks */
736 static void mpc52xx_fec_reset(struct net_device
*dev
)
738 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
739 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
741 mpc52xx_fec_stop(dev
);
743 out_be32(&fec
->rfifo_status
, in_be32(&fec
->rfifo_status
));
744 out_be32(&fec
->reset_cntrl
, FEC_RESET_CNTRL_RESET_FIFO
);
746 mpc52xx_fec_free_rx_buffers(dev
, priv
->rx_dmatsk
);
748 mpc52xx_fec_hw_init(dev
);
750 bcom_fec_rx_reset(priv
->rx_dmatsk
);
751 bcom_fec_tx_reset(priv
->tx_dmatsk
);
753 mpc52xx_fec_alloc_rx_buffers(dev
, priv
->rx_dmatsk
);
755 bcom_enable(priv
->rx_dmatsk
);
756 bcom_enable(priv
->tx_dmatsk
);
758 mpc52xx_fec_start(dev
);
760 netif_wake_queue(dev
);
764 /* ethtool interface */
766 static u32
mpc52xx_fec_get_msglevel(struct net_device
*dev
)
768 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
769 return priv
->msg_enable
;
772 static void mpc52xx_fec_set_msglevel(struct net_device
*dev
, u32 level
)
774 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
775 priv
->msg_enable
= level
;
778 static const struct ethtool_ops mpc52xx_fec_ethtool_ops
= {
779 .get_link
= ethtool_op_get_link
,
780 .get_msglevel
= mpc52xx_fec_get_msglevel
,
781 .set_msglevel
= mpc52xx_fec_set_msglevel
,
782 .get_ts_info
= ethtool_op_get_ts_info
,
783 .get_link_ksettings
= phy_ethtool_get_link_ksettings
,
784 .set_link_ksettings
= phy_ethtool_set_link_ksettings
,
788 static const struct net_device_ops mpc52xx_fec_netdev_ops
= {
789 .ndo_open
= mpc52xx_fec_open
,
790 .ndo_stop
= mpc52xx_fec_close
,
791 .ndo_start_xmit
= mpc52xx_fec_start_xmit
,
792 .ndo_set_rx_mode
= mpc52xx_fec_set_multicast_list
,
793 .ndo_set_mac_address
= mpc52xx_fec_set_mac_address
,
794 .ndo_validate_addr
= eth_validate_addr
,
795 .ndo_do_ioctl
= phy_do_ioctl
,
796 .ndo_tx_timeout
= mpc52xx_fec_tx_timeout
,
797 .ndo_get_stats
= mpc52xx_fec_get_stats
,
798 #ifdef CONFIG_NET_POLL_CONTROLLER
799 .ndo_poll_controller
= mpc52xx_fec_poll_controller
,
803 /* ======================================================================== */
805 /* ======================================================================== */
807 static int mpc52xx_fec_probe(struct platform_device
*op
)
810 struct net_device
*ndev
;
811 struct mpc52xx_fec_priv
*priv
= NULL
;
815 struct device_node
*np
= op
->dev
.of_node
;
816 const char *mac_addr
;
821 /* Get the ether ndev & it's private zone */
822 ndev
= alloc_etherdev(sizeof(struct mpc52xx_fec_priv
));
826 priv
= netdev_priv(ndev
);
829 /* Reserve FEC control zone */
830 rv
= of_address_to_resource(np
, 0, &mem
);
832 pr_err("Error while parsing device node resource\n");
835 if (resource_size(&mem
) < sizeof(struct mpc52xx_fec
)) {
836 pr_err("invalid resource size (%lx < %x), check mpc52xx_devices.c\n",
837 (unsigned long)resource_size(&mem
),
838 sizeof(struct mpc52xx_fec
));
843 if (!request_mem_region(mem
.start
, sizeof(struct mpc52xx_fec
),
849 /* Init ether ndev with what we have */
850 ndev
->netdev_ops
= &mpc52xx_fec_netdev_ops
;
851 ndev
->ethtool_ops
= &mpc52xx_fec_ethtool_ops
;
852 ndev
->watchdog_timeo
= FEC_WATCHDOG_TIMEOUT
;
853 ndev
->base_addr
= mem
.start
;
854 SET_NETDEV_DEV(ndev
, &op
->dev
);
856 spin_lock_init(&priv
->lock
);
858 /* ioremap the zones */
859 priv
->fec
= ioremap(mem
.start
, sizeof(struct mpc52xx_fec
));
867 rx_fifo
= ndev
->base_addr
+ offsetof(struct mpc52xx_fec
, rfifo_data
);
868 tx_fifo
= ndev
->base_addr
+ offsetof(struct mpc52xx_fec
, tfifo_data
);
870 priv
->rx_dmatsk
= bcom_fec_rx_init(FEC_RX_NUM_BD
, rx_fifo
, FEC_RX_BUFFER_SIZE
);
871 priv
->tx_dmatsk
= bcom_fec_tx_init(FEC_TX_NUM_BD
, tx_fifo
);
873 if (!priv
->rx_dmatsk
|| !priv
->tx_dmatsk
) {
874 pr_err("Can not init SDMA tasks\n");
876 goto err_rx_tx_dmatsk
;
879 /* Get the IRQ we need one by one */
881 ndev
->irq
= irq_of_parse_and_map(np
, 0);
884 priv
->r_irq
= bcom_get_task_irq(priv
->rx_dmatsk
);
887 priv
->t_irq
= bcom_get_task_irq(priv
->tx_dmatsk
);
892 * First try to read MAC address from DT
894 mac_addr
= of_get_mac_address(np
);
895 if (!IS_ERR(mac_addr
)) {
896 ether_addr_copy(ndev
->dev_addr
, mac_addr
);
898 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
901 * If the MAC addresse is not provided via DT then read
902 * it back from the controller regs
904 *(u32
*)(&ndev
->dev_addr
[0]) = in_be32(&fec
->paddr1
);
905 *(u16
*)(&ndev
->dev_addr
[4]) = in_be32(&fec
->paddr2
) >> 16;
909 * Check if the MAC address is valid, if not get a random one
911 if (!is_valid_ether_addr(ndev
->dev_addr
)) {
912 eth_hw_addr_random(ndev
);
913 dev_warn(&ndev
->dev
, "using random MAC address %pM\n",
917 priv
->msg_enable
= netif_msg_init(debug
, MPC52xx_MESSAGES_DEFAULT
);
920 * Link mode configuration
923 /* Start with safe defaults for link connection */
925 priv
->duplex
= DUPLEX_HALF
;
926 priv
->mdio_speed
= ((mpc5xxx_get_bus_frequency(np
) >> 20) / 5) << 1;
928 /* The current speed preconfigures the speed of the MII link */
929 prop
= of_get_property(np
, "current-speed", &prop_size
);
930 if (prop
&& (prop_size
>= sizeof(u32
) * 2)) {
931 priv
->speed
= prop
[0];
932 priv
->duplex
= prop
[1] ? DUPLEX_FULL
: DUPLEX_HALF
;
935 /* If there is a phy handle, then get the PHY node */
936 priv
->phy_node
= of_parse_phandle(np
, "phy-handle", 0);
938 /* the 7-wire property means don't use MII mode */
939 if (of_find_property(np
, "fsl,7-wire-mode", NULL
)) {
940 priv
->seven_wire_mode
= 1;
941 dev_info(&ndev
->dev
, "using 7-wire PHY mode\n");
945 mpc52xx_fec_hw_init(ndev
);
946 mpc52xx_fec_reset_stats(ndev
);
948 rv
= register_netdev(ndev
);
953 platform_set_drvdata(op
, ndev
);
954 netdev_info(ndev
, "%pOF MAC %pM\n",
955 op
->dev
.of_node
, ndev
->dev_addr
);
960 of_node_put(priv
->phy_node
);
961 irq_dispose_mapping(ndev
->irq
);
964 bcom_fec_rx_release(priv
->rx_dmatsk
);
966 bcom_fec_tx_release(priv
->tx_dmatsk
);
969 release_mem_region(mem
.start
, sizeof(struct mpc52xx_fec
));
977 mpc52xx_fec_remove(struct platform_device
*op
)
979 struct net_device
*ndev
;
980 struct mpc52xx_fec_priv
*priv
;
982 ndev
= platform_get_drvdata(op
);
983 priv
= netdev_priv(ndev
);
985 unregister_netdev(ndev
);
987 of_node_put(priv
->phy_node
);
988 priv
->phy_node
= NULL
;
990 irq_dispose_mapping(ndev
->irq
);
992 bcom_fec_rx_release(priv
->rx_dmatsk
);
993 bcom_fec_tx_release(priv
->tx_dmatsk
);
997 release_mem_region(ndev
->base_addr
, sizeof(struct mpc52xx_fec
));
1005 static int mpc52xx_fec_of_suspend(struct platform_device
*op
, pm_message_t state
)
1007 struct net_device
*dev
= platform_get_drvdata(op
);
1009 if (netif_running(dev
))
1010 mpc52xx_fec_close(dev
);
1015 static int mpc52xx_fec_of_resume(struct platform_device
*op
)
1017 struct net_device
*dev
= platform_get_drvdata(op
);
1019 mpc52xx_fec_hw_init(dev
);
1020 mpc52xx_fec_reset_stats(dev
);
1022 if (netif_running(dev
))
1023 mpc52xx_fec_open(dev
);
1029 static const struct of_device_id mpc52xx_fec_match
[] = {
1030 { .compatible
= "fsl,mpc5200b-fec", },
1031 { .compatible
= "fsl,mpc5200-fec", },
1032 { .compatible
= "mpc5200-fec", },
1036 MODULE_DEVICE_TABLE(of
, mpc52xx_fec_match
);
1038 static struct platform_driver mpc52xx_fec_driver
= {
1040 .name
= DRIVER_NAME
,
1041 .of_match_table
= mpc52xx_fec_match
,
1043 .probe
= mpc52xx_fec_probe
,
1044 .remove
= mpc52xx_fec_remove
,
1046 .suspend
= mpc52xx_fec_of_suspend
,
1047 .resume
= mpc52xx_fec_of_resume
,
1052 /* ======================================================================== */
1054 /* ======================================================================== */
1056 static struct platform_driver
* const drivers
[] = {
1057 #ifdef CONFIG_FEC_MPC52xx_MDIO
1058 &mpc52xx_fec_mdio_driver
,
1060 &mpc52xx_fec_driver
,
1064 mpc52xx_fec_init(void)
1066 return platform_register_drivers(drivers
, ARRAY_SIZE(drivers
));
1070 mpc52xx_fec_exit(void)
1072 platform_unregister_drivers(drivers
, ARRAY_SIZE(drivers
));
1076 module_init(mpc52xx_fec_init
);
1077 module_exit(mpc52xx_fec_exit
);
1079 MODULE_LICENSE("GPL");
1080 MODULE_AUTHOR("Dale Farnsworth");
1081 MODULE_DESCRIPTION("Ethernet driver for the Freescale MPC52xx FEC");