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