blob: e868a377c898e128d2904d474831836f00f5e90e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Fast Ethernet Controller (FEC) driver for Motorola MPC8xx.
3 * Copyright (c) 1997 Dan Malek (dmalek@jlc.net)
4 *
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10005 * Right now, I am very wasteful with the buffers. I allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * 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 *
Greg Ungerer562d2f82005-11-07 14:09:50 +100015 * Support for FEC controller of ColdFire processors.
16 * Copyright (c) 2001-2005 Greg Ungerer (gerg@snapgear.com)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +100017 *
18 * Bug fixes and cleanup by Philippe De Muyter (phdm@macqel.be)
Philippe De Muyter677177c2006-06-27 13:05:33 +100019 * Copyright (c) 2004-2006 Macq Electronique SA.
Shawn Guob5680e02011-01-05 21:13:13 +000020 *
Shawn Guo230dec62011-09-23 02:12:48 +000021 * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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>
Sascha Hauer6f501b12009-01-28 23:03:05 +000041#include <linux/io.h>
42#include <linux/irq.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000043#include <linux/clk.h>
Sascha Haueread73182009-01-28 23:03:11 +000044#include <linux/platform_device.h>
Bryan Wue6b043d2010-03-31 02:10:44 +000045#include <linux/phy.h>
Baruch Siach5eb32bd2010-05-24 00:36:13 -070046#include <linux/fec.h>
Shawn Guoca2cc332011-06-25 02:04:35 +080047#include <linux/of.h>
48#include <linux/of_device.h>
49#include <linux/of_gpio.h>
50#include <linux/of_net.h>
Shawn Guob2bccee2012-05-06 20:24:04 +080051#include <linux/pinctrl/consumer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Greg Ungerer080853a2007-07-30 16:28:46 +100053#include <asm/cacheflush.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000054
Shawn Guob5680e02011-01-05 21:13:13 +000055#ifndef CONFIG_ARM
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/coldfire.h>
57#include <asm/mcfsim.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000058#endif
Sascha Hauer6f501b12009-01-28 23:03:05 +000059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include "fec.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Uwe Kleine-König085e79e2011-01-17 09:52:18 +010062#if defined(CONFIG_ARM)
Sascha Hauer196719e2009-01-28 23:03:10 +000063#define FEC_ALIGNMENT 0xf
64#else
65#define FEC_ALIGNMENT 0x3
66#endif
67
Shawn Guob5680e02011-01-05 21:13:13 +000068#define DRIVER_NAME "fec"
69
70/* Controller is ENET-MAC */
71#define FEC_QUIRK_ENET_MAC (1 << 0)
72/* Controller needs driver to swap frame */
73#define FEC_QUIRK_SWAP_FRAME (1 << 1)
Shawn Guo0ca1e292011-07-01 18:11:22 +080074/* Controller uses gasket */
75#define FEC_QUIRK_USE_GASKET (1 << 2)
Shawn Guo230dec62011-09-23 02:12:48 +000076/* Controller has GBIT support */
77#define FEC_QUIRK_HAS_GBIT (1 << 3)
Shawn Guob5680e02011-01-05 21:13:13 +000078
79static struct platform_device_id fec_devtype[] = {
80 {
Shawn Guo0ca1e292011-07-01 18:11:22 +080081 /* keep it for coldfire */
Shawn Guob5680e02011-01-05 21:13:13 +000082 .name = DRIVER_NAME,
83 .driver_data = 0,
84 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +080085 .name = "imx25-fec",
86 .driver_data = FEC_QUIRK_USE_GASKET,
87 }, {
88 .name = "imx27-fec",
89 .driver_data = 0,
90 }, {
Shawn Guob5680e02011-01-05 21:13:13 +000091 .name = "imx28-fec",
92 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME,
Shawn Guo0ca1e292011-07-01 18:11:22 +080093 }, {
Shawn Guo230dec62011-09-23 02:12:48 +000094 .name = "imx6q-fec",
95 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT,
96 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +080097 /* sentinel */
98 }
Shawn Guob5680e02011-01-05 21:13:13 +000099};
Shawn Guo0ca1e292011-07-01 18:11:22 +0800100MODULE_DEVICE_TABLE(platform, fec_devtype);
Shawn Guob5680e02011-01-05 21:13:13 +0000101
Shawn Guoca2cc332011-06-25 02:04:35 +0800102enum imx_fec_type {
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000103 IMX25_FEC = 1, /* runs on i.mx25/50/53 */
Shawn Guoca2cc332011-06-25 02:04:35 +0800104 IMX27_FEC, /* runs on i.mx27/35/51 */
105 IMX28_FEC,
Shawn Guo230dec62011-09-23 02:12:48 +0000106 IMX6Q_FEC,
Shawn Guoca2cc332011-06-25 02:04:35 +0800107};
108
109static const struct of_device_id fec_dt_ids[] = {
110 { .compatible = "fsl,imx25-fec", .data = &fec_devtype[IMX25_FEC], },
111 { .compatible = "fsl,imx27-fec", .data = &fec_devtype[IMX27_FEC], },
112 { .compatible = "fsl,imx28-fec", .data = &fec_devtype[IMX28_FEC], },
Shawn Guo230dec62011-09-23 02:12:48 +0000113 { .compatible = "fsl,imx6q-fec", .data = &fec_devtype[IMX6Q_FEC], },
Shawn Guoca2cc332011-06-25 02:04:35 +0800114 { /* sentinel */ }
115};
116MODULE_DEVICE_TABLE(of, fec_dt_ids);
117
Shawn Guo49da97d2011-01-05 21:13:11 +0000118static unsigned char macaddr[ETH_ALEN];
119module_param_array(macaddr, byte, NULL, 0);
120MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
121
Greg Ungerer87f4abb2008-06-06 15:55:36 +1000122#if defined(CONFIG_M5272)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/*
124 * Some hardware gets it MAC address out of local flash memory.
125 * if this is non-zero then assume it is the address to get MAC from.
126 */
127#if defined(CONFIG_NETtel)
128#define FEC_FLASHMAC 0xf0006006
129#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
130#define FEC_FLASHMAC 0xf0006000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#elif defined(CONFIG_CANCam)
132#define FEC_FLASHMAC 0xf0020000
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000133#elif defined (CONFIG_M5272C3)
134#define FEC_FLASHMAC (0xffe04000 + 4)
135#elif defined(CONFIG_MOD5272)
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000136#define FEC_FLASHMAC 0xffc0406b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#else
138#define FEC_FLASHMAC 0
139#endif
Greg Ungerer43be6362009-02-26 22:42:51 -0800140#endif /* CONFIG_M5272 */
Sascha Haueread73182009-01-28 23:03:11 +0000141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/* The number of Tx and Rx buffers. These are allocated from the page
143 * pool. The code may assume these are power of two, so it it best
144 * to keep them that size.
145 * We don't need to allocate pages for the transmitter. We just use
146 * the skbuffer directly.
147 */
148#define FEC_ENET_RX_PAGES 8
149#define FEC_ENET_RX_FRSIZE 2048
150#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE)
151#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
152#define FEC_ENET_TX_FRSIZE 2048
153#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
154#define TX_RING_SIZE 16 /* Must be power of two */
155#define TX_RING_MOD_MASK 15 /* for this to work */
156
Greg Ungerer562d2f82005-11-07 14:09:50 +1000157#if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
Matt Waddel6b265292006-06-27 13:10:56 +1000158#error "FEC: descriptor ring size constants too large"
Greg Ungerer562d2f82005-11-07 14:09:50 +1000159#endif
160
Sascha Hauer22f6b862009-04-15 01:32:18 +0000161/* Interrupt events/masks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
163#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
164#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */
165#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */
166#define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */
167#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */
168#define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */
169#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */
170#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */
171#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */
172
Wolfram Sang4bee1f92010-07-21 02:51:13 +0000173#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII)
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/* The FEC stores dest/src/type, data, and checksum for receive packets.
176 */
177#define PKT_MAXBUF_SIZE 1518
178#define PKT_MINBUF_SIZE 64
179#define PKT_MAXBLR_SIZE 1520
180
Xiao Jiangc7c83d12011-09-29 02:15:56 +0000181/* This device has up to three irqs on some platforms */
182#define FEC_IRQ_NUM 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184/*
Matt Waddel6b265292006-06-27 13:10:56 +1000185 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * size bits. Other FEC hardware does not, so we need to take that into
187 * account when setting it.
188 */
Greg Ungerer562d2f82005-11-07 14:09:50 +1000189#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Uwe Kleine-König085e79e2011-01-17 09:52:18 +0100190 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
192#else
193#define OPT_FRAME_SIZE 0
194#endif
195
196/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and
197 * tx_bd_base always point to the base of the buffer descriptors. The
198 * cur_rx and cur_tx point to the currently available buffer.
199 * The dirty_tx tracks the current buffer that is being sent by the
200 * controller. The cur_tx and dirty_tx are equal under both completely
201 * empty and completely full conditions. The empty/ready indicator in
202 * the buffer descriptor determines the actual condition.
203 */
204struct fec_enet_private {
205 /* Hardware registers of the FEC device */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000206 void __iomem *hwp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Greg Ungerercb84d6e2007-07-30 16:29:09 +1000208 struct net_device *netdev;
209
Sascha Hauerf4d40de2012-03-07 09:30:49 +0100210 struct clk *clk_ipg;
211 struct clk *clk_ahb;
Sascha Haueread73182009-01-28 23:03:11 +0000212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
214 unsigned char *tx_bounce[TX_RING_SIZE];
215 struct sk_buff* tx_skbuff[TX_RING_SIZE];
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000216 struct sk_buff* rx_skbuff[RX_RING_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 ushort skb_cur;
218 ushort skb_dirty;
219
Sascha Hauer22f6b862009-04-15 01:32:18 +0000220 /* CPM dual port RAM relative addresses */
Sascha Hauer4661e752009-01-28 23:03:07 +0000221 dma_addr_t bd_dma;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000222 /* Address of Rx and Tx buffers */
Sascha Hauer2e285322009-04-15 01:32:16 +0000223 struct bufdesc *rx_bd_base;
224 struct bufdesc *tx_bd_base;
225 /* The next free ring entry */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100226 struct bufdesc *cur_rx, *cur_tx;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000227 /* The ring entries to be free()ed */
Sascha Hauer2e285322009-04-15 01:32:16 +0000228 struct bufdesc *dirty_tx;
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 uint tx_full;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000231 /* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
232 spinlock_t hw_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100234 struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 int opened;
Shawn Guo43af9402011-12-05 05:01:15 +0000237 int dev_id;
Bryan Wue6b043d2010-03-31 02:10:44 +0000238
239 /* Phylib and MDIO interface */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100240 struct mii_bus *mii_bus;
241 struct phy_device *phy_dev;
242 int mii_timeout;
243 uint phy_speed;
Baruch Siach5eb32bd2010-05-24 00:36:13 -0700244 phy_interface_t phy_interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 int link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 int full_duplex;
Baruch Siach97b72e42010-07-11 21:12:51 +0000247 struct completion mdio_done;
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +0000248 int irq[FEC_IRQ_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249};
250
Bryan Wue6b043d2010-03-31 02:10:44 +0000251/* FEC MII MMFR bits definition */
252#define FEC_MMFR_ST (1 << 30)
253#define FEC_MMFR_OP_READ (2 << 28)
254#define FEC_MMFR_OP_WRITE (1 << 28)
255#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
256#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
257#define FEC_MMFR_TA (2 << 16)
258#define FEC_MMFR_DATA(v) (v & 0xffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Rogerio Pimentelc3b084c2011-12-27 14:07:37 -0500260#define FEC_MII_TIMEOUT 30000 /* us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Sascha Hauer22f6b862009-04-15 01:32:18 +0000262/* Transmitter timeout */
263#define TX_TIMEOUT (2 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Lothar Waßmanne163cc92011-12-07 21:59:31 +0000265static int mii_cnt;
266
Shawn Guob5680e02011-01-05 21:13:13 +0000267static void *swap_buffer(void *bufaddr, int len)
268{
269 int i;
270 unsigned int *buf = bufaddr;
271
272 for (i = 0; i < (len + 3) / 4; i++, buf++)
273 *buf = cpu_to_be32(*buf);
274
275 return bufaddr;
276}
277
Denis Kirjanovc7621cb2010-06-02 09:15:47 +0000278static netdev_tx_t
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100279fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100281 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000282 const struct platform_device_id *id_entry =
283 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000284 struct bufdesc *bdp;
Greg Ungerer9555b312009-08-06 17:58:18 +0000285 void *bufaddr;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000286 unsigned short status;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000287 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (!fep->link) {
290 /* Link is down or autonegotiation is in progress. */
Patrick McHardy5b548142009-06-12 06:22:29 +0000291 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000294 spin_lock_irqsave(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* Fill in a Tx ring entry */
296 bdp = fep->cur_tx;
297
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000298 status = bdp->cbd_sc;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000299
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000300 if (status & BD_ENET_TX_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* Ooops. All transmit buffers are full. Bail out.
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100302 * This should not happen, since ndev->tbusy should be set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100304 printk("%s: tx queue full!.\n", ndev->name);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000305 spin_unlock_irqrestore(&fep->hw_lock, flags);
Patrick McHardy5b548142009-06-12 06:22:29 +0000306 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Sascha Hauer22f6b862009-04-15 01:32:18 +0000309 /* Clear all of the status flags */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000310 status &= ~BD_ENET_TX_STATS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Sascha Hauer22f6b862009-04-15 01:32:18 +0000312 /* Set buffer length and buffer pointer */
Greg Ungerer9555b312009-08-06 17:58:18 +0000313 bufaddr = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 bdp->cbd_datlen = skb->len;
315
316 /*
Sascha Hauer22f6b862009-04-15 01:32:18 +0000317 * On some FEC implementations data must be aligned on
318 * 4-byte boundaries. Use bounce buffers to copy data
319 * and get it aligned. Ugh.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 */
Greg Ungerer9555b312009-08-06 17:58:18 +0000321 if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 unsigned int index;
323 index = bdp - fep->tx_bd_base;
Uwe Kleine-König8a73b0b2011-01-13 21:34:31 +0100324 memcpy(fep->tx_bounce[index], skb->data, skb->len);
Greg Ungerer9555b312009-08-06 17:58:18 +0000325 bufaddr = fep->tx_bounce[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327
Shawn Guob5680e02011-01-05 21:13:13 +0000328 /*
329 * Some design made an incorrect assumption on endian mode of
330 * the system that it's running on. As the result, driver has to
331 * swap every frame going to and coming from the controller.
332 */
333 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
334 swap_buffer(bufaddr, skb->len);
335
Sascha Hauer22f6b862009-04-15 01:32:18 +0000336 /* Save skb pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 fep->tx_skbuff[fep->skb_cur] = skb;
338
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100339 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 /* Push the data cache so the CPM does not get stale memory
343 * data.
344 */
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100345 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000346 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000348 /* Send it on its way. Tell FEC it's ready, interrupt when done,
349 * it's the last BD of the frame, and to put the CRC on the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000351 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000353 bdp->cbd_sc = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /* Trigger transmission start */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000356 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Sascha Hauer22f6b862009-04-15 01:32:18 +0000358 /* If this was the last BD in the ring, start at the beginning again. */
359 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 bdp = fep->tx_bd_base;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000361 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 bdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 if (bdp == fep->dirty_tx) {
365 fep->tx_full = 1;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100366 netif_stop_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368
Sascha Hauer2e285322009-04-15 01:32:16 +0000369 fep->cur_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Richard Cochran18a03b92011-06-12 02:18:59 +0000371 skb_tx_timestamp(skb);
372
Richard Cochrana0087a32011-06-19 03:31:40 +0000373 spin_unlock_irqrestore(&fep->hw_lock, flags);
374
Patrick McHardy6ed10652009-06-23 06:03:08 +0000375 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
Uwe Kleine-König45993652011-01-19 20:47:04 +0100378/* This function is called to start or restart the FEC during a link
379 * change. This only happens when switching between half and full
380 * duplex.
381 */
382static void
383fec_restart(struct net_device *ndev, int duplex)
384{
385 struct fec_enet_private *fep = netdev_priv(ndev);
386 const struct platform_device_id *id_entry =
387 platform_get_device_id(fep->pdev);
388 int i;
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100389 u32 temp_mac[2];
390 u32 rcntl = OPT_FRAME_SIZE | 0x04;
Shawn Guo230dec62011-09-23 02:12:48 +0000391 u32 ecntl = 0x2; /* ETHEREN */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100392
393 /* Whack a reset. We should wait for this. */
394 writel(1, fep->hwp + FEC_ECNTRL);
395 udelay(10);
396
397 /*
398 * enet-mac reset will reset mac address registers too,
399 * so need to reconfigure it.
400 */
401 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
402 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
403 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
404 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
405 }
406
407 /* Clear any outstanding interrupt. */
408 writel(0xffc00000, fep->hwp + FEC_IEVENT);
409
410 /* Reset all multicast. */
411 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
412 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
413#ifndef CONFIG_M5272
414 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
415 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
416#endif
417
418 /* Set maximum receive buffer size. */
419 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
420
421 /* Set receive and transmit descriptor base. */
422 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
423 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc) * RX_RING_SIZE,
424 fep->hwp + FEC_X_DES_START);
425
426 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
427 fep->cur_rx = fep->rx_bd_base;
428
429 /* Reset SKB transmit buffers. */
430 fep->skb_cur = fep->skb_dirty = 0;
431 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
432 if (fep->tx_skbuff[i]) {
433 dev_kfree_skb_any(fep->tx_skbuff[i]);
434 fep->tx_skbuff[i] = NULL;
435 }
436 }
437
438 /* Enable MII mode */
439 if (duplex) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100440 /* FD enable */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100441 writel(0x04, fep->hwp + FEC_X_CNTRL);
442 } else {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100443 /* No Rcv on Xmit */
444 rcntl |= 0x02;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100445 writel(0x0, fep->hwp + FEC_X_CNTRL);
446 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100447
Uwe Kleine-König45993652011-01-19 20:47:04 +0100448 fep->full_duplex = duplex;
449
450 /* Set MII speed */
451 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
452
453 /*
454 * The phy interface and speed need to get configured
455 * differently on enet-mac.
456 */
457 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100458 /* Enable flow control and length check */
459 rcntl |= 0x40000000 | 0x00000020;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100460
Shawn Guo230dec62011-09-23 02:12:48 +0000461 /* RGMII, RMII or MII */
462 if (fep->phy_interface == PHY_INTERFACE_MODE_RGMII)
463 rcntl |= (1 << 6);
464 else if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100465 rcntl |= (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100466 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100467 rcntl &= ~(1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100468
Shawn Guo230dec62011-09-23 02:12:48 +0000469 /* 1G, 100M or 10M */
470 if (fep->phy_dev) {
471 if (fep->phy_dev->speed == SPEED_1000)
472 ecntl |= (1 << 5);
473 else if (fep->phy_dev->speed == SPEED_100)
474 rcntl &= ~(1 << 9);
475 else
476 rcntl |= (1 << 9);
477 }
Uwe Kleine-König45993652011-01-19 20:47:04 +0100478 } else {
479#ifdef FEC_MIIGSK_ENR
Shawn Guo0ca1e292011-07-01 18:11:22 +0800480 if (id_entry->driver_data & FEC_QUIRK_USE_GASKET) {
Eric Benard8d82f212012-01-12 06:10:28 +0000481 u32 cfgr;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100482 /* disable the gasket and wait */
483 writel(0, fep->hwp + FEC_MIIGSK_ENR);
484 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
485 udelay(1);
486
487 /*
488 * configure the gasket:
489 * RMII, 50 MHz, no loopback, no echo
Shawn Guo0ca1e292011-07-01 18:11:22 +0800490 * MII, 25 MHz, no loopback, no echo
Uwe Kleine-König45993652011-01-19 20:47:04 +0100491 */
Eric Benard8d82f212012-01-12 06:10:28 +0000492 cfgr = (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
493 ? BM_MIIGSK_CFGR_RMII : BM_MIIGSK_CFGR_MII;
494 if (fep->phy_dev && fep->phy_dev->speed == SPEED_10)
495 cfgr |= BM_MIIGSK_CFGR_FRCONT_10M;
496 writel(cfgr, fep->hwp + FEC_MIIGSK_CFGR);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100497
498 /* re-enable the gasket */
499 writel(2, fep->hwp + FEC_MIIGSK_ENR);
500 }
501#endif
502 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100503 writel(rcntl, fep->hwp + FEC_R_CNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100504
Shawn Guo230dec62011-09-23 02:12:48 +0000505 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
506 /* enable ENET endian swap */
507 ecntl |= (1 << 8);
508 /* enable ENET store and forward mode */
509 writel(1 << 8, fep->hwp + FEC_X_WMRK);
510 }
511
Uwe Kleine-König45993652011-01-19 20:47:04 +0100512 /* And last, enable the transmit and receive processing */
Shawn Guo230dec62011-09-23 02:12:48 +0000513 writel(ecntl, fep->hwp + FEC_ECNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100514 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
515
516 /* Enable interrupts we wish to service */
517 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
518}
519
520static void
521fec_stop(struct net_device *ndev)
522{
523 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +0000524 const struct platform_device_id *id_entry =
525 platform_get_device_id(fep->pdev);
Lothar Waßmann42431dc2011-12-07 21:59:30 +0000526 u32 rmii_mode = readl(fep->hwp + FEC_R_CNTRL) & (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100527
528 /* We cannot expect a graceful transmit stop without link !!! */
529 if (fep->link) {
530 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
531 udelay(10);
532 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
533 printk("fec_stop : Graceful transmit stop did not complete !\n");
534 }
535
536 /* Whack a reset. We should wait for this. */
537 writel(1, fep->hwp + FEC_ECNTRL);
538 udelay(10);
539 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
540 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
Shawn Guo230dec62011-09-23 02:12:48 +0000541
542 /* We have to keep ENET enabled to have MII interrupt stay working */
Lothar Waßmann42431dc2011-12-07 21:59:30 +0000543 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Shawn Guo230dec62011-09-23 02:12:48 +0000544 writel(2, fep->hwp + FEC_ECNTRL);
Lothar Waßmann42431dc2011-12-07 21:59:30 +0000545 writel(rmii_mode, fep->hwp + FEC_R_CNTRL);
546 }
Uwe Kleine-König45993652011-01-19 20:47:04 +0100547}
548
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100551fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100553 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100555 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100557 fec_restart(ndev, fep->full_duplex);
558 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100562fec_enet_tx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 struct fec_enet_private *fep;
Sascha Hauer2e285322009-04-15 01:32:16 +0000565 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000566 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 struct sk_buff *skb;
568
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100569 fep = netdev_priv(ndev);
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000570 spin_lock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 bdp = fep->dirty_tx;
572
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000573 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000574 if (bdp == fep->cur_tx && fep->tx_full == 0)
575 break;
576
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100577 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
578 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000579 bdp->cbd_bufaddr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 skb = fep->tx_skbuff[fep->skb_dirty];
582 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000583 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 BD_ENET_TX_RL | BD_ENET_TX_UN |
585 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100586 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000587 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100588 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000589 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100590 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000591 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100592 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000593 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100594 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000595 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100596 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100598 ndev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000601 if (status & BD_ENET_TX_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 printk("HEY! Enet xmit interrupt and TX_READY.\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +0000603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /* Deferred means some collisions occurred during transmit,
605 * but we eventually sent the packet OK.
606 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000607 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100608 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400609
Sascha Hauer22f6b862009-04-15 01:32:18 +0000610 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 dev_kfree_skb_any(skb);
612 fep->tx_skbuff[fep->skb_dirty] = NULL;
613 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400614
Sascha Hauer22f6b862009-04-15 01:32:18 +0000615 /* Update pointer to next buffer descriptor to be transmitted */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000616 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 bdp = fep->tx_bd_base;
618 else
619 bdp++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400620
Sascha Hauer22f6b862009-04-15 01:32:18 +0000621 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 */
623 if (fep->tx_full) {
624 fep->tx_full = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100625 if (netif_queue_stopped(ndev))
626 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
628 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000629 fep->dirty_tx = bdp;
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000630 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633
634/* During a receive, the cur_rx points to the current incoming buffer.
635 * When we update through the ring, if the next incoming buffer has
636 * not been given to the system, we just set the empty indicator,
637 * effectively tossing the packet.
638 */
639static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100640fec_enet_rx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100642 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000643 const struct platform_device_id *id_entry =
644 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000645 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000646 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 struct sk_buff *skb;
648 ushort pkt_len;
649 __u8 *data;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400650
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000651#ifdef CONFIG_M532x
652 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400653#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000655 spin_lock(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* First, grab all of the stats for the incoming packet.
658 * These get messed up if we get called due to a busy condition.
659 */
660 bdp = fep->cur_rx;
661
Sascha Hauer22f6b862009-04-15 01:32:18 +0000662 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Sascha Hauer22f6b862009-04-15 01:32:18 +0000664 /* Since we have allocated space to hold a complete frame,
665 * the last indicator should be set.
666 */
667 if ((status & BD_ENET_RX_LAST) == 0)
668 printk("FEC ENET: rcv is not +last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Sascha Hauer22f6b862009-04-15 01:32:18 +0000670 if (!fep->opened)
671 goto rx_processing_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Sascha Hauer22f6b862009-04-15 01:32:18 +0000673 /* Check for errors. */
674 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100676 ndev->stats.rx_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000677 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
678 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100679 ndev->stats.rx_length_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000680 }
681 if (status & BD_ENET_RX_NO) /* Frame alignment */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100682 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000683 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100684 ndev->stats.rx_crc_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000685 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100686 ndev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
Sascha Hauer22f6b862009-04-15 01:32:18 +0000688
689 /* Report late collisions as a frame error.
690 * On this error, the BD is closed, but we don't know what we
691 * have in the buffer. So, just drop this frame on the floor.
692 */
693 if (status & BD_ENET_RX_CL) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100694 ndev->stats.rx_errors++;
695 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000696 goto rx_processing_done;
697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Sascha Hauer22f6b862009-04-15 01:32:18 +0000699 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100700 ndev->stats.rx_packets++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000701 pkt_len = bdp->cbd_datlen;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100702 ndev->stats.rx_bytes += pkt_len;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000703 data = (__u8*)__va(bdp->cbd_bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100705 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
706 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerccdc4f12009-01-28 23:03:09 +0000707
Shawn Guob5680e02011-01-05 21:13:13 +0000708 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
709 swap_buffer(data, pkt_len);
710
Sascha Hauer22f6b862009-04-15 01:32:18 +0000711 /* This does 16 byte alignment, exactly what we need.
712 * The packet length includes FCS, but we don't want to
713 * include that when passing upstream as it messes up
714 * bridging applications.
715 */
Fabio Estevamb72061a2012-02-07 08:27:31 +0000716 skb = netdev_alloc_skb(ndev, pkt_len - 4 + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Sascha Hauer85498892009-04-15 01:32:21 +0000718 if (unlikely(!skb)) {
Sascha Hauer22f6b862009-04-15 01:32:18 +0000719 printk("%s: Memory squeeze, dropping packet.\n",
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100720 ndev->name);
721 ndev->stats.rx_dropped++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000722 } else {
Sascha Hauer85498892009-04-15 01:32:21 +0000723 skb_reserve(skb, NET_IP_ALIGN);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000724 skb_put(skb, pkt_len - 4); /* Make room */
725 skb_copy_to_linear_data(skb, data, pkt_len - 4);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100726 skb->protocol = eth_type_trans(skb, ndev);
Richard Cochran18a03b92011-06-12 02:18:59 +0000727 if (!skb_defer_rx_timestamp(skb))
728 netif_rx(skb);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000729 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000730
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100731 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, data,
732 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000733rx_processing_done:
734 /* Clear the status flags for this buffer */
735 status &= ~BD_ENET_RX_STATS;
736
737 /* Mark the buffer empty */
738 status |= BD_ENET_RX_EMPTY;
739 bdp->cbd_sc = status;
740
741 /* Update BD pointer to next entry */
742 if (status & BD_ENET_RX_WRAP)
743 bdp = fep->rx_bd_base;
744 else
745 bdp++;
746 /* Doing this here will keep the FEC running while we process
747 * incoming frames. On a heavily loaded network, we should be
748 * able to keep up at the expense of system resources.
749 */
750 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000752 fep->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000754 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Uwe Kleine-König45993652011-01-19 20:47:04 +0100757static irqreturn_t
758fec_enet_interrupt(int irq, void *dev_id)
759{
760 struct net_device *ndev = dev_id;
761 struct fec_enet_private *fep = netdev_priv(ndev);
762 uint int_events;
763 irqreturn_t ret = IRQ_NONE;
764
765 do {
766 int_events = readl(fep->hwp + FEC_IEVENT);
767 writel(int_events, fep->hwp + FEC_IEVENT);
768
769 if (int_events & FEC_ENET_RXF) {
770 ret = IRQ_HANDLED;
771 fec_enet_rx(ndev);
772 }
773
774 /* Transmit OK, or non-fatal error. Update the buffer
775 * descriptors. FEC handles all errors, we just discover
776 * them as part of the transmit process.
777 */
778 if (int_events & FEC_ENET_TXF) {
779 ret = IRQ_HANDLED;
780 fec_enet_tx(ndev);
781 }
782
783 if (int_events & FEC_ENET_MII) {
784 ret = IRQ_HANDLED;
785 complete(&fep->mdio_done);
786 }
787 } while (int_events);
788
789 return ret;
790}
791
792
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794/* ------------------------------------------------------------------------- */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100795static void __inline__ fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100797 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo49da97d2011-01-05 21:13:11 +0000798 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000799 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Shawn Guo49da97d2011-01-05 21:13:11 +0000801 /*
802 * try to get mac address in following order:
803 *
804 * 1) module parameter via kernel command line in form
805 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
806 */
807 iap = macaddr;
808
Shawn Guoca2cc332011-06-25 02:04:35 +0800809#ifdef CONFIG_OF
Shawn Guo49da97d2011-01-05 21:13:11 +0000810 /*
Shawn Guoca2cc332011-06-25 02:04:35 +0800811 * 2) from device tree data
812 */
813 if (!is_valid_ether_addr(iap)) {
814 struct device_node *np = fep->pdev->dev.of_node;
815 if (np) {
816 const char *mac = of_get_mac_address(np);
817 if (mac)
818 iap = (unsigned char *) mac;
819 }
820 }
821#endif
822
823 /*
824 * 3) from flash or fuse (via platform data)
Shawn Guo49da97d2011-01-05 21:13:11 +0000825 */
826 if (!is_valid_ether_addr(iap)) {
827#ifdef CONFIG_M5272
828 if (FEC_FLASHMAC)
829 iap = (unsigned char *)FEC_FLASHMAC;
830#else
831 if (pdata)
Lothar Waßmann589efdc2011-12-07 21:59:29 +0000832 iap = (unsigned char *)&pdata->mac;
Shawn Guo49da97d2011-01-05 21:13:11 +0000833#endif
834 }
835
836 /*
Shawn Guoca2cc332011-06-25 02:04:35 +0800837 * 4) FEC mac registers set by bootloader
Shawn Guo49da97d2011-01-05 21:13:11 +0000838 */
839 if (!is_valid_ether_addr(iap)) {
840 *((unsigned long *) &tmpaddr[0]) =
841 be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
842 *((unsigned short *) &tmpaddr[4]) =
843 be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 iap = &tmpaddr[0];
845 }
846
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100847 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Shawn Guo49da97d2011-01-05 21:13:11 +0000849 /* Adjust MAC if using macaddr */
850 if (iap == macaddr)
Shawn Guo43af9402011-12-05 05:01:15 +0000851 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854/* ------------------------------------------------------------------------- */
855
Bryan Wue6b043d2010-03-31 02:10:44 +0000856/*
857 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100859static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100861 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000862 struct phy_device *phy_dev = fep->phy_dev;
863 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Bryan Wue6b043d2010-03-31 02:10:44 +0000865 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Bryan Wue6b043d2010-03-31 02:10:44 +0000867 spin_lock_irqsave(&fep->hw_lock, flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400868
Bryan Wue6b043d2010-03-31 02:10:44 +0000869 /* Prevent a state halted on mii error */
870 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
871 phy_dev->state = PHY_RESUMING;
872 goto spin_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
Bryan Wue6b043d2010-03-31 02:10:44 +0000874
875 /* Duplex link change */
876 if (phy_dev->link) {
877 if (fep->full_duplex != phy_dev->duplex) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100878 fec_restart(ndev, phy_dev->duplex);
Lothar Waßmann6ea07222011-12-07 21:59:27 +0000879 /* prevent unnecessary second fec_restart() below */
880 fep->link = phy_dev->link;
Bryan Wue6b043d2010-03-31 02:10:44 +0000881 status_change = 1;
882 }
883 }
884
885 /* Link on or off change */
886 if (phy_dev->link != fep->link) {
887 fep->link = phy_dev->link;
888 if (phy_dev->link)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100889 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000890 else
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100891 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000892 status_change = 1;
893 }
894
895spin_unlock:
896 spin_unlock_irqrestore(&fep->hw_lock, flags);
897
898 if (status_change)
899 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
Bryan Wue6b043d2010-03-31 02:10:44 +0000902static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Bryan Wue6b043d2010-03-31 02:10:44 +0000904 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000905 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000906
907 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000908 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000909
910 /* start a read op */
911 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
912 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
913 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
914
915 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000916 time_left = wait_for_completion_timeout(&fep->mdio_done,
917 usecs_to_jiffies(FEC_MII_TIMEOUT));
918 if (time_left == 0) {
919 fep->mii_timeout = 1;
920 printk(KERN_ERR "FEC: MDIO read timeout\n");
921 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000922 }
923
924 /* return value */
925 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
926}
927
928static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
929 u16 value)
930{
931 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000932 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000933
934 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000935 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000936
Shawn Guo862f0982011-01-05 21:13:09 +0000937 /* start a write op */
938 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +0000939 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
940 FEC_MMFR_TA | FEC_MMFR_DATA(value),
941 fep->hwp + FEC_MII_DATA);
942
943 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000944 time_left = wait_for_completion_timeout(&fep->mdio_done,
945 usecs_to_jiffies(FEC_MII_TIMEOUT));
946 if (time_left == 0) {
947 fep->mii_timeout = 1;
948 printk(KERN_ERR "FEC: MDIO write timeout\n");
949 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000950 }
951
952 return 0;
953}
954
955static int fec_enet_mdio_reset(struct mii_bus *bus)
956{
957 return 0;
958}
959
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100960static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +0000961{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100962 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +0000963 const struct platform_device_id *id_entry =
964 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000965 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000966 char mdio_bus_id[MII_BUS_ID_SIZE];
967 char phy_name[MII_BUS_ID_SIZE + 3];
968 int phy_id;
Shawn Guo43af9402011-12-05 05:01:15 +0000969 int dev_id = fep->dev_id;
Bryan Wue6b043d2010-03-31 02:10:44 +0000970
Bryan Wu418bd0d2010-05-28 03:40:39 -0700971 fep->phy_dev = NULL;
972
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000973 /* check for attached phy */
974 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
975 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
976 continue;
977 if (fep->mii_bus->phy_map[phy_id] == NULL)
978 continue;
979 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
980 continue;
Shawn Guob5680e02011-01-05 21:13:13 +0000981 if (dev_id--)
982 continue;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000983 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
984 break;
Bryan Wue6b043d2010-03-31 02:10:44 +0000985 }
986
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000987 if (phy_id >= PHY_MAX_ADDR) {
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000988 printk(KERN_INFO
989 "%s: no PHY, assuming direct connection to switch\n",
990 ndev->name);
Florian Fainelliea51ade92012-02-13 01:23:22 +0000991 strncpy(mdio_bus_id, "fixed-0", MII_BUS_ID_SIZE);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000992 phy_id = 0;
993 }
994
Richard Zhaoa7ed07d2012-01-29 22:08:12 +0000995 snprintf(phy_name, sizeof(phy_name), PHY_ID_FMT, mdio_bus_id, phy_id);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100996 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link, 0,
Shawn Guo230dec62011-09-23 02:12:48 +0000997 fep->phy_interface);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000998 if (IS_ERR(phy_dev)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100999 printk(KERN_ERR "%s: could not attach to PHY\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001000 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001001 }
1002
1003 /* mask with MAC supported features */
Shawn Guo230dec62011-09-23 02:12:48 +00001004 if (id_entry->driver_data & FEC_QUIRK_HAS_GBIT)
1005 phy_dev->supported &= PHY_GBIT_FEATURES;
1006 else
1007 phy_dev->supported &= PHY_BASIC_FEATURES;
1008
Bryan Wue6b043d2010-03-31 02:10:44 +00001009 phy_dev->advertising = phy_dev->supported;
1010
1011 fep->phy_dev = phy_dev;
1012 fep->link = 0;
1013 fep->full_duplex = 0;
1014
Lothar Waßmanna7dd3212011-12-07 21:59:25 +00001015 printk(KERN_INFO
1016 "%s: Freescale FEC PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
1017 ndev->name,
Bryan Wu418bd0d2010-05-28 03:40:39 -07001018 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
1019 fep->phy_dev->irq);
1020
Bryan Wue6b043d2010-03-31 02:10:44 +00001021 return 0;
1022}
1023
1024static int fec_enet_mii_init(struct platform_device *pdev)
1025{
Shawn Guob5680e02011-01-05 21:13:13 +00001026 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001027 struct net_device *ndev = platform_get_drvdata(pdev);
1028 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +00001029 const struct platform_device_id *id_entry =
1030 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001031 int err = -ENXIO, i;
1032
Shawn Guob5680e02011-01-05 21:13:13 +00001033 /*
1034 * The dual fec interfaces are not equivalent with enet-mac.
1035 * Here are the differences:
1036 *
1037 * - fec0 supports MII & RMII modes while fec1 only supports RMII
1038 * - fec0 acts as the 1588 time master while fec1 is slave
1039 * - external phys can only be configured by fec0
1040 *
1041 * That is to say fec1 can not work independently. It only works
1042 * when fec0 is working. The reason behind this design is that the
1043 * second interface is added primarily for Switch mode.
1044 *
1045 * Because of the last point above, both phys are attached on fec0
1046 * mdio interface in board design, and need to be configured by
1047 * fec0 mii_bus.
1048 */
Shawn Guo43af9402011-12-05 05:01:15 +00001049 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && fep->dev_id > 0) {
Shawn Guob5680e02011-01-05 21:13:13 +00001050 /* fec1 uses fec0 mii_bus */
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001051 if (mii_cnt && fec0_mii_bus) {
1052 fep->mii_bus = fec0_mii_bus;
1053 mii_cnt++;
1054 return 0;
1055 }
1056 return -ENOENT;
Shawn Guob5680e02011-01-05 21:13:13 +00001057 }
1058
Bryan Wue6b043d2010-03-31 02:10:44 +00001059 fep->mii_timeout = 0;
1060
1061 /*
1062 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
Shawn Guo230dec62011-09-23 02:12:48 +00001063 *
1064 * The formula for FEC MDC is 'ref_freq / (MII_SPEED x 2)' while
1065 * for ENET-MAC is 'ref_freq / ((MII_SPEED + 1) x 2)'. The i.MX28
1066 * Reference Manual has an error on this, and gets fixed on i.MX6Q
1067 * document.
Bryan Wue6b043d2010-03-31 02:10:44 +00001068 */
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001069 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk_ahb), 5000000);
Shawn Guo230dec62011-09-23 02:12:48 +00001070 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1071 fep->phy_speed--;
1072 fep->phy_speed <<= 1;
Bryan Wue6b043d2010-03-31 02:10:44 +00001073 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1074
1075 fep->mii_bus = mdiobus_alloc();
1076 if (fep->mii_bus == NULL) {
1077 err = -ENOMEM;
1078 goto err_out;
1079 }
1080
1081 fep->mii_bus->name = "fec_enet_mii_bus";
1082 fep->mii_bus->read = fec_enet_mdio_read;
1083 fep->mii_bus->write = fec_enet_mdio_write;
1084 fep->mii_bus->reset = fec_enet_mdio_reset;
Florian Fainelli391420f2012-01-09 23:59:13 +00001085 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
1086 pdev->name, fep->dev_id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +00001087 fep->mii_bus->priv = fep;
1088 fep->mii_bus->parent = &pdev->dev;
1089
1090 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
1091 if (!fep->mii_bus->irq) {
1092 err = -ENOMEM;
1093 goto err_out_free_mdiobus;
1094 }
1095
1096 for (i = 0; i < PHY_MAX_ADDR; i++)
1097 fep->mii_bus->irq[i] = PHY_POLL;
1098
Bryan Wue6b043d2010-03-31 02:10:44 +00001099 if (mdiobus_register(fep->mii_bus))
1100 goto err_out_free_mdio_irq;
1101
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001102 mii_cnt++;
1103
Shawn Guob5680e02011-01-05 21:13:13 +00001104 /* save fec0 mii_bus */
1105 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1106 fec0_mii_bus = fep->mii_bus;
1107
Bryan Wue6b043d2010-03-31 02:10:44 +00001108 return 0;
1109
Bryan Wue6b043d2010-03-31 02:10:44 +00001110err_out_free_mdio_irq:
1111 kfree(fep->mii_bus->irq);
1112err_out_free_mdiobus:
1113 mdiobus_free(fep->mii_bus);
1114err_out:
1115 return err;
1116}
1117
1118static void fec_enet_mii_remove(struct fec_enet_private *fep)
1119{
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001120 if (--mii_cnt == 0) {
1121 mdiobus_unregister(fep->mii_bus);
1122 kfree(fep->mii_bus->irq);
1123 mdiobus_free(fep->mii_bus);
1124 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001125}
1126
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001127static int fec_enet_get_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001128 struct ethtool_cmd *cmd)
1129{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001130 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001131 struct phy_device *phydev = fep->phy_dev;
1132
1133 if (!phydev)
1134 return -ENODEV;
1135
1136 return phy_ethtool_gset(phydev, cmd);
1137}
1138
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001139static int fec_enet_set_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001140 struct ethtool_cmd *cmd)
1141{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001142 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001143 struct phy_device *phydev = fep->phy_dev;
1144
1145 if (!phydev)
1146 return -ENODEV;
1147
1148 return phy_ethtool_sset(phydev, cmd);
1149}
1150
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001151static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001152 struct ethtool_drvinfo *info)
1153{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001154 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Bryan Wue6b043d2010-03-31 02:10:44 +00001156 strcpy(info->driver, fep->pdev->dev.driver->name);
1157 strcpy(info->version, "Revision: 1.0");
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001158 strcpy(info->bus_info, dev_name(&ndev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
Bryan Wue6b043d2010-03-31 02:10:44 +00001160
stephen hemminger9b07be42012-01-04 12:59:49 +00001161static const struct ethtool_ops fec_enet_ethtool_ops = {
Bryan Wue6b043d2010-03-31 02:10:44 +00001162 .get_settings = fec_enet_get_settings,
1163 .set_settings = fec_enet_set_settings,
1164 .get_drvinfo = fec_enet_get_drvinfo,
1165 .get_link = ethtool_op_get_link,
Richard Cochranec567bc2012-04-03 22:59:28 +00001166 .get_ts_info = ethtool_op_get_ts_info,
Bryan Wue6b043d2010-03-31 02:10:44 +00001167};
1168
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001169static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00001170{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001171 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001172 struct phy_device *phydev = fep->phy_dev;
1173
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001174 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00001175 return -EINVAL;
1176
1177 if (!phydev)
1178 return -ENODEV;
1179
Richard Cochran28b04112010-07-17 08:48:55 +00001180 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00001181}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001183static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001184{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001185 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001186 int i;
1187 struct sk_buff *skb;
1188 struct bufdesc *bdp;
1189
1190 bdp = fep->rx_bd_base;
1191 for (i = 0; i < RX_RING_SIZE; i++) {
1192 skb = fep->rx_skbuff[i];
1193
1194 if (bdp->cbd_bufaddr)
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001195 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001196 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1197 if (skb)
1198 dev_kfree_skb(skb);
1199 bdp++;
1200 }
1201
1202 bdp = fep->tx_bd_base;
1203 for (i = 0; i < TX_RING_SIZE; i++)
1204 kfree(fep->tx_bounce[i]);
1205}
1206
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001207static int fec_enet_alloc_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001208{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001209 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001210 int i;
1211 struct sk_buff *skb;
1212 struct bufdesc *bdp;
1213
1214 bdp = fep->rx_bd_base;
1215 for (i = 0; i < RX_RING_SIZE; i++) {
Fabio Estevamb72061a2012-02-07 08:27:31 +00001216 skb = netdev_alloc_skb(ndev, FEC_ENET_RX_FRSIZE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001217 if (!skb) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001218 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001219 return -ENOMEM;
1220 }
1221 fep->rx_skbuff[i] = skb;
1222
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001223 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, skb->data,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001224 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1225 bdp->cbd_sc = BD_ENET_RX_EMPTY;
1226 bdp++;
1227 }
1228
1229 /* Set the last buffer to wrap. */
1230 bdp--;
1231 bdp->cbd_sc |= BD_SC_WRAP;
1232
1233 bdp = fep->tx_bd_base;
1234 for (i = 0; i < TX_RING_SIZE; i++) {
1235 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
1236
1237 bdp->cbd_sc = 0;
1238 bdp->cbd_bufaddr = 0;
1239 bdp++;
1240 }
1241
1242 /* Set the last buffer to wrap. */
1243 bdp--;
1244 bdp->cbd_sc |= BD_SC_WRAP;
1245
1246 return 0;
1247}
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001250fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001252 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001253 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 /* I should reset the ring buffers here, but I don't yet know
1256 * a simple way to do that.
1257 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001259 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001260 if (ret)
1261 return ret;
1262
Bryan Wu418bd0d2010-05-28 03:40:39 -07001263 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001264 ret = fec_enet_mii_probe(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001265 if (ret) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001266 fec_enet_free_buffers(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001267 return ret;
1268 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001269 phy_start(fep->phy_dev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001270 netif_start_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 fep->opened = 1;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
1275static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001276fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001278 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Sascha Hauer22f6b862009-04-15 01:32:18 +00001280 /* Don't know what to do yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 fep->opened = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001282 netif_stop_queue(ndev);
1283 fec_stop(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001285 if (fep->phy_dev) {
1286 phy_stop(fep->phy_dev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001287 phy_disconnect(fep->phy_dev);
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001288 }
Bryan Wu418bd0d2010-05-28 03:40:39 -07001289
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001290 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return 0;
1293}
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295/* Set or clear the multicast filter for this adaptor.
1296 * Skeleton taken from sunlance driver.
1297 * The CPM Ethernet implementation allows Multicast as well as individual
1298 * MAC address filtering. Some of the drivers check to make sure it is
1299 * a group multicast address, and discard those that are not. I guess I
1300 * will do the same for now, but just remove the test if you want
1301 * individual filtering as well (do the upper net layers want or support
1302 * this kind of feature?).
1303 */
1304
1305#define HASH_BITS 6 /* #bits in hash */
1306#define CRC32_POLY 0xEDB88320
1307
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001308static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001310 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001311 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00001312 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 unsigned char hash;
1314
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001315 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00001316 tmp = readl(fep->hwp + FEC_R_CNTRL);
1317 tmp |= 0x8;
1318 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00001319 return;
1320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Sascha Hauer4e831832009-04-15 01:32:19 +00001322 tmp = readl(fep->hwp + FEC_R_CNTRL);
1323 tmp &= ~0x8;
1324 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001325
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001326 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001327 /* Catch all multicast addresses, so set the
1328 * filter to all 1's
1329 */
1330 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1331 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Sascha Hauer4e831832009-04-15 01:32:19 +00001333 return;
1334 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001335
Sascha Hauer4e831832009-04-15 01:32:19 +00001336 /* Clear filter and add the addresses in hash register
1337 */
1338 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1339 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001341 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001342 /* calculate crc32 value of mac address */
1343 crc = 0xffffffff;
1344
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001345 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001346 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00001347 for (bit = 0; bit < 8; bit++, data >>= 1) {
1348 crc = (crc >> 1) ^
1349 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
1351 }
Sascha Hauer4e831832009-04-15 01:32:19 +00001352
1353 /* only upper 6 bits (HASH_BITS) are used
1354 * which point to specific bit in he hash registers
1355 */
1356 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1357
1358 if (hash > 31) {
1359 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1360 tmp |= 1 << (hash - 32);
1361 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1362 } else {
1363 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1364 tmp |= 1 << hash;
1365 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368}
1369
Sascha Hauer22f6b862009-04-15 01:32:18 +00001370/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00001371static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001372fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001374 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00001375 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Sascha Hauer009fda82009-04-15 01:32:23 +00001377 if (!is_valid_ether_addr(addr->sa_data))
1378 return -EADDRNOTAVAIL;
1379
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001380 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
Sascha Hauer009fda82009-04-15 01:32:23 +00001381
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001382 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
1383 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00001384 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001385 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07001386 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00001387 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00001390#ifdef CONFIG_NET_POLL_CONTROLLER
1391/*
1392 * fec_poll_controller: FEC Poll controller function
1393 * @dev: The FEC network adapter
1394 *
1395 * Polled functionality used by netconsole and others in non interrupt mode
1396 *
1397 */
1398void fec_poll_controller(struct net_device *dev)
1399{
1400 int i;
1401 struct fec_enet_private *fep = netdev_priv(dev);
1402
1403 for (i = 0; i < FEC_IRQ_NUM; i++) {
1404 if (fep->irq[i] > 0) {
1405 disable_irq(fep->irq[i]);
1406 fec_enet_interrupt(fep->irq[i], dev);
1407 enable_irq(fep->irq[i]);
1408 }
1409 }
1410}
1411#endif
1412
Sascha Hauer009fda82009-04-15 01:32:23 +00001413static const struct net_device_ops fec_netdev_ops = {
1414 .ndo_open = fec_enet_open,
1415 .ndo_stop = fec_enet_close,
1416 .ndo_start_xmit = fec_enet_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001417 .ndo_set_rx_mode = set_multicast_list,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00001418 .ndo_change_mtu = eth_change_mtu,
Sascha Hauer009fda82009-04-15 01:32:23 +00001419 .ndo_validate_addr = eth_validate_addr,
1420 .ndo_tx_timeout = fec_timeout,
1421 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001422 .ndo_do_ioctl = fec_enet_ioctl,
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00001423#ifdef CONFIG_NET_POLL_CONTROLLER
1424 .ndo_poll_controller = fec_poll_controller,
1425#endif
Sascha Hauer009fda82009-04-15 01:32:23 +00001426};
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 /*
1429 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00001430 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001432static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001434 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001435 struct bufdesc *cbd_base;
Rob Herring633e7532010-02-05 08:56:20 +00001436 struct bufdesc *bdp;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001437 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001439 /* Allocate memory for buffer descriptors. */
1440 cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
1441 GFP_KERNEL);
1442 if (!cbd_base) {
Greg Ungerer562d2f82005-11-07 14:09:50 +10001443 printk("FEC: allocate descriptor memory failed?\n");
1444 return -ENOMEM;
1445 }
1446
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001447 spin_lock_init(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001448
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001449 fep->netdev = ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Shawn Guo49da97d2011-01-05 21:13:11 +00001451 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001452 fec_get_mac(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001454 /* Set receive and transmit descriptor base. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 fep->rx_bd_base = cbd_base;
1456 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1457
Sascha Hauer22f6b862009-04-15 01:32:18 +00001458 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001459 ndev->watchdog_timeo = TX_TIMEOUT;
1460 ndev->netdev_ops = &fec_netdev_ops;
1461 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00001462
1463 /* Initialize the receive buffer descriptors. */
1464 bdp = fep->rx_bd_base;
1465 for (i = 0; i < RX_RING_SIZE; i++) {
1466
1467 /* Initialize the BD for every fragment in the page. */
1468 bdp->cbd_sc = 0;
1469 bdp++;
1470 }
1471
1472 /* Set the last buffer to wrap */
1473 bdp--;
1474 bdp->cbd_sc |= BD_SC_WRAP;
1475
1476 /* ...and the same for transmit */
1477 bdp = fep->tx_bd_base;
1478 for (i = 0; i < TX_RING_SIZE; i++) {
1479
1480 /* Initialize the BD for every fragment in the page. */
1481 bdp->cbd_sc = 0;
1482 bdp->cbd_bufaddr = 0;
1483 bdp++;
1484 }
1485
1486 /* Set the last buffer to wrap */
1487 bdp--;
1488 bdp->cbd_sc |= BD_SC_WRAP;
1489
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001490 fec_restart(ndev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return 0;
1493}
1494
Shawn Guoca2cc332011-06-25 02:04:35 +08001495#ifdef CONFIG_OF
1496static int __devinit fec_get_phy_mode_dt(struct platform_device *pdev)
1497{
1498 struct device_node *np = pdev->dev.of_node;
1499
1500 if (np)
1501 return of_get_phy_mode(np);
1502
1503 return -ENODEV;
1504}
1505
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001506static void __devinit fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08001507{
1508 int err, phy_reset;
1509 struct device_node *np = pdev->dev.of_node;
1510
1511 if (!np)
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001512 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08001513
1514 phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
1515 err = gpio_request_one(phy_reset, GPIOF_OUT_INIT_LOW, "phy-reset");
1516 if (err) {
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001517 pr_debug("FEC: failed to get gpio phy-reset: %d\n", err);
1518 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08001519 }
1520 msleep(1);
1521 gpio_set_value(phy_reset, 1);
Shawn Guoca2cc332011-06-25 02:04:35 +08001522}
1523#else /* CONFIG_OF */
1524static inline int fec_get_phy_mode_dt(struct platform_device *pdev)
1525{
1526 return -ENODEV;
1527}
1528
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001529static inline void fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08001530{
1531 /*
1532 * In case of platform probe, the reset has been done
1533 * by machine code.
1534 */
Shawn Guoca2cc332011-06-25 02:04:35 +08001535}
1536#endif /* CONFIG_OF */
1537
Sascha Haueread73182009-01-28 23:03:11 +00001538static int __devinit
1539fec_probe(struct platform_device *pdev)
1540{
1541 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001542 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00001543 struct net_device *ndev;
1544 int i, irq, ret = 0;
1545 struct resource *r;
Shawn Guoca2cc332011-06-25 02:04:35 +08001546 const struct of_device_id *of_id;
Shawn Guo43af9402011-12-05 05:01:15 +00001547 static int dev_id;
Shawn Guob2bccee2012-05-06 20:24:04 +08001548 struct pinctrl *pinctrl;
Shawn Guoca2cc332011-06-25 02:04:35 +08001549
1550 of_id = of_match_device(fec_dt_ids, &pdev->dev);
1551 if (of_id)
1552 pdev->id_entry = of_id->data;
Sascha Haueread73182009-01-28 23:03:11 +00001553
1554 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1555 if (!r)
1556 return -ENXIO;
1557
1558 r = request_mem_region(r->start, resource_size(r), pdev->name);
1559 if (!r)
1560 return -EBUSY;
1561
1562 /* Init network device */
1563 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001564 if (!ndev) {
1565 ret = -ENOMEM;
1566 goto failed_alloc_etherdev;
1567 }
Sascha Haueread73182009-01-28 23:03:11 +00001568
1569 SET_NETDEV_DEV(ndev, &pdev->dev);
1570
1571 /* setup board info structure */
1572 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001573
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001574 fep->hwp = ioremap(r->start, resource_size(r));
Bryan Wue6b043d2010-03-31 02:10:44 +00001575 fep->pdev = pdev;
Shawn Guo43af9402011-12-05 05:01:15 +00001576 fep->dev_id = dev_id++;
Sascha Haueread73182009-01-28 23:03:11 +00001577
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001578 if (!fep->hwp) {
Sascha Haueread73182009-01-28 23:03:11 +00001579 ret = -ENOMEM;
1580 goto failed_ioremap;
1581 }
1582
1583 platform_set_drvdata(pdev, ndev);
1584
Shawn Guoca2cc332011-06-25 02:04:35 +08001585 ret = fec_get_phy_mode_dt(pdev);
1586 if (ret < 0) {
1587 pdata = pdev->dev.platform_data;
1588 if (pdata)
1589 fep->phy_interface = pdata->phy;
1590 else
1591 fep->phy_interface = PHY_INTERFACE_MODE_MII;
1592 } else {
1593 fep->phy_interface = ret;
1594 }
1595
Xiao Jiangc7c83d12011-09-29 02:15:56 +00001596 for (i = 0; i < FEC_IRQ_NUM; i++) {
Sascha Haueread73182009-01-28 23:03:11 +00001597 irq = platform_get_irq(pdev, i);
Lothar Waßmann86f9f2c2011-12-07 21:59:28 +00001598 if (irq < 0) {
1599 if (i)
1600 break;
1601 ret = irq;
1602 goto failed_irq;
1603 }
Sascha Haueread73182009-01-28 23:03:11 +00001604 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1605 if (ret) {
Uwe Kleine-Königb2b09ad2011-01-13 21:49:05 +01001606 while (--i >= 0) {
Sascha Haueread73182009-01-28 23:03:11 +00001607 irq = platform_get_irq(pdev, i);
1608 free_irq(irq, ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001609 }
1610 goto failed_irq;
1611 }
1612 }
1613
Shawn Guob2bccee2012-05-06 20:24:04 +08001614 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
1615 if (IS_ERR(pinctrl)) {
1616 ret = PTR_ERR(pinctrl);
1617 goto failed_pin;
1618 }
1619
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001620 fep->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1621 if (IS_ERR(fep->clk_ipg)) {
1622 ret = PTR_ERR(fep->clk_ipg);
Sascha Haueread73182009-01-28 23:03:11 +00001623 goto failed_clk;
1624 }
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001625
1626 fep->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
1627 if (IS_ERR(fep->clk_ahb)) {
1628 ret = PTR_ERR(fep->clk_ahb);
1629 goto failed_clk;
1630 }
1631
1632 clk_prepare_enable(fep->clk_ahb);
1633 clk_prepare_enable(fep->clk_ipg);
Sascha Haueread73182009-01-28 23:03:11 +00001634
Shawn Guo2ca9b2a2012-06-27 03:45:20 +00001635 fec_reset_phy(pdev);
1636
Shawn Guo8649a232011-01-05 21:13:10 +00001637 ret = fec_enet_init(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001638 if (ret)
1639 goto failed_init;
1640
Bryan Wue6b043d2010-03-31 02:10:44 +00001641 ret = fec_enet_mii_init(pdev);
1642 if (ret)
1643 goto failed_mii_init;
1644
Oskar Schirmer03c698c2010-10-07 02:30:30 +00001645 /* Carrier starts down, phylib will bring it up */
1646 netif_carrier_off(ndev);
1647
Sascha Haueread73182009-01-28 23:03:11 +00001648 ret = register_netdev(ndev);
1649 if (ret)
1650 goto failed_register;
1651
1652 return 0;
1653
1654failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00001655 fec_enet_mii_remove(fep);
1656failed_mii_init:
Sascha Haueread73182009-01-28 23:03:11 +00001657failed_init:
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001658 clk_disable_unprepare(fep->clk_ahb);
1659 clk_disable_unprepare(fep->clk_ipg);
Shawn Guob2bccee2012-05-06 20:24:04 +08001660failed_pin:
Sascha Haueread73182009-01-28 23:03:11 +00001661failed_clk:
Xiao Jiangc7c83d12011-09-29 02:15:56 +00001662 for (i = 0; i < FEC_IRQ_NUM; i++) {
Sascha Haueread73182009-01-28 23:03:11 +00001663 irq = platform_get_irq(pdev, i);
1664 if (irq > 0)
1665 free_irq(irq, ndev);
1666 }
1667failed_irq:
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001668 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001669failed_ioremap:
1670 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001671failed_alloc_etherdev:
1672 release_mem_region(r->start, resource_size(r));
Sascha Haueread73182009-01-28 23:03:11 +00001673
1674 return ret;
1675}
1676
1677static int __devexit
1678fec_drv_remove(struct platform_device *pdev)
1679{
1680 struct net_device *ndev = platform_get_drvdata(pdev);
1681 struct fec_enet_private *fep = netdev_priv(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001682 struct resource *r;
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001683 int i;
Sascha Haueread73182009-01-28 23:03:11 +00001684
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001685 unregister_netdev(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001686 fec_enet_mii_remove(fep);
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001687 for (i = 0; i < FEC_IRQ_NUM; i++) {
1688 int irq = platform_get_irq(pdev, i);
1689 if (irq > 0)
1690 free_irq(irq, ndev);
1691 }
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001692 clk_disable_unprepare(fep->clk_ahb);
1693 clk_disable_unprepare(fep->clk_ipg);
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001694 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001695 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001696
1697 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1698 BUG_ON(!r);
1699 release_mem_region(r->start, resource_size(r));
1700
Uwe Kleine-Königb3cde362011-01-25 18:03:37 +01001701 platform_set_drvdata(pdev, NULL);
1702
Sascha Haueread73182009-01-28 23:03:11 +00001703 return 0;
1704}
1705
Denis Kirjanov59d42892010-06-02 09:27:04 +00001706#ifdef CONFIG_PM
Sascha Haueread73182009-01-28 23:03:11 +00001707static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001708fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001709{
Eric Benard87cad5c2010-06-18 04:19:54 +00001710 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001711 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001712
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001713 if (netif_running(ndev)) {
1714 fec_stop(ndev);
1715 netif_device_detach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001716 }
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001717 clk_disable_unprepare(fep->clk_ahb);
1718 clk_disable_unprepare(fep->clk_ipg);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001719
Sascha Haueread73182009-01-28 23:03:11 +00001720 return 0;
1721}
1722
1723static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001724fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001725{
Eric Benard87cad5c2010-06-18 04:19:54 +00001726 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001727 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001728
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001729 clk_prepare_enable(fep->clk_ahb);
1730 clk_prepare_enable(fep->clk_ipg);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001731 if (netif_running(ndev)) {
1732 fec_restart(ndev, fep->full_duplex);
1733 netif_device_attach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001734 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001735
Sascha Haueread73182009-01-28 23:03:11 +00001736 return 0;
1737}
1738
Denis Kirjanov59d42892010-06-02 09:27:04 +00001739static const struct dev_pm_ops fec_pm_ops = {
1740 .suspend = fec_suspend,
1741 .resume = fec_resume,
1742 .freeze = fec_suspend,
1743 .thaw = fec_resume,
1744 .poweroff = fec_suspend,
1745 .restore = fec_resume,
1746};
Eric Benard87cad5c2010-06-18 04:19:54 +00001747#endif
Denis Kirjanov59d42892010-06-02 09:27:04 +00001748
Sascha Haueread73182009-01-28 23:03:11 +00001749static struct platform_driver fec_driver = {
1750 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00001751 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00001752 .owner = THIS_MODULE,
1753#ifdef CONFIG_PM
1754 .pm = &fec_pm_ops,
1755#endif
Shawn Guoca2cc332011-06-25 02:04:35 +08001756 .of_match_table = fec_dt_ids,
Sascha Haueread73182009-01-28 23:03:11 +00001757 },
Shawn Guob5680e02011-01-05 21:13:13 +00001758 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00001759 .probe = fec_probe,
1760 .remove = __devexit_p(fec_drv_remove),
Sascha Haueread73182009-01-28 23:03:11 +00001761};
1762
Fabio Estevamaaca2372012-01-23 16:44:50 +00001763module_platform_driver(fec_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765MODULE_LICENSE("GPL");