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