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