Loading...
1/*
2 * Combined Ethernet driver for Motorola MPC8xx and MPC82xx.
3 *
4 * Copyright (c) 2003 Intracom S.A.
5 * by Pantelis Antoniou <panto@intracom.gr>
6 *
7 * 2005 (c) MontaVista Software, Inc.
8 * Vitaly Bordug <vbordug@ru.mvista.com>
9 *
10 * Heavily based on original FEC driver by Dan Malek <dan@embeddededge.com>
11 * and modifications by Joakim Tjernlund <joakim.tjernlund@lumentis.se>
12 *
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.
16 */
17
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>
35#include <linux/fs.h>
36#include <linux/platform_device.h>
37#include <linux/phy.h>
38#include <linux/property.h>
39#include <linux/of.h>
40#include <linux/of_mdio.h>
41#include <linux/of_net.h>
42#include <linux/pgtable.h>
43
44#include <linux/vmalloc.h>
45#include <asm/irq.h>
46#include <linux/uaccess.h>
47
48#include "fs_enet.h"
49
50/*************************************************/
51
52MODULE_AUTHOR("Pantelis Antoniou <panto@intracom.gr>");
53MODULE_DESCRIPTION("Freescale Ethernet Driver");
54MODULE_LICENSE("GPL");
55
56static int fs_enet_debug = -1; /* -1 == use FS_ENET_DEF_MSG_ENABLE as value */
57module_param(fs_enet_debug, int, 0);
58MODULE_PARM_DESC(fs_enet_debug,
59 "Freescale bitmapped debugging message enable value");
60
61#define RX_RING_SIZE 32
62#define TX_RING_SIZE 64
63
64#ifdef CONFIG_NET_POLL_CONTROLLER
65static void fs_enet_netpoll(struct net_device *dev);
66#endif
67
68static void fs_set_multicast_list(struct net_device *dev)
69{
70 struct fs_enet_private *fep = netdev_priv(dev);
71
72 (*fep->ops->set_multicast_list)(dev);
73}
74
75static void skb_align(struct sk_buff *skb, int align)
76{
77 int off = ((unsigned long)skb->data) & (align - 1);
78
79 if (off)
80 skb_reserve(skb, align - off);
81}
82
83/* NAPI function */
84static int fs_enet_napi(struct napi_struct *napi, int budget)
85{
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;
89 cbd_t __iomem *bdp;
90 struct sk_buff *skb, *skbn;
91 int received = 0;
92 u16 pkt_len, sc;
93 int curidx;
94 int dirtyidx, do_wake, do_restart;
95 int tx_left = TX_RING_SIZE;
96
97 spin_lock(&fep->tx_lock);
98 bdp = fep->dirty_tx;
99
100 /* clear status bits for napi*/
101 (*fep->ops->napi_clear_event)(dev);
102
103 do_wake = do_restart = 0;
104 while (((sc = CBDR_SC(bdp)) & BD_ENET_TX_READY) == 0 && tx_left) {
105 dirtyidx = bdp - fep->tx_bd_base;
106
107 if (fep->tx_free == fep->tx_ring)
108 break;
109
110 skb = fep->tx_skbuff[dirtyidx];
111
112 /*
113 * Check for errors.
114 */
115 if (sc & (BD_ENET_TX_HB | BD_ENET_TX_LC |
116 BD_ENET_TX_RL | BD_ENET_TX_UN | BD_ENET_TX_CSL)) {
117
118 if (sc & BD_ENET_TX_HB) /* No heartbeat */
119 dev->stats.tx_heartbeat_errors++;
120 if (sc & BD_ENET_TX_LC) /* Late collision */
121 dev->stats.tx_window_errors++;
122 if (sc & BD_ENET_TX_RL) /* Retrans limit */
123 dev->stats.tx_aborted_errors++;
124 if (sc & BD_ENET_TX_UN) /* Underrun */
125 dev->stats.tx_fifo_errors++;
126 if (sc & BD_ENET_TX_CSL) /* Carrier lost */
127 dev->stats.tx_carrier_errors++;
128
129 if (sc & (BD_ENET_TX_LC | BD_ENET_TX_RL | BD_ENET_TX_UN)) {
130 dev->stats.tx_errors++;
131 do_restart = 1;
132 }
133 } else
134 dev->stats.tx_packets++;
135
136 if (sc & BD_ENET_TX_READY) {
137 dev_warn(fep->dev,
138 "HEY! Enet xmit interrupt and TX_READY.\n");
139 }
140
141 /*
142 * Deferred means some collisions occurred during transmit,
143 * but we eventually sent the packet OK.
144 */
145 if (sc & BD_ENET_TX_DEF)
146 dev->stats.collisions++;
147
148 /* unmap */
149 if (fep->mapped_as_page[dirtyidx])
150 dma_unmap_page(fep->dev, CBDR_BUFADDR(bdp),
151 CBDR_DATLEN(bdp), DMA_TO_DEVICE);
152 else
153 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
154 CBDR_DATLEN(bdp), DMA_TO_DEVICE);
155
156 /*
157 * Free the sk buffer associated with this last transmit.
158 */
159 if (skb) {
160 dev_kfree_skb(skb);
161 fep->tx_skbuff[dirtyidx] = NULL;
162 }
163
164 /*
165 * Update pointer to next buffer descriptor to be transmitted.
166 */
167 if ((sc & BD_ENET_TX_WRAP) == 0)
168 bdp++;
169 else
170 bdp = fep->tx_bd_base;
171
172 /*
173 * Since we have freed up a buffer, the ring is no longer
174 * full.
175 */
176 if (++fep->tx_free == MAX_SKB_FRAGS)
177 do_wake = 1;
178 tx_left--;
179 }
180
181 fep->dirty_tx = bdp;
182
183 if (do_restart)
184 (*fep->ops->tx_restart)(dev);
185
186 spin_unlock(&fep->tx_lock);
187
188 if (do_wake)
189 netif_wake_queue(dev);
190
191 /*
192 * First, grab all of the stats for the incoming packet.
193 * These get messed up if we get called due to a busy condition.
194 */
195 bdp = fep->cur_rx;
196
197 while (((sc = CBDR_SC(bdp)) & BD_ENET_RX_EMPTY) == 0 &&
198 received < budget) {
199 curidx = bdp - fep->rx_bd_base;
200
201 /*
202 * Since we have allocated space to hold a complete frame,
203 * the last indicator should be set.
204 */
205 if ((sc & BD_ENET_RX_LAST) == 0)
206 dev_warn(fep->dev, "rcv is not +last\n");
207
208 /*
209 * Check for errors.
210 */
211 if (sc & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_CL |
212 BD_ENET_RX_NO | BD_ENET_RX_CR | BD_ENET_RX_OV)) {
213 dev->stats.rx_errors++;
214 /* Frame too long or too short. */
215 if (sc & (BD_ENET_RX_LG | BD_ENET_RX_SH))
216 dev->stats.rx_length_errors++;
217 /* Frame alignment */
218 if (sc & (BD_ENET_RX_NO | BD_ENET_RX_CL))
219 dev->stats.rx_frame_errors++;
220 /* CRC Error */
221 if (sc & BD_ENET_RX_CR)
222 dev->stats.rx_crc_errors++;
223 /* FIFO overrun */
224 if (sc & BD_ENET_RX_OV)
225 dev->stats.rx_crc_errors++;
226
227 skbn = fep->rx_skbuff[curidx];
228 } else {
229 skb = fep->rx_skbuff[curidx];
230
231 /*
232 * Process the incoming frame.
233 */
234 dev->stats.rx_packets++;
235 pkt_len = CBDR_DATLEN(bdp) - 4; /* remove CRC */
236 dev->stats.rx_bytes += pkt_len + 4;
237
238 if (pkt_len <= fpi->rx_copybreak) {
239 /* +2 to make IP header L1 cache aligned */
240 skbn = netdev_alloc_skb(dev, pkt_len + 2);
241 if (skbn != NULL) {
242 skb_reserve(skbn, 2); /* align IP header */
243 skb_copy_from_linear_data(skb,
244 skbn->data, pkt_len);
245 swap(skb, skbn);
246 dma_sync_single_for_cpu(fep->dev,
247 CBDR_BUFADDR(bdp),
248 L1_CACHE_ALIGN(pkt_len),
249 DMA_FROM_DEVICE);
250 }
251 } else {
252 skbn = netdev_alloc_skb(dev, ENET_RX_FRSIZE);
253
254 if (skbn) {
255 dma_addr_t dma;
256
257 skb_align(skbn, ENET_RX_ALIGN);
258
259 dma_unmap_single(fep->dev,
260 CBDR_BUFADDR(bdp),
261 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
262 DMA_FROM_DEVICE);
263
264 dma = dma_map_single(fep->dev,
265 skbn->data,
266 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
267 DMA_FROM_DEVICE);
268 CBDW_BUFADDR(bdp, dma);
269 }
270 }
271
272 if (skbn != NULL) {
273 skb_put(skb, pkt_len); /* Make room */
274 skb->protocol = eth_type_trans(skb, dev);
275 received++;
276 netif_receive_skb(skb);
277 } else {
278 dev->stats.rx_dropped++;
279 skbn = skb;
280 }
281 }
282
283 fep->rx_skbuff[curidx] = skbn;
284 CBDW_DATLEN(bdp, 0);
285 CBDW_SC(bdp, (sc & ~BD_ENET_RX_STATS) | BD_ENET_RX_EMPTY);
286
287 /*
288 * Update BD pointer to next entry.
289 */
290 if ((sc & BD_ENET_RX_WRAP) == 0)
291 bdp++;
292 else
293 bdp = fep->rx_bd_base;
294
295 (*fep->ops->rx_bd_done)(dev);
296 }
297
298 fep->cur_rx = bdp;
299
300 if (received < budget && tx_left) {
301 /* done */
302 napi_complete_done(napi, received);
303 (*fep->ops->napi_enable)(dev);
304
305 return received;
306 }
307
308 return budget;
309}
310
311/*
312 * The interrupt handler.
313 * This is called from the MPC core interrupt.
314 */
315static irqreturn_t
316fs_enet_interrupt(int irq, void *dev_id)
317{
318 struct net_device *dev = dev_id;
319 struct fs_enet_private *fep;
320 u32 int_events;
321 u32 int_clr_events;
322 int nr, napi_ok;
323 int handled;
324
325 fep = netdev_priv(dev);
326
327 nr = 0;
328 while ((int_events = (*fep->ops->get_int_events)(dev)) != 0) {
329 nr++;
330
331 int_clr_events = int_events;
332 int_clr_events &= ~fep->ev_napi;
333
334 (*fep->ops->clear_int_events)(dev, int_clr_events);
335
336 if (int_events & fep->ev_err)
337 (*fep->ops->ev_error)(dev, int_events);
338
339 if (int_events & fep->ev) {
340 napi_ok = napi_schedule_prep(&fep->napi);
341
342 (*fep->ops->napi_disable)(dev);
343 (*fep->ops->clear_int_events)(dev, fep->ev_napi);
344
345 /* NOTE: it is possible for FCCs in NAPI mode */
346 /* to submit a spurious interrupt while in poll */
347 if (napi_ok)
348 __napi_schedule(&fep->napi);
349 }
350
351 }
352
353 handled = nr > 0;
354 return IRQ_RETVAL(handled);
355}
356
357void fs_init_bds(struct net_device *dev)
358{
359 struct fs_enet_private *fep = netdev_priv(dev);
360 cbd_t __iomem *bdp;
361 struct sk_buff *skb;
362 int i;
363
364 fs_cleanup_bds(dev);
365
366 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
367 fep->tx_free = fep->tx_ring;
368 fep->cur_rx = fep->rx_bd_base;
369
370 /*
371 * Initialize the receive buffer descriptors.
372 */
373 for (i = 0, bdp = fep->rx_bd_base; i < fep->rx_ring; i++, bdp++) {
374 skb = netdev_alloc_skb(dev, ENET_RX_FRSIZE);
375 if (skb == NULL)
376 break;
377
378 skb_align(skb, ENET_RX_ALIGN);
379 fep->rx_skbuff[i] = skb;
380 CBDW_BUFADDR(bdp,
381 dma_map_single(fep->dev, skb->data,
382 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
383 DMA_FROM_DEVICE));
384 CBDW_DATLEN(bdp, 0); /* zero */
385 CBDW_SC(bdp, BD_ENET_RX_EMPTY |
386 ((i < fep->rx_ring - 1) ? 0 : BD_SC_WRAP));
387 }
388 /*
389 * if we failed, fillup remainder
390 */
391 for (; i < fep->rx_ring; i++, bdp++) {
392 fep->rx_skbuff[i] = NULL;
393 CBDW_SC(bdp, (i < fep->rx_ring - 1) ? 0 : BD_SC_WRAP);
394 }
395
396 /*
397 * ...and the same for transmit.
398 */
399 for (i = 0, bdp = fep->tx_bd_base; i < fep->tx_ring; i++, bdp++) {
400 fep->tx_skbuff[i] = NULL;
401 CBDW_BUFADDR(bdp, 0);
402 CBDW_DATLEN(bdp, 0);
403 CBDW_SC(bdp, (i < fep->tx_ring - 1) ? 0 : BD_SC_WRAP);
404 }
405}
406
407void fs_cleanup_bds(struct net_device *dev)
408{
409 struct fs_enet_private *fep = netdev_priv(dev);
410 struct sk_buff *skb;
411 cbd_t __iomem *bdp;
412 int i;
413
414 /*
415 * Reset SKB transmit buffers.
416 */
417 for (i = 0, bdp = fep->tx_bd_base; i < fep->tx_ring; i++, bdp++) {
418 if ((skb = fep->tx_skbuff[i]) == NULL)
419 continue;
420
421 /* unmap */
422 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
423 skb->len, DMA_TO_DEVICE);
424
425 fep->tx_skbuff[i] = NULL;
426 dev_kfree_skb(skb);
427 }
428
429 /*
430 * Reset SKB receive buffers
431 */
432 for (i = 0, bdp = fep->rx_bd_base; i < fep->rx_ring; i++, bdp++) {
433 if ((skb = fep->rx_skbuff[i]) == NULL)
434 continue;
435
436 /* unmap */
437 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
438 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
439 DMA_FROM_DEVICE);
440
441 fep->rx_skbuff[i] = NULL;
442
443 dev_kfree_skb(skb);
444 }
445}
446
447/**********************************************************************************/
448
449#ifdef CONFIG_FS_ENET_MPC5121_FEC
450/*
451 * MPC5121 FEC requeries 4-byte alignment for TX data buffer!
452 */
453static struct sk_buff *tx_skb_align_workaround(struct net_device *dev,
454 struct sk_buff *skb)
455{
456 struct sk_buff *new_skb;
457
458 if (skb_linearize(skb))
459 return NULL;
460
461 /* Alloc new skb */
462 new_skb = netdev_alloc_skb(dev, skb->len + 4);
463 if (!new_skb)
464 return NULL;
465
466 /* Make sure new skb is properly aligned */
467 skb_align(new_skb, 4);
468
469 /* Copy data to new skb ... */
470 skb_copy_from_linear_data(skb, new_skb->data, skb->len);
471 skb_put(new_skb, skb->len);
472
473 /* ... and free an old one */
474 dev_kfree_skb_any(skb);
475
476 return new_skb;
477}
478#endif
479
480static netdev_tx_t
481fs_enet_start_xmit(struct sk_buff *skb, struct net_device *dev)
482{
483 struct fs_enet_private *fep = netdev_priv(dev);
484 cbd_t __iomem *bdp;
485 int curidx;
486 u16 sc;
487 int nr_frags;
488 skb_frag_t *frag;
489 int len;
490#ifdef CONFIG_FS_ENET_MPC5121_FEC
491 int is_aligned = 1;
492 int i;
493
494 if (!IS_ALIGNED((unsigned long)skb->data, 4)) {
495 is_aligned = 0;
496 } else {
497 nr_frags = skb_shinfo(skb)->nr_frags;
498 frag = skb_shinfo(skb)->frags;
499 for (i = 0; i < nr_frags; i++, frag++) {
500 if (!IS_ALIGNED(skb_frag_off(frag), 4)) {
501 is_aligned = 0;
502 break;
503 }
504 }
505 }
506
507 if (!is_aligned) {
508 skb = tx_skb_align_workaround(dev, skb);
509 if (!skb) {
510 /*
511 * We have lost packet due to memory allocation error
512 * in tx_skb_align_workaround(). Hopefully original
513 * skb is still valid, so try transmit it later.
514 */
515 return NETDEV_TX_BUSY;
516 }
517 }
518#endif
519
520 spin_lock(&fep->tx_lock);
521
522 /*
523 * Fill in a Tx ring entry
524 */
525 bdp = fep->cur_tx;
526
527 nr_frags = skb_shinfo(skb)->nr_frags;
528 if (fep->tx_free <= nr_frags || (CBDR_SC(bdp) & BD_ENET_TX_READY)) {
529 netif_stop_queue(dev);
530 spin_unlock(&fep->tx_lock);
531
532 /*
533 * Ooops. All transmit buffers are full. Bail out.
534 * This should not happen, since the tx queue should be stopped.
535 */
536 dev_warn(fep->dev, "tx queue full!.\n");
537 return NETDEV_TX_BUSY;
538 }
539
540 curidx = bdp - fep->tx_bd_base;
541
542 len = skb->len;
543 dev->stats.tx_bytes += len;
544 if (nr_frags)
545 len -= skb->data_len;
546 fep->tx_free -= nr_frags + 1;
547 /*
548 * Push the data cache so the CPM does not get stale memory data.
549 */
550 CBDW_BUFADDR(bdp, dma_map_single(fep->dev,
551 skb->data, len, DMA_TO_DEVICE));
552 CBDW_DATLEN(bdp, len);
553
554 fep->mapped_as_page[curidx] = 0;
555 frag = skb_shinfo(skb)->frags;
556 while (nr_frags) {
557 CBDC_SC(bdp,
558 BD_ENET_TX_STATS | BD_ENET_TX_INTR | BD_ENET_TX_LAST |
559 BD_ENET_TX_TC);
560 CBDS_SC(bdp, BD_ENET_TX_READY);
561
562 if ((CBDR_SC(bdp) & BD_ENET_TX_WRAP) == 0) {
563 bdp++;
564 curidx++;
565 } else {
566 bdp = fep->tx_bd_base;
567 curidx = 0;
568 }
569
570 len = skb_frag_size(frag);
571 CBDW_BUFADDR(bdp, skb_frag_dma_map(fep->dev, frag, 0, len,
572 DMA_TO_DEVICE));
573 CBDW_DATLEN(bdp, len);
574
575 fep->tx_skbuff[curidx] = NULL;
576 fep->mapped_as_page[curidx] = 1;
577
578 frag++;
579 nr_frags--;
580 }
581
582 /* Trigger transmission start */
583 sc = BD_ENET_TX_READY | BD_ENET_TX_INTR |
584 BD_ENET_TX_LAST | BD_ENET_TX_TC;
585
586 /* note that while FEC does not have this bit
587 * it marks it as available for software use
588 * yay for hw reuse :) */
589 if (skb->len <= 60)
590 sc |= BD_ENET_TX_PAD;
591 CBDC_SC(bdp, BD_ENET_TX_STATS);
592 CBDS_SC(bdp, sc);
593
594 /* Save skb pointer. */
595 fep->tx_skbuff[curidx] = skb;
596
597 /* If this was the last BD in the ring, start at the beginning again. */
598 if ((CBDR_SC(bdp) & BD_ENET_TX_WRAP) == 0)
599 bdp++;
600 else
601 bdp = fep->tx_bd_base;
602 fep->cur_tx = bdp;
603
604 if (fep->tx_free < MAX_SKB_FRAGS)
605 netif_stop_queue(dev);
606
607 skb_tx_timestamp(skb);
608
609 (*fep->ops->tx_kickstart)(dev);
610
611 spin_unlock(&fep->tx_lock);
612
613 return NETDEV_TX_OK;
614}
615
616static void fs_timeout_work(struct work_struct *work)
617{
618 struct fs_enet_private *fep = container_of(work, struct fs_enet_private,
619 timeout_work);
620 struct net_device *dev = fep->ndev;
621 unsigned long flags;
622 int wake = 0;
623
624 dev->stats.tx_errors++;
625
626 spin_lock_irqsave(&fep->lock, flags);
627
628 if (dev->flags & IFF_UP) {
629 phy_stop(dev->phydev);
630 (*fep->ops->stop)(dev);
631 (*fep->ops->restart)(dev);
632 }
633
634 phy_start(dev->phydev);
635 wake = fep->tx_free >= MAX_SKB_FRAGS &&
636 !(CBDR_SC(fep->cur_tx) & BD_ENET_TX_READY);
637 spin_unlock_irqrestore(&fep->lock, flags);
638
639 if (wake)
640 netif_wake_queue(dev);
641}
642
643static void fs_timeout(struct net_device *dev, unsigned int txqueue)
644{
645 struct fs_enet_private *fep = netdev_priv(dev);
646
647 schedule_work(&fep->timeout_work);
648}
649
650/*-----------------------------------------------------------------------------
651 * generic link-change handler - should be sufficient for most cases
652 *-----------------------------------------------------------------------------*/
653static void generic_adjust_link(struct net_device *dev)
654{
655 struct fs_enet_private *fep = netdev_priv(dev);
656 struct phy_device *phydev = dev->phydev;
657 int new_state = 0;
658
659 if (phydev->link) {
660 /* adjust to duplex mode */
661 if (phydev->duplex != fep->oldduplex) {
662 new_state = 1;
663 fep->oldduplex = phydev->duplex;
664 }
665
666 if (phydev->speed != fep->oldspeed) {
667 new_state = 1;
668 fep->oldspeed = phydev->speed;
669 }
670
671 if (!fep->oldlink) {
672 new_state = 1;
673 fep->oldlink = 1;
674 }
675
676 if (new_state)
677 fep->ops->restart(dev);
678 } else if (fep->oldlink) {
679 new_state = 1;
680 fep->oldlink = 0;
681 fep->oldspeed = 0;
682 fep->oldduplex = -1;
683 }
684
685 if (new_state && netif_msg_link(fep))
686 phy_print_status(phydev);
687}
688
689
690static void fs_adjust_link(struct net_device *dev)
691{
692 struct fs_enet_private *fep = netdev_priv(dev);
693 unsigned long flags;
694
695 spin_lock_irqsave(&fep->lock, flags);
696
697 if(fep->ops->adjust_link)
698 fep->ops->adjust_link(dev);
699 else
700 generic_adjust_link(dev);
701
702 spin_unlock_irqrestore(&fep->lock, flags);
703}
704
705static int fs_init_phy(struct net_device *dev)
706{
707 struct fs_enet_private *fep = netdev_priv(dev);
708 struct phy_device *phydev;
709 phy_interface_t iface;
710
711 fep->oldlink = 0;
712 fep->oldspeed = 0;
713 fep->oldduplex = -1;
714
715 iface = fep->fpi->use_rmii ?
716 PHY_INTERFACE_MODE_RMII : PHY_INTERFACE_MODE_MII;
717
718 phydev = of_phy_connect(dev, fep->fpi->phy_node, &fs_adjust_link, 0,
719 iface);
720 if (!phydev) {
721 dev_err(&dev->dev, "Could not attach to PHY\n");
722 return -ENODEV;
723 }
724
725 return 0;
726}
727
728static int fs_enet_open(struct net_device *dev)
729{
730 struct fs_enet_private *fep = netdev_priv(dev);
731 int r;
732 int err;
733
734 /* to initialize the fep->cur_rx,... */
735 /* not doing this, will cause a crash in fs_enet_napi */
736 fs_init_bds(fep->ndev);
737
738 napi_enable(&fep->napi);
739
740 /* Install our interrupt handler. */
741 r = request_irq(fep->interrupt, fs_enet_interrupt, IRQF_SHARED,
742 "fs_enet-mac", dev);
743 if (r != 0) {
744 dev_err(fep->dev, "Could not allocate FS_ENET IRQ!");
745 napi_disable(&fep->napi);
746 return -EINVAL;
747 }
748
749 err = fs_init_phy(dev);
750 if (err) {
751 free_irq(fep->interrupt, dev);
752 napi_disable(&fep->napi);
753 return err;
754 }
755 phy_start(dev->phydev);
756
757 netif_start_queue(dev);
758
759 return 0;
760}
761
762static int fs_enet_close(struct net_device *dev)
763{
764 struct fs_enet_private *fep = netdev_priv(dev);
765 unsigned long flags;
766
767 netif_stop_queue(dev);
768 netif_carrier_off(dev);
769 napi_disable(&fep->napi);
770 cancel_work_sync(&fep->timeout_work);
771 phy_stop(dev->phydev);
772
773 spin_lock_irqsave(&fep->lock, flags);
774 spin_lock(&fep->tx_lock);
775 (*fep->ops->stop)(dev);
776 spin_unlock(&fep->tx_lock);
777 spin_unlock_irqrestore(&fep->lock, flags);
778
779 /* release any irqs */
780 phy_disconnect(dev->phydev);
781 free_irq(fep->interrupt, dev);
782
783 return 0;
784}
785
786/*************************************************************************/
787
788static void fs_get_drvinfo(struct net_device *dev,
789 struct ethtool_drvinfo *info)
790{
791 strscpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
792}
793
794static int fs_get_regs_len(struct net_device *dev)
795{
796 struct fs_enet_private *fep = netdev_priv(dev);
797
798 return (*fep->ops->get_regs_len)(dev);
799}
800
801static void fs_get_regs(struct net_device *dev, struct ethtool_regs *regs,
802 void *p)
803{
804 struct fs_enet_private *fep = netdev_priv(dev);
805 unsigned long flags;
806 int r, len;
807
808 len = regs->len;
809
810 spin_lock_irqsave(&fep->lock, flags);
811 r = (*fep->ops->get_regs)(dev, p, &len);
812 spin_unlock_irqrestore(&fep->lock, flags);
813
814 if (r == 0)
815 regs->version = 0;
816}
817
818static u32 fs_get_msglevel(struct net_device *dev)
819{
820 struct fs_enet_private *fep = netdev_priv(dev);
821 return fep->msg_enable;
822}
823
824static void fs_set_msglevel(struct net_device *dev, u32 value)
825{
826 struct fs_enet_private *fep = netdev_priv(dev);
827 fep->msg_enable = value;
828}
829
830static int fs_get_tunable(struct net_device *dev,
831 const struct ethtool_tunable *tuna, void *data)
832{
833 struct fs_enet_private *fep = netdev_priv(dev);
834 struct fs_platform_info *fpi = fep->fpi;
835 int ret = 0;
836
837 switch (tuna->id) {
838 case ETHTOOL_RX_COPYBREAK:
839 *(u32 *)data = fpi->rx_copybreak;
840 break;
841 default:
842 ret = -EINVAL;
843 break;
844 }
845
846 return ret;
847}
848
849static int fs_set_tunable(struct net_device *dev,
850 const struct ethtool_tunable *tuna, const void *data)
851{
852 struct fs_enet_private *fep = netdev_priv(dev);
853 struct fs_platform_info *fpi = fep->fpi;
854 int ret = 0;
855
856 switch (tuna->id) {
857 case ETHTOOL_RX_COPYBREAK:
858 fpi->rx_copybreak = *(u32 *)data;
859 break;
860 default:
861 ret = -EINVAL;
862 break;
863 }
864
865 return ret;
866}
867
868static const struct ethtool_ops fs_ethtool_ops = {
869 .get_drvinfo = fs_get_drvinfo,
870 .get_regs_len = fs_get_regs_len,
871 .nway_reset = phy_ethtool_nway_reset,
872 .get_link = ethtool_op_get_link,
873 .get_msglevel = fs_get_msglevel,
874 .set_msglevel = fs_set_msglevel,
875 .get_regs = fs_get_regs,
876 .get_ts_info = ethtool_op_get_ts_info,
877 .get_link_ksettings = phy_ethtool_get_link_ksettings,
878 .set_link_ksettings = phy_ethtool_set_link_ksettings,
879 .get_tunable = fs_get_tunable,
880 .set_tunable = fs_set_tunable,
881};
882
883/**************************************************************************************/
884
885#ifdef CONFIG_FS_ENET_HAS_FEC
886#define IS_FEC(ops) ((ops) == &fs_fec_ops)
887#else
888#define IS_FEC(ops) 0
889#endif
890
891static const struct net_device_ops fs_enet_netdev_ops = {
892 .ndo_open = fs_enet_open,
893 .ndo_stop = fs_enet_close,
894 .ndo_start_xmit = fs_enet_start_xmit,
895 .ndo_tx_timeout = fs_timeout,
896 .ndo_set_rx_mode = fs_set_multicast_list,
897 .ndo_eth_ioctl = phy_do_ioctl_running,
898 .ndo_validate_addr = eth_validate_addr,
899 .ndo_set_mac_address = eth_mac_addr,
900#ifdef CONFIG_NET_POLL_CONTROLLER
901 .ndo_poll_controller = fs_enet_netpoll,
902#endif
903};
904
905static int fs_enet_probe(struct platform_device *ofdev)
906{
907 const struct fs_ops *ops;
908 struct net_device *ndev;
909 struct fs_enet_private *fep;
910 struct fs_platform_info *fpi;
911 const u32 *data;
912 struct clk *clk;
913 int err;
914 const char *phy_connection_type;
915 int privsize, len, ret = -ENODEV;
916
917 ops = device_get_match_data(&ofdev->dev);
918 if (!ops)
919 return -EINVAL;
920
921 fpi = kzalloc(sizeof(*fpi), GFP_KERNEL);
922 if (!fpi)
923 return -ENOMEM;
924
925 if (!IS_FEC(ops)) {
926 data = of_get_property(ofdev->dev.of_node, "fsl,cpm-command", &len);
927 if (!data || len != 4)
928 goto out_free_fpi;
929
930 fpi->cp_command = *data;
931 }
932
933 fpi->rx_ring = RX_RING_SIZE;
934 fpi->tx_ring = TX_RING_SIZE;
935 fpi->rx_copybreak = 240;
936 fpi->napi_weight = 17;
937 fpi->phy_node = of_parse_phandle(ofdev->dev.of_node, "phy-handle", 0);
938 if (!fpi->phy_node && of_phy_is_fixed_link(ofdev->dev.of_node)) {
939 err = of_phy_register_fixed_link(ofdev->dev.of_node);
940 if (err)
941 goto out_free_fpi;
942
943 /* In the case of a fixed PHY, the DT node associated
944 * to the PHY is the Ethernet MAC DT node.
945 */
946 fpi->phy_node = of_node_get(ofdev->dev.of_node);
947 }
948
949 if (of_device_is_compatible(ofdev->dev.of_node, "fsl,mpc5125-fec")) {
950 phy_connection_type = of_get_property(ofdev->dev.of_node,
951 "phy-connection-type", NULL);
952 if (phy_connection_type && !strcmp("rmii", phy_connection_type))
953 fpi->use_rmii = 1;
954 }
955
956 /* make clock lookup non-fatal (the driver is shared among platforms),
957 * but require enable to succeed when a clock was specified/found,
958 * keep a reference to the clock upon successful acquisition
959 */
960 clk = devm_clk_get(&ofdev->dev, "per");
961 if (!IS_ERR(clk)) {
962 ret = clk_prepare_enable(clk);
963 if (ret)
964 goto out_deregister_fixed_link;
965
966 fpi->clk_per = clk;
967 }
968
969 privsize = sizeof(*fep) +
970 sizeof(struct sk_buff **) *
971 (fpi->rx_ring + fpi->tx_ring) +
972 sizeof(char) * fpi->tx_ring;
973
974 ndev = alloc_etherdev(privsize);
975 if (!ndev) {
976 ret = -ENOMEM;
977 goto out_put;
978 }
979
980 SET_NETDEV_DEV(ndev, &ofdev->dev);
981 platform_set_drvdata(ofdev, ndev);
982
983 fep = netdev_priv(ndev);
984 fep->dev = &ofdev->dev;
985 fep->ndev = ndev;
986 fep->fpi = fpi;
987 fep->ops = ops;
988
989 ret = fep->ops->setup_data(ndev);
990 if (ret)
991 goto out_free_dev;
992
993 fep->rx_skbuff = (struct sk_buff **)&fep[1];
994 fep->tx_skbuff = fep->rx_skbuff + fpi->rx_ring;
995 fep->mapped_as_page = (char *)(fep->rx_skbuff + fpi->rx_ring +
996 fpi->tx_ring);
997
998 spin_lock_init(&fep->lock);
999 spin_lock_init(&fep->tx_lock);
1000
1001 of_get_ethdev_address(ofdev->dev.of_node, ndev);
1002
1003 ret = fep->ops->allocate_bd(ndev);
1004 if (ret)
1005 goto out_cleanup_data;
1006
1007 fep->rx_bd_base = fep->ring_base;
1008 fep->tx_bd_base = fep->rx_bd_base + fpi->rx_ring;
1009
1010 fep->tx_ring = fpi->tx_ring;
1011 fep->rx_ring = fpi->rx_ring;
1012
1013 ndev->netdev_ops = &fs_enet_netdev_ops;
1014 ndev->watchdog_timeo = 2 * HZ;
1015 INIT_WORK(&fep->timeout_work, fs_timeout_work);
1016 netif_napi_add_weight(ndev, &fep->napi, fs_enet_napi,
1017 fpi->napi_weight);
1018
1019 ndev->ethtool_ops = &fs_ethtool_ops;
1020
1021 netif_carrier_off(ndev);
1022
1023 ndev->features |= NETIF_F_SG;
1024
1025 ret = register_netdev(ndev);
1026 if (ret)
1027 goto out_free_bd;
1028
1029 pr_info("%s: fs_enet: %pM\n", ndev->name, ndev->dev_addr);
1030
1031 return 0;
1032
1033out_free_bd:
1034 fep->ops->free_bd(ndev);
1035out_cleanup_data:
1036 fep->ops->cleanup_data(ndev);
1037out_free_dev:
1038 free_netdev(ndev);
1039out_put:
1040 clk_disable_unprepare(fpi->clk_per);
1041out_deregister_fixed_link:
1042 of_node_put(fpi->phy_node);
1043 if (of_phy_is_fixed_link(ofdev->dev.of_node))
1044 of_phy_deregister_fixed_link(ofdev->dev.of_node);
1045out_free_fpi:
1046 kfree(fpi);
1047 return ret;
1048}
1049
1050static void fs_enet_remove(struct platform_device *ofdev)
1051{
1052 struct net_device *ndev = platform_get_drvdata(ofdev);
1053 struct fs_enet_private *fep = netdev_priv(ndev);
1054
1055 unregister_netdev(ndev);
1056
1057 fep->ops->free_bd(ndev);
1058 fep->ops->cleanup_data(ndev);
1059 dev_set_drvdata(fep->dev, NULL);
1060 of_node_put(fep->fpi->phy_node);
1061 clk_disable_unprepare(fep->fpi->clk_per);
1062 if (of_phy_is_fixed_link(ofdev->dev.of_node))
1063 of_phy_deregister_fixed_link(ofdev->dev.of_node);
1064 free_netdev(ndev);
1065}
1066
1067static const struct of_device_id fs_enet_match[] = {
1068#ifdef CONFIG_FS_ENET_HAS_SCC
1069 {
1070 .compatible = "fsl,cpm1-scc-enet",
1071 .data = (void *)&fs_scc_ops,
1072 },
1073 {
1074 .compatible = "fsl,cpm2-scc-enet",
1075 .data = (void *)&fs_scc_ops,
1076 },
1077#endif
1078#ifdef CONFIG_FS_ENET_HAS_FCC
1079 {
1080 .compatible = "fsl,cpm2-fcc-enet",
1081 .data = (void *)&fs_fcc_ops,
1082 },
1083#endif
1084#ifdef CONFIG_FS_ENET_HAS_FEC
1085#ifdef CONFIG_FS_ENET_MPC5121_FEC
1086 {
1087 .compatible = "fsl,mpc5121-fec",
1088 .data = (void *)&fs_fec_ops,
1089 },
1090 {
1091 .compatible = "fsl,mpc5125-fec",
1092 .data = (void *)&fs_fec_ops,
1093 },
1094#else
1095 {
1096 .compatible = "fsl,pq1-fec-enet",
1097 .data = (void *)&fs_fec_ops,
1098 },
1099#endif
1100#endif
1101 {}
1102};
1103MODULE_DEVICE_TABLE(of, fs_enet_match);
1104
1105static struct platform_driver fs_enet_driver = {
1106 .driver = {
1107 .name = "fs_enet",
1108 .of_match_table = fs_enet_match,
1109 },
1110 .probe = fs_enet_probe,
1111 .remove_new = fs_enet_remove,
1112};
1113
1114#ifdef CONFIG_NET_POLL_CONTROLLER
1115static void fs_enet_netpoll(struct net_device *dev)
1116{
1117 disable_irq(dev->irq);
1118 fs_enet_interrupt(dev->irq, dev);
1119 enable_irq(dev->irq);
1120}
1121#endif
1122
1123module_platform_driver(fs_enet_driver);
1/*
2 * Combined Ethernet driver for Motorola MPC8xx and MPC82xx.
3 *
4 * Copyright (c) 2003 Intracom S.A.
5 * by Pantelis Antoniou <panto@intracom.gr>
6 *
7 * 2005 (c) MontaVista Software, Inc.
8 * Vitaly Bordug <vbordug@ru.mvista.com>
9 *
10 * Heavily based on original FEC driver by Dan Malek <dan@embeddededge.com>
11 * and modifications by Joakim Tjernlund <joakim.tjernlund@lumentis.se>
12 *
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.
16 */
17
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>
36#include <linux/fs.h>
37#include <linux/platform_device.h>
38#include <linux/phy.h>
39#include <linux/of.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>
44
45#include <linux/vmalloc.h>
46#include <asm/pgtable.h>
47#include <asm/irq.h>
48#include <asm/uaccess.h>
49
50#include "fs_enet.h"
51
52/*************************************************/
53
54MODULE_AUTHOR("Pantelis Antoniou <panto@intracom.gr>");
55MODULE_DESCRIPTION("Freescale Ethernet Driver");
56MODULE_LICENSE("GPL");
57MODULE_VERSION(DRV_MODULE_VERSION);
58
59static int fs_enet_debug = -1; /* -1 == use FS_ENET_DEF_MSG_ENABLE as value */
60module_param(fs_enet_debug, int, 0);
61MODULE_PARM_DESC(fs_enet_debug,
62 "Freescale bitmapped debugging message enable value");
63
64#ifdef CONFIG_NET_POLL_CONTROLLER
65static void fs_enet_netpoll(struct net_device *dev);
66#endif
67
68static void fs_set_multicast_list(struct net_device *dev)
69{
70 struct fs_enet_private *fep = netdev_priv(dev);
71
72 (*fep->ops->set_multicast_list)(dev);
73}
74
75static void skb_align(struct sk_buff *skb, int align)
76{
77 int off = ((unsigned long)skb->data) & (align - 1);
78
79 if (off)
80 skb_reserve(skb, align - off);
81}
82
83/* NAPI receive function */
84static int fs_enet_rx_napi(struct napi_struct *napi, int budget)
85{
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;
89 cbd_t __iomem *bdp;
90 struct sk_buff *skb, *skbn, *skbt;
91 int received = 0;
92 u16 pkt_len, sc;
93 int curidx;
94
95 /*
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.
98 */
99 bdp = fep->cur_rx;
100
101 /* clear RX status bits for napi*/
102 (*fep->ops->napi_clear_rx_event)(dev);
103
104 while (((sc = CBDR_SC(bdp)) & BD_ENET_RX_EMPTY) == 0) {
105 curidx = bdp - fep->rx_bd_base;
106
107 /*
108 * Since we have allocated space to hold a complete frame,
109 * the last indicator should be set.
110 */
111 if ((sc & BD_ENET_RX_LAST) == 0)
112 dev_warn(fep->dev, "rcv is not +last\n");
113
114 /*
115 * Check for errors.
116 */
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++;
126 /* CRC Error */
127 if (sc & BD_ENET_RX_CR)
128 fep->stats.rx_crc_errors++;
129 /* FIFO overrun */
130 if (sc & BD_ENET_RX_OV)
131 fep->stats.rx_crc_errors++;
132
133 skb = fep->rx_skbuff[curidx];
134
135 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
136 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
137 DMA_FROM_DEVICE);
138
139 skbn = skb;
140
141 } else {
142 skb = fep->rx_skbuff[curidx];
143
144 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
145 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
146 DMA_FROM_DEVICE);
147
148 /*
149 * Process the incoming frame.
150 */
151 fep->stats.rx_packets++;
152 pkt_len = CBDR_DATLEN(bdp) - 4; /* remove CRC */
153 fep->stats.rx_bytes += pkt_len + 4;
154
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);
158 if (skbn != NULL) {
159 skb_reserve(skbn, 2); /* align IP header */
160 skb_copy_from_linear_data(skb,
161 skbn->data, pkt_len);
162 /* swap */
163 skbt = skb;
164 skb = skbn;
165 skbn = skbt;
166 }
167 } else {
168 skbn = netdev_alloc_skb(dev, ENET_RX_FRSIZE);
169
170 if (skbn)
171 skb_align(skbn, ENET_RX_ALIGN);
172 }
173
174 if (skbn != NULL) {
175 skb_put(skb, pkt_len); /* Make room */
176 skb->protocol = eth_type_trans(skb, dev);
177 received++;
178 netif_receive_skb(skb);
179 } else {
180 dev_warn(fep->dev,
181 "Memory squeeze, dropping packet.\n");
182 fep->stats.rx_dropped++;
183 skbn = skb;
184 }
185 }
186
187 fep->rx_skbuff[curidx] = skbn;
188 CBDW_BUFADDR(bdp, dma_map_single(fep->dev, skbn->data,
189 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
190 DMA_FROM_DEVICE));
191 CBDW_DATLEN(bdp, 0);
192 CBDW_SC(bdp, (sc & ~BD_ENET_RX_STATS) | BD_ENET_RX_EMPTY);
193
194 /*
195 * Update BD pointer to next entry.
196 */
197 if ((sc & BD_ENET_RX_WRAP) == 0)
198 bdp++;
199 else
200 bdp = fep->rx_bd_base;
201
202 (*fep->ops->rx_bd_done)(dev);
203
204 if (received >= budget)
205 break;
206 }
207
208 fep->cur_rx = bdp;
209
210 if (received < budget) {
211 /* done */
212 napi_complete(napi);
213 (*fep->ops->napi_enable_rx)(dev);
214 }
215 return received;
216}
217
218/* non NAPI receive function */
219static int fs_enet_rx_non_napi(struct net_device *dev)
220{
221 struct fs_enet_private *fep = netdev_priv(dev);
222 const struct fs_platform_info *fpi = fep->fpi;
223 cbd_t __iomem *bdp;
224 struct sk_buff *skb, *skbn, *skbt;
225 int received = 0;
226 u16 pkt_len, sc;
227 int curidx;
228 /*
229 * First, grab all of the stats for the incoming packet.
230 * These get messed up if we get called due to a busy condition.
231 */
232 bdp = fep->cur_rx;
233
234 while (((sc = CBDR_SC(bdp)) & BD_ENET_RX_EMPTY) == 0) {
235
236 curidx = bdp - fep->rx_bd_base;
237
238 /*
239 * Since we have allocated space to hold a complete frame,
240 * the last indicator should be set.
241 */
242 if ((sc & BD_ENET_RX_LAST) == 0)
243 dev_warn(fep->dev, "rcv is not +last\n");
244
245 /*
246 * Check for errors.
247 */
248 if (sc & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_CL |
249 BD_ENET_RX_NO | BD_ENET_RX_CR | BD_ENET_RX_OV)) {
250 fep->stats.rx_errors++;
251 /* Frame too long or too short. */
252 if (sc & (BD_ENET_RX_LG | BD_ENET_RX_SH))
253 fep->stats.rx_length_errors++;
254 /* Frame alignment */
255 if (sc & (BD_ENET_RX_NO | BD_ENET_RX_CL))
256 fep->stats.rx_frame_errors++;
257 /* CRC Error */
258 if (sc & BD_ENET_RX_CR)
259 fep->stats.rx_crc_errors++;
260 /* FIFO overrun */
261 if (sc & BD_ENET_RX_OV)
262 fep->stats.rx_crc_errors++;
263
264 skb = fep->rx_skbuff[curidx];
265
266 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
267 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
268 DMA_FROM_DEVICE);
269
270 skbn = skb;
271
272 } else {
273
274 skb = fep->rx_skbuff[curidx];
275
276 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
277 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
278 DMA_FROM_DEVICE);
279
280 /*
281 * Process the incoming frame.
282 */
283 fep->stats.rx_packets++;
284 pkt_len = CBDR_DATLEN(bdp) - 4; /* remove CRC */
285 fep->stats.rx_bytes += pkt_len + 4;
286
287 if (pkt_len <= fpi->rx_copybreak) {
288 /* +2 to make IP header L1 cache aligned */
289 skbn = netdev_alloc_skb(dev, pkt_len + 2);
290 if (skbn != NULL) {
291 skb_reserve(skbn, 2); /* align IP header */
292 skb_copy_from_linear_data(skb,
293 skbn->data, pkt_len);
294 /* swap */
295 skbt = skb;
296 skb = skbn;
297 skbn = skbt;
298 }
299 } else {
300 skbn = netdev_alloc_skb(dev, ENET_RX_FRSIZE);
301
302 if (skbn)
303 skb_align(skbn, ENET_RX_ALIGN);
304 }
305
306 if (skbn != NULL) {
307 skb_put(skb, pkt_len); /* Make room */
308 skb->protocol = eth_type_trans(skb, dev);
309 received++;
310 netif_rx(skb);
311 } else {
312 dev_warn(fep->dev,
313 "Memory squeeze, dropping packet.\n");
314 fep->stats.rx_dropped++;
315 skbn = skb;
316 }
317 }
318
319 fep->rx_skbuff[curidx] = skbn;
320 CBDW_BUFADDR(bdp, dma_map_single(fep->dev, skbn->data,
321 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
322 DMA_FROM_DEVICE));
323 CBDW_DATLEN(bdp, 0);
324 CBDW_SC(bdp, (sc & ~BD_ENET_RX_STATS) | BD_ENET_RX_EMPTY);
325
326 /*
327 * Update BD pointer to next entry.
328 */
329 if ((sc & BD_ENET_RX_WRAP) == 0)
330 bdp++;
331 else
332 bdp = fep->rx_bd_base;
333
334 (*fep->ops->rx_bd_done)(dev);
335 }
336
337 fep->cur_rx = bdp;
338
339 return 0;
340}
341
342static void fs_enet_tx(struct net_device *dev)
343{
344 struct fs_enet_private *fep = netdev_priv(dev);
345 cbd_t __iomem *bdp;
346 struct sk_buff *skb;
347 int dirtyidx, do_wake, do_restart;
348 u16 sc;
349
350 spin_lock(&fep->tx_lock);
351 bdp = fep->dirty_tx;
352
353 do_wake = do_restart = 0;
354 while (((sc = CBDR_SC(bdp)) & BD_ENET_TX_READY) == 0) {
355 dirtyidx = bdp - fep->tx_bd_base;
356
357 if (fep->tx_free == fep->tx_ring)
358 break;
359
360 skb = fep->tx_skbuff[dirtyidx];
361
362 /*
363 * Check for errors.
364 */
365 if (sc & (BD_ENET_TX_HB | BD_ENET_TX_LC |
366 BD_ENET_TX_RL | BD_ENET_TX_UN | BD_ENET_TX_CSL)) {
367
368 if (sc & BD_ENET_TX_HB) /* No heartbeat */
369 fep->stats.tx_heartbeat_errors++;
370 if (sc & BD_ENET_TX_LC) /* Late collision */
371 fep->stats.tx_window_errors++;
372 if (sc & BD_ENET_TX_RL) /* Retrans limit */
373 fep->stats.tx_aborted_errors++;
374 if (sc & BD_ENET_TX_UN) /* Underrun */
375 fep->stats.tx_fifo_errors++;
376 if (sc & BD_ENET_TX_CSL) /* Carrier lost */
377 fep->stats.tx_carrier_errors++;
378
379 if (sc & (BD_ENET_TX_LC | BD_ENET_TX_RL | BD_ENET_TX_UN)) {
380 fep->stats.tx_errors++;
381 do_restart = 1;
382 }
383 } else
384 fep->stats.tx_packets++;
385
386 if (sc & BD_ENET_TX_READY) {
387 dev_warn(fep->dev,
388 "HEY! Enet xmit interrupt and TX_READY.\n");
389 }
390
391 /*
392 * Deferred means some collisions occurred during transmit,
393 * but we eventually sent the packet OK.
394 */
395 if (sc & BD_ENET_TX_DEF)
396 fep->stats.collisions++;
397
398 /* unmap */
399 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
400 skb->len, DMA_TO_DEVICE);
401
402 /*
403 * Free the sk buffer associated with this last transmit.
404 */
405 dev_kfree_skb_irq(skb);
406 fep->tx_skbuff[dirtyidx] = NULL;
407
408 /*
409 * Update pointer to next buffer descriptor to be transmitted.
410 */
411 if ((sc & BD_ENET_TX_WRAP) == 0)
412 bdp++;
413 else
414 bdp = fep->tx_bd_base;
415
416 /*
417 * Since we have freed up a buffer, the ring is no longer
418 * full.
419 */
420 if (!fep->tx_free++)
421 do_wake = 1;
422 }
423
424 fep->dirty_tx = bdp;
425
426 if (do_restart)
427 (*fep->ops->tx_restart)(dev);
428
429 spin_unlock(&fep->tx_lock);
430
431 if (do_wake)
432 netif_wake_queue(dev);
433}
434
435/*
436 * The interrupt handler.
437 * This is called from the MPC core interrupt.
438 */
439static irqreturn_t
440fs_enet_interrupt(int irq, void *dev_id)
441{
442 struct net_device *dev = dev_id;
443 struct fs_enet_private *fep;
444 const struct fs_platform_info *fpi;
445 u32 int_events;
446 u32 int_clr_events;
447 int nr, napi_ok;
448 int handled;
449
450 fep = netdev_priv(dev);
451 fpi = fep->fpi;
452
453 nr = 0;
454 while ((int_events = (*fep->ops->get_int_events)(dev)) != 0) {
455 nr++;
456
457 int_clr_events = int_events;
458 if (fpi->use_napi)
459 int_clr_events &= ~fep->ev_napi_rx;
460
461 (*fep->ops->clear_int_events)(dev, int_clr_events);
462
463 if (int_events & fep->ev_err)
464 (*fep->ops->ev_error)(dev, int_events);
465
466 if (int_events & fep->ev_rx) {
467 if (!fpi->use_napi)
468 fs_enet_rx_non_napi(dev);
469 else {
470 napi_ok = napi_schedule_prep(&fep->napi);
471
472 (*fep->ops->napi_disable_rx)(dev);
473 (*fep->ops->clear_int_events)(dev, fep->ev_napi_rx);
474
475 /* NOTE: it is possible for FCCs in NAPI mode */
476 /* to submit a spurious interrupt while in poll */
477 if (napi_ok)
478 __napi_schedule(&fep->napi);
479 }
480 }
481
482 if (int_events & fep->ev_tx)
483 fs_enet_tx(dev);
484 }
485
486 handled = nr > 0;
487 return IRQ_RETVAL(handled);
488}
489
490void fs_init_bds(struct net_device *dev)
491{
492 struct fs_enet_private *fep = netdev_priv(dev);
493 cbd_t __iomem *bdp;
494 struct sk_buff *skb;
495 int i;
496
497 fs_cleanup_bds(dev);
498
499 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
500 fep->tx_free = fep->tx_ring;
501 fep->cur_rx = fep->rx_bd_base;
502
503 /*
504 * Initialize the receive buffer descriptors.
505 */
506 for (i = 0, bdp = fep->rx_bd_base; i < fep->rx_ring; i++, bdp++) {
507 skb = netdev_alloc_skb(dev, ENET_RX_FRSIZE);
508 if (skb == NULL) {
509 dev_warn(fep->dev,
510 "Memory squeeze, unable to allocate skb\n");
511 break;
512 }
513 skb_align(skb, ENET_RX_ALIGN);
514 fep->rx_skbuff[i] = skb;
515 CBDW_BUFADDR(bdp,
516 dma_map_single(fep->dev, skb->data,
517 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
518 DMA_FROM_DEVICE));
519 CBDW_DATLEN(bdp, 0); /* zero */
520 CBDW_SC(bdp, BD_ENET_RX_EMPTY |
521 ((i < fep->rx_ring - 1) ? 0 : BD_SC_WRAP));
522 }
523 /*
524 * if we failed, fillup remainder
525 */
526 for (; i < fep->rx_ring; i++, bdp++) {
527 fep->rx_skbuff[i] = NULL;
528 CBDW_SC(bdp, (i < fep->rx_ring - 1) ? 0 : BD_SC_WRAP);
529 }
530
531 /*
532 * ...and the same for transmit.
533 */
534 for (i = 0, bdp = fep->tx_bd_base; i < fep->tx_ring; i++, bdp++) {
535 fep->tx_skbuff[i] = NULL;
536 CBDW_BUFADDR(bdp, 0);
537 CBDW_DATLEN(bdp, 0);
538 CBDW_SC(bdp, (i < fep->tx_ring - 1) ? 0 : BD_SC_WRAP);
539 }
540}
541
542void fs_cleanup_bds(struct net_device *dev)
543{
544 struct fs_enet_private *fep = netdev_priv(dev);
545 struct sk_buff *skb;
546 cbd_t __iomem *bdp;
547 int i;
548
549 /*
550 * Reset SKB transmit buffers.
551 */
552 for (i = 0, bdp = fep->tx_bd_base; i < fep->tx_ring; i++, bdp++) {
553 if ((skb = fep->tx_skbuff[i]) == NULL)
554 continue;
555
556 /* unmap */
557 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
558 skb->len, DMA_TO_DEVICE);
559
560 fep->tx_skbuff[i] = NULL;
561 dev_kfree_skb(skb);
562 }
563
564 /*
565 * Reset SKB receive buffers
566 */
567 for (i = 0, bdp = fep->rx_bd_base; i < fep->rx_ring; i++, bdp++) {
568 if ((skb = fep->rx_skbuff[i]) == NULL)
569 continue;
570
571 /* unmap */
572 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
573 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
574 DMA_FROM_DEVICE);
575
576 fep->rx_skbuff[i] = NULL;
577
578 dev_kfree_skb(skb);
579 }
580}
581
582/**********************************************************************************/
583
584#ifdef CONFIG_FS_ENET_MPC5121_FEC
585/*
586 * MPC5121 FEC requeries 4-byte alignment for TX data buffer!
587 */
588static struct sk_buff *tx_skb_align_workaround(struct net_device *dev,
589 struct sk_buff *skb)
590{
591 struct sk_buff *new_skb;
592 struct fs_enet_private *fep = netdev_priv(dev);
593
594 /* Alloc new skb */
595 new_skb = netdev_alloc_skb(dev, skb->len + 4);
596 if (!new_skb) {
597 if (net_ratelimit()) {
598 dev_warn(fep->dev,
599 "Memory squeeze, dropping tx packet.\n");
600 }
601 return NULL;
602 }
603
604 /* Make sure new skb is properly aligned */
605 skb_align(new_skb, 4);
606
607 /* Copy data to new skb ... */
608 skb_copy_from_linear_data(skb, new_skb->data, skb->len);
609 skb_put(new_skb, skb->len);
610
611 /* ... and free an old one */
612 dev_kfree_skb_any(skb);
613
614 return new_skb;
615}
616#endif
617
618static int fs_enet_start_xmit(struct sk_buff *skb, struct net_device *dev)
619{
620 struct fs_enet_private *fep = netdev_priv(dev);
621 cbd_t __iomem *bdp;
622 int curidx;
623 u16 sc;
624 unsigned long flags;
625
626#ifdef CONFIG_FS_ENET_MPC5121_FEC
627 if (((unsigned long)skb->data) & 0x3) {
628 skb = tx_skb_align_workaround(dev, skb);
629 if (!skb) {
630 /*
631 * We have lost packet due to memory allocation error
632 * in tx_skb_align_workaround(). Hopefully original
633 * skb is still valid, so try transmit it later.
634 */
635 return NETDEV_TX_BUSY;
636 }
637 }
638#endif
639 spin_lock_irqsave(&fep->tx_lock, flags);
640
641 /*
642 * Fill in a Tx ring entry
643 */
644 bdp = fep->cur_tx;
645
646 if (!fep->tx_free || (CBDR_SC(bdp) & BD_ENET_TX_READY)) {
647 netif_stop_queue(dev);
648 spin_unlock_irqrestore(&fep->tx_lock, flags);
649
650 /*
651 * Ooops. All transmit buffers are full. Bail out.
652 * This should not happen, since the tx queue should be stopped.
653 */
654 dev_warn(fep->dev, "tx queue full!.\n");
655 return NETDEV_TX_BUSY;
656 }
657
658 curidx = bdp - fep->tx_bd_base;
659 /*
660 * Clear all of the status flags.
661 */
662 CBDC_SC(bdp, BD_ENET_TX_STATS);
663
664 /*
665 * Save skb pointer.
666 */
667 fep->tx_skbuff[curidx] = skb;
668
669 fep->stats.tx_bytes += skb->len;
670
671 /*
672 * Push the data cache so the CPM does not get stale memory data.
673 */
674 CBDW_BUFADDR(bdp, dma_map_single(fep->dev,
675 skb->data, skb->len, DMA_TO_DEVICE));
676 CBDW_DATLEN(bdp, skb->len);
677
678 /*
679 * If this was the last BD in the ring, start at the beginning again.
680 */
681 if ((CBDR_SC(bdp) & BD_ENET_TX_WRAP) == 0)
682 fep->cur_tx++;
683 else
684 fep->cur_tx = fep->tx_bd_base;
685
686 if (!--fep->tx_free)
687 netif_stop_queue(dev);
688
689 /* Trigger transmission start */
690 sc = BD_ENET_TX_READY | BD_ENET_TX_INTR |
691 BD_ENET_TX_LAST | BD_ENET_TX_TC;
692
693 /* note that while FEC does not have this bit
694 * it marks it as available for software use
695 * yay for hw reuse :) */
696 if (skb->len <= 60)
697 sc |= BD_ENET_TX_PAD;
698 CBDS_SC(bdp, sc);
699
700 skb_tx_timestamp(skb);
701
702 (*fep->ops->tx_kickstart)(dev);
703
704 spin_unlock_irqrestore(&fep->tx_lock, flags);
705
706 return NETDEV_TX_OK;
707}
708
709static void fs_timeout(struct net_device *dev)
710{
711 struct fs_enet_private *fep = netdev_priv(dev);
712 unsigned long flags;
713 int wake = 0;
714
715 fep->stats.tx_errors++;
716
717 spin_lock_irqsave(&fep->lock, flags);
718
719 if (dev->flags & IFF_UP) {
720 phy_stop(fep->phydev);
721 (*fep->ops->stop)(dev);
722 (*fep->ops->restart)(dev);
723 phy_start(fep->phydev);
724 }
725
726 phy_start(fep->phydev);
727 wake = fep->tx_free && !(CBDR_SC(fep->cur_tx) & BD_ENET_TX_READY);
728 spin_unlock_irqrestore(&fep->lock, flags);
729
730 if (wake)
731 netif_wake_queue(dev);
732}
733
734/*-----------------------------------------------------------------------------
735 * generic link-change handler - should be sufficient for most cases
736 *-----------------------------------------------------------------------------*/
737static void generic_adjust_link(struct net_device *dev)
738{
739 struct fs_enet_private *fep = netdev_priv(dev);
740 struct phy_device *phydev = fep->phydev;
741 int new_state = 0;
742
743 if (phydev->link) {
744 /* adjust to duplex mode */
745 if (phydev->duplex != fep->oldduplex) {
746 new_state = 1;
747 fep->oldduplex = phydev->duplex;
748 }
749
750 if (phydev->speed != fep->oldspeed) {
751 new_state = 1;
752 fep->oldspeed = phydev->speed;
753 }
754
755 if (!fep->oldlink) {
756 new_state = 1;
757 fep->oldlink = 1;
758 }
759
760 if (new_state)
761 fep->ops->restart(dev);
762 } else if (fep->oldlink) {
763 new_state = 1;
764 fep->oldlink = 0;
765 fep->oldspeed = 0;
766 fep->oldduplex = -1;
767 }
768
769 if (new_state && netif_msg_link(fep))
770 phy_print_status(phydev);
771}
772
773
774static void fs_adjust_link(struct net_device *dev)
775{
776 struct fs_enet_private *fep = netdev_priv(dev);
777 unsigned long flags;
778
779 spin_lock_irqsave(&fep->lock, flags);
780
781 if(fep->ops->adjust_link)
782 fep->ops->adjust_link(dev);
783 else
784 generic_adjust_link(dev);
785
786 spin_unlock_irqrestore(&fep->lock, flags);
787}
788
789static int fs_init_phy(struct net_device *dev)
790{
791 struct fs_enet_private *fep = netdev_priv(dev);
792 struct phy_device *phydev;
793 phy_interface_t iface;
794
795 fep->oldlink = 0;
796 fep->oldspeed = 0;
797 fep->oldduplex = -1;
798
799 iface = fep->fpi->use_rmii ?
800 PHY_INTERFACE_MODE_RMII : PHY_INTERFACE_MODE_MII;
801
802 phydev = of_phy_connect(dev, fep->fpi->phy_node, &fs_adjust_link, 0,
803 iface);
804 if (!phydev) {
805 phydev = of_phy_connect_fixed_link(dev, &fs_adjust_link,
806 iface);
807 }
808 if (!phydev) {
809 dev_err(&dev->dev, "Could not attach to PHY\n");
810 return -ENODEV;
811 }
812
813 fep->phydev = phydev;
814
815 return 0;
816}
817
818static int fs_enet_open(struct net_device *dev)
819{
820 struct fs_enet_private *fep = netdev_priv(dev);
821 int r;
822 int err;
823
824 /* to initialize the fep->cur_rx,... */
825 /* not doing this, will cause a crash in fs_enet_rx_napi */
826 fs_init_bds(fep->ndev);
827
828 if (fep->fpi->use_napi)
829 napi_enable(&fep->napi);
830
831 /* Install our interrupt handler. */
832 r = request_irq(fep->interrupt, fs_enet_interrupt, IRQF_SHARED,
833 "fs_enet-mac", dev);
834 if (r != 0) {
835 dev_err(fep->dev, "Could not allocate FS_ENET IRQ!");
836 if (fep->fpi->use_napi)
837 napi_disable(&fep->napi);
838 return -EINVAL;
839 }
840
841 err = fs_init_phy(dev);
842 if (err) {
843 free_irq(fep->interrupt, dev);
844 if (fep->fpi->use_napi)
845 napi_disable(&fep->napi);
846 return err;
847 }
848 phy_start(fep->phydev);
849
850 netif_start_queue(dev);
851
852 return 0;
853}
854
855static int fs_enet_close(struct net_device *dev)
856{
857 struct fs_enet_private *fep = netdev_priv(dev);
858 unsigned long flags;
859
860 netif_stop_queue(dev);
861 netif_carrier_off(dev);
862 if (fep->fpi->use_napi)
863 napi_disable(&fep->napi);
864 phy_stop(fep->phydev);
865
866 spin_lock_irqsave(&fep->lock, flags);
867 spin_lock(&fep->tx_lock);
868 (*fep->ops->stop)(dev);
869 spin_unlock(&fep->tx_lock);
870 spin_unlock_irqrestore(&fep->lock, flags);
871
872 /* release any irqs */
873 phy_disconnect(fep->phydev);
874 fep->phydev = NULL;
875 free_irq(fep->interrupt, dev);
876
877 return 0;
878}
879
880static struct net_device_stats *fs_enet_get_stats(struct net_device *dev)
881{
882 struct fs_enet_private *fep = netdev_priv(dev);
883 return &fep->stats;
884}
885
886/*************************************************************************/
887
888static void fs_get_drvinfo(struct net_device *dev,
889 struct ethtool_drvinfo *info)
890{
891 strcpy(info->driver, DRV_MODULE_NAME);
892 strcpy(info->version, DRV_MODULE_VERSION);
893}
894
895static int fs_get_regs_len(struct net_device *dev)
896{
897 struct fs_enet_private *fep = netdev_priv(dev);
898
899 return (*fep->ops->get_regs_len)(dev);
900}
901
902static void fs_get_regs(struct net_device *dev, struct ethtool_regs *regs,
903 void *p)
904{
905 struct fs_enet_private *fep = netdev_priv(dev);
906 unsigned long flags;
907 int r, len;
908
909 len = regs->len;
910
911 spin_lock_irqsave(&fep->lock, flags);
912 r = (*fep->ops->get_regs)(dev, p, &len);
913 spin_unlock_irqrestore(&fep->lock, flags);
914
915 if (r == 0)
916 regs->version = 0;
917}
918
919static int fs_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
920{
921 struct fs_enet_private *fep = netdev_priv(dev);
922
923 if (!fep->phydev)
924 return -ENODEV;
925
926 return phy_ethtool_gset(fep->phydev, cmd);
927}
928
929static int fs_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
930{
931 struct fs_enet_private *fep = netdev_priv(dev);
932
933 if (!fep->phydev)
934 return -ENODEV;
935
936 return phy_ethtool_sset(fep->phydev, cmd);
937}
938
939static int fs_nway_reset(struct net_device *dev)
940{
941 return 0;
942}
943
944static u32 fs_get_msglevel(struct net_device *dev)
945{
946 struct fs_enet_private *fep = netdev_priv(dev);
947 return fep->msg_enable;
948}
949
950static void fs_set_msglevel(struct net_device *dev, u32 value)
951{
952 struct fs_enet_private *fep = netdev_priv(dev);
953 fep->msg_enable = value;
954}
955
956static const struct ethtool_ops fs_ethtool_ops = {
957 .get_drvinfo = fs_get_drvinfo,
958 .get_regs_len = fs_get_regs_len,
959 .get_settings = fs_get_settings,
960 .set_settings = fs_set_settings,
961 .nway_reset = fs_nway_reset,
962 .get_link = ethtool_op_get_link,
963 .get_msglevel = fs_get_msglevel,
964 .set_msglevel = fs_set_msglevel,
965 .get_regs = fs_get_regs,
966 .get_ts_info = ethtool_op_get_ts_info,
967};
968
969static int fs_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
970{
971 struct fs_enet_private *fep = netdev_priv(dev);
972
973 if (!netif_running(dev))
974 return -EINVAL;
975
976 return phy_mii_ioctl(fep->phydev, rq, cmd);
977}
978
979extern int fs_mii_connect(struct net_device *dev);
980extern void fs_mii_disconnect(struct net_device *dev);
981
982/**************************************************************************************/
983
984#ifdef CONFIG_FS_ENET_HAS_FEC
985#define IS_FEC(match) ((match)->data == &fs_fec_ops)
986#else
987#define IS_FEC(match) 0
988#endif
989
990static const struct net_device_ops fs_enet_netdev_ops = {
991 .ndo_open = fs_enet_open,
992 .ndo_stop = fs_enet_close,
993 .ndo_get_stats = fs_enet_get_stats,
994 .ndo_start_xmit = fs_enet_start_xmit,
995 .ndo_tx_timeout = fs_timeout,
996 .ndo_set_rx_mode = fs_set_multicast_list,
997 .ndo_do_ioctl = fs_ioctl,
998 .ndo_validate_addr = eth_validate_addr,
999 .ndo_set_mac_address = eth_mac_addr,
1000 .ndo_change_mtu = eth_change_mtu,
1001#ifdef CONFIG_NET_POLL_CONTROLLER
1002 .ndo_poll_controller = fs_enet_netpoll,
1003#endif
1004};
1005
1006static struct of_device_id fs_enet_match[];
1007static int __devinit fs_enet_probe(struct platform_device *ofdev)
1008{
1009 const struct of_device_id *match;
1010 struct net_device *ndev;
1011 struct fs_enet_private *fep;
1012 struct fs_platform_info *fpi;
1013 const u32 *data;
1014 const u8 *mac_addr;
1015 const char *phy_connection_type;
1016 int privsize, len, ret = -ENODEV;
1017
1018 match = of_match_device(fs_enet_match, &ofdev->dev);
1019 if (!match)
1020 return -EINVAL;
1021
1022 fpi = kzalloc(sizeof(*fpi), GFP_KERNEL);
1023 if (!fpi)
1024 return -ENOMEM;
1025
1026 if (!IS_FEC(match)) {
1027 data = of_get_property(ofdev->dev.of_node, "fsl,cpm-command", &len);
1028 if (!data || len != 4)
1029 goto out_free_fpi;
1030
1031 fpi->cp_command = *data;
1032 }
1033
1034 fpi->rx_ring = 32;
1035 fpi->tx_ring = 32;
1036 fpi->rx_copybreak = 240;
1037 fpi->use_napi = 1;
1038 fpi->napi_weight = 17;
1039 fpi->phy_node = of_parse_phandle(ofdev->dev.of_node, "phy-handle", 0);
1040 if ((!fpi->phy_node) && (!of_get_property(ofdev->dev.of_node, "fixed-link",
1041 NULL)))
1042 goto out_free_fpi;
1043
1044 if (of_device_is_compatible(ofdev->dev.of_node, "fsl,mpc5125-fec")) {
1045 phy_connection_type = of_get_property(ofdev->dev.of_node,
1046 "phy-connection-type", NULL);
1047 if (phy_connection_type && !strcmp("rmii", phy_connection_type))
1048 fpi->use_rmii = 1;
1049 }
1050
1051 privsize = sizeof(*fep) +
1052 sizeof(struct sk_buff **) *
1053 (fpi->rx_ring + fpi->tx_ring);
1054
1055 ndev = alloc_etherdev(privsize);
1056 if (!ndev) {
1057 ret = -ENOMEM;
1058 goto out_put;
1059 }
1060
1061 SET_NETDEV_DEV(ndev, &ofdev->dev);
1062 dev_set_drvdata(&ofdev->dev, ndev);
1063
1064 fep = netdev_priv(ndev);
1065 fep->dev = &ofdev->dev;
1066 fep->ndev = ndev;
1067 fep->fpi = fpi;
1068 fep->ops = match->data;
1069
1070 ret = fep->ops->setup_data(ndev);
1071 if (ret)
1072 goto out_free_dev;
1073
1074 fep->rx_skbuff = (struct sk_buff **)&fep[1];
1075 fep->tx_skbuff = fep->rx_skbuff + fpi->rx_ring;
1076
1077 spin_lock_init(&fep->lock);
1078 spin_lock_init(&fep->tx_lock);
1079
1080 mac_addr = of_get_mac_address(ofdev->dev.of_node);
1081 if (mac_addr)
1082 memcpy(ndev->dev_addr, mac_addr, 6);
1083
1084 ret = fep->ops->allocate_bd(ndev);
1085 if (ret)
1086 goto out_cleanup_data;
1087
1088 fep->rx_bd_base = fep->ring_base;
1089 fep->tx_bd_base = fep->rx_bd_base + fpi->rx_ring;
1090
1091 fep->tx_ring = fpi->tx_ring;
1092 fep->rx_ring = fpi->rx_ring;
1093
1094 ndev->netdev_ops = &fs_enet_netdev_ops;
1095 ndev->watchdog_timeo = 2 * HZ;
1096 if (fpi->use_napi)
1097 netif_napi_add(ndev, &fep->napi, fs_enet_rx_napi,
1098 fpi->napi_weight);
1099
1100 ndev->ethtool_ops = &fs_ethtool_ops;
1101
1102 init_timer(&fep->phy_timer_list);
1103
1104 netif_carrier_off(ndev);
1105
1106 ret = register_netdev(ndev);
1107 if (ret)
1108 goto out_free_bd;
1109
1110 pr_info("%s: fs_enet: %pM\n", ndev->name, ndev->dev_addr);
1111
1112 return 0;
1113
1114out_free_bd:
1115 fep->ops->free_bd(ndev);
1116out_cleanup_data:
1117 fep->ops->cleanup_data(ndev);
1118out_free_dev:
1119 free_netdev(ndev);
1120 dev_set_drvdata(&ofdev->dev, NULL);
1121out_put:
1122 of_node_put(fpi->phy_node);
1123out_free_fpi:
1124 kfree(fpi);
1125 return ret;
1126}
1127
1128static int fs_enet_remove(struct platform_device *ofdev)
1129{
1130 struct net_device *ndev = dev_get_drvdata(&ofdev->dev);
1131 struct fs_enet_private *fep = netdev_priv(ndev);
1132
1133 unregister_netdev(ndev);
1134
1135 fep->ops->free_bd(ndev);
1136 fep->ops->cleanup_data(ndev);
1137 dev_set_drvdata(fep->dev, NULL);
1138 of_node_put(fep->fpi->phy_node);
1139 free_netdev(ndev);
1140 return 0;
1141}
1142
1143static struct of_device_id fs_enet_match[] = {
1144#ifdef CONFIG_FS_ENET_HAS_SCC
1145 {
1146 .compatible = "fsl,cpm1-scc-enet",
1147 .data = (void *)&fs_scc_ops,
1148 },
1149 {
1150 .compatible = "fsl,cpm2-scc-enet",
1151 .data = (void *)&fs_scc_ops,
1152 },
1153#endif
1154#ifdef CONFIG_FS_ENET_HAS_FCC
1155 {
1156 .compatible = "fsl,cpm2-fcc-enet",
1157 .data = (void *)&fs_fcc_ops,
1158 },
1159#endif
1160#ifdef CONFIG_FS_ENET_HAS_FEC
1161#ifdef CONFIG_FS_ENET_MPC5121_FEC
1162 {
1163 .compatible = "fsl,mpc5121-fec",
1164 .data = (void *)&fs_fec_ops,
1165 },
1166 {
1167 .compatible = "fsl,mpc5125-fec",
1168 .data = (void *)&fs_fec_ops,
1169 },
1170#else
1171 {
1172 .compatible = "fsl,pq1-fec-enet",
1173 .data = (void *)&fs_fec_ops,
1174 },
1175#endif
1176#endif
1177 {}
1178};
1179MODULE_DEVICE_TABLE(of, fs_enet_match);
1180
1181static struct platform_driver fs_enet_driver = {
1182 .driver = {
1183 .owner = THIS_MODULE,
1184 .name = "fs_enet",
1185 .of_match_table = fs_enet_match,
1186 },
1187 .probe = fs_enet_probe,
1188 .remove = fs_enet_remove,
1189};
1190
1191#ifdef CONFIG_NET_POLL_CONTROLLER
1192static void fs_enet_netpoll(struct net_device *dev)
1193{
1194 disable_irq(dev->irq);
1195 fs_enet_interrupt(dev->irq, dev);
1196 enable_irq(dev->irq);
1197}
1198#endif
1199
1200module_platform_driver(fs_enet_driver);