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 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/types.h>
21 #include <linux/spinlock.h>
22 #include <linux/errno.h>
23 #include <linux/init.h>
24 #include <linux/crc32.h>
25 #include <linux/hardirq.h>
26 #include <linux/delay.h>
27 #include <linux/of_device.h>
28 #include <linux/of_platform.h>
30 #include <linux/netdevice.h>
31 #include <linux/etherdevice.h>
32 #include <linux/ethtool.h>
33 #include <linux/skbuff.h>
36 #include <asm/delay.h>
37 #include <asm/mpc52xx.h>
39 #include <sysdev/bestcomm/bestcomm.h>
40 #include <sysdev/bestcomm/fec.h>
42 #include "fec_mpc52xx.h"
44 #define DRIVER_NAME "mpc52xx-fec"
46 #define FEC5200_PHYADDR_NONE (-1)
47 #define FEC5200_PHYADDR_7WIRE (-2)
49 /* Private driver data structure */
50 struct mpc52xx_fec_priv
{
55 struct mpc52xx_fec __iomem
*fec
;
56 struct bcom_task
*rx_dmatsk
;
57 struct bcom_task
*tx_dmatsk
;
61 /* MDIO link details */
63 unsigned int phy_speed
;
64 struct phy_device
*phydev
;
69 static irqreturn_t
mpc52xx_fec_interrupt(int, void *);
70 static irqreturn_t
mpc52xx_fec_rx_interrupt(int, void *);
71 static irqreturn_t
mpc52xx_fec_tx_interrupt(int, void *);
72 static void mpc52xx_fec_stop(struct net_device
*dev
);
73 static void mpc52xx_fec_start(struct net_device
*dev
);
74 static void mpc52xx_fec_reset(struct net_device
*dev
);
76 static u8 mpc52xx_fec_mac_addr
[6];
77 module_param_array_named(mac
, mpc52xx_fec_mac_addr
, byte
, NULL
, 0);
78 MODULE_PARM_DESC(mac
, "six hex digits, ie. 0x1,0x2,0xc0,0x01,0xba,0xbe");
80 #define MPC52xx_MESSAGES_DEFAULT ( NETIF_MSG_DRV | NETIF_MSG_PROBE | \
81 NETIF_MSG_LINK | NETIF_MSG_IFDOWN | NETIF_MSG_IFDOWN )
82 static int debug
= -1; /* the above default */
83 module_param(debug
, int, 0);
84 MODULE_PARM_DESC(debug
, "debugging messages level");
86 static void mpc52xx_fec_tx_timeout(struct net_device
*dev
)
88 dev_warn(&dev
->dev
, "transmit timed out\n");
90 mpc52xx_fec_reset(dev
);
92 dev
->stats
.tx_errors
++;
94 netif_wake_queue(dev
);
97 static void mpc52xx_fec_set_paddr(struct net_device
*dev
, u8
*mac
)
99 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
100 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
102 out_be32(&fec
->paddr1
, *(u32
*)(&mac
[0]));
103 out_be32(&fec
->paddr2
, (*(u16
*)(&mac
[4]) << 16) | FEC_PADDR2_TYPE
);
106 static void mpc52xx_fec_get_paddr(struct net_device
*dev
, u8
*mac
)
108 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
109 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
111 *(u32
*)(&mac
[0]) = in_be32(&fec
->paddr1
);
112 *(u16
*)(&mac
[4]) = in_be32(&fec
->paddr2
) >> 16;
115 static int mpc52xx_fec_set_mac_address(struct net_device
*dev
, void *addr
)
117 struct sockaddr
*sock
= addr
;
119 memcpy(dev
->dev_addr
, sock
->sa_data
, dev
->addr_len
);
121 mpc52xx_fec_set_paddr(dev
, sock
->sa_data
);
125 static void mpc52xx_fec_free_rx_buffers(struct net_device
*dev
, struct bcom_task
*s
)
127 while (!bcom_queue_empty(s
)) {
128 struct bcom_fec_bd
*bd
;
131 skb
= bcom_retrieve_buffer(s
, NULL
, (struct bcom_bd
**)&bd
);
132 dma_unmap_single(&dev
->dev
, bd
->skb_pa
, skb
->len
, DMA_FROM_DEVICE
);
137 static int mpc52xx_fec_alloc_rx_buffers(struct net_device
*dev
, struct bcom_task
*rxtsk
)
139 while (!bcom_queue_full(rxtsk
)) {
141 struct bcom_fec_bd
*bd
;
143 skb
= dev_alloc_skb(FEC_RX_BUFFER_SIZE
);
147 /* zero out the initial receive buffers to aid debugging */
148 memset(skb
->data
, 0, FEC_RX_BUFFER_SIZE
);
150 bd
= (struct bcom_fec_bd
*)bcom_prepare_next_buffer(rxtsk
);
152 bd
->status
= FEC_RX_BUFFER_SIZE
;
153 bd
->skb_pa
= dma_map_single(&dev
->dev
, skb
->data
,
154 FEC_RX_BUFFER_SIZE
, DMA_FROM_DEVICE
);
156 bcom_submit_next_buffer(rxtsk
, skb
);
162 /* based on generic_adjust_link from fs_enet-main.c */
163 static void mpc52xx_fec_adjust_link(struct net_device
*dev
)
165 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
166 struct phy_device
*phydev
= priv
->phydev
;
169 if (phydev
->link
!= PHY_DOWN
) {
170 if (phydev
->duplex
!= priv
->duplex
) {
171 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
176 priv
->duplex
= phydev
->duplex
;
178 rcntrl
= in_be32(&fec
->r_cntrl
);
179 tcntrl
= in_be32(&fec
->x_cntrl
);
181 rcntrl
&= ~FEC_RCNTRL_DRT
;
182 tcntrl
&= ~FEC_TCNTRL_FDEN
;
183 if (phydev
->duplex
== DUPLEX_FULL
)
184 tcntrl
|= FEC_TCNTRL_FDEN
; /* FD enable */
186 rcntrl
|= FEC_RCNTRL_DRT
; /* disable Rx on Tx (HD) */
188 out_be32(&fec
->r_cntrl
, rcntrl
);
189 out_be32(&fec
->x_cntrl
, tcntrl
);
192 if (phydev
->speed
!= priv
->speed
) {
194 priv
->speed
= phydev
->speed
;
197 if (priv
->link
== PHY_DOWN
) {
199 priv
->link
= phydev
->link
;
201 netif_carrier_on(dev
);
202 netif_start_queue(dev
);
205 } else if (priv
->link
) {
207 priv
->link
= PHY_DOWN
;
210 netif_stop_queue(dev
);
211 netif_carrier_off(dev
);
214 if (new_state
&& netif_msg_link(priv
))
215 phy_print_status(phydev
);
218 static int mpc52xx_fec_init_phy(struct net_device
*dev
)
220 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
221 struct phy_device
*phydev
;
222 char phy_id
[BUS_ID_SIZE
];
224 snprintf(phy_id
, BUS_ID_SIZE
, "%x:%02x",
225 (unsigned int)dev
->base_addr
, priv
->phy_addr
);
227 priv
->link
= PHY_DOWN
;
231 phydev
= phy_connect(dev
, phy_id
, &mpc52xx_fec_adjust_link
, 0, PHY_INTERFACE_MODE_MII
);
232 if (IS_ERR(phydev
)) {
233 dev_err(&dev
->dev
, "phy_connect failed\n");
234 return PTR_ERR(phydev
);
236 dev_info(&dev
->dev
, "attached phy %i to driver %s\n",
237 phydev
->addr
, phydev
->drv
->name
);
239 priv
->phydev
= phydev
;
244 static int mpc52xx_fec_phy_start(struct net_device
*dev
)
246 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
249 if (priv
->phy_addr
< 0)
252 err
= mpc52xx_fec_init_phy(dev
);
254 dev_err(&dev
->dev
, "mpc52xx_fec_init_phy failed\n");
258 /* reset phy - this also wakes it from PDOWN */
259 phy_write(priv
->phydev
, MII_BMCR
, BMCR_RESET
);
260 phy_start(priv
->phydev
);
265 static void mpc52xx_fec_phy_stop(struct net_device
*dev
)
267 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
272 phy_disconnect(priv
->phydev
);
274 phy_stop(priv
->phydev
);
275 phy_write(priv
->phydev
, MII_BMCR
, BMCR_PDOWN
);
278 static int mpc52xx_fec_phy_mii_ioctl(struct mpc52xx_fec_priv
*priv
,
279 struct mii_ioctl_data
*mii_data
, int cmd
)
284 return phy_mii_ioctl(priv
->phydev
, mii_data
, cmd
);
287 static void mpc52xx_fec_phy_hw_init(struct mpc52xx_fec_priv
*priv
)
289 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
294 out_be32(&fec
->mii_speed
, priv
->phy_speed
);
297 static int mpc52xx_fec_open(struct net_device
*dev
)
299 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
302 if (request_irq(dev
->irq
, &mpc52xx_fec_interrupt
, IRQF_SHARED
,
303 DRIVER_NAME
"_ctrl", dev
)) {
304 dev_err(&dev
->dev
, "ctrl interrupt request failed\n");
307 if (request_irq(priv
->r_irq
, &mpc52xx_fec_rx_interrupt
, 0,
308 DRIVER_NAME
"_rx", dev
)) {
309 dev_err(&dev
->dev
, "rx interrupt request failed\n");
312 if (request_irq(priv
->t_irq
, &mpc52xx_fec_tx_interrupt
, 0,
313 DRIVER_NAME
"_tx", dev
)) {
314 dev_err(&dev
->dev
, "tx interrupt request failed\n");
318 bcom_fec_rx_reset(priv
->rx_dmatsk
);
319 bcom_fec_tx_reset(priv
->tx_dmatsk
);
321 err
= mpc52xx_fec_alloc_rx_buffers(dev
, priv
->rx_dmatsk
);
323 dev_err(&dev
->dev
, "mpc52xx_fec_alloc_rx_buffers failed\n");
327 err
= mpc52xx_fec_phy_start(dev
);
331 bcom_enable(priv
->rx_dmatsk
);
332 bcom_enable(priv
->tx_dmatsk
);
334 mpc52xx_fec_start(dev
);
336 netif_start_queue(dev
);
341 mpc52xx_fec_free_rx_buffers(dev
, priv
->rx_dmatsk
);
344 free_irq(priv
->t_irq
, dev
);
346 free_irq(priv
->r_irq
, dev
);
348 free_irq(dev
->irq
, dev
);
354 static int mpc52xx_fec_close(struct net_device
*dev
)
356 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
358 netif_stop_queue(dev
);
360 mpc52xx_fec_stop(dev
);
362 mpc52xx_fec_free_rx_buffers(dev
, priv
->rx_dmatsk
);
364 free_irq(dev
->irq
, dev
);
365 free_irq(priv
->r_irq
, dev
);
366 free_irq(priv
->t_irq
, dev
);
368 mpc52xx_fec_phy_stop(dev
);
373 /* This will only be invoked if your driver is _not_ in XOFF state.
374 * What this means is that you need not check it, and that this
375 * invariant will hold if you make sure that the netif_*_queue()
376 * calls are done at the proper times.
378 static int mpc52xx_fec_hard_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
380 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
381 struct bcom_fec_bd
*bd
;
383 if (bcom_queue_full(priv
->tx_dmatsk
)) {
385 dev_err(&dev
->dev
, "transmit queue overrun\n");
389 spin_lock_irq(&priv
->lock
);
390 dev
->trans_start
= jiffies
;
392 bd
= (struct bcom_fec_bd
*)
393 bcom_prepare_next_buffer(priv
->tx_dmatsk
);
395 bd
->status
= skb
->len
| BCOM_FEC_TX_BD_TFD
| BCOM_FEC_TX_BD_TC
;
396 bd
->skb_pa
= dma_map_single(&dev
->dev
, skb
->data
, skb
->len
, DMA_TO_DEVICE
);
398 bcom_submit_next_buffer(priv
->tx_dmatsk
, skb
);
400 if (bcom_queue_full(priv
->tx_dmatsk
)) {
401 netif_stop_queue(dev
);
404 spin_unlock_irq(&priv
->lock
);
409 /* This handles BestComm transmit task interrupts
411 static irqreturn_t
mpc52xx_fec_tx_interrupt(int irq
, void *dev_id
)
413 struct net_device
*dev
= dev_id
;
414 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
416 spin_lock(&priv
->lock
);
418 while (bcom_buffer_done(priv
->tx_dmatsk
)) {
420 struct bcom_fec_bd
*bd
;
421 skb
= bcom_retrieve_buffer(priv
->tx_dmatsk
, NULL
,
422 (struct bcom_bd
**)&bd
);
423 dma_unmap_single(&dev
->dev
, bd
->skb_pa
, skb
->len
, DMA_TO_DEVICE
);
425 dev_kfree_skb_irq(skb
);
428 netif_wake_queue(dev
);
430 spin_unlock(&priv
->lock
);
435 static irqreturn_t
mpc52xx_fec_rx_interrupt(int irq
, void *dev_id
)
437 struct net_device
*dev
= dev_id
;
438 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
440 while (bcom_buffer_done(priv
->rx_dmatsk
)) {
442 struct sk_buff
*rskb
;
443 struct bcom_fec_bd
*bd
;
446 rskb
= bcom_retrieve_buffer(priv
->rx_dmatsk
, &status
,
447 (struct bcom_bd
**)&bd
);
448 dma_unmap_single(&dev
->dev
, bd
->skb_pa
, rskb
->len
, DMA_FROM_DEVICE
);
450 /* Test for errors in received frame */
451 if (status
& BCOM_FEC_RX_BD_ERRORS
) {
452 /* Drop packet and reuse the buffer */
453 bd
= (struct bcom_fec_bd
*)
454 bcom_prepare_next_buffer(priv
->rx_dmatsk
);
456 bd
->status
= FEC_RX_BUFFER_SIZE
;
457 bd
->skb_pa
= dma_map_single(&dev
->dev
, rskb
->data
,
458 FEC_RX_BUFFER_SIZE
, DMA_FROM_DEVICE
);
460 bcom_submit_next_buffer(priv
->rx_dmatsk
, rskb
);
462 dev
->stats
.rx_dropped
++;
467 /* skbs are allocated on open, so now we allocate a new one,
468 * and remove the old (with the packet) */
469 skb
= dev_alloc_skb(FEC_RX_BUFFER_SIZE
);
471 /* Process the received skb */
472 int length
= status
& BCOM_FEC_RX_BD_LEN_MASK
;
474 skb_put(rskb
, length
- 4); /* length without CRC32 */
477 rskb
->protocol
= eth_type_trans(rskb
, dev
);
480 dev
->last_rx
= jiffies
;
482 /* Can't get a new one : reuse the same & drop pkt */
483 dev_notice(&dev
->dev
, "Memory squeeze, dropping packet.\n");
484 dev
->stats
.rx_dropped
++;
489 bd
= (struct bcom_fec_bd
*)
490 bcom_prepare_next_buffer(priv
->rx_dmatsk
);
492 bd
->status
= FEC_RX_BUFFER_SIZE
;
493 bd
->skb_pa
= dma_map_single(&dev
->dev
, skb
->data
,
494 FEC_RX_BUFFER_SIZE
, DMA_FROM_DEVICE
);
496 bcom_submit_next_buffer(priv
->rx_dmatsk
, skb
);
502 static irqreturn_t
mpc52xx_fec_interrupt(int irq
, void *dev_id
)
504 struct net_device
*dev
= dev_id
;
505 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
506 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
509 ievent
= in_be32(&fec
->ievent
);
511 ievent
&= ~FEC_IEVENT_MII
; /* mii is handled separately */
515 out_be32(&fec
->ievent
, ievent
); /* clear pending events */
517 /* on fifo error, soft-reset fec */
518 if (ievent
& (FEC_IEVENT_RFIFO_ERROR
| FEC_IEVENT_XFIFO_ERROR
)) {
520 if (net_ratelimit() && (ievent
& FEC_IEVENT_RFIFO_ERROR
))
521 dev_warn(&dev
->dev
, "FEC_IEVENT_RFIFO_ERROR\n");
522 if (net_ratelimit() && (ievent
& FEC_IEVENT_XFIFO_ERROR
))
523 dev_warn(&dev
->dev
, "FEC_IEVENT_XFIFO_ERROR\n");
525 mpc52xx_fec_reset(dev
);
527 netif_wake_queue(dev
);
531 if (ievent
& ~FEC_IEVENT_TFINT
)
532 dev_dbg(&dev
->dev
, "ievent: %08x\n", ievent
);
538 * Get the current statistics.
539 * This may be called with the card open or closed.
541 static struct net_device_stats
*mpc52xx_fec_get_stats(struct net_device
*dev
)
543 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
544 struct net_device_stats
*stats
= &dev
->stats
;
545 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
547 stats
->rx_bytes
= in_be32(&fec
->rmon_r_octets
);
548 stats
->rx_packets
= in_be32(&fec
->rmon_r_packets
);
549 stats
->rx_errors
= in_be32(&fec
->rmon_r_crc_align
) +
550 in_be32(&fec
->rmon_r_undersize
) +
551 in_be32(&fec
->rmon_r_oversize
) +
552 in_be32(&fec
->rmon_r_frag
) +
553 in_be32(&fec
->rmon_r_jab
);
555 stats
->tx_bytes
= in_be32(&fec
->rmon_t_octets
);
556 stats
->tx_packets
= in_be32(&fec
->rmon_t_packets
);
557 stats
->tx_errors
= in_be32(&fec
->rmon_t_crc_align
) +
558 in_be32(&fec
->rmon_t_undersize
) +
559 in_be32(&fec
->rmon_t_oversize
) +
560 in_be32(&fec
->rmon_t_frag
) +
561 in_be32(&fec
->rmon_t_jab
);
563 stats
->multicast
= in_be32(&fec
->rmon_r_mc_pkt
);
564 stats
->collisions
= in_be32(&fec
->rmon_t_col
);
566 /* detailed rx_errors: */
567 stats
->rx_length_errors
= in_be32(&fec
->rmon_r_undersize
)
568 + in_be32(&fec
->rmon_r_oversize
)
569 + in_be32(&fec
->rmon_r_frag
)
570 + in_be32(&fec
->rmon_r_jab
);
571 stats
->rx_over_errors
= in_be32(&fec
->r_macerr
);
572 stats
->rx_crc_errors
= in_be32(&fec
->ieee_r_crc
);
573 stats
->rx_frame_errors
= in_be32(&fec
->ieee_r_align
);
574 stats
->rx_fifo_errors
= in_be32(&fec
->rmon_r_drop
);
575 stats
->rx_missed_errors
= in_be32(&fec
->rmon_r_drop
);
577 /* detailed tx_errors: */
578 stats
->tx_aborted_errors
= 0;
579 stats
->tx_carrier_errors
= in_be32(&fec
->ieee_t_cserr
);
580 stats
->tx_fifo_errors
= in_be32(&fec
->rmon_t_drop
);
581 stats
->tx_heartbeat_errors
= in_be32(&fec
->ieee_t_sqe
);
582 stats
->tx_window_errors
= in_be32(&fec
->ieee_t_lcol
);
588 * Read MIB counters in order to reset them,
589 * then zero all the stats fields in memory
591 static void mpc52xx_fec_reset_stats(struct net_device
*dev
)
593 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
594 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
596 out_be32(&fec
->mib_control
, FEC_MIB_DISABLE
);
597 memset_io(&fec
->rmon_t_drop
, 0,
598 offsetof(struct mpc52xx_fec
, reserved10
) -
599 offsetof(struct mpc52xx_fec
, rmon_t_drop
));
600 out_be32(&fec
->mib_control
, 0);
602 memset(&dev
->stats
, 0, sizeof(dev
->stats
));
606 * Set or clear the multicast filter for this adaptor.
608 static void mpc52xx_fec_set_multicast_list(struct net_device
*dev
)
610 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
611 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
614 rx_control
= in_be32(&fec
->r_cntrl
);
616 if (dev
->flags
& IFF_PROMISC
) {
617 rx_control
|= FEC_RCNTRL_PROM
;
618 out_be32(&fec
->r_cntrl
, rx_control
);
620 rx_control
&= ~FEC_RCNTRL_PROM
;
621 out_be32(&fec
->r_cntrl
, rx_control
);
623 if (dev
->flags
& IFF_ALLMULTI
) {
624 out_be32(&fec
->gaddr1
, 0xffffffff);
625 out_be32(&fec
->gaddr2
, 0xffffffff);
629 struct dev_mc_list
*dmi
;
630 u32 gaddr1
= 0x00000000;
631 u32 gaddr2
= 0x00000000;
634 for (i
=0; i
<dev
->mc_count
; i
++) {
635 crc
= ether_crc_le(6, dmi
->dmi_addr
) >> 26;
637 gaddr1
|= 1 << (crc
-32);
642 out_be32(&fec
->gaddr1
, gaddr1
);
643 out_be32(&fec
->gaddr2
, gaddr2
);
649 * mpc52xx_fec_hw_init
650 * @dev: network device
652 * Setup various hardware setting, only needed once on start
654 static void mpc52xx_fec_hw_init(struct net_device
*dev
)
656 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
657 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
660 /* Whack a reset. We should wait for this. */
661 out_be32(&fec
->ecntrl
, FEC_ECNTRL_RESET
);
662 for (i
= 0; i
< FEC_RESET_DELAY
; ++i
) {
663 if ((in_be32(&fec
->ecntrl
) & FEC_ECNTRL_RESET
) == 0)
667 if (i
== FEC_RESET_DELAY
)
668 dev_err(&dev
->dev
, "FEC Reset timeout!\n");
670 /* set pause to 0x20 frames */
671 out_be32(&fec
->op_pause
, FEC_OP_PAUSE_OPCODE
| 0x20);
673 /* high service request will be deasserted when there's < 7 bytes in fifo
674 * low service request will be deasserted when there's < 4*7 bytes in fifo
676 out_be32(&fec
->rfifo_cntrl
, FEC_FIFO_CNTRL_FRAME
| FEC_FIFO_CNTRL_LTG_7
);
677 out_be32(&fec
->tfifo_cntrl
, FEC_FIFO_CNTRL_FRAME
| FEC_FIFO_CNTRL_LTG_7
);
679 /* alarm when <= x bytes in FIFO */
680 out_be32(&fec
->rfifo_alarm
, 0x0000030c);
681 out_be32(&fec
->tfifo_alarm
, 0x00000100);
683 /* begin transmittion when 256 bytes are in FIFO (or EOF or FIFO full) */
684 out_be32(&fec
->x_wmrk
, FEC_FIFO_WMRK_256B
);
686 /* enable crc generation */
687 out_be32(&fec
->xmit_fsm
, FEC_XMIT_FSM_APPEND_CRC
| FEC_XMIT_FSM_ENABLE_CRC
);
688 out_be32(&fec
->iaddr1
, 0x00000000); /* No individual filter */
689 out_be32(&fec
->iaddr2
, 0x00000000); /* No individual filter */
692 * this can't be done in phy driver, since it needs to be called
693 * before fec stuff (even on resume) */
694 mpc52xx_fec_phy_hw_init(priv
);
699 * @dev: network device
701 * This function is called to start or restart the FEC during a link
702 * change. This happens on fifo errors or when switching between half
705 static void mpc52xx_fec_start(struct net_device
*dev
)
707 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
708 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
713 /* clear sticky error bits */
714 tmp
= FEC_FIFO_STATUS_ERR
| FEC_FIFO_STATUS_UF
| FEC_FIFO_STATUS_OF
;
715 out_be32(&fec
->rfifo_status
, in_be32(&fec
->rfifo_status
) & tmp
);
716 out_be32(&fec
->tfifo_status
, in_be32(&fec
->tfifo_status
) & tmp
);
718 /* FIFOs will reset on mpc52xx_fec_enable */
719 out_be32(&fec
->reset_cntrl
, FEC_RESET_CNTRL_ENABLE_IS_RESET
);
721 /* Set station address. */
722 mpc52xx_fec_set_paddr(dev
, dev
->dev_addr
);
724 mpc52xx_fec_set_multicast_list(dev
);
726 /* set max frame len, enable flow control, select mii mode */
727 rcntrl
= FEC_RX_BUFFER_SIZE
<< 16; /* max frame length */
728 rcntrl
|= FEC_RCNTRL_FCE
;
730 if (priv
->phy_addr
!= FEC5200_PHYADDR_7WIRE
)
731 rcntrl
|= FEC_RCNTRL_MII_MODE
;
733 if (priv
->duplex
== DUPLEX_FULL
)
734 tcntrl
= FEC_TCNTRL_FDEN
; /* FD enable */
736 rcntrl
|= FEC_RCNTRL_DRT
; /* disable Rx on Tx (HD) */
739 out_be32(&fec
->r_cntrl
, rcntrl
);
740 out_be32(&fec
->x_cntrl
, tcntrl
);
742 /* Clear any outstanding interrupt. */
743 out_be32(&fec
->ievent
, 0xffffffff);
745 /* Enable interrupts we wish to service. */
746 out_be32(&fec
->imask
, FEC_IMASK_ENABLE
);
748 /* And last, enable the transmit and receive processing. */
749 out_be32(&fec
->ecntrl
, FEC_ECNTRL_ETHER_EN
);
750 out_be32(&fec
->r_des_active
, 0x01000000);
755 * @dev: network device
757 * stop all activity on fec and empty dma buffers
759 static void mpc52xx_fec_stop(struct net_device
*dev
)
761 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
762 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
763 unsigned long timeout
;
765 /* disable all interrupts */
766 out_be32(&fec
->imask
, 0);
768 /* Disable the rx task. */
769 bcom_disable(priv
->rx_dmatsk
);
771 /* Wait for tx queue to drain, but only if we're in process context */
772 if (!in_interrupt()) {
773 timeout
= jiffies
+ msecs_to_jiffies(2000);
774 while (time_before(jiffies
, timeout
) &&
775 !bcom_queue_empty(priv
->tx_dmatsk
))
778 if (time_after_eq(jiffies
, timeout
))
779 dev_err(&dev
->dev
, "queues didn't drain\n");
781 if (time_after_eq(jiffies
, timeout
)) {
782 dev_err(&dev
->dev
, " tx: index: %i, outdex: %i\n",
783 priv
->tx_dmatsk
->index
,
784 priv
->tx_dmatsk
->outdex
);
785 dev_err(&dev
->dev
, " rx: index: %i, outdex: %i\n",
786 priv
->rx_dmatsk
->index
,
787 priv
->rx_dmatsk
->outdex
);
792 bcom_disable(priv
->tx_dmatsk
);
795 out_be32(&fec
->ecntrl
, in_be32(&fec
->ecntrl
) & ~FEC_ECNTRL_ETHER_EN
);
800 /* reset fec and bestcomm tasks */
801 static void mpc52xx_fec_reset(struct net_device
*dev
)
803 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
804 struct mpc52xx_fec __iomem
*fec
= priv
->fec
;
806 mpc52xx_fec_stop(dev
);
808 out_be32(&fec
->rfifo_status
, in_be32(&fec
->rfifo_status
));
809 out_be32(&fec
->reset_cntrl
, FEC_RESET_CNTRL_RESET_FIFO
);
811 mpc52xx_fec_free_rx_buffers(dev
, priv
->rx_dmatsk
);
813 mpc52xx_fec_hw_init(dev
);
815 phy_stop(priv
->phydev
);
816 phy_write(priv
->phydev
, MII_BMCR
, BMCR_RESET
);
817 phy_start(priv
->phydev
);
819 bcom_fec_rx_reset(priv
->rx_dmatsk
);
820 bcom_fec_tx_reset(priv
->tx_dmatsk
);
822 mpc52xx_fec_alloc_rx_buffers(dev
, priv
->rx_dmatsk
);
824 bcom_enable(priv
->rx_dmatsk
);
825 bcom_enable(priv
->tx_dmatsk
);
827 mpc52xx_fec_start(dev
);
831 /* ethtool interface */
832 static void mpc52xx_fec_get_drvinfo(struct net_device
*dev
,
833 struct ethtool_drvinfo
*info
)
835 strcpy(info
->driver
, DRIVER_NAME
);
838 static int mpc52xx_fec_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
840 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
841 return phy_ethtool_gset(priv
->phydev
, cmd
);
844 static int mpc52xx_fec_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
846 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
847 return phy_ethtool_sset(priv
->phydev
, cmd
);
850 static u32
mpc52xx_fec_get_msglevel(struct net_device
*dev
)
852 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
853 return priv
->msg_enable
;
856 static void mpc52xx_fec_set_msglevel(struct net_device
*dev
, u32 level
)
858 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
859 priv
->msg_enable
= level
;
862 static const struct ethtool_ops mpc52xx_fec_ethtool_ops
= {
863 .get_drvinfo
= mpc52xx_fec_get_drvinfo
,
864 .get_settings
= mpc52xx_fec_get_settings
,
865 .set_settings
= mpc52xx_fec_set_settings
,
866 .get_link
= ethtool_op_get_link
,
867 .get_msglevel
= mpc52xx_fec_get_msglevel
,
868 .set_msglevel
= mpc52xx_fec_set_msglevel
,
872 static int mpc52xx_fec_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
874 struct mpc52xx_fec_priv
*priv
= netdev_priv(dev
);
876 return mpc52xx_fec_phy_mii_ioctl(priv
, if_mii(rq
), cmd
);
879 /* ======================================================================== */
881 /* ======================================================================== */
884 mpc52xx_fec_probe(struct of_device
*op
, const struct of_device_id
*match
)
887 struct net_device
*ndev
;
888 struct mpc52xx_fec_priv
*priv
= NULL
;
890 struct device_node
*phy_node
;
891 const phandle
*phy_handle
;
898 /* Get the ether ndev & it's private zone */
899 ndev
= alloc_etherdev(sizeof(struct mpc52xx_fec_priv
));
903 priv
= netdev_priv(ndev
);
905 /* Reserve FEC control zone */
906 rv
= of_address_to_resource(op
->node
, 0, &mem
);
908 printk(KERN_ERR DRIVER_NAME
": "
909 "Error while parsing device node resource\n" );
912 if ((mem
.end
- mem
.start
+ 1) < sizeof(struct mpc52xx_fec
)) {
913 printk(KERN_ERR DRIVER_NAME
914 " - invalid resource size (%lx < %x), check mpc52xx_devices.c\n",
915 (unsigned long)(mem
.end
- mem
.start
+ 1), sizeof(struct mpc52xx_fec
));
919 if (!request_mem_region(mem
.start
, sizeof(struct mpc52xx_fec
), DRIVER_NAME
))
922 /* Init ether ndev with what we have */
923 ndev
->open
= mpc52xx_fec_open
;
924 ndev
->stop
= mpc52xx_fec_close
;
925 ndev
->hard_start_xmit
= mpc52xx_fec_hard_start_xmit
;
926 ndev
->do_ioctl
= mpc52xx_fec_ioctl
;
927 ndev
->ethtool_ops
= &mpc52xx_fec_ethtool_ops
;
928 ndev
->get_stats
= mpc52xx_fec_get_stats
;
929 ndev
->set_mac_address
= mpc52xx_fec_set_mac_address
;
930 ndev
->set_multicast_list
= mpc52xx_fec_set_multicast_list
;
931 ndev
->tx_timeout
= mpc52xx_fec_tx_timeout
;
932 ndev
->watchdog_timeo
= FEC_WATCHDOG_TIMEOUT
;
933 ndev
->base_addr
= mem
.start
;
935 priv
->t_irq
= priv
->r_irq
= ndev
->irq
= NO_IRQ
; /* IRQ are free for now */
937 spin_lock_init(&priv
->lock
);
939 /* ioremap the zones */
940 priv
->fec
= ioremap(mem
.start
, sizeof(struct mpc52xx_fec
));
948 rx_fifo
= ndev
->base_addr
+ offsetof(struct mpc52xx_fec
, rfifo_data
);
949 tx_fifo
= ndev
->base_addr
+ offsetof(struct mpc52xx_fec
, tfifo_data
);
951 priv
->rx_dmatsk
= bcom_fec_rx_init(FEC_RX_NUM_BD
, rx_fifo
, FEC_RX_BUFFER_SIZE
);
952 priv
->tx_dmatsk
= bcom_fec_tx_init(FEC_TX_NUM_BD
, tx_fifo
);
954 if (!priv
->rx_dmatsk
|| !priv
->tx_dmatsk
) {
955 printk(KERN_ERR DRIVER_NAME
": Can not init SDMA tasks\n" );
960 /* Get the IRQ we need one by one */
962 ndev
->irq
= irq_of_parse_and_map(op
->node
, 0);
965 priv
->r_irq
= bcom_get_task_irq(priv
->rx_dmatsk
);
968 priv
->t_irq
= bcom_get_task_irq(priv
->tx_dmatsk
);
970 /* MAC address init */
971 if (!is_zero_ether_addr(mpc52xx_fec_mac_addr
))
972 memcpy(ndev
->dev_addr
, mpc52xx_fec_mac_addr
, 6);
974 mpc52xx_fec_get_paddr(ndev
, ndev
->dev_addr
);
976 priv
->msg_enable
= netif_msg_init(debug
, MPC52xx_MESSAGES_DEFAULT
);
979 * Link mode configuration
982 /* Start with safe defaults for link connection */
983 priv
->phy_addr
= FEC5200_PHYADDR_NONE
;
985 priv
->duplex
= DUPLEX_HALF
;
986 priv
->phy_speed
= ((mpc52xx_find_ipb_freq(op
->node
) >> 20) / 5) << 1;
988 /* the 7-wire property means don't use MII mode */
989 if (of_find_property(op
->node
, "fsl,7-wire-mode", NULL
))
990 priv
->phy_addr
= FEC5200_PHYADDR_7WIRE
;
992 /* The current speed preconfigures the speed of the MII link */
993 prop
= of_get_property(op
->node
, "current-speed", &prop_size
);
994 if (prop
&& (prop_size
>= sizeof(u32
) * 2)) {
995 priv
->speed
= prop
[0];
996 priv
->duplex
= prop
[1] ? DUPLEX_FULL
: DUPLEX_HALF
;
999 /* If there is a phy handle, setup link to that phy */
1000 phy_handle
= of_get_property(op
->node
, "phy-handle", &prop_size
);
1001 if (phy_handle
&& (prop_size
>= sizeof(phandle
))) {
1002 phy_node
= of_find_node_by_phandle(*phy_handle
);
1003 prop
= of_get_property(phy_node
, "reg", &prop_size
);
1004 if (prop
&& (prop_size
>= sizeof(u32
)))
1005 if ((*prop
>= 0) && (*prop
< PHY_MAX_ADDR
))
1006 priv
->phy_addr
= *prop
;
1007 of_node_put(phy_node
);
1011 mpc52xx_fec_hw_init(ndev
);
1013 mpc52xx_fec_reset_stats(ndev
);
1015 SET_NETDEV_DEV(ndev
, &op
->dev
);
1017 /* Register the new network device */
1018 rv
= register_netdev(ndev
);
1022 /* Now report the link setup */
1023 switch (priv
->phy_addr
) {
1024 case FEC5200_PHYADDR_NONE
:
1025 dev_info(&ndev
->dev
, "Fixed speed MII link: %i%cD\n",
1026 priv
->speed
, priv
->duplex
? 'F' : 'H');
1028 case FEC5200_PHYADDR_7WIRE
:
1029 dev_info(&ndev
->dev
, "using 7-wire PHY mode\n");
1032 dev_info(&ndev
->dev
, "Using PHY at MDIO address %i\n",
1037 dev_set_drvdata(&op
->dev
, ndev
);
1042 /* Error handling - free everything that might be allocated */
1045 irq_dispose_mapping(ndev
->irq
);
1047 if (priv
->rx_dmatsk
)
1048 bcom_fec_rx_release(priv
->rx_dmatsk
);
1049 if (priv
->tx_dmatsk
)
1050 bcom_fec_tx_release(priv
->tx_dmatsk
);
1055 release_mem_region(mem
.start
, sizeof(struct mpc52xx_fec
));
1063 mpc52xx_fec_remove(struct of_device
*op
)
1065 struct net_device
*ndev
;
1066 struct mpc52xx_fec_priv
*priv
;
1068 ndev
= dev_get_drvdata(&op
->dev
);
1069 priv
= netdev_priv(ndev
);
1071 unregister_netdev(ndev
);
1073 irq_dispose_mapping(ndev
->irq
);
1075 bcom_fec_rx_release(priv
->rx_dmatsk
);
1076 bcom_fec_tx_release(priv
->tx_dmatsk
);
1080 release_mem_region(ndev
->base_addr
, sizeof(struct mpc52xx_fec
));
1084 dev_set_drvdata(&op
->dev
, NULL
);
1089 static int mpc52xx_fec_of_suspend(struct of_device
*op
, pm_message_t state
)
1091 struct net_device
*dev
= dev_get_drvdata(&op
->dev
);
1093 if (netif_running(dev
))
1094 mpc52xx_fec_close(dev
);
1099 static int mpc52xx_fec_of_resume(struct of_device
*op
)
1101 struct net_device
*dev
= dev_get_drvdata(&op
->dev
);
1103 mpc52xx_fec_hw_init(dev
);
1104 mpc52xx_fec_reset_stats(dev
);
1106 if (netif_running(dev
))
1107 mpc52xx_fec_open(dev
);
1113 static struct of_device_id mpc52xx_fec_match
[] = {
1114 { .type
= "network", .compatible
= "fsl,mpc5200b-fec", },
1115 { .type
= "network", .compatible
= "fsl,mpc5200-fec", },
1116 { .type
= "network", .compatible
= "mpc5200-fec", },
1120 MODULE_DEVICE_TABLE(of
, mpc52xx_fec_match
);
1122 static struct of_platform_driver mpc52xx_fec_driver
= {
1123 .owner
= THIS_MODULE
,
1124 .name
= DRIVER_NAME
,
1125 .match_table
= mpc52xx_fec_match
,
1126 .probe
= mpc52xx_fec_probe
,
1127 .remove
= mpc52xx_fec_remove
,
1129 .suspend
= mpc52xx_fec_of_suspend
,
1130 .resume
= mpc52xx_fec_of_resume
,
1135 /* ======================================================================== */
1137 /* ======================================================================== */
1140 mpc52xx_fec_init(void)
1142 #ifdef CONFIG_FEC_MPC52xx_MDIO
1144 ret
= of_register_platform_driver(&mpc52xx_fec_mdio_driver
);
1146 printk(KERN_ERR DRIVER_NAME
": failed to register mdio driver\n");
1150 return of_register_platform_driver(&mpc52xx_fec_driver
);
1154 mpc52xx_fec_exit(void)
1156 of_unregister_platform_driver(&mpc52xx_fec_driver
);
1157 #ifdef CONFIG_FEC_MPC52xx_MDIO
1158 of_unregister_platform_driver(&mpc52xx_fec_mdio_driver
);
1163 module_init(mpc52xx_fec_init
);
1164 module_exit(mpc52xx_fec_exit
);
1166 MODULE_LICENSE("GPL");
1167 MODULE_AUTHOR("Dale Farnsworth");
1168 MODULE_DESCRIPTION("Ethernet driver for the Freescale MPC52xx FEC");