blob: f174070646f507df6f34e90042cf98836eb21759 [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>
Shawn Guo5fa9c0f2012-06-27 03:45:21 +000052#include <linux/regulator/consumer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Greg Ungerer080853a2007-07-30 16:28:46 +100054#include <asm/cacheflush.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000055
Shawn Guob5680e02011-01-05 21:13:13 +000056#ifndef CONFIG_ARM
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/coldfire.h>
58#include <asm/mcfsim.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000059#endif
Sascha Hauer6f501b12009-01-28 23:03:05 +000060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include "fec.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Uwe Kleine-König085e79e2011-01-17 09:52:18 +010063#if defined(CONFIG_ARM)
Sascha Hauer196719e2009-01-28 23:03:10 +000064#define FEC_ALIGNMENT 0xf
65#else
66#define FEC_ALIGNMENT 0x3
67#endif
68
Shawn Guob5680e02011-01-05 21:13:13 +000069#define DRIVER_NAME "fec"
70
71/* Controller is ENET-MAC */
72#define FEC_QUIRK_ENET_MAC (1 << 0)
73/* Controller needs driver to swap frame */
74#define FEC_QUIRK_SWAP_FRAME (1 << 1)
Shawn Guo0ca1e292011-07-01 18:11:22 +080075/* Controller uses gasket */
76#define FEC_QUIRK_USE_GASKET (1 << 2)
Shawn Guo230dec62011-09-23 02:12:48 +000077/* Controller has GBIT support */
78#define FEC_QUIRK_HAS_GBIT (1 << 3)
Shawn Guob5680e02011-01-05 21:13:13 +000079
80static struct platform_device_id fec_devtype[] = {
81 {
Shawn Guo0ca1e292011-07-01 18:11:22 +080082 /* keep it for coldfire */
Shawn Guob5680e02011-01-05 21:13:13 +000083 .name = DRIVER_NAME,
84 .driver_data = 0,
85 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +080086 .name = "imx25-fec",
87 .driver_data = FEC_QUIRK_USE_GASKET,
88 }, {
89 .name = "imx27-fec",
90 .driver_data = 0,
91 }, {
Shawn Guob5680e02011-01-05 21:13:13 +000092 .name = "imx28-fec",
93 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME,
Shawn Guo0ca1e292011-07-01 18:11:22 +080094 }, {
Shawn Guo230dec62011-09-23 02:12:48 +000095 .name = "imx6q-fec",
96 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT,
97 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +080098 /* sentinel */
99 }
Shawn Guob5680e02011-01-05 21:13:13 +0000100};
Shawn Guo0ca1e292011-07-01 18:11:22 +0800101MODULE_DEVICE_TABLE(platform, fec_devtype);
Shawn Guob5680e02011-01-05 21:13:13 +0000102
Shawn Guoca2cc332011-06-25 02:04:35 +0800103enum imx_fec_type {
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000104 IMX25_FEC = 1, /* runs on i.mx25/50/53 */
Shawn Guoca2cc332011-06-25 02:04:35 +0800105 IMX27_FEC, /* runs on i.mx27/35/51 */
106 IMX28_FEC,
Shawn Guo230dec62011-09-23 02:12:48 +0000107 IMX6Q_FEC,
Shawn Guoca2cc332011-06-25 02:04:35 +0800108};
109
110static const struct of_device_id fec_dt_ids[] = {
111 { .compatible = "fsl,imx25-fec", .data = &fec_devtype[IMX25_FEC], },
112 { .compatible = "fsl,imx27-fec", .data = &fec_devtype[IMX27_FEC], },
113 { .compatible = "fsl,imx28-fec", .data = &fec_devtype[IMX28_FEC], },
Shawn Guo230dec62011-09-23 02:12:48 +0000114 { .compatible = "fsl,imx6q-fec", .data = &fec_devtype[IMX6Q_FEC], },
Shawn Guoca2cc332011-06-25 02:04:35 +0800115 { /* sentinel */ }
116};
117MODULE_DEVICE_TABLE(of, fec_dt_ids);
118
Shawn Guo49da97d2011-01-05 21:13:11 +0000119static unsigned char macaddr[ETH_ALEN];
120module_param_array(macaddr, byte, NULL, 0);
121MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
122
Greg Ungerer87f4abb2008-06-06 15:55:36 +1000123#if defined(CONFIG_M5272)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
125 * Some hardware gets it MAC address out of local flash memory.
126 * if this is non-zero then assume it is the address to get MAC from.
127 */
128#if defined(CONFIG_NETtel)
129#define FEC_FLASHMAC 0xf0006006
130#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
131#define FEC_FLASHMAC 0xf0006000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#elif defined(CONFIG_CANCam)
133#define FEC_FLASHMAC 0xf0020000
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000134#elif defined (CONFIG_M5272C3)
135#define FEC_FLASHMAC (0xffe04000 + 4)
136#elif defined(CONFIG_MOD5272)
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000137#define FEC_FLASHMAC 0xffc0406b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#else
139#define FEC_FLASHMAC 0
140#endif
Greg Ungerer43be6362009-02-26 22:42:51 -0800141#endif /* CONFIG_M5272 */
Sascha Haueread73182009-01-28 23:03:11 +0000142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/* The number of Tx and Rx buffers. These are allocated from the page
144 * pool. The code may assume these are power of two, so it it best
145 * to keep them that size.
146 * We don't need to allocate pages for the transmitter. We just use
147 * the skbuffer directly.
148 */
149#define FEC_ENET_RX_PAGES 8
150#define FEC_ENET_RX_FRSIZE 2048
151#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE)
152#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
153#define FEC_ENET_TX_FRSIZE 2048
154#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
155#define TX_RING_SIZE 16 /* Must be power of two */
156#define TX_RING_MOD_MASK 15 /* for this to work */
157
Greg Ungerer562d2f82005-11-07 14:09:50 +1000158#if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
Matt Waddel6b265292006-06-27 13:10:56 +1000159#error "FEC: descriptor ring size constants too large"
Greg Ungerer562d2f82005-11-07 14:09:50 +1000160#endif
161
Sascha Hauer22f6b862009-04-15 01:32:18 +0000162/* Interrupt events/masks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
164#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
165#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */
166#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */
167#define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */
168#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */
169#define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */
170#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */
171#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */
172#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */
173
Wolfram Sang4bee1f92010-07-21 02:51:13 +0000174#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII)
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/* The FEC stores dest/src/type, data, and checksum for receive packets.
177 */
178#define PKT_MAXBUF_SIZE 1518
179#define PKT_MINBUF_SIZE 64
180#define PKT_MAXBLR_SIZE 1520
181
Xiao Jiangc7c83d12011-09-29 02:15:56 +0000182/* This device has up to three irqs on some platforms */
183#define FEC_IRQ_NUM 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185/*
Matt Waddel6b265292006-06-27 13:10:56 +1000186 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 * size bits. Other FEC hardware does not, so we need to take that into
188 * account when setting it.
189 */
Greg Ungerer562d2f82005-11-07 14:09:50 +1000190#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Uwe Kleine-König085e79e2011-01-17 09:52:18 +0100191 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
193#else
194#define OPT_FRAME_SIZE 0
195#endif
196
197/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and
198 * tx_bd_base always point to the base of the buffer descriptors. The
199 * cur_rx and cur_tx point to the currently available buffer.
200 * The dirty_tx tracks the current buffer that is being sent by the
201 * controller. The cur_tx and dirty_tx are equal under both completely
202 * empty and completely full conditions. The empty/ready indicator in
203 * the buffer descriptor determines the actual condition.
204 */
205struct fec_enet_private {
206 /* Hardware registers of the FEC device */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000207 void __iomem *hwp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Greg Ungerercb84d6e2007-07-30 16:29:09 +1000209 struct net_device *netdev;
210
Sascha Hauerf4d40de2012-03-07 09:30:49 +0100211 struct clk *clk_ipg;
212 struct clk *clk_ahb;
Sascha Haueread73182009-01-28 23:03:11 +0000213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
215 unsigned char *tx_bounce[TX_RING_SIZE];
216 struct sk_buff* tx_skbuff[TX_RING_SIZE];
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000217 struct sk_buff* rx_skbuff[RX_RING_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 ushort skb_cur;
219 ushort skb_dirty;
220
Sascha Hauer22f6b862009-04-15 01:32:18 +0000221 /* CPM dual port RAM relative addresses */
Sascha Hauer4661e752009-01-28 23:03:07 +0000222 dma_addr_t bd_dma;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000223 /* Address of Rx and Tx buffers */
Sascha Hauer2e285322009-04-15 01:32:16 +0000224 struct bufdesc *rx_bd_base;
225 struct bufdesc *tx_bd_base;
226 /* The next free ring entry */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100227 struct bufdesc *cur_rx, *cur_tx;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000228 /* The ring entries to be free()ed */
Sascha Hauer2e285322009-04-15 01:32:16 +0000229 struct bufdesc *dirty_tx;
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 uint tx_full;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000232 /* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
233 spinlock_t hw_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100235 struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 int opened;
Shawn Guo43af9402011-12-05 05:01:15 +0000238 int dev_id;
Bryan Wue6b043d2010-03-31 02:10:44 +0000239
240 /* Phylib and MDIO interface */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100241 struct mii_bus *mii_bus;
242 struct phy_device *phy_dev;
243 int mii_timeout;
244 uint phy_speed;
Baruch Siach5eb32bd2010-05-24 00:36:13 -0700245 phy_interface_t phy_interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 int link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 int full_duplex;
Baruch Siach97b72e42010-07-11 21:12:51 +0000248 struct completion mdio_done;
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +0000249 int irq[FEC_IRQ_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250};
251
Bryan Wue6b043d2010-03-31 02:10:44 +0000252/* FEC MII MMFR bits definition */
253#define FEC_MMFR_ST (1 << 30)
254#define FEC_MMFR_OP_READ (2 << 28)
255#define FEC_MMFR_OP_WRITE (1 << 28)
256#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
257#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
258#define FEC_MMFR_TA (2 << 16)
259#define FEC_MMFR_DATA(v) (v & 0xffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Rogerio Pimentelc3b084c2011-12-27 14:07:37 -0500261#define FEC_MII_TIMEOUT 30000 /* us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Sascha Hauer22f6b862009-04-15 01:32:18 +0000263/* Transmitter timeout */
264#define TX_TIMEOUT (2 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Lothar Waßmanne163cc92011-12-07 21:59:31 +0000266static int mii_cnt;
267
Shawn Guob5680e02011-01-05 21:13:13 +0000268static void *swap_buffer(void *bufaddr, int len)
269{
270 int i;
271 unsigned int *buf = bufaddr;
272
273 for (i = 0; i < (len + 3) / 4; i++, buf++)
274 *buf = cpu_to_be32(*buf);
275
276 return bufaddr;
277}
278
Denis Kirjanovc7621cb2010-06-02 09:15:47 +0000279static netdev_tx_t
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100280fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100282 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000283 const struct platform_device_id *id_entry =
284 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000285 struct bufdesc *bdp;
Greg Ungerer9555b312009-08-06 17:58:18 +0000286 void *bufaddr;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000287 unsigned short status;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000288 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (!fep->link) {
291 /* Link is down or autonegotiation is in progress. */
Patrick McHardy5b548142009-06-12 06:22:29 +0000292 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000295 spin_lock_irqsave(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* Fill in a Tx ring entry */
297 bdp = fep->cur_tx;
298
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000299 status = bdp->cbd_sc;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000300
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000301 if (status & BD_ENET_TX_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 /* Ooops. All transmit buffers are full. Bail out.
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100303 * This should not happen, since ndev->tbusy should be set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100305 printk("%s: tx queue full!.\n", ndev->name);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000306 spin_unlock_irqrestore(&fep->hw_lock, flags);
Patrick McHardy5b548142009-06-12 06:22:29 +0000307 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Sascha Hauer22f6b862009-04-15 01:32:18 +0000310 /* Clear all of the status flags */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000311 status &= ~BD_ENET_TX_STATS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Sascha Hauer22f6b862009-04-15 01:32:18 +0000313 /* Set buffer length and buffer pointer */
Greg Ungerer9555b312009-08-06 17:58:18 +0000314 bufaddr = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 bdp->cbd_datlen = skb->len;
316
317 /*
Sascha Hauer22f6b862009-04-15 01:32:18 +0000318 * On some FEC implementations data must be aligned on
319 * 4-byte boundaries. Use bounce buffers to copy data
320 * and get it aligned. Ugh.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 */
Greg Ungerer9555b312009-08-06 17:58:18 +0000322 if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 unsigned int index;
324 index = bdp - fep->tx_bd_base;
Uwe Kleine-König8a73b0b2011-01-13 21:34:31 +0100325 memcpy(fep->tx_bounce[index], skb->data, skb->len);
Greg Ungerer9555b312009-08-06 17:58:18 +0000326 bufaddr = fep->tx_bounce[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328
Shawn Guob5680e02011-01-05 21:13:13 +0000329 /*
330 * Some design made an incorrect assumption on endian mode of
331 * the system that it's running on. As the result, driver has to
332 * swap every frame going to and coming from the controller.
333 */
334 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
335 swap_buffer(bufaddr, skb->len);
336
Sascha Hauer22f6b862009-04-15 01:32:18 +0000337 /* Save skb pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 fep->tx_skbuff[fep->skb_cur] = skb;
339
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100340 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 /* Push the data cache so the CPM does not get stale memory
344 * data.
345 */
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100346 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000347 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000349 /* Send it on its way. Tell FEC it's ready, interrupt when done,
350 * it's the last BD of the frame, and to put the CRC on the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000352 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000354 bdp->cbd_sc = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 /* Trigger transmission start */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000357 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Sascha Hauer22f6b862009-04-15 01:32:18 +0000359 /* If this was the last BD in the ring, start at the beginning again. */
360 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 bdp = fep->tx_bd_base;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000362 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 bdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 if (bdp == fep->dirty_tx) {
366 fep->tx_full = 1;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100367 netif_stop_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
369
Sascha Hauer2e285322009-04-15 01:32:16 +0000370 fep->cur_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Richard Cochran18a03b92011-06-12 02:18:59 +0000372 skb_tx_timestamp(skb);
373
Richard Cochrana0087a32011-06-19 03:31:40 +0000374 spin_unlock_irqrestore(&fep->hw_lock, flags);
375
Patrick McHardy6ed10652009-06-23 06:03:08 +0000376 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Uwe Kleine-König45993652011-01-19 20:47:04 +0100379/* This function is called to start or restart the FEC during a link
380 * change. This only happens when switching between half and full
381 * duplex.
382 */
383static void
384fec_restart(struct net_device *ndev, int duplex)
385{
386 struct fec_enet_private *fep = netdev_priv(ndev);
387 const struct platform_device_id *id_entry =
388 platform_get_device_id(fep->pdev);
389 int i;
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100390 u32 temp_mac[2];
391 u32 rcntl = OPT_FRAME_SIZE | 0x04;
Shawn Guo230dec62011-09-23 02:12:48 +0000392 u32 ecntl = 0x2; /* ETHEREN */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100393
394 /* Whack a reset. We should wait for this. */
395 writel(1, fep->hwp + FEC_ECNTRL);
396 udelay(10);
397
398 /*
399 * enet-mac reset will reset mac address registers too,
400 * so need to reconfigure it.
401 */
402 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
403 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
404 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
405 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
406 }
407
408 /* Clear any outstanding interrupt. */
409 writel(0xffc00000, fep->hwp + FEC_IEVENT);
410
411 /* Reset all multicast. */
412 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
413 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
414#ifndef CONFIG_M5272
415 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
416 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
417#endif
418
419 /* Set maximum receive buffer size. */
420 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
421
422 /* Set receive and transmit descriptor base. */
423 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
424 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc) * RX_RING_SIZE,
425 fep->hwp + FEC_X_DES_START);
426
427 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
428 fep->cur_rx = fep->rx_bd_base;
429
430 /* Reset SKB transmit buffers. */
431 fep->skb_cur = fep->skb_dirty = 0;
432 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
433 if (fep->tx_skbuff[i]) {
434 dev_kfree_skb_any(fep->tx_skbuff[i]);
435 fep->tx_skbuff[i] = NULL;
436 }
437 }
438
439 /* Enable MII mode */
440 if (duplex) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100441 /* FD enable */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100442 writel(0x04, fep->hwp + FEC_X_CNTRL);
443 } else {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100444 /* No Rcv on Xmit */
445 rcntl |= 0x02;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100446 writel(0x0, fep->hwp + FEC_X_CNTRL);
447 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100448
Uwe Kleine-König45993652011-01-19 20:47:04 +0100449 fep->full_duplex = duplex;
450
451 /* Set MII speed */
452 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
453
454 /*
455 * The phy interface and speed need to get configured
456 * differently on enet-mac.
457 */
458 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100459 /* Enable flow control and length check */
460 rcntl |= 0x40000000 | 0x00000020;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100461
Shawn Guo230dec62011-09-23 02:12:48 +0000462 /* RGMII, RMII or MII */
463 if (fep->phy_interface == PHY_INTERFACE_MODE_RGMII)
464 rcntl |= (1 << 6);
465 else if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100466 rcntl |= (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100467 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100468 rcntl &= ~(1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100469
Shawn Guo230dec62011-09-23 02:12:48 +0000470 /* 1G, 100M or 10M */
471 if (fep->phy_dev) {
472 if (fep->phy_dev->speed == SPEED_1000)
473 ecntl |= (1 << 5);
474 else if (fep->phy_dev->speed == SPEED_100)
475 rcntl &= ~(1 << 9);
476 else
477 rcntl |= (1 << 9);
478 }
Uwe Kleine-König45993652011-01-19 20:47:04 +0100479 } else {
480#ifdef FEC_MIIGSK_ENR
Shawn Guo0ca1e292011-07-01 18:11:22 +0800481 if (id_entry->driver_data & FEC_QUIRK_USE_GASKET) {
Eric Benard8d82f212012-01-12 06:10:28 +0000482 u32 cfgr;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100483 /* disable the gasket and wait */
484 writel(0, fep->hwp + FEC_MIIGSK_ENR);
485 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
486 udelay(1);
487
488 /*
489 * configure the gasket:
490 * RMII, 50 MHz, no loopback, no echo
Shawn Guo0ca1e292011-07-01 18:11:22 +0800491 * MII, 25 MHz, no loopback, no echo
Uwe Kleine-König45993652011-01-19 20:47:04 +0100492 */
Eric Benard8d82f212012-01-12 06:10:28 +0000493 cfgr = (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
494 ? BM_MIIGSK_CFGR_RMII : BM_MIIGSK_CFGR_MII;
495 if (fep->phy_dev && fep->phy_dev->speed == SPEED_10)
496 cfgr |= BM_MIIGSK_CFGR_FRCONT_10M;
497 writel(cfgr, fep->hwp + FEC_MIIGSK_CFGR);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100498
499 /* re-enable the gasket */
500 writel(2, fep->hwp + FEC_MIIGSK_ENR);
501 }
502#endif
503 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100504 writel(rcntl, fep->hwp + FEC_R_CNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100505
Shawn Guo230dec62011-09-23 02:12:48 +0000506 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
507 /* enable ENET endian swap */
508 ecntl |= (1 << 8);
509 /* enable ENET store and forward mode */
510 writel(1 << 8, fep->hwp + FEC_X_WMRK);
511 }
512
Uwe Kleine-König45993652011-01-19 20:47:04 +0100513 /* And last, enable the transmit and receive processing */
Shawn Guo230dec62011-09-23 02:12:48 +0000514 writel(ecntl, fep->hwp + FEC_ECNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100515 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
516
517 /* Enable interrupts we wish to service */
518 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
519}
520
521static void
522fec_stop(struct net_device *ndev)
523{
524 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +0000525 const struct platform_device_id *id_entry =
526 platform_get_device_id(fep->pdev);
Lothar Waßmann42431dc2011-12-07 21:59:30 +0000527 u32 rmii_mode = readl(fep->hwp + FEC_R_CNTRL) & (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100528
529 /* We cannot expect a graceful transmit stop without link !!! */
530 if (fep->link) {
531 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
532 udelay(10);
533 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
534 printk("fec_stop : Graceful transmit stop did not complete !\n");
535 }
536
537 /* Whack a reset. We should wait for this. */
538 writel(1, fep->hwp + FEC_ECNTRL);
539 udelay(10);
540 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
541 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
Shawn Guo230dec62011-09-23 02:12:48 +0000542
543 /* We have to keep ENET enabled to have MII interrupt stay working */
Lothar Waßmann42431dc2011-12-07 21:59:30 +0000544 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Shawn Guo230dec62011-09-23 02:12:48 +0000545 writel(2, fep->hwp + FEC_ECNTRL);
Lothar Waßmann42431dc2011-12-07 21:59:30 +0000546 writel(rmii_mode, fep->hwp + FEC_R_CNTRL);
547 }
Uwe Kleine-König45993652011-01-19 20:47:04 +0100548}
549
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100552fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100554 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100556 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100558 fec_restart(ndev, fep->full_duplex);
559 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100563fec_enet_tx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 struct fec_enet_private *fep;
Sascha Hauer2e285322009-04-15 01:32:16 +0000566 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000567 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 struct sk_buff *skb;
569
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100570 fep = netdev_priv(ndev);
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000571 spin_lock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 bdp = fep->dirty_tx;
573
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000574 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000575 if (bdp == fep->cur_tx && fep->tx_full == 0)
576 break;
577
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100578 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
579 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000580 bdp->cbd_bufaddr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 skb = fep->tx_skbuff[fep->skb_dirty];
583 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000584 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 BD_ENET_TX_RL | BD_ENET_TX_UN |
586 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100587 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000588 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100589 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000590 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100591 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000592 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100593 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000594 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100595 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000596 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100597 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100599 ndev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000602 if (status & BD_ENET_TX_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 printk("HEY! Enet xmit interrupt and TX_READY.\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +0000604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 /* Deferred means some collisions occurred during transmit,
606 * but we eventually sent the packet OK.
607 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000608 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100609 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400610
Sascha Hauer22f6b862009-04-15 01:32:18 +0000611 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 dev_kfree_skb_any(skb);
613 fep->tx_skbuff[fep->skb_dirty] = NULL;
614 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400615
Sascha Hauer22f6b862009-04-15 01:32:18 +0000616 /* Update pointer to next buffer descriptor to be transmitted */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000617 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 bdp = fep->tx_bd_base;
619 else
620 bdp++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400621
Sascha Hauer22f6b862009-04-15 01:32:18 +0000622 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 */
624 if (fep->tx_full) {
625 fep->tx_full = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100626 if (netif_queue_stopped(ndev))
627 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
629 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000630 fep->dirty_tx = bdp;
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000631 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
634
635/* During a receive, the cur_rx points to the current incoming buffer.
636 * When we update through the ring, if the next incoming buffer has
637 * not been given to the system, we just set the empty indicator,
638 * effectively tossing the packet.
639 */
640static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100641fec_enet_rx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100643 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000644 const struct platform_device_id *id_entry =
645 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000646 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000647 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 struct sk_buff *skb;
649 ushort pkt_len;
650 __u8 *data;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400651
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000652#ifdef CONFIG_M532x
653 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400654#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000656 spin_lock(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /* First, grab all of the stats for the incoming packet.
659 * These get messed up if we get called due to a busy condition.
660 */
661 bdp = fep->cur_rx;
662
Sascha Hauer22f6b862009-04-15 01:32:18 +0000663 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Sascha Hauer22f6b862009-04-15 01:32:18 +0000665 /* Since we have allocated space to hold a complete frame,
666 * the last indicator should be set.
667 */
668 if ((status & BD_ENET_RX_LAST) == 0)
669 printk("FEC ENET: rcv is not +last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Sascha Hauer22f6b862009-04-15 01:32:18 +0000671 if (!fep->opened)
672 goto rx_processing_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Sascha Hauer22f6b862009-04-15 01:32:18 +0000674 /* Check for errors. */
675 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100677 ndev->stats.rx_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000678 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
679 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100680 ndev->stats.rx_length_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000681 }
682 if (status & BD_ENET_RX_NO) /* Frame alignment */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100683 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000684 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100685 ndev->stats.rx_crc_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000686 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100687 ndev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
Sascha Hauer22f6b862009-04-15 01:32:18 +0000689
690 /* Report late collisions as a frame error.
691 * On this error, the BD is closed, but we don't know what we
692 * have in the buffer. So, just drop this frame on the floor.
693 */
694 if (status & BD_ENET_RX_CL) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100695 ndev->stats.rx_errors++;
696 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000697 goto rx_processing_done;
698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Sascha Hauer22f6b862009-04-15 01:32:18 +0000700 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100701 ndev->stats.rx_packets++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000702 pkt_len = bdp->cbd_datlen;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100703 ndev->stats.rx_bytes += pkt_len;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000704 data = (__u8*)__va(bdp->cbd_bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100706 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
707 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerccdc4f12009-01-28 23:03:09 +0000708
Shawn Guob5680e02011-01-05 21:13:13 +0000709 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
710 swap_buffer(data, pkt_len);
711
Sascha Hauer22f6b862009-04-15 01:32:18 +0000712 /* This does 16 byte alignment, exactly what we need.
713 * The packet length includes FCS, but we don't want to
714 * include that when passing upstream as it messes up
715 * bridging applications.
716 */
Fabio Estevamb72061a2012-02-07 08:27:31 +0000717 skb = netdev_alloc_skb(ndev, pkt_len - 4 + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Sascha Hauer85498892009-04-15 01:32:21 +0000719 if (unlikely(!skb)) {
Sascha Hauer22f6b862009-04-15 01:32:18 +0000720 printk("%s: Memory squeeze, dropping packet.\n",
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100721 ndev->name);
722 ndev->stats.rx_dropped++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000723 } else {
Sascha Hauer85498892009-04-15 01:32:21 +0000724 skb_reserve(skb, NET_IP_ALIGN);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000725 skb_put(skb, pkt_len - 4); /* Make room */
726 skb_copy_to_linear_data(skb, data, pkt_len - 4);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100727 skb->protocol = eth_type_trans(skb, ndev);
Richard Cochran18a03b92011-06-12 02:18:59 +0000728 if (!skb_defer_rx_timestamp(skb))
729 netif_rx(skb);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000730 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000731
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100732 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, data,
733 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000734rx_processing_done:
735 /* Clear the status flags for this buffer */
736 status &= ~BD_ENET_RX_STATS;
737
738 /* Mark the buffer empty */
739 status |= BD_ENET_RX_EMPTY;
740 bdp->cbd_sc = status;
741
742 /* Update BD pointer to next entry */
743 if (status & BD_ENET_RX_WRAP)
744 bdp = fep->rx_bd_base;
745 else
746 bdp++;
747 /* Doing this here will keep the FEC running while we process
748 * incoming frames. On a heavily loaded network, we should be
749 * able to keep up at the expense of system resources.
750 */
751 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000753 fep->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000755 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Uwe Kleine-König45993652011-01-19 20:47:04 +0100758static irqreturn_t
759fec_enet_interrupt(int irq, void *dev_id)
760{
761 struct net_device *ndev = dev_id;
762 struct fec_enet_private *fep = netdev_priv(ndev);
763 uint int_events;
764 irqreturn_t ret = IRQ_NONE;
765
766 do {
767 int_events = readl(fep->hwp + FEC_IEVENT);
768 writel(int_events, fep->hwp + FEC_IEVENT);
769
770 if (int_events & FEC_ENET_RXF) {
771 ret = IRQ_HANDLED;
772 fec_enet_rx(ndev);
773 }
774
775 /* Transmit OK, or non-fatal error. Update the buffer
776 * descriptors. FEC handles all errors, we just discover
777 * them as part of the transmit process.
778 */
779 if (int_events & FEC_ENET_TXF) {
780 ret = IRQ_HANDLED;
781 fec_enet_tx(ndev);
782 }
783
784 if (int_events & FEC_ENET_MII) {
785 ret = IRQ_HANDLED;
786 complete(&fep->mdio_done);
787 }
788 } while (int_events);
789
790 return ret;
791}
792
793
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795/* ------------------------------------------------------------------------- */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100796static void __inline__ fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100798 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo49da97d2011-01-05 21:13:11 +0000799 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000800 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Shawn Guo49da97d2011-01-05 21:13:11 +0000802 /*
803 * try to get mac address in following order:
804 *
805 * 1) module parameter via kernel command line in form
806 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
807 */
808 iap = macaddr;
809
Shawn Guoca2cc332011-06-25 02:04:35 +0800810#ifdef CONFIG_OF
Shawn Guo49da97d2011-01-05 21:13:11 +0000811 /*
Shawn Guoca2cc332011-06-25 02:04:35 +0800812 * 2) from device tree data
813 */
814 if (!is_valid_ether_addr(iap)) {
815 struct device_node *np = fep->pdev->dev.of_node;
816 if (np) {
817 const char *mac = of_get_mac_address(np);
818 if (mac)
819 iap = (unsigned char *) mac;
820 }
821 }
822#endif
823
824 /*
825 * 3) from flash or fuse (via platform data)
Shawn Guo49da97d2011-01-05 21:13:11 +0000826 */
827 if (!is_valid_ether_addr(iap)) {
828#ifdef CONFIG_M5272
829 if (FEC_FLASHMAC)
830 iap = (unsigned char *)FEC_FLASHMAC;
831#else
832 if (pdata)
Lothar Waßmann589efdc2011-12-07 21:59:29 +0000833 iap = (unsigned char *)&pdata->mac;
Shawn Guo49da97d2011-01-05 21:13:11 +0000834#endif
835 }
836
837 /*
Shawn Guoca2cc332011-06-25 02:04:35 +0800838 * 4) FEC mac registers set by bootloader
Shawn Guo49da97d2011-01-05 21:13:11 +0000839 */
840 if (!is_valid_ether_addr(iap)) {
841 *((unsigned long *) &tmpaddr[0]) =
842 be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
843 *((unsigned short *) &tmpaddr[4]) =
844 be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 iap = &tmpaddr[0];
846 }
847
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100848 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Shawn Guo49da97d2011-01-05 21:13:11 +0000850 /* Adjust MAC if using macaddr */
851 if (iap == macaddr)
Shawn Guo43af9402011-12-05 05:01:15 +0000852 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855/* ------------------------------------------------------------------------- */
856
Bryan Wue6b043d2010-03-31 02:10:44 +0000857/*
858 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100860static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100862 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000863 struct phy_device *phy_dev = fep->phy_dev;
864 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Bryan Wue6b043d2010-03-31 02:10:44 +0000866 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Bryan Wue6b043d2010-03-31 02:10:44 +0000868 spin_lock_irqsave(&fep->hw_lock, flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400869
Bryan Wue6b043d2010-03-31 02:10:44 +0000870 /* Prevent a state halted on mii error */
871 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
872 phy_dev->state = PHY_RESUMING;
873 goto spin_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
Bryan Wue6b043d2010-03-31 02:10:44 +0000875
876 /* Duplex link change */
877 if (phy_dev->link) {
878 if (fep->full_duplex != phy_dev->duplex) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100879 fec_restart(ndev, phy_dev->duplex);
Lothar Waßmann6ea07222011-12-07 21:59:27 +0000880 /* prevent unnecessary second fec_restart() below */
881 fep->link = phy_dev->link;
Bryan Wue6b043d2010-03-31 02:10:44 +0000882 status_change = 1;
883 }
884 }
885
886 /* Link on or off change */
887 if (phy_dev->link != fep->link) {
888 fep->link = phy_dev->link;
889 if (phy_dev->link)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100890 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000891 else
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100892 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000893 status_change = 1;
894 }
895
896spin_unlock:
897 spin_unlock_irqrestore(&fep->hw_lock, flags);
898
899 if (status_change)
900 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
Bryan Wue6b043d2010-03-31 02:10:44 +0000903static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Bryan Wue6b043d2010-03-31 02:10:44 +0000905 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000906 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000907
908 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000909 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000910
911 /* start a read op */
912 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
913 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
914 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
915
916 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000917 time_left = wait_for_completion_timeout(&fep->mdio_done,
918 usecs_to_jiffies(FEC_MII_TIMEOUT));
919 if (time_left == 0) {
920 fep->mii_timeout = 1;
921 printk(KERN_ERR "FEC: MDIO read timeout\n");
922 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000923 }
924
925 /* return value */
926 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
927}
928
929static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
930 u16 value)
931{
932 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000933 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000934
935 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000936 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000937
Shawn Guo862f0982011-01-05 21:13:09 +0000938 /* start a write op */
939 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +0000940 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
941 FEC_MMFR_TA | FEC_MMFR_DATA(value),
942 fep->hwp + FEC_MII_DATA);
943
944 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000945 time_left = wait_for_completion_timeout(&fep->mdio_done,
946 usecs_to_jiffies(FEC_MII_TIMEOUT));
947 if (time_left == 0) {
948 fep->mii_timeout = 1;
949 printk(KERN_ERR "FEC: MDIO write timeout\n");
950 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000951 }
952
953 return 0;
954}
955
956static int fec_enet_mdio_reset(struct mii_bus *bus)
957{
958 return 0;
959}
960
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100961static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +0000962{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100963 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +0000964 const struct platform_device_id *id_entry =
965 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000966 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000967 char mdio_bus_id[MII_BUS_ID_SIZE];
968 char phy_name[MII_BUS_ID_SIZE + 3];
969 int phy_id;
Shawn Guo43af9402011-12-05 05:01:15 +0000970 int dev_id = fep->dev_id;
Bryan Wue6b043d2010-03-31 02:10:44 +0000971
Bryan Wu418bd0d2010-05-28 03:40:39 -0700972 fep->phy_dev = NULL;
973
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000974 /* check for attached phy */
975 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
976 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
977 continue;
978 if (fep->mii_bus->phy_map[phy_id] == NULL)
979 continue;
980 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
981 continue;
Shawn Guob5680e02011-01-05 21:13:13 +0000982 if (dev_id--)
983 continue;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000984 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
985 break;
Bryan Wue6b043d2010-03-31 02:10:44 +0000986 }
987
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000988 if (phy_id >= PHY_MAX_ADDR) {
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000989 printk(KERN_INFO
990 "%s: no PHY, assuming direct connection to switch\n",
991 ndev->name);
Florian Fainelliea51ade92012-02-13 01:23:22 +0000992 strncpy(mdio_bus_id, "fixed-0", MII_BUS_ID_SIZE);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000993 phy_id = 0;
994 }
995
Richard Zhaoa7ed07d2012-01-29 22:08:12 +0000996 snprintf(phy_name, sizeof(phy_name), PHY_ID_FMT, mdio_bus_id, phy_id);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100997 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link, 0,
Shawn Guo230dec62011-09-23 02:12:48 +0000998 fep->phy_interface);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000999 if (IS_ERR(phy_dev)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001000 printk(KERN_ERR "%s: could not attach to PHY\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001001 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001002 }
1003
1004 /* mask with MAC supported features */
Shawn Guo230dec62011-09-23 02:12:48 +00001005 if (id_entry->driver_data & FEC_QUIRK_HAS_GBIT)
1006 phy_dev->supported &= PHY_GBIT_FEATURES;
1007 else
1008 phy_dev->supported &= PHY_BASIC_FEATURES;
1009
Bryan Wue6b043d2010-03-31 02:10:44 +00001010 phy_dev->advertising = phy_dev->supported;
1011
1012 fep->phy_dev = phy_dev;
1013 fep->link = 0;
1014 fep->full_duplex = 0;
1015
Lothar Waßmanna7dd3212011-12-07 21:59:25 +00001016 printk(KERN_INFO
1017 "%s: Freescale FEC PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
1018 ndev->name,
Bryan Wu418bd0d2010-05-28 03:40:39 -07001019 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
1020 fep->phy_dev->irq);
1021
Bryan Wue6b043d2010-03-31 02:10:44 +00001022 return 0;
1023}
1024
1025static int fec_enet_mii_init(struct platform_device *pdev)
1026{
Shawn Guob5680e02011-01-05 21:13:13 +00001027 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001028 struct net_device *ndev = platform_get_drvdata(pdev);
1029 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +00001030 const struct platform_device_id *id_entry =
1031 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001032 int err = -ENXIO, i;
1033
Shawn Guob5680e02011-01-05 21:13:13 +00001034 /*
1035 * The dual fec interfaces are not equivalent with enet-mac.
1036 * Here are the differences:
1037 *
1038 * - fec0 supports MII & RMII modes while fec1 only supports RMII
1039 * - fec0 acts as the 1588 time master while fec1 is slave
1040 * - external phys can only be configured by fec0
1041 *
1042 * That is to say fec1 can not work independently. It only works
1043 * when fec0 is working. The reason behind this design is that the
1044 * second interface is added primarily for Switch mode.
1045 *
1046 * Because of the last point above, both phys are attached on fec0
1047 * mdio interface in board design, and need to be configured by
1048 * fec0 mii_bus.
1049 */
Shawn Guo43af9402011-12-05 05:01:15 +00001050 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && fep->dev_id > 0) {
Shawn Guob5680e02011-01-05 21:13:13 +00001051 /* fec1 uses fec0 mii_bus */
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001052 if (mii_cnt && fec0_mii_bus) {
1053 fep->mii_bus = fec0_mii_bus;
1054 mii_cnt++;
1055 return 0;
1056 }
1057 return -ENOENT;
Shawn Guob5680e02011-01-05 21:13:13 +00001058 }
1059
Bryan Wue6b043d2010-03-31 02:10:44 +00001060 fep->mii_timeout = 0;
1061
1062 /*
1063 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
Shawn Guo230dec62011-09-23 02:12:48 +00001064 *
1065 * The formula for FEC MDC is 'ref_freq / (MII_SPEED x 2)' while
1066 * for ENET-MAC is 'ref_freq / ((MII_SPEED + 1) x 2)'. The i.MX28
1067 * Reference Manual has an error on this, and gets fixed on i.MX6Q
1068 * document.
Bryan Wue6b043d2010-03-31 02:10:44 +00001069 */
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001070 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk_ahb), 5000000);
Shawn Guo230dec62011-09-23 02:12:48 +00001071 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1072 fep->phy_speed--;
1073 fep->phy_speed <<= 1;
Bryan Wue6b043d2010-03-31 02:10:44 +00001074 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1075
1076 fep->mii_bus = mdiobus_alloc();
1077 if (fep->mii_bus == NULL) {
1078 err = -ENOMEM;
1079 goto err_out;
1080 }
1081
1082 fep->mii_bus->name = "fec_enet_mii_bus";
1083 fep->mii_bus->read = fec_enet_mdio_read;
1084 fep->mii_bus->write = fec_enet_mdio_write;
1085 fep->mii_bus->reset = fec_enet_mdio_reset;
Florian Fainelli391420f2012-01-09 23:59:13 +00001086 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
1087 pdev->name, fep->dev_id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +00001088 fep->mii_bus->priv = fep;
1089 fep->mii_bus->parent = &pdev->dev;
1090
1091 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
1092 if (!fep->mii_bus->irq) {
1093 err = -ENOMEM;
1094 goto err_out_free_mdiobus;
1095 }
1096
1097 for (i = 0; i < PHY_MAX_ADDR; i++)
1098 fep->mii_bus->irq[i] = PHY_POLL;
1099
Bryan Wue6b043d2010-03-31 02:10:44 +00001100 if (mdiobus_register(fep->mii_bus))
1101 goto err_out_free_mdio_irq;
1102
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001103 mii_cnt++;
1104
Shawn Guob5680e02011-01-05 21:13:13 +00001105 /* save fec0 mii_bus */
1106 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1107 fec0_mii_bus = fep->mii_bus;
1108
Bryan Wue6b043d2010-03-31 02:10:44 +00001109 return 0;
1110
Bryan Wue6b043d2010-03-31 02:10:44 +00001111err_out_free_mdio_irq:
1112 kfree(fep->mii_bus->irq);
1113err_out_free_mdiobus:
1114 mdiobus_free(fep->mii_bus);
1115err_out:
1116 return err;
1117}
1118
1119static void fec_enet_mii_remove(struct fec_enet_private *fep)
1120{
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001121 if (--mii_cnt == 0) {
1122 mdiobus_unregister(fep->mii_bus);
1123 kfree(fep->mii_bus->irq);
1124 mdiobus_free(fep->mii_bus);
1125 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001126}
1127
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001128static int fec_enet_get_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001129 struct ethtool_cmd *cmd)
1130{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001131 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001132 struct phy_device *phydev = fep->phy_dev;
1133
1134 if (!phydev)
1135 return -ENODEV;
1136
1137 return phy_ethtool_gset(phydev, cmd);
1138}
1139
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001140static int fec_enet_set_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001141 struct ethtool_cmd *cmd)
1142{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001143 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001144 struct phy_device *phydev = fep->phy_dev;
1145
1146 if (!phydev)
1147 return -ENODEV;
1148
1149 return phy_ethtool_sset(phydev, cmd);
1150}
1151
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001152static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001153 struct ethtool_drvinfo *info)
1154{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001155 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Bryan Wue6b043d2010-03-31 02:10:44 +00001157 strcpy(info->driver, fep->pdev->dev.driver->name);
1158 strcpy(info->version, "Revision: 1.0");
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001159 strcpy(info->bus_info, dev_name(&ndev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
Bryan Wue6b043d2010-03-31 02:10:44 +00001161
stephen hemminger9b07be42012-01-04 12:59:49 +00001162static const struct ethtool_ops fec_enet_ethtool_ops = {
Bryan Wue6b043d2010-03-31 02:10:44 +00001163 .get_settings = fec_enet_get_settings,
1164 .set_settings = fec_enet_set_settings,
1165 .get_drvinfo = fec_enet_get_drvinfo,
1166 .get_link = ethtool_op_get_link,
Richard Cochranec567bc2012-04-03 22:59:28 +00001167 .get_ts_info = ethtool_op_get_ts_info,
Bryan Wue6b043d2010-03-31 02:10:44 +00001168};
1169
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001170static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00001171{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001172 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001173 struct phy_device *phydev = fep->phy_dev;
1174
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001175 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00001176 return -EINVAL;
1177
1178 if (!phydev)
1179 return -ENODEV;
1180
Richard Cochran28b04112010-07-17 08:48:55 +00001181 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00001182}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001184static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001185{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001186 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001187 int i;
1188 struct sk_buff *skb;
1189 struct bufdesc *bdp;
1190
1191 bdp = fep->rx_bd_base;
1192 for (i = 0; i < RX_RING_SIZE; i++) {
1193 skb = fep->rx_skbuff[i];
1194
1195 if (bdp->cbd_bufaddr)
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001196 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001197 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1198 if (skb)
1199 dev_kfree_skb(skb);
1200 bdp++;
1201 }
1202
1203 bdp = fep->tx_bd_base;
1204 for (i = 0; i < TX_RING_SIZE; i++)
1205 kfree(fep->tx_bounce[i]);
1206}
1207
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001208static int fec_enet_alloc_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001209{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001210 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001211 int i;
1212 struct sk_buff *skb;
1213 struct bufdesc *bdp;
1214
1215 bdp = fep->rx_bd_base;
1216 for (i = 0; i < RX_RING_SIZE; i++) {
Fabio Estevamb72061a2012-02-07 08:27:31 +00001217 skb = netdev_alloc_skb(ndev, FEC_ENET_RX_FRSIZE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001218 if (!skb) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001219 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001220 return -ENOMEM;
1221 }
1222 fep->rx_skbuff[i] = skb;
1223
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001224 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, skb->data,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001225 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1226 bdp->cbd_sc = BD_ENET_RX_EMPTY;
1227 bdp++;
1228 }
1229
1230 /* Set the last buffer to wrap. */
1231 bdp--;
1232 bdp->cbd_sc |= BD_SC_WRAP;
1233
1234 bdp = fep->tx_bd_base;
1235 for (i = 0; i < TX_RING_SIZE; i++) {
1236 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
1237
1238 bdp->cbd_sc = 0;
1239 bdp->cbd_bufaddr = 0;
1240 bdp++;
1241 }
1242
1243 /* Set the last buffer to wrap. */
1244 bdp--;
1245 bdp->cbd_sc |= BD_SC_WRAP;
1246
1247 return 0;
1248}
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001251fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001253 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001254 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 /* I should reset the ring buffers here, but I don't yet know
1257 * a simple way to do that.
1258 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001260 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001261 if (ret)
1262 return ret;
1263
Bryan Wu418bd0d2010-05-28 03:40:39 -07001264 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001265 ret = fec_enet_mii_probe(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001266 if (ret) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001267 fec_enet_free_buffers(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001268 return ret;
1269 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001270 phy_start(fep->phy_dev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001271 netif_start_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 fep->opened = 1;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001273 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
1276static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001277fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001279 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Sascha Hauer22f6b862009-04-15 01:32:18 +00001281 /* Don't know what to do yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 fep->opened = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001283 netif_stop_queue(ndev);
1284 fec_stop(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001286 if (fep->phy_dev) {
1287 phy_stop(fep->phy_dev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001288 phy_disconnect(fep->phy_dev);
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001289 }
Bryan Wu418bd0d2010-05-28 03:40:39 -07001290
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001291 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return 0;
1294}
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296/* Set or clear the multicast filter for this adaptor.
1297 * Skeleton taken from sunlance driver.
1298 * The CPM Ethernet implementation allows Multicast as well as individual
1299 * MAC address filtering. Some of the drivers check to make sure it is
1300 * a group multicast address, and discard those that are not. I guess I
1301 * will do the same for now, but just remove the test if you want
1302 * individual filtering as well (do the upper net layers want or support
1303 * this kind of feature?).
1304 */
1305
1306#define HASH_BITS 6 /* #bits in hash */
1307#define CRC32_POLY 0xEDB88320
1308
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001309static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001311 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001312 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00001313 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 unsigned char hash;
1315
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001316 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00001317 tmp = readl(fep->hwp + FEC_R_CNTRL);
1318 tmp |= 0x8;
1319 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00001320 return;
1321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Sascha Hauer4e831832009-04-15 01:32:19 +00001323 tmp = readl(fep->hwp + FEC_R_CNTRL);
1324 tmp &= ~0x8;
1325 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001326
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001327 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001328 /* Catch all multicast addresses, so set the
1329 * filter to all 1's
1330 */
1331 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1332 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Sascha Hauer4e831832009-04-15 01:32:19 +00001334 return;
1335 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001336
Sascha Hauer4e831832009-04-15 01:32:19 +00001337 /* Clear filter and add the addresses in hash register
1338 */
1339 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1340 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001342 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001343 /* calculate crc32 value of mac address */
1344 crc = 0xffffffff;
1345
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001346 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001347 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00001348 for (bit = 0; bit < 8; bit++, data >>= 1) {
1349 crc = (crc >> 1) ^
1350 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
1352 }
Sascha Hauer4e831832009-04-15 01:32:19 +00001353
1354 /* only upper 6 bits (HASH_BITS) are used
1355 * which point to specific bit in he hash registers
1356 */
1357 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1358
1359 if (hash > 31) {
1360 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1361 tmp |= 1 << (hash - 32);
1362 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1363 } else {
1364 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1365 tmp |= 1 << hash;
1366 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
1369}
1370
Sascha Hauer22f6b862009-04-15 01:32:18 +00001371/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00001372static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001373fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001375 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00001376 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Sascha Hauer009fda82009-04-15 01:32:23 +00001378 if (!is_valid_ether_addr(addr->sa_data))
1379 return -EADDRNOTAVAIL;
1380
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001381 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
Sascha Hauer009fda82009-04-15 01:32:23 +00001382
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001383 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
1384 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00001385 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001386 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07001387 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00001388 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00001391#ifdef CONFIG_NET_POLL_CONTROLLER
1392/*
1393 * fec_poll_controller: FEC Poll controller function
1394 * @dev: The FEC network adapter
1395 *
1396 * Polled functionality used by netconsole and others in non interrupt mode
1397 *
1398 */
1399void fec_poll_controller(struct net_device *dev)
1400{
1401 int i;
1402 struct fec_enet_private *fep = netdev_priv(dev);
1403
1404 for (i = 0; i < FEC_IRQ_NUM; i++) {
1405 if (fep->irq[i] > 0) {
1406 disable_irq(fep->irq[i]);
1407 fec_enet_interrupt(fep->irq[i], dev);
1408 enable_irq(fep->irq[i]);
1409 }
1410 }
1411}
1412#endif
1413
Sascha Hauer009fda82009-04-15 01:32:23 +00001414static const struct net_device_ops fec_netdev_ops = {
1415 .ndo_open = fec_enet_open,
1416 .ndo_stop = fec_enet_close,
1417 .ndo_start_xmit = fec_enet_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001418 .ndo_set_rx_mode = set_multicast_list,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00001419 .ndo_change_mtu = eth_change_mtu,
Sascha Hauer009fda82009-04-15 01:32:23 +00001420 .ndo_validate_addr = eth_validate_addr,
1421 .ndo_tx_timeout = fec_timeout,
1422 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001423 .ndo_do_ioctl = fec_enet_ioctl,
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00001424#ifdef CONFIG_NET_POLL_CONTROLLER
1425 .ndo_poll_controller = fec_poll_controller,
1426#endif
Sascha Hauer009fda82009-04-15 01:32:23 +00001427};
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 /*
1430 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00001431 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001433static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001435 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001436 struct bufdesc *cbd_base;
Rob Herring633e7532010-02-05 08:56:20 +00001437 struct bufdesc *bdp;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001438 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001440 /* Allocate memory for buffer descriptors. */
1441 cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
1442 GFP_KERNEL);
1443 if (!cbd_base) {
Greg Ungerer562d2f82005-11-07 14:09:50 +10001444 printk("FEC: allocate descriptor memory failed?\n");
1445 return -ENOMEM;
1446 }
1447
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001448 spin_lock_init(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001449
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001450 fep->netdev = ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Shawn Guo49da97d2011-01-05 21:13:11 +00001452 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001453 fec_get_mac(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001455 /* Set receive and transmit descriptor base. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 fep->rx_bd_base = cbd_base;
1457 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1458
Sascha Hauer22f6b862009-04-15 01:32:18 +00001459 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001460 ndev->watchdog_timeo = TX_TIMEOUT;
1461 ndev->netdev_ops = &fec_netdev_ops;
1462 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00001463
1464 /* Initialize the receive buffer descriptors. */
1465 bdp = fep->rx_bd_base;
1466 for (i = 0; i < RX_RING_SIZE; i++) {
1467
1468 /* Initialize the BD for every fragment in the page. */
1469 bdp->cbd_sc = 0;
1470 bdp++;
1471 }
1472
1473 /* Set the last buffer to wrap */
1474 bdp--;
1475 bdp->cbd_sc |= BD_SC_WRAP;
1476
1477 /* ...and the same for transmit */
1478 bdp = fep->tx_bd_base;
1479 for (i = 0; i < TX_RING_SIZE; i++) {
1480
1481 /* Initialize the BD for every fragment in the page. */
1482 bdp->cbd_sc = 0;
1483 bdp->cbd_bufaddr = 0;
1484 bdp++;
1485 }
1486
1487 /* Set the last buffer to wrap */
1488 bdp--;
1489 bdp->cbd_sc |= BD_SC_WRAP;
1490
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001491 fec_restart(ndev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return 0;
1494}
1495
Shawn Guoca2cc332011-06-25 02:04:35 +08001496#ifdef CONFIG_OF
1497static int __devinit fec_get_phy_mode_dt(struct platform_device *pdev)
1498{
1499 struct device_node *np = pdev->dev.of_node;
1500
1501 if (np)
1502 return of_get_phy_mode(np);
1503
1504 return -ENODEV;
1505}
1506
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001507static void __devinit fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08001508{
1509 int err, phy_reset;
1510 struct device_node *np = pdev->dev.of_node;
1511
1512 if (!np)
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001513 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08001514
1515 phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
Shawn Guo119fc002012-06-27 03:45:22 +00001516 err = devm_gpio_request_one(&pdev->dev, phy_reset,
1517 GPIOF_OUT_INIT_LOW, "phy-reset");
Shawn Guoca2cc332011-06-25 02:04:35 +08001518 if (err) {
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001519 pr_debug("FEC: failed to get gpio phy-reset: %d\n", err);
1520 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08001521 }
1522 msleep(1);
1523 gpio_set_value(phy_reset, 1);
Shawn Guoca2cc332011-06-25 02:04:35 +08001524}
1525#else /* CONFIG_OF */
1526static inline int fec_get_phy_mode_dt(struct platform_device *pdev)
1527{
1528 return -ENODEV;
1529}
1530
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001531static inline void fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08001532{
1533 /*
1534 * In case of platform probe, the reset has been done
1535 * by machine code.
1536 */
Shawn Guoca2cc332011-06-25 02:04:35 +08001537}
1538#endif /* CONFIG_OF */
1539
Sascha Haueread73182009-01-28 23:03:11 +00001540static int __devinit
1541fec_probe(struct platform_device *pdev)
1542{
1543 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001544 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00001545 struct net_device *ndev;
1546 int i, irq, ret = 0;
1547 struct resource *r;
Shawn Guoca2cc332011-06-25 02:04:35 +08001548 const struct of_device_id *of_id;
Shawn Guo43af9402011-12-05 05:01:15 +00001549 static int dev_id;
Shawn Guob2bccee2012-05-06 20:24:04 +08001550 struct pinctrl *pinctrl;
Shawn Guo5fa9c0f2012-06-27 03:45:21 +00001551 struct regulator *reg_phy;
Shawn Guoca2cc332011-06-25 02:04:35 +08001552
1553 of_id = of_match_device(fec_dt_ids, &pdev->dev);
1554 if (of_id)
1555 pdev->id_entry = of_id->data;
Sascha Haueread73182009-01-28 23:03:11 +00001556
1557 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1558 if (!r)
1559 return -ENXIO;
1560
1561 r = request_mem_region(r->start, resource_size(r), pdev->name);
1562 if (!r)
1563 return -EBUSY;
1564
1565 /* Init network device */
1566 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001567 if (!ndev) {
1568 ret = -ENOMEM;
1569 goto failed_alloc_etherdev;
1570 }
Sascha Haueread73182009-01-28 23:03:11 +00001571
1572 SET_NETDEV_DEV(ndev, &pdev->dev);
1573
1574 /* setup board info structure */
1575 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001576
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001577 fep->hwp = ioremap(r->start, resource_size(r));
Bryan Wue6b043d2010-03-31 02:10:44 +00001578 fep->pdev = pdev;
Shawn Guo43af9402011-12-05 05:01:15 +00001579 fep->dev_id = dev_id++;
Sascha Haueread73182009-01-28 23:03:11 +00001580
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001581 if (!fep->hwp) {
Sascha Haueread73182009-01-28 23:03:11 +00001582 ret = -ENOMEM;
1583 goto failed_ioremap;
1584 }
1585
1586 platform_set_drvdata(pdev, ndev);
1587
Shawn Guoca2cc332011-06-25 02:04:35 +08001588 ret = fec_get_phy_mode_dt(pdev);
1589 if (ret < 0) {
1590 pdata = pdev->dev.platform_data;
1591 if (pdata)
1592 fep->phy_interface = pdata->phy;
1593 else
1594 fep->phy_interface = PHY_INTERFACE_MODE_MII;
1595 } else {
1596 fep->phy_interface = ret;
1597 }
1598
Xiao Jiangc7c83d12011-09-29 02:15:56 +00001599 for (i = 0; i < FEC_IRQ_NUM; i++) {
Sascha Haueread73182009-01-28 23:03:11 +00001600 irq = platform_get_irq(pdev, i);
Lothar Waßmann86f9f2c2011-12-07 21:59:28 +00001601 if (irq < 0) {
1602 if (i)
1603 break;
1604 ret = irq;
1605 goto failed_irq;
1606 }
Sascha Haueread73182009-01-28 23:03:11 +00001607 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1608 if (ret) {
Uwe Kleine-Königb2b09ad2011-01-13 21:49:05 +01001609 while (--i >= 0) {
Sascha Haueread73182009-01-28 23:03:11 +00001610 irq = platform_get_irq(pdev, i);
1611 free_irq(irq, ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001612 }
1613 goto failed_irq;
1614 }
1615 }
1616
Shawn Guob2bccee2012-05-06 20:24:04 +08001617 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
1618 if (IS_ERR(pinctrl)) {
1619 ret = PTR_ERR(pinctrl);
1620 goto failed_pin;
1621 }
1622
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001623 fep->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1624 if (IS_ERR(fep->clk_ipg)) {
1625 ret = PTR_ERR(fep->clk_ipg);
Sascha Haueread73182009-01-28 23:03:11 +00001626 goto failed_clk;
1627 }
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001628
1629 fep->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
1630 if (IS_ERR(fep->clk_ahb)) {
1631 ret = PTR_ERR(fep->clk_ahb);
1632 goto failed_clk;
1633 }
1634
1635 clk_prepare_enable(fep->clk_ahb);
1636 clk_prepare_enable(fep->clk_ipg);
Sascha Haueread73182009-01-28 23:03:11 +00001637
Shawn Guo5fa9c0f2012-06-27 03:45:21 +00001638 reg_phy = devm_regulator_get(&pdev->dev, "phy");
1639 if (!IS_ERR(reg_phy)) {
1640 ret = regulator_enable(reg_phy);
1641 if (ret) {
1642 dev_err(&pdev->dev,
1643 "Failed to enable phy regulator: %d\n", ret);
1644 goto failed_regulator;
1645 }
1646 }
1647
Shawn Guo2ca9b2a2012-06-27 03:45:20 +00001648 fec_reset_phy(pdev);
1649
Shawn Guo8649a232011-01-05 21:13:10 +00001650 ret = fec_enet_init(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001651 if (ret)
1652 goto failed_init;
1653
Bryan Wue6b043d2010-03-31 02:10:44 +00001654 ret = fec_enet_mii_init(pdev);
1655 if (ret)
1656 goto failed_mii_init;
1657
Oskar Schirmer03c698c2010-10-07 02:30:30 +00001658 /* Carrier starts down, phylib will bring it up */
1659 netif_carrier_off(ndev);
1660
Sascha Haueread73182009-01-28 23:03:11 +00001661 ret = register_netdev(ndev);
1662 if (ret)
1663 goto failed_register;
1664
1665 return 0;
1666
1667failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00001668 fec_enet_mii_remove(fep);
1669failed_mii_init:
Sascha Haueread73182009-01-28 23:03:11 +00001670failed_init:
Shawn Guo5fa9c0f2012-06-27 03:45:21 +00001671failed_regulator:
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001672 clk_disable_unprepare(fep->clk_ahb);
1673 clk_disable_unprepare(fep->clk_ipg);
Shawn Guob2bccee2012-05-06 20:24:04 +08001674failed_pin:
Sascha Haueread73182009-01-28 23:03:11 +00001675failed_clk:
Xiao Jiangc7c83d12011-09-29 02:15:56 +00001676 for (i = 0; i < FEC_IRQ_NUM; i++) {
Sascha Haueread73182009-01-28 23:03:11 +00001677 irq = platform_get_irq(pdev, i);
1678 if (irq > 0)
1679 free_irq(irq, ndev);
1680 }
1681failed_irq:
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001682 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001683failed_ioremap:
1684 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001685failed_alloc_etherdev:
1686 release_mem_region(r->start, resource_size(r));
Sascha Haueread73182009-01-28 23:03:11 +00001687
1688 return ret;
1689}
1690
1691static int __devexit
1692fec_drv_remove(struct platform_device *pdev)
1693{
1694 struct net_device *ndev = platform_get_drvdata(pdev);
1695 struct fec_enet_private *fep = netdev_priv(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001696 struct resource *r;
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001697 int i;
Sascha Haueread73182009-01-28 23:03:11 +00001698
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001699 unregister_netdev(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001700 fec_enet_mii_remove(fep);
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001701 for (i = 0; i < FEC_IRQ_NUM; i++) {
1702 int irq = platform_get_irq(pdev, i);
1703 if (irq > 0)
1704 free_irq(irq, ndev);
1705 }
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001706 clk_disable_unprepare(fep->clk_ahb);
1707 clk_disable_unprepare(fep->clk_ipg);
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001708 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001709 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001710
1711 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1712 BUG_ON(!r);
1713 release_mem_region(r->start, resource_size(r));
1714
Uwe Kleine-Königb3cde362011-01-25 18:03:37 +01001715 platform_set_drvdata(pdev, NULL);
1716
Sascha Haueread73182009-01-28 23:03:11 +00001717 return 0;
1718}
1719
Denis Kirjanov59d42892010-06-02 09:27:04 +00001720#ifdef CONFIG_PM
Sascha Haueread73182009-01-28 23:03:11 +00001721static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001722fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001723{
Eric Benard87cad5c2010-06-18 04:19:54 +00001724 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001725 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001726
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001727 if (netif_running(ndev)) {
1728 fec_stop(ndev);
1729 netif_device_detach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001730 }
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001731 clk_disable_unprepare(fep->clk_ahb);
1732 clk_disable_unprepare(fep->clk_ipg);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001733
Sascha Haueread73182009-01-28 23:03:11 +00001734 return 0;
1735}
1736
1737static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001738fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001739{
Eric Benard87cad5c2010-06-18 04:19:54 +00001740 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001741 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001742
Sascha Hauerf4d40de2012-03-07 09:30:49 +01001743 clk_prepare_enable(fep->clk_ahb);
1744 clk_prepare_enable(fep->clk_ipg);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001745 if (netif_running(ndev)) {
1746 fec_restart(ndev, fep->full_duplex);
1747 netif_device_attach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001748 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001749
Sascha Haueread73182009-01-28 23:03:11 +00001750 return 0;
1751}
1752
Denis Kirjanov59d42892010-06-02 09:27:04 +00001753static const struct dev_pm_ops fec_pm_ops = {
1754 .suspend = fec_suspend,
1755 .resume = fec_resume,
1756 .freeze = fec_suspend,
1757 .thaw = fec_resume,
1758 .poweroff = fec_suspend,
1759 .restore = fec_resume,
1760};
Eric Benard87cad5c2010-06-18 04:19:54 +00001761#endif
Denis Kirjanov59d42892010-06-02 09:27:04 +00001762
Sascha Haueread73182009-01-28 23:03:11 +00001763static struct platform_driver fec_driver = {
1764 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00001765 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00001766 .owner = THIS_MODULE,
1767#ifdef CONFIG_PM
1768 .pm = &fec_pm_ops,
1769#endif
Shawn Guoca2cc332011-06-25 02:04:35 +08001770 .of_match_table = fec_dt_ids,
Sascha Haueread73182009-01-28 23:03:11 +00001771 },
Shawn Guob5680e02011-01-05 21:13:13 +00001772 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00001773 .probe = fec_probe,
1774 .remove = __devexit_p(fec_drv_remove),
Sascha Haueread73182009-01-28 23:03:11 +00001775};
1776
Fabio Estevamaaca2372012-01-23 16:44:50 +00001777module_platform_driver(fec_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779MODULE_LICENSE("GPL");