]> Pileus Git - ~andy/linux/blob - drivers/net/ethernet/freescale/fec.c
net fec: do not depend on grouped clocks
[~andy/linux] / drivers / net / ethernet / freescale / fec.c
1 /*
2  * Fast Ethernet Controller (FEC) driver for Motorola MPC8xx.
3  * Copyright (c) 1997 Dan Malek (dmalek@jlc.net)
4  *
5  * Right now, I am very wasteful with the buffers.  I allocate memory
6  * pages and then divide them into 2K frame buffers.  This way I know I
7  * have buffers large enough to hold one frame within one buffer descriptor.
8  * Once I get this working, I will use 64 or 128 byte CPM buffers, which
9  * will be much more memory efficient and will easily handle lots of
10  * small packets.
11  *
12  * Much better multiple PHY support by Magnus Damm.
13  * Copyright (c) 2000 Ericsson Radio Systems AB.
14  *
15  * Support for FEC controller of ColdFire processors.
16  * Copyright (c) 2001-2005 Greg Ungerer (gerg@snapgear.com)
17  *
18  * Bug fixes and cleanup by Philippe De Muyter (phdm@macqel.be)
19  * Copyright (c) 2004-2006 Macq Electronique SA.
20  *
21  * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
22  */
23
24 #include <linux/module.h>
25 #include <linux/kernel.h>
26 #include <linux/string.h>
27 #include <linux/ptrace.h>
28 #include <linux/errno.h>
29 #include <linux/ioport.h>
30 #include <linux/slab.h>
31 #include <linux/interrupt.h>
32 #include <linux/pci.h>
33 #include <linux/init.h>
34 #include <linux/delay.h>
35 #include <linux/netdevice.h>
36 #include <linux/etherdevice.h>
37 #include <linux/skbuff.h>
38 #include <linux/spinlock.h>
39 #include <linux/workqueue.h>
40 #include <linux/bitops.h>
41 #include <linux/io.h>
42 #include <linux/irq.h>
43 #include <linux/clk.h>
44 #include <linux/platform_device.h>
45 #include <linux/phy.h>
46 #include <linux/fec.h>
47 #include <linux/of.h>
48 #include <linux/of_device.h>
49 #include <linux/of_gpio.h>
50 #include <linux/of_net.h>
51
52 #include <asm/cacheflush.h>
53
54 #ifndef CONFIG_ARM
55 #include <asm/coldfire.h>
56 #include <asm/mcfsim.h>
57 #endif
58
59 #include "fec.h"
60
61 #if defined(CONFIG_ARM)
62 #define FEC_ALIGNMENT   0xf
63 #else
64 #define FEC_ALIGNMENT   0x3
65 #endif
66
67 #define DRIVER_NAME     "fec"
68
69 /* Controller is ENET-MAC */
70 #define FEC_QUIRK_ENET_MAC              (1 << 0)
71 /* Controller needs driver to swap frame */
72 #define FEC_QUIRK_SWAP_FRAME            (1 << 1)
73 /* Controller uses gasket */
74 #define FEC_QUIRK_USE_GASKET            (1 << 2)
75 /* Controller has GBIT support */
76 #define FEC_QUIRK_HAS_GBIT              (1 << 3)
77
78 static struct platform_device_id fec_devtype[] = {
79         {
80                 /* keep it for coldfire */
81                 .name = DRIVER_NAME,
82                 .driver_data = 0,
83         }, {
84                 .name = "imx25-fec",
85                 .driver_data = FEC_QUIRK_USE_GASKET,
86         }, {
87                 .name = "imx27-fec",
88                 .driver_data = 0,
89         }, {
90                 .name = "imx28-fec",
91                 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME,
92         }, {
93                 .name = "imx6q-fec",
94                 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT,
95         }, {
96                 /* sentinel */
97         }
98 };
99 MODULE_DEVICE_TABLE(platform, fec_devtype);
100
101 enum imx_fec_type {
102         IMX25_FEC = 1,  /* runs on i.mx25/50/53 */
103         IMX27_FEC,      /* runs on i.mx27/35/51 */
104         IMX28_FEC,
105         IMX6Q_FEC,
106 };
107
108 static const struct of_device_id fec_dt_ids[] = {
109         { .compatible = "fsl,imx25-fec", .data = &fec_devtype[IMX25_FEC], },
110         { .compatible = "fsl,imx27-fec", .data = &fec_devtype[IMX27_FEC], },
111         { .compatible = "fsl,imx28-fec", .data = &fec_devtype[IMX28_FEC], },
112         { .compatible = "fsl,imx6q-fec", .data = &fec_devtype[IMX6Q_FEC], },
113         { /* sentinel */ }
114 };
115 MODULE_DEVICE_TABLE(of, fec_dt_ids);
116
117 static unsigned char macaddr[ETH_ALEN];
118 module_param_array(macaddr, byte, NULL, 0);
119 MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
120
121 #if defined(CONFIG_M5272)
122 /*
123  * Some hardware gets it MAC address out of local flash memory.
124  * if this is non-zero then assume it is the address to get MAC from.
125  */
126 #if defined(CONFIG_NETtel)
127 #define FEC_FLASHMAC    0xf0006006
128 #elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
129 #define FEC_FLASHMAC    0xf0006000
130 #elif defined(CONFIG_CANCam)
131 #define FEC_FLASHMAC    0xf0020000
132 #elif defined (CONFIG_M5272C3)
133 #define FEC_FLASHMAC    (0xffe04000 + 4)
134 #elif defined(CONFIG_MOD5272)
135 #define FEC_FLASHMAC    0xffc0406b
136 #else
137 #define FEC_FLASHMAC    0
138 #endif
139 #endif /* CONFIG_M5272 */
140
141 /* The number of Tx and Rx buffers.  These are allocated from the page
142  * pool.  The code may assume these are power of two, so it it best
143  * to keep them that size.
144  * We don't need to allocate pages for the transmitter.  We just use
145  * the skbuffer directly.
146  */
147 #define FEC_ENET_RX_PAGES       8
148 #define FEC_ENET_RX_FRSIZE      2048
149 #define FEC_ENET_RX_FRPPG       (PAGE_SIZE / FEC_ENET_RX_FRSIZE)
150 #define RX_RING_SIZE            (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
151 #define FEC_ENET_TX_FRSIZE      2048
152 #define FEC_ENET_TX_FRPPG       (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
153 #define TX_RING_SIZE            16      /* Must be power of two */
154 #define TX_RING_MOD_MASK        15      /*   for this to work */
155
156 #if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
157 #error "FEC: descriptor ring size constants too large"
158 #endif
159
160 /* Interrupt events/masks. */
161 #define FEC_ENET_HBERR  ((uint)0x80000000)      /* Heartbeat error */
162 #define FEC_ENET_BABR   ((uint)0x40000000)      /* Babbling receiver */
163 #define FEC_ENET_BABT   ((uint)0x20000000)      /* Babbling transmitter */
164 #define FEC_ENET_GRA    ((uint)0x10000000)      /* Graceful stop complete */
165 #define FEC_ENET_TXF    ((uint)0x08000000)      /* Full frame transmitted */
166 #define FEC_ENET_TXB    ((uint)0x04000000)      /* A buffer was transmitted */
167 #define FEC_ENET_RXF    ((uint)0x02000000)      /* Full frame received */
168 #define FEC_ENET_RXB    ((uint)0x01000000)      /* A buffer was received */
169 #define FEC_ENET_MII    ((uint)0x00800000)      /* MII interrupt */
170 #define FEC_ENET_EBERR  ((uint)0x00400000)      /* SDMA bus error */
171
172 #define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII)
173
174 /* The FEC stores dest/src/type, data, and checksum for receive packets.
175  */
176 #define PKT_MAXBUF_SIZE         1518
177 #define PKT_MINBUF_SIZE         64
178 #define PKT_MAXBLR_SIZE         1520
179
180 /* This device has up to three irqs on some platforms */
181 #define FEC_IRQ_NUM             3
182
183 /*
184  * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
185  * size bits. Other FEC hardware does not, so we need to take that into
186  * account when setting it.
187  */
188 #if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
189     defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
190 #define OPT_FRAME_SIZE  (PKT_MAXBUF_SIZE << 16)
191 #else
192 #define OPT_FRAME_SIZE  0
193 #endif
194
195 /* The FEC buffer descriptors track the ring buffers.  The rx_bd_base and
196  * tx_bd_base always point to the base of the buffer descriptors.  The
197  * cur_rx and cur_tx point to the currently available buffer.
198  * The dirty_tx tracks the current buffer that is being sent by the
199  * controller.  The cur_tx and dirty_tx are equal under both completely
200  * empty and completely full conditions.  The empty/ready indicator in
201  * the buffer descriptor determines the actual condition.
202  */
203 struct fec_enet_private {
204         /* Hardware registers of the FEC device */
205         void __iomem *hwp;
206
207         struct net_device *netdev;
208
209         struct clk *clk_ipg;
210         struct clk *clk_ahb;
211
212         /* The saved address of a sent-in-place packet/buffer, for skfree(). */
213         unsigned char *tx_bounce[TX_RING_SIZE];
214         struct  sk_buff* tx_skbuff[TX_RING_SIZE];
215         struct  sk_buff* rx_skbuff[RX_RING_SIZE];
216         ushort  skb_cur;
217         ushort  skb_dirty;
218
219         /* CPM dual port RAM relative addresses */
220         dma_addr_t      bd_dma;
221         /* Address of Rx and Tx buffers */
222         struct bufdesc  *rx_bd_base;
223         struct bufdesc  *tx_bd_base;
224         /* The next free ring entry */
225         struct bufdesc  *cur_rx, *cur_tx;
226         /* The ring entries to be free()ed */
227         struct bufdesc  *dirty_tx;
228
229         uint    tx_full;
230         /* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
231         spinlock_t hw_lock;
232
233         struct  platform_device *pdev;
234
235         int     opened;
236         int     dev_id;
237
238         /* Phylib and MDIO interface */
239         struct  mii_bus *mii_bus;
240         struct  phy_device *phy_dev;
241         int     mii_timeout;
242         uint    phy_speed;
243         phy_interface_t phy_interface;
244         int     link;
245         int     full_duplex;
246         struct  completion mdio_done;
247         int     irq[FEC_IRQ_NUM];
248 };
249
250 /* FEC MII MMFR bits definition */
251 #define FEC_MMFR_ST             (1 << 30)
252 #define FEC_MMFR_OP_READ        (2 << 28)
253 #define FEC_MMFR_OP_WRITE       (1 << 28)
254 #define FEC_MMFR_PA(v)          ((v & 0x1f) << 23)
255 #define FEC_MMFR_RA(v)          ((v & 0x1f) << 18)
256 #define FEC_MMFR_TA             (2 << 16)
257 #define FEC_MMFR_DATA(v)        (v & 0xffff)
258
259 #define FEC_MII_TIMEOUT         30000 /* us */
260
261 /* Transmitter timeout */
262 #define TX_TIMEOUT (2 * HZ)
263
264 static int mii_cnt;
265
266 static void *swap_buffer(void *bufaddr, int len)
267 {
268         int i;
269         unsigned int *buf = bufaddr;
270
271         for (i = 0; i < (len + 3) / 4; i++, buf++)
272                 *buf = cpu_to_be32(*buf);
273
274         return bufaddr;
275 }
276
277 static netdev_tx_t
278 fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
279 {
280         struct fec_enet_private *fep = netdev_priv(ndev);
281         const struct platform_device_id *id_entry =
282                                 platform_get_device_id(fep->pdev);
283         struct bufdesc *bdp;
284         void *bufaddr;
285         unsigned short  status;
286         unsigned long flags;
287
288         if (!fep->link) {
289                 /* Link is down or autonegotiation is in progress. */
290                 return NETDEV_TX_BUSY;
291         }
292
293         spin_lock_irqsave(&fep->hw_lock, flags);
294         /* Fill in a Tx ring entry */
295         bdp = fep->cur_tx;
296
297         status = bdp->cbd_sc;
298
299         if (status & BD_ENET_TX_READY) {
300                 /* Ooops.  All transmit buffers are full.  Bail out.
301                  * This should not happen, since ndev->tbusy should be set.
302                  */
303                 printk("%s: tx queue full!.\n", ndev->name);
304                 spin_unlock_irqrestore(&fep->hw_lock, flags);
305                 return NETDEV_TX_BUSY;
306         }
307
308         /* Clear all of the status flags */
309         status &= ~BD_ENET_TX_STATS;
310
311         /* Set buffer length and buffer pointer */
312         bufaddr = skb->data;
313         bdp->cbd_datlen = skb->len;
314
315         /*
316          * On some FEC implementations data must be aligned on
317          * 4-byte boundaries. Use bounce buffers to copy data
318          * and get it aligned. Ugh.
319          */
320         if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
321                 unsigned int index;
322                 index = bdp - fep->tx_bd_base;
323                 memcpy(fep->tx_bounce[index], skb->data, skb->len);
324                 bufaddr = fep->tx_bounce[index];
325         }
326
327         /*
328          * Some design made an incorrect assumption on endian mode of
329          * the system that it's running on. As the result, driver has to
330          * swap every frame going to and coming from the controller.
331          */
332         if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
333                 swap_buffer(bufaddr, skb->len);
334
335         /* Save skb pointer */
336         fep->tx_skbuff[fep->skb_cur] = skb;
337
338         ndev->stats.tx_bytes += skb->len;
339         fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
340
341         /* Push the data cache so the CPM does not get stale memory
342          * data.
343          */
344         bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, bufaddr,
345                         FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
346
347         /* Send it on its way.  Tell FEC it's ready, interrupt when done,
348          * it's the last BD of the frame, and to put the CRC on the end.
349          */
350         status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
351                         | BD_ENET_TX_LAST | BD_ENET_TX_TC);
352         bdp->cbd_sc = status;
353
354         /* Trigger transmission start */
355         writel(0, fep->hwp + FEC_X_DES_ACTIVE);
356
357         /* If this was the last BD in the ring, start at the beginning again. */
358         if (status & BD_ENET_TX_WRAP)
359                 bdp = fep->tx_bd_base;
360         else
361                 bdp++;
362
363         if (bdp == fep->dirty_tx) {
364                 fep->tx_full = 1;
365                 netif_stop_queue(ndev);
366         }
367
368         fep->cur_tx = bdp;
369
370         skb_tx_timestamp(skb);
371
372         spin_unlock_irqrestore(&fep->hw_lock, flags);
373
374         return NETDEV_TX_OK;
375 }
376
377 /* This function is called to start or restart the FEC during a link
378  * change.  This only happens when switching between half and full
379  * duplex.
380  */
381 static void
382 fec_restart(struct net_device *ndev, int duplex)
383 {
384         struct fec_enet_private *fep = netdev_priv(ndev);
385         const struct platform_device_id *id_entry =
386                                 platform_get_device_id(fep->pdev);
387         int i;
388         u32 temp_mac[2];
389         u32 rcntl = OPT_FRAME_SIZE | 0x04;
390         u32 ecntl = 0x2; /* ETHEREN */
391
392         /* Whack a reset.  We should wait for this. */
393         writel(1, fep->hwp + FEC_ECNTRL);
394         udelay(10);
395
396         /*
397          * enet-mac reset will reset mac address registers too,
398          * so need to reconfigure it.
399          */
400         if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
401                 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
402                 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
403                 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
404         }
405
406         /* Clear any outstanding interrupt. */
407         writel(0xffc00000, fep->hwp + FEC_IEVENT);
408
409         /* Reset all multicast. */
410         writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
411         writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
412 #ifndef CONFIG_M5272
413         writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
414         writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
415 #endif
416
417         /* Set maximum receive buffer size. */
418         writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
419
420         /* Set receive and transmit descriptor base. */
421         writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
422         writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc) * RX_RING_SIZE,
423                         fep->hwp + FEC_X_DES_START);
424
425         fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
426         fep->cur_rx = fep->rx_bd_base;
427
428         /* Reset SKB transmit buffers. */
429         fep->skb_cur = fep->skb_dirty = 0;
430         for (i = 0; i <= TX_RING_MOD_MASK; i++) {
431                 if (fep->tx_skbuff[i]) {
432                         dev_kfree_skb_any(fep->tx_skbuff[i]);
433                         fep->tx_skbuff[i] = NULL;
434                 }
435         }
436
437         /* Enable MII mode */
438         if (duplex) {
439                 /* FD enable */
440                 writel(0x04, fep->hwp + FEC_X_CNTRL);
441         } else {
442                 /* No Rcv on Xmit */
443                 rcntl |= 0x02;
444                 writel(0x0, fep->hwp + FEC_X_CNTRL);
445         }
446
447         fep->full_duplex = duplex;
448
449         /* Set MII speed */
450         writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
451
452         /*
453          * The phy interface and speed need to get configured
454          * differently on enet-mac.
455          */
456         if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
457                 /* Enable flow control and length check */
458                 rcntl |= 0x40000000 | 0x00000020;
459
460                 /* RGMII, RMII or MII */
461                 if (fep->phy_interface == PHY_INTERFACE_MODE_RGMII)
462                         rcntl |= (1 << 6);
463                 else if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
464                         rcntl |= (1 << 8);
465                 else
466                         rcntl &= ~(1 << 8);
467
468                 /* 1G, 100M or 10M */
469                 if (fep->phy_dev) {
470                         if (fep->phy_dev->speed == SPEED_1000)
471                                 ecntl |= (1 << 5);
472                         else if (fep->phy_dev->speed == SPEED_100)
473                                 rcntl &= ~(1 << 9);
474                         else
475                                 rcntl |= (1 << 9);
476                 }
477         } else {
478 #ifdef FEC_MIIGSK_ENR
479                 if (id_entry->driver_data & FEC_QUIRK_USE_GASKET) {
480                         u32 cfgr;
481                         /* disable the gasket and wait */
482                         writel(0, fep->hwp + FEC_MIIGSK_ENR);
483                         while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
484                                 udelay(1);
485
486                         /*
487                          * configure the gasket:
488                          *   RMII, 50 MHz, no loopback, no echo
489                          *   MII, 25 MHz, no loopback, no echo
490                          */
491                         cfgr = (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
492                                 ? BM_MIIGSK_CFGR_RMII : BM_MIIGSK_CFGR_MII;
493                         if (fep->phy_dev && fep->phy_dev->speed == SPEED_10)
494                                 cfgr |= BM_MIIGSK_CFGR_FRCONT_10M;
495                         writel(cfgr, fep->hwp + FEC_MIIGSK_CFGR);
496
497                         /* re-enable the gasket */
498                         writel(2, fep->hwp + FEC_MIIGSK_ENR);
499                 }
500 #endif
501         }
502         writel(rcntl, fep->hwp + FEC_R_CNTRL);
503
504         if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
505                 /* enable ENET endian swap */
506                 ecntl |= (1 << 8);
507                 /* enable ENET store and forward mode */
508                 writel(1 << 8, fep->hwp + FEC_X_WMRK);
509         }
510
511         /* And last, enable the transmit and receive processing */
512         writel(ecntl, fep->hwp + FEC_ECNTRL);
513         writel(0, fep->hwp + FEC_R_DES_ACTIVE);
514
515         /* Enable interrupts we wish to service */
516         writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
517 }
518
519 static void
520 fec_stop(struct net_device *ndev)
521 {
522         struct fec_enet_private *fep = netdev_priv(ndev);
523         const struct platform_device_id *id_entry =
524                                 platform_get_device_id(fep->pdev);
525         u32 rmii_mode = readl(fep->hwp + FEC_R_CNTRL) & (1 << 8);
526
527         /* We cannot expect a graceful transmit stop without link !!! */
528         if (fep->link) {
529                 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
530                 udelay(10);
531                 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
532                         printk("fec_stop : Graceful transmit stop did not complete !\n");
533         }
534
535         /* Whack a reset.  We should wait for this. */
536         writel(1, fep->hwp + FEC_ECNTRL);
537         udelay(10);
538         writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
539         writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
540
541         /* We have to keep ENET enabled to have MII interrupt stay working */
542         if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
543                 writel(2, fep->hwp + FEC_ECNTRL);
544                 writel(rmii_mode, fep->hwp + FEC_R_CNTRL);
545         }
546 }
547
548
549 static void
550 fec_timeout(struct net_device *ndev)
551 {
552         struct fec_enet_private *fep = netdev_priv(ndev);
553
554         ndev->stats.tx_errors++;
555
556         fec_restart(ndev, fep->full_duplex);
557         netif_wake_queue(ndev);
558 }
559
560 static void
561 fec_enet_tx(struct net_device *ndev)
562 {
563         struct  fec_enet_private *fep;
564         struct bufdesc *bdp;
565         unsigned short status;
566         struct  sk_buff *skb;
567
568         fep = netdev_priv(ndev);
569         spin_lock(&fep->hw_lock);
570         bdp = fep->dirty_tx;
571
572         while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
573                 if (bdp == fep->cur_tx && fep->tx_full == 0)
574                         break;
575
576                 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
577                                 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
578                 bdp->cbd_bufaddr = 0;
579
580                 skb = fep->tx_skbuff[fep->skb_dirty];
581                 /* Check for errors. */
582                 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
583                                    BD_ENET_TX_RL | BD_ENET_TX_UN |
584                                    BD_ENET_TX_CSL)) {
585                         ndev->stats.tx_errors++;
586                         if (status & BD_ENET_TX_HB)  /* No heartbeat */
587                                 ndev->stats.tx_heartbeat_errors++;
588                         if (status & BD_ENET_TX_LC)  /* Late collision */
589                                 ndev->stats.tx_window_errors++;
590                         if (status & BD_ENET_TX_RL)  /* Retrans limit */
591                                 ndev->stats.tx_aborted_errors++;
592                         if (status & BD_ENET_TX_UN)  /* Underrun */
593                                 ndev->stats.tx_fifo_errors++;
594                         if (status & BD_ENET_TX_CSL) /* Carrier lost */
595                                 ndev->stats.tx_carrier_errors++;
596                 } else {
597                         ndev->stats.tx_packets++;
598                 }
599
600                 if (status & BD_ENET_TX_READY)
601                         printk("HEY! Enet xmit interrupt and TX_READY.\n");
602
603                 /* Deferred means some collisions occurred during transmit,
604                  * but we eventually sent the packet OK.
605                  */
606                 if (status & BD_ENET_TX_DEF)
607                         ndev->stats.collisions++;
608
609                 /* Free the sk buffer associated with this last transmit */
610                 dev_kfree_skb_any(skb);
611                 fep->tx_skbuff[fep->skb_dirty] = NULL;
612                 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
613
614                 /* Update pointer to next buffer descriptor to be transmitted */
615                 if (status & BD_ENET_TX_WRAP)
616                         bdp = fep->tx_bd_base;
617                 else
618                         bdp++;
619
620                 /* Since we have freed up a buffer, the ring is no longer full
621                  */
622                 if (fep->tx_full) {
623                         fep->tx_full = 0;
624                         if (netif_queue_stopped(ndev))
625                                 netif_wake_queue(ndev);
626                 }
627         }
628         fep->dirty_tx = bdp;
629         spin_unlock(&fep->hw_lock);
630 }
631
632
633 /* During a receive, the cur_rx points to the current incoming buffer.
634  * When we update through the ring, if the next incoming buffer has
635  * not been given to the system, we just set the empty indicator,
636  * effectively tossing the packet.
637  */
638 static void
639 fec_enet_rx(struct net_device *ndev)
640 {
641         struct fec_enet_private *fep = netdev_priv(ndev);
642         const struct platform_device_id *id_entry =
643                                 platform_get_device_id(fep->pdev);
644         struct bufdesc *bdp;
645         unsigned short status;
646         struct  sk_buff *skb;
647         ushort  pkt_len;
648         __u8 *data;
649
650 #ifdef CONFIG_M532x
651         flush_cache_all();
652 #endif
653
654         spin_lock(&fep->hw_lock);
655
656         /* First, grab all of the stats for the incoming packet.
657          * These get messed up if we get called due to a busy condition.
658          */
659         bdp = fep->cur_rx;
660
661         while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
662
663                 /* Since we have allocated space to hold a complete frame,
664                  * the last indicator should be set.
665                  */
666                 if ((status & BD_ENET_RX_LAST) == 0)
667                         printk("FEC ENET: rcv is not +last\n");
668
669                 if (!fep->opened)
670                         goto rx_processing_done;
671
672                 /* Check for errors. */
673                 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
674                            BD_ENET_RX_CR | BD_ENET_RX_OV)) {
675                         ndev->stats.rx_errors++;
676                         if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
677                                 /* Frame too long or too short. */
678                                 ndev->stats.rx_length_errors++;
679                         }
680                         if (status & BD_ENET_RX_NO)     /* Frame alignment */
681                                 ndev->stats.rx_frame_errors++;
682                         if (status & BD_ENET_RX_CR)     /* CRC Error */
683                                 ndev->stats.rx_crc_errors++;
684                         if (status & BD_ENET_RX_OV)     /* FIFO overrun */
685                                 ndev->stats.rx_fifo_errors++;
686                 }
687
688                 /* Report late collisions as a frame error.
689                  * On this error, the BD is closed, but we don't know what we
690                  * have in the buffer.  So, just drop this frame on the floor.
691                  */
692                 if (status & BD_ENET_RX_CL) {
693                         ndev->stats.rx_errors++;
694                         ndev->stats.rx_frame_errors++;
695                         goto rx_processing_done;
696                 }
697
698                 /* Process the incoming frame. */
699                 ndev->stats.rx_packets++;
700                 pkt_len = bdp->cbd_datlen;
701                 ndev->stats.rx_bytes += pkt_len;
702                 data = (__u8*)__va(bdp->cbd_bufaddr);
703
704                 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
705                                 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
706
707                 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
708                         swap_buffer(data, pkt_len);
709
710                 /* This does 16 byte alignment, exactly what we need.
711                  * The packet length includes FCS, but we don't want to
712                  * include that when passing upstream as it messes up
713                  * bridging applications.
714                  */
715                 skb = netdev_alloc_skb(ndev, pkt_len - 4 + NET_IP_ALIGN);
716
717                 if (unlikely(!skb)) {
718                         printk("%s: Memory squeeze, dropping packet.\n",
719                                         ndev->name);
720                         ndev->stats.rx_dropped++;
721                 } else {
722                         skb_reserve(skb, NET_IP_ALIGN);
723                         skb_put(skb, pkt_len - 4);      /* Make room */
724                         skb_copy_to_linear_data(skb, data, pkt_len - 4);
725                         skb->protocol = eth_type_trans(skb, ndev);
726                         if (!skb_defer_rx_timestamp(skb))
727                                 netif_rx(skb);
728                 }
729
730                 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, data,
731                                 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
732 rx_processing_done:
733                 /* Clear the status flags for this buffer */
734                 status &= ~BD_ENET_RX_STATS;
735
736                 /* Mark the buffer empty */
737                 status |= BD_ENET_RX_EMPTY;
738                 bdp->cbd_sc = status;
739
740                 /* Update BD pointer to next entry */
741                 if (status & BD_ENET_RX_WRAP)
742                         bdp = fep->rx_bd_base;
743                 else
744                         bdp++;
745                 /* Doing this here will keep the FEC running while we process
746                  * incoming frames.  On a heavily loaded network, we should be
747                  * able to keep up at the expense of system resources.
748                  */
749                 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
750         }
751         fep->cur_rx = bdp;
752
753         spin_unlock(&fep->hw_lock);
754 }
755
756 static irqreturn_t
757 fec_enet_interrupt(int irq, void *dev_id)
758 {
759         struct net_device *ndev = dev_id;
760         struct fec_enet_private *fep = netdev_priv(ndev);
761         uint int_events;
762         irqreturn_t ret = IRQ_NONE;
763
764         do {
765                 int_events = readl(fep->hwp + FEC_IEVENT);
766                 writel(int_events, fep->hwp + FEC_IEVENT);
767
768                 if (int_events & FEC_ENET_RXF) {
769                         ret = IRQ_HANDLED;
770                         fec_enet_rx(ndev);
771                 }
772
773                 /* Transmit OK, or non-fatal error. Update the buffer
774                  * descriptors. FEC handles all errors, we just discover
775                  * them as part of the transmit process.
776                  */
777                 if (int_events & FEC_ENET_TXF) {
778                         ret = IRQ_HANDLED;
779                         fec_enet_tx(ndev);
780                 }
781
782                 if (int_events & FEC_ENET_MII) {
783                         ret = IRQ_HANDLED;
784                         complete(&fep->mdio_done);
785                 }
786         } while (int_events);
787
788         return ret;
789 }
790
791
792
793 /* ------------------------------------------------------------------------- */
794 static void __inline__ fec_get_mac(struct net_device *ndev)
795 {
796         struct fec_enet_private *fep = netdev_priv(ndev);
797         struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
798         unsigned char *iap, tmpaddr[ETH_ALEN];
799
800         /*
801          * try to get mac address in following order:
802          *
803          * 1) module parameter via kernel command line in form
804          *    fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
805          */
806         iap = macaddr;
807
808 #ifdef CONFIG_OF
809         /*
810          * 2) from device tree data
811          */
812         if (!is_valid_ether_addr(iap)) {
813                 struct device_node *np = fep->pdev->dev.of_node;
814                 if (np) {
815                         const char *mac = of_get_mac_address(np);
816                         if (mac)
817                                 iap = (unsigned char *) mac;
818                 }
819         }
820 #endif
821
822         /*
823          * 3) from flash or fuse (via platform data)
824          */
825         if (!is_valid_ether_addr(iap)) {
826 #ifdef CONFIG_M5272
827                 if (FEC_FLASHMAC)
828                         iap = (unsigned char *)FEC_FLASHMAC;
829 #else
830                 if (pdata)
831                         iap = (unsigned char *)&pdata->mac;
832 #endif
833         }
834
835         /*
836          * 4) FEC mac registers set by bootloader
837          */
838         if (!is_valid_ether_addr(iap)) {
839                 *((unsigned long *) &tmpaddr[0]) =
840                         be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
841                 *((unsigned short *) &tmpaddr[4]) =
842                         be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
843                 iap = &tmpaddr[0];
844         }
845
846         memcpy(ndev->dev_addr, iap, ETH_ALEN);
847
848         /* Adjust MAC if using macaddr */
849         if (iap == macaddr)
850                  ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->dev_id;
851 }
852
853 /* ------------------------------------------------------------------------- */
854
855 /*
856  * Phy section
857  */
858 static void fec_enet_adjust_link(struct net_device *ndev)
859 {
860         struct fec_enet_private *fep = netdev_priv(ndev);
861         struct phy_device *phy_dev = fep->phy_dev;
862         unsigned long flags;
863
864         int status_change = 0;
865
866         spin_lock_irqsave(&fep->hw_lock, flags);
867
868         /* Prevent a state halted on mii error */
869         if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
870                 phy_dev->state = PHY_RESUMING;
871                 goto spin_unlock;
872         }
873
874         /* Duplex link change */
875         if (phy_dev->link) {
876                 if (fep->full_duplex != phy_dev->duplex) {
877                         fec_restart(ndev, phy_dev->duplex);
878                         /* prevent unnecessary second fec_restart() below */
879                         fep->link = phy_dev->link;
880                         status_change = 1;
881                 }
882         }
883
884         /* Link on or off change */
885         if (phy_dev->link != fep->link) {
886                 fep->link = phy_dev->link;
887                 if (phy_dev->link)
888                         fec_restart(ndev, phy_dev->duplex);
889                 else
890                         fec_stop(ndev);
891                 status_change = 1;
892         }
893
894 spin_unlock:
895         spin_unlock_irqrestore(&fep->hw_lock, flags);
896
897         if (status_change)
898                 phy_print_status(phy_dev);
899 }
900
901 static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
902 {
903         struct fec_enet_private *fep = bus->priv;
904         unsigned long time_left;
905
906         fep->mii_timeout = 0;
907         init_completion(&fep->mdio_done);
908
909         /* start a read op */
910         writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
911                 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
912                 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
913
914         /* wait for end of transfer */
915         time_left = wait_for_completion_timeout(&fep->mdio_done,
916                         usecs_to_jiffies(FEC_MII_TIMEOUT));
917         if (time_left == 0) {
918                 fep->mii_timeout = 1;
919                 printk(KERN_ERR "FEC: MDIO read timeout\n");
920                 return -ETIMEDOUT;
921         }
922
923         /* return value */
924         return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
925 }
926
927 static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
928                            u16 value)
929 {
930         struct fec_enet_private *fep = bus->priv;
931         unsigned long time_left;
932
933         fep->mii_timeout = 0;
934         init_completion(&fep->mdio_done);
935
936         /* start a write op */
937         writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
938                 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
939                 FEC_MMFR_TA | FEC_MMFR_DATA(value),
940                 fep->hwp + FEC_MII_DATA);
941
942         /* wait for end of transfer */
943         time_left = wait_for_completion_timeout(&fep->mdio_done,
944                         usecs_to_jiffies(FEC_MII_TIMEOUT));
945         if (time_left == 0) {
946                 fep->mii_timeout = 1;
947                 printk(KERN_ERR "FEC: MDIO write timeout\n");
948                 return -ETIMEDOUT;
949         }
950
951         return 0;
952 }
953
954 static int fec_enet_mdio_reset(struct mii_bus *bus)
955 {
956         return 0;
957 }
958
959 static int fec_enet_mii_probe(struct net_device *ndev)
960 {
961         struct fec_enet_private *fep = netdev_priv(ndev);
962         const struct platform_device_id *id_entry =
963                                 platform_get_device_id(fep->pdev);
964         struct phy_device *phy_dev = NULL;
965         char mdio_bus_id[MII_BUS_ID_SIZE];
966         char phy_name[MII_BUS_ID_SIZE + 3];
967         int phy_id;
968         int dev_id = fep->dev_id;
969
970         fep->phy_dev = NULL;
971
972         /* check for attached phy */
973         for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
974                 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
975                         continue;
976                 if (fep->mii_bus->phy_map[phy_id] == NULL)
977                         continue;
978                 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
979                         continue;
980                 if (dev_id--)
981                         continue;
982                 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
983                 break;
984         }
985
986         if (phy_id >= PHY_MAX_ADDR) {
987                 printk(KERN_INFO
988                         "%s: no PHY, assuming direct connection to switch\n",
989                         ndev->name);
990                 strncpy(mdio_bus_id, "fixed-0", MII_BUS_ID_SIZE);
991                 phy_id = 0;
992         }
993
994         snprintf(phy_name, sizeof(phy_name), PHY_ID_FMT, mdio_bus_id, phy_id);
995         phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link, 0,
996                               fep->phy_interface);
997         if (IS_ERR(phy_dev)) {
998                 printk(KERN_ERR "%s: could not attach to PHY\n", ndev->name);
999                 return PTR_ERR(phy_dev);
1000         }
1001
1002         /* mask with MAC supported features */
1003         if (id_entry->driver_data & FEC_QUIRK_HAS_GBIT)
1004                 phy_dev->supported &= PHY_GBIT_FEATURES;
1005         else
1006                 phy_dev->supported &= PHY_BASIC_FEATURES;
1007
1008         phy_dev->advertising = phy_dev->supported;
1009
1010         fep->phy_dev = phy_dev;
1011         fep->link = 0;
1012         fep->full_duplex = 0;
1013
1014         printk(KERN_INFO
1015                 "%s: Freescale FEC PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
1016                 ndev->name,
1017                 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
1018                 fep->phy_dev->irq);
1019
1020         return 0;
1021 }
1022
1023 static int fec_enet_mii_init(struct platform_device *pdev)
1024 {
1025         static struct mii_bus *fec0_mii_bus;
1026         struct net_device *ndev = platform_get_drvdata(pdev);
1027         struct fec_enet_private *fep = netdev_priv(ndev);
1028         const struct platform_device_id *id_entry =
1029                                 platform_get_device_id(fep->pdev);
1030         int err = -ENXIO, i;
1031
1032         /*
1033          * The dual fec interfaces are not equivalent with enet-mac.
1034          * Here are the differences:
1035          *
1036          *  - fec0 supports MII & RMII modes while fec1 only supports RMII
1037          *  - fec0 acts as the 1588 time master while fec1 is slave
1038          *  - external phys can only be configured by fec0
1039          *
1040          * That is to say fec1 can not work independently. It only works
1041          * when fec0 is working. The reason behind this design is that the
1042          * second interface is added primarily for Switch mode.
1043          *
1044          * Because of the last point above, both phys are attached on fec0
1045          * mdio interface in board design, and need to be configured by
1046          * fec0 mii_bus.
1047          */
1048         if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && fep->dev_id > 0) {
1049                 /* fec1 uses fec0 mii_bus */
1050                 if (mii_cnt && fec0_mii_bus) {
1051                         fep->mii_bus = fec0_mii_bus;
1052                         mii_cnt++;
1053                         return 0;
1054                 }
1055                 return -ENOENT;
1056         }
1057
1058         fep->mii_timeout = 0;
1059
1060         /*
1061          * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
1062          *
1063          * The formula for FEC MDC is 'ref_freq / (MII_SPEED x 2)' while
1064          * for ENET-MAC is 'ref_freq / ((MII_SPEED + 1) x 2)'.  The i.MX28
1065          * Reference Manual has an error on this, and gets fixed on i.MX6Q
1066          * document.
1067          */
1068         fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk_ahb), 5000000);
1069         if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1070                 fep->phy_speed--;
1071         fep->phy_speed <<= 1;
1072         writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1073
1074         fep->mii_bus = mdiobus_alloc();
1075         if (fep->mii_bus == NULL) {
1076                 err = -ENOMEM;
1077                 goto err_out;
1078         }
1079
1080         fep->mii_bus->name = "fec_enet_mii_bus";
1081         fep->mii_bus->read = fec_enet_mdio_read;
1082         fep->mii_bus->write = fec_enet_mdio_write;
1083         fep->mii_bus->reset = fec_enet_mdio_reset;
1084         snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
1085                 pdev->name, fep->dev_id + 1);
1086         fep->mii_bus->priv = fep;
1087         fep->mii_bus->parent = &pdev->dev;
1088
1089         fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
1090         if (!fep->mii_bus->irq) {
1091                 err = -ENOMEM;
1092                 goto err_out_free_mdiobus;
1093         }
1094
1095         for (i = 0; i < PHY_MAX_ADDR; i++)
1096                 fep->mii_bus->irq[i] = PHY_POLL;
1097
1098         if (mdiobus_register(fep->mii_bus))
1099                 goto err_out_free_mdio_irq;
1100
1101         mii_cnt++;
1102
1103         /* save fec0 mii_bus */
1104         if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1105                 fec0_mii_bus = fep->mii_bus;
1106
1107         return 0;
1108
1109 err_out_free_mdio_irq:
1110         kfree(fep->mii_bus->irq);
1111 err_out_free_mdiobus:
1112         mdiobus_free(fep->mii_bus);
1113 err_out:
1114         return err;
1115 }
1116
1117 static void fec_enet_mii_remove(struct fec_enet_private *fep)
1118 {
1119         if (--mii_cnt == 0) {
1120                 mdiobus_unregister(fep->mii_bus);
1121                 kfree(fep->mii_bus->irq);
1122                 mdiobus_free(fep->mii_bus);
1123         }
1124 }
1125
1126 static int fec_enet_get_settings(struct net_device *ndev,
1127                                   struct ethtool_cmd *cmd)
1128 {
1129         struct fec_enet_private *fep = netdev_priv(ndev);
1130         struct phy_device *phydev = fep->phy_dev;
1131
1132         if (!phydev)
1133                 return -ENODEV;
1134
1135         return phy_ethtool_gset(phydev, cmd);
1136 }
1137
1138 static int fec_enet_set_settings(struct net_device *ndev,
1139                                  struct ethtool_cmd *cmd)
1140 {
1141         struct fec_enet_private *fep = netdev_priv(ndev);
1142         struct phy_device *phydev = fep->phy_dev;
1143
1144         if (!phydev)
1145                 return -ENODEV;
1146
1147         return phy_ethtool_sset(phydev, cmd);
1148 }
1149
1150 static void fec_enet_get_drvinfo(struct net_device *ndev,
1151                                  struct ethtool_drvinfo *info)
1152 {
1153         struct fec_enet_private *fep = netdev_priv(ndev);
1154
1155         strcpy(info->driver, fep->pdev->dev.driver->name);
1156         strcpy(info->version, "Revision: 1.0");
1157         strcpy(info->bus_info, dev_name(&ndev->dev));
1158 }
1159
1160 static const struct ethtool_ops fec_enet_ethtool_ops = {
1161         .get_settings           = fec_enet_get_settings,
1162         .set_settings           = fec_enet_set_settings,
1163         .get_drvinfo            = fec_enet_get_drvinfo,
1164         .get_link               = ethtool_op_get_link,
1165 };
1166
1167 static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
1168 {
1169         struct fec_enet_private *fep = netdev_priv(ndev);
1170         struct phy_device *phydev = fep->phy_dev;
1171
1172         if (!netif_running(ndev))
1173                 return -EINVAL;
1174
1175         if (!phydev)
1176                 return -ENODEV;
1177
1178         return phy_mii_ioctl(phydev, rq, cmd);
1179 }
1180
1181 static void fec_enet_free_buffers(struct net_device *ndev)
1182 {
1183         struct fec_enet_private *fep = netdev_priv(ndev);
1184         int i;
1185         struct sk_buff *skb;
1186         struct bufdesc  *bdp;
1187
1188         bdp = fep->rx_bd_base;
1189         for (i = 0; i < RX_RING_SIZE; i++) {
1190                 skb = fep->rx_skbuff[i];
1191
1192                 if (bdp->cbd_bufaddr)
1193                         dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
1194                                         FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1195                 if (skb)
1196                         dev_kfree_skb(skb);
1197                 bdp++;
1198         }
1199
1200         bdp = fep->tx_bd_base;
1201         for (i = 0; i < TX_RING_SIZE; i++)
1202                 kfree(fep->tx_bounce[i]);
1203 }
1204
1205 static int fec_enet_alloc_buffers(struct net_device *ndev)
1206 {
1207         struct fec_enet_private *fep = netdev_priv(ndev);
1208         int i;
1209         struct sk_buff *skb;
1210         struct bufdesc  *bdp;
1211
1212         bdp = fep->rx_bd_base;
1213         for (i = 0; i < RX_RING_SIZE; i++) {
1214                 skb = netdev_alloc_skb(ndev, FEC_ENET_RX_FRSIZE);
1215                 if (!skb) {
1216                         fec_enet_free_buffers(ndev);
1217                         return -ENOMEM;
1218                 }
1219                 fep->rx_skbuff[i] = skb;
1220
1221                 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, skb->data,
1222                                 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1223                 bdp->cbd_sc = BD_ENET_RX_EMPTY;
1224                 bdp++;
1225         }
1226
1227         /* Set the last buffer to wrap. */
1228         bdp--;
1229         bdp->cbd_sc |= BD_SC_WRAP;
1230
1231         bdp = fep->tx_bd_base;
1232         for (i = 0; i < TX_RING_SIZE; i++) {
1233                 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
1234
1235                 bdp->cbd_sc = 0;
1236                 bdp->cbd_bufaddr = 0;
1237                 bdp++;
1238         }
1239
1240         /* Set the last buffer to wrap. */
1241         bdp--;
1242         bdp->cbd_sc |= BD_SC_WRAP;
1243
1244         return 0;
1245 }
1246
1247 static int
1248 fec_enet_open(struct net_device *ndev)
1249 {
1250         struct fec_enet_private *fep = netdev_priv(ndev);
1251         int ret;
1252
1253         /* I should reset the ring buffers here, but I don't yet know
1254          * a simple way to do that.
1255          */
1256
1257         ret = fec_enet_alloc_buffers(ndev);
1258         if (ret)
1259                 return ret;
1260
1261         /* Probe and connect to PHY when open the interface */
1262         ret = fec_enet_mii_probe(ndev);
1263         if (ret) {
1264                 fec_enet_free_buffers(ndev);
1265                 return ret;
1266         }
1267         phy_start(fep->phy_dev);
1268         netif_start_queue(ndev);
1269         fep->opened = 1;
1270         return 0;
1271 }
1272
1273 static int
1274 fec_enet_close(struct net_device *ndev)
1275 {
1276         struct fec_enet_private *fep = netdev_priv(ndev);
1277
1278         /* Don't know what to do yet. */
1279         fep->opened = 0;
1280         netif_stop_queue(ndev);
1281         fec_stop(ndev);
1282
1283         if (fep->phy_dev) {
1284                 phy_stop(fep->phy_dev);
1285                 phy_disconnect(fep->phy_dev);
1286         }
1287
1288         fec_enet_free_buffers(ndev);
1289
1290         return 0;
1291 }
1292
1293 /* Set or clear the multicast filter for this adaptor.
1294  * Skeleton taken from sunlance driver.
1295  * The CPM Ethernet implementation allows Multicast as well as individual
1296  * MAC address filtering.  Some of the drivers check to make sure it is
1297  * a group multicast address, and discard those that are not.  I guess I
1298  * will do the same for now, but just remove the test if you want
1299  * individual filtering as well (do the upper net layers want or support
1300  * this kind of feature?).
1301  */
1302
1303 #define HASH_BITS       6               /* #bits in hash */
1304 #define CRC32_POLY      0xEDB88320
1305
1306 static void set_multicast_list(struct net_device *ndev)
1307 {
1308         struct fec_enet_private *fep = netdev_priv(ndev);
1309         struct netdev_hw_addr *ha;
1310         unsigned int i, bit, data, crc, tmp;
1311         unsigned char hash;
1312
1313         if (ndev->flags & IFF_PROMISC) {
1314                 tmp = readl(fep->hwp + FEC_R_CNTRL);
1315                 tmp |= 0x8;
1316                 writel(tmp, fep->hwp + FEC_R_CNTRL);
1317                 return;
1318         }
1319
1320         tmp = readl(fep->hwp + FEC_R_CNTRL);
1321         tmp &= ~0x8;
1322         writel(tmp, fep->hwp + FEC_R_CNTRL);
1323
1324         if (ndev->flags & IFF_ALLMULTI) {
1325                 /* Catch all multicast addresses, so set the
1326                  * filter to all 1's
1327                  */
1328                 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1329                 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1330
1331                 return;
1332         }
1333
1334         /* Clear filter and add the addresses in hash register
1335          */
1336         writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1337         writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1338
1339         netdev_for_each_mc_addr(ha, ndev) {
1340                 /* calculate crc32 value of mac address */
1341                 crc = 0xffffffff;
1342
1343                 for (i = 0; i < ndev->addr_len; i++) {
1344                         data = ha->addr[i];
1345                         for (bit = 0; bit < 8; bit++, data >>= 1) {
1346                                 crc = (crc >> 1) ^
1347                                 (((crc ^ data) & 1) ? CRC32_POLY : 0);
1348                         }
1349                 }
1350
1351                 /* only upper 6 bits (HASH_BITS) are used
1352                  * which point to specific bit in he hash registers
1353                  */
1354                 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1355
1356                 if (hash > 31) {
1357                         tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1358                         tmp |= 1 << (hash - 32);
1359                         writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1360                 } else {
1361                         tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1362                         tmp |= 1 << hash;
1363                         writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1364                 }
1365         }
1366 }
1367
1368 /* Set a MAC change in hardware. */
1369 static int
1370 fec_set_mac_address(struct net_device *ndev, void *p)
1371 {
1372         struct fec_enet_private *fep = netdev_priv(ndev);
1373         struct sockaddr *addr = p;
1374
1375         if (!is_valid_ether_addr(addr->sa_data))
1376                 return -EADDRNOTAVAIL;
1377
1378         memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
1379
1380         writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
1381                 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
1382                 fep->hwp + FEC_ADDR_LOW);
1383         writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
1384                 fep->hwp + FEC_ADDR_HIGH);
1385         return 0;
1386 }
1387
1388 #ifdef CONFIG_NET_POLL_CONTROLLER
1389 /*
1390  * fec_poll_controller: FEC Poll controller function
1391  * @dev: The FEC network adapter
1392  *
1393  * Polled functionality used by netconsole and others in non interrupt mode
1394  *
1395  */
1396 void fec_poll_controller(struct net_device *dev)
1397 {
1398         int i;
1399         struct fec_enet_private *fep = netdev_priv(dev);
1400
1401         for (i = 0; i < FEC_IRQ_NUM; i++) {
1402                 if (fep->irq[i] > 0) {
1403                         disable_irq(fep->irq[i]);
1404                         fec_enet_interrupt(fep->irq[i], dev);
1405                         enable_irq(fep->irq[i]);
1406                 }
1407         }
1408 }
1409 #endif
1410
1411 static const struct net_device_ops fec_netdev_ops = {
1412         .ndo_open               = fec_enet_open,
1413         .ndo_stop               = fec_enet_close,
1414         .ndo_start_xmit         = fec_enet_start_xmit,
1415         .ndo_set_rx_mode        = set_multicast_list,
1416         .ndo_change_mtu         = eth_change_mtu,
1417         .ndo_validate_addr      = eth_validate_addr,
1418         .ndo_tx_timeout         = fec_timeout,
1419         .ndo_set_mac_address    = fec_set_mac_address,
1420         .ndo_do_ioctl           = fec_enet_ioctl,
1421 #ifdef CONFIG_NET_POLL_CONTROLLER
1422         .ndo_poll_controller    = fec_poll_controller,
1423 #endif
1424 };
1425
1426  /*
1427   * XXX:  We need to clean up on failure exits here.
1428   *
1429   */
1430 static int fec_enet_init(struct net_device *ndev)
1431 {
1432         struct fec_enet_private *fep = netdev_priv(ndev);
1433         struct bufdesc *cbd_base;
1434         struct bufdesc *bdp;
1435         int i;
1436
1437         /* Allocate memory for buffer descriptors. */
1438         cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
1439                         GFP_KERNEL);
1440         if (!cbd_base) {
1441                 printk("FEC: allocate descriptor memory failed?\n");
1442                 return -ENOMEM;
1443         }
1444
1445         spin_lock_init(&fep->hw_lock);
1446
1447         fep->netdev = ndev;
1448
1449         /* Get the Ethernet address */
1450         fec_get_mac(ndev);
1451
1452         /* Set receive and transmit descriptor base. */
1453         fep->rx_bd_base = cbd_base;
1454         fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1455
1456         /* The FEC Ethernet specific entries in the device structure */
1457         ndev->watchdog_timeo = TX_TIMEOUT;
1458         ndev->netdev_ops = &fec_netdev_ops;
1459         ndev->ethtool_ops = &fec_enet_ethtool_ops;
1460
1461         /* Initialize the receive buffer descriptors. */
1462         bdp = fep->rx_bd_base;
1463         for (i = 0; i < RX_RING_SIZE; i++) {
1464
1465                 /* Initialize the BD for every fragment in the page. */
1466                 bdp->cbd_sc = 0;
1467                 bdp++;
1468         }
1469
1470         /* Set the last buffer to wrap */
1471         bdp--;
1472         bdp->cbd_sc |= BD_SC_WRAP;
1473
1474         /* ...and the same for transmit */
1475         bdp = fep->tx_bd_base;
1476         for (i = 0; i < TX_RING_SIZE; i++) {
1477
1478                 /* Initialize the BD for every fragment in the page. */
1479                 bdp->cbd_sc = 0;
1480                 bdp->cbd_bufaddr = 0;
1481                 bdp++;
1482         }
1483
1484         /* Set the last buffer to wrap */
1485         bdp--;
1486         bdp->cbd_sc |= BD_SC_WRAP;
1487
1488         fec_restart(ndev, 0);
1489
1490         return 0;
1491 }
1492
1493 #ifdef CONFIG_OF
1494 static int __devinit fec_get_phy_mode_dt(struct platform_device *pdev)
1495 {
1496         struct device_node *np = pdev->dev.of_node;
1497
1498         if (np)
1499                 return of_get_phy_mode(np);
1500
1501         return -ENODEV;
1502 }
1503
1504 static void __devinit fec_reset_phy(struct platform_device *pdev)
1505 {
1506         int err, phy_reset;
1507         struct device_node *np = pdev->dev.of_node;
1508
1509         if (!np)
1510                 return;
1511
1512         phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
1513         err = gpio_request_one(phy_reset, GPIOF_OUT_INIT_LOW, "phy-reset");
1514         if (err) {
1515                 pr_debug("FEC: failed to get gpio phy-reset: %d\n", err);
1516                 return;
1517         }
1518         msleep(1);
1519         gpio_set_value(phy_reset, 1);
1520 }
1521 #else /* CONFIG_OF */
1522 static inline int fec_get_phy_mode_dt(struct platform_device *pdev)
1523 {
1524         return -ENODEV;
1525 }
1526
1527 static inline void fec_reset_phy(struct platform_device *pdev)
1528 {
1529         /*
1530          * In case of platform probe, the reset has been done
1531          * by machine code.
1532          */
1533 }
1534 #endif /* CONFIG_OF */
1535
1536 static int __devinit
1537 fec_probe(struct platform_device *pdev)
1538 {
1539         struct fec_enet_private *fep;
1540         struct fec_platform_data *pdata;
1541         struct net_device *ndev;
1542         int i, irq, ret = 0;
1543         struct resource *r;
1544         const struct of_device_id *of_id;
1545         static int dev_id;
1546
1547         of_id = of_match_device(fec_dt_ids, &pdev->dev);
1548         if (of_id)
1549                 pdev->id_entry = of_id->data;
1550
1551         r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1552         if (!r)
1553                 return -ENXIO;
1554
1555         r = request_mem_region(r->start, resource_size(r), pdev->name);
1556         if (!r)
1557                 return -EBUSY;
1558
1559         /* Init network device */
1560         ndev = alloc_etherdev(sizeof(struct fec_enet_private));
1561         if (!ndev) {
1562                 ret = -ENOMEM;
1563                 goto failed_alloc_etherdev;
1564         }
1565
1566         SET_NETDEV_DEV(ndev, &pdev->dev);
1567
1568         /* setup board info structure */
1569         fep = netdev_priv(ndev);
1570
1571         fep->hwp = ioremap(r->start, resource_size(r));
1572         fep->pdev = pdev;
1573         fep->dev_id = dev_id++;
1574
1575         if (!fep->hwp) {
1576                 ret = -ENOMEM;
1577                 goto failed_ioremap;
1578         }
1579
1580         platform_set_drvdata(pdev, ndev);
1581
1582         ret = fec_get_phy_mode_dt(pdev);
1583         if (ret < 0) {
1584                 pdata = pdev->dev.platform_data;
1585                 if (pdata)
1586                         fep->phy_interface = pdata->phy;
1587                 else
1588                         fep->phy_interface = PHY_INTERFACE_MODE_MII;
1589         } else {
1590                 fep->phy_interface = ret;
1591         }
1592
1593         fec_reset_phy(pdev);
1594
1595         for (i = 0; i < FEC_IRQ_NUM; i++) {
1596                 irq = platform_get_irq(pdev, i);
1597                 if (irq < 0) {
1598                         if (i)
1599                                 break;
1600                         ret = irq;
1601                         goto failed_irq;
1602                 }
1603                 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1604                 if (ret) {
1605                         while (--i >= 0) {
1606                                 irq = platform_get_irq(pdev, i);
1607                                 free_irq(irq, ndev);
1608                         }
1609                         goto failed_irq;
1610                 }
1611         }
1612
1613         fep->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1614         if (IS_ERR(fep->clk_ipg)) {
1615                 ret = PTR_ERR(fep->clk_ipg);
1616                 goto failed_clk;
1617         }
1618
1619         fep->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
1620         if (IS_ERR(fep->clk_ahb)) {
1621                 ret = PTR_ERR(fep->clk_ahb);
1622                 goto failed_clk;
1623         }
1624
1625         clk_prepare_enable(fep->clk_ahb);
1626         clk_prepare_enable(fep->clk_ipg);
1627
1628         ret = fec_enet_init(ndev);
1629         if (ret)
1630                 goto failed_init;
1631
1632         ret = fec_enet_mii_init(pdev);
1633         if (ret)
1634                 goto failed_mii_init;
1635
1636         /* Carrier starts down, phylib will bring it up */
1637         netif_carrier_off(ndev);
1638
1639         ret = register_netdev(ndev);
1640         if (ret)
1641                 goto failed_register;
1642
1643         return 0;
1644
1645 failed_register:
1646         fec_enet_mii_remove(fep);
1647 failed_mii_init:
1648 failed_init:
1649         clk_disable_unprepare(fep->clk_ahb);
1650         clk_disable_unprepare(fep->clk_ipg);
1651 failed_clk:
1652         for (i = 0; i < FEC_IRQ_NUM; i++) {
1653                 irq = platform_get_irq(pdev, i);
1654                 if (irq > 0)
1655                         free_irq(irq, ndev);
1656         }
1657 failed_irq:
1658         iounmap(fep->hwp);
1659 failed_ioremap:
1660         free_netdev(ndev);
1661 failed_alloc_etherdev:
1662         release_mem_region(r->start, resource_size(r));
1663
1664         return ret;
1665 }
1666
1667 static int __devexit
1668 fec_drv_remove(struct platform_device *pdev)
1669 {
1670         struct net_device *ndev = platform_get_drvdata(pdev);
1671         struct fec_enet_private *fep = netdev_priv(ndev);
1672         struct resource *r;
1673         int i;
1674
1675         unregister_netdev(ndev);
1676         fec_enet_mii_remove(fep);
1677         for (i = 0; i < FEC_IRQ_NUM; i++) {
1678                 int irq = platform_get_irq(pdev, i);
1679                 if (irq > 0)
1680                         free_irq(irq, ndev);
1681         }
1682         clk_disable_unprepare(fep->clk_ahb);
1683         clk_disable_unprepare(fep->clk_ipg);
1684         iounmap(fep->hwp);
1685         free_netdev(ndev);
1686
1687         r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1688         BUG_ON(!r);
1689         release_mem_region(r->start, resource_size(r));
1690
1691         platform_set_drvdata(pdev, NULL);
1692
1693         return 0;
1694 }
1695
1696 #ifdef CONFIG_PM
1697 static int
1698 fec_suspend(struct device *dev)
1699 {
1700         struct net_device *ndev = dev_get_drvdata(dev);
1701         struct fec_enet_private *fep = netdev_priv(ndev);
1702
1703         if (netif_running(ndev)) {
1704                 fec_stop(ndev);
1705                 netif_device_detach(ndev);
1706         }
1707         clk_disable_unprepare(fep->clk_ahb);
1708         clk_disable_unprepare(fep->clk_ipg);
1709
1710         return 0;
1711 }
1712
1713 static int
1714 fec_resume(struct device *dev)
1715 {
1716         struct net_device *ndev = dev_get_drvdata(dev);
1717         struct fec_enet_private *fep = netdev_priv(ndev);
1718
1719         clk_prepare_enable(fep->clk_ahb);
1720         clk_prepare_enable(fep->clk_ipg);
1721         if (netif_running(ndev)) {
1722                 fec_restart(ndev, fep->full_duplex);
1723                 netif_device_attach(ndev);
1724         }
1725
1726         return 0;
1727 }
1728
1729 static const struct dev_pm_ops fec_pm_ops = {
1730         .suspend        = fec_suspend,
1731         .resume         = fec_resume,
1732         .freeze         = fec_suspend,
1733         .thaw           = fec_resume,
1734         .poweroff       = fec_suspend,
1735         .restore        = fec_resume,
1736 };
1737 #endif
1738
1739 static struct platform_driver fec_driver = {
1740         .driver = {
1741                 .name   = DRIVER_NAME,
1742                 .owner  = THIS_MODULE,
1743 #ifdef CONFIG_PM
1744                 .pm     = &fec_pm_ops,
1745 #endif
1746                 .of_match_table = fec_dt_ids,
1747         },
1748         .id_table = fec_devtype,
1749         .probe  = fec_probe,
1750         .remove = __devexit_p(fec_drv_remove),
1751 };
1752
1753 module_platform_driver(fec_driver);
1754
1755 MODULE_LICENSE("GPL");