blob: cce78ceb63ed75cea3d63a83f0a8435dc5b46b1e [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Greg Ungerer080853a2007-07-30 16:28:46 +100052#include <asm/cacheflush.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000053
Shawn Guob5680e02011-01-05 21:13:13 +000054#ifndef CONFIG_ARM
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/coldfire.h>
56#include <asm/mcfsim.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000057#endif
Sascha Hauer6f501b12009-01-28 23:03:05 +000058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include "fec.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Uwe Kleine-König085e79e2011-01-17 09:52:18 +010061#if defined(CONFIG_ARM)
Sascha Hauer196719e2009-01-28 23:03:10 +000062#define FEC_ALIGNMENT 0xf
63#else
64#define FEC_ALIGNMENT 0x3
65#endif
66
Shawn Guob5680e02011-01-05 21:13:13 +000067#define DRIVER_NAME "fec"
68
69/* Controller is ENET-MAC */
70#define FEC_QUIRK_ENET_MAC (1 << 0)
71/* Controller needs driver to swap frame */
72#define FEC_QUIRK_SWAP_FRAME (1 << 1)
Shawn Guo0ca1e292011-07-01 18:11:22 +080073/* Controller uses gasket */
74#define FEC_QUIRK_USE_GASKET (1 << 2)
Shawn Guo230dec62011-09-23 02:12:48 +000075/* Controller has GBIT support */
76#define FEC_QUIRK_HAS_GBIT (1 << 3)
Shawn Guob5680e02011-01-05 21:13:13 +000077
78static struct platform_device_id fec_devtype[] = {
79 {
Shawn Guo0ca1e292011-07-01 18:11:22 +080080 /* keep it for coldfire */
Shawn Guob5680e02011-01-05 21:13:13 +000081 .name = DRIVER_NAME,
82 .driver_data = 0,
83 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +080084 .name = "imx25-fec",
85 .driver_data = FEC_QUIRK_USE_GASKET,
86 }, {
87 .name = "imx27-fec",
88 .driver_data = 0,
89 }, {
Shawn Guob5680e02011-01-05 21:13:13 +000090 .name = "imx28-fec",
91 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME,
Shawn Guo0ca1e292011-07-01 18:11:22 +080092 }, {
Shawn Guo230dec62011-09-23 02:12:48 +000093 .name = "imx6q-fec",
94 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT,
95 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +080096 /* sentinel */
97 }
Shawn Guob5680e02011-01-05 21:13:13 +000098};
Shawn Guo0ca1e292011-07-01 18:11:22 +080099MODULE_DEVICE_TABLE(platform, fec_devtype);
Shawn Guob5680e02011-01-05 21:13:13 +0000100
Shawn Guoca2cc332011-06-25 02:04:35 +0800101enum imx_fec_type {
102 IMX25_FEC = 1, /* runs on i.mx25/50/53 */
103 IMX27_FEC, /* runs on i.mx27/35/51 */
104 IMX28_FEC,
Shawn Guo230dec62011-09-23 02:12:48 +0000105 IMX6Q_FEC,
Shawn Guoca2cc332011-06-25 02:04:35 +0800106};
107
108static const struct of_device_id fec_dt_ids[] = {
109 { .compatible = "fsl,imx25-fec", .data = &fec_devtype[IMX25_FEC], },
110 { .compatible = "fsl,imx27-fec", .data = &fec_devtype[IMX27_FEC], },
111 { .compatible = "fsl,imx28-fec", .data = &fec_devtype[IMX28_FEC], },
Shawn Guo230dec62011-09-23 02:12:48 +0000112 { .compatible = "fsl,imx6q-fec", .data = &fec_devtype[IMX6Q_FEC], },
Shawn Guoca2cc332011-06-25 02:04:35 +0800113 { /* sentinel */ }
114};
115MODULE_DEVICE_TABLE(of, fec_dt_ids);
116
Shawn Guo49da97d2011-01-05 21:13:11 +0000117static unsigned char macaddr[ETH_ALEN];
118module_param_array(macaddr, byte, NULL, 0);
119MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
120
Greg Ungerer87f4abb2008-06-06 15:55:36 +1000121#if defined(CONFIG_M5272)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/*
123 * Some hardware gets it MAC address out of local flash memory.
124 * if this is non-zero then assume it is the address to get MAC from.
125 */
126#if defined(CONFIG_NETtel)
127#define FEC_FLASHMAC 0xf0006006
128#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
129#define FEC_FLASHMAC 0xf0006000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#elif defined(CONFIG_CANCam)
131#define FEC_FLASHMAC 0xf0020000
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000132#elif defined (CONFIG_M5272C3)
133#define FEC_FLASHMAC (0xffe04000 + 4)
134#elif defined(CONFIG_MOD5272)
135#define FEC_FLASHMAC 0xffc0406b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#else
137#define FEC_FLASHMAC 0
138#endif
Greg Ungerer43be6362009-02-26 22:42:51 -0800139#endif /* CONFIG_M5272 */
Sascha Haueread73182009-01-28 23:03:11 +0000140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/* The number of Tx and Rx buffers. These are allocated from the page
142 * pool. The code may assume these are power of two, so it it best
143 * to keep them that size.
144 * We don't need to allocate pages for the transmitter. We just use
145 * the skbuffer directly.
146 */
147#define FEC_ENET_RX_PAGES 8
148#define FEC_ENET_RX_FRSIZE 2048
149#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE)
150#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
151#define FEC_ENET_TX_FRSIZE 2048
152#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
153#define TX_RING_SIZE 16 /* Must be power of two */
154#define TX_RING_MOD_MASK 15 /* for this to work */
155
Greg Ungerer562d2f82005-11-07 14:09:50 +1000156#if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
Matt Waddel6b265292006-06-27 13:10:56 +1000157#error "FEC: descriptor ring size constants too large"
Greg Ungerer562d2f82005-11-07 14:09:50 +1000158#endif
159
Sascha Hauer22f6b862009-04-15 01:32:18 +0000160/* Interrupt events/masks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
162#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
163#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */
164#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */
165#define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */
166#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */
167#define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */
168#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */
169#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */
170#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */
171
Wolfram Sang4bee1f92010-07-21 02:51:13 +0000172#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII)
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/* The FEC stores dest/src/type, data, and checksum for receive packets.
175 */
176#define PKT_MAXBUF_SIZE 1518
177#define PKT_MINBUF_SIZE 64
178#define PKT_MAXBLR_SIZE 1520
179
180
181/*
Matt Waddel6b265292006-06-27 13:10:56 +1000182 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * size bits. Other FEC hardware does not, so we need to take that into
184 * account when setting it.
185 */
Greg Ungerer562d2f82005-11-07 14:09:50 +1000186#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Uwe Kleine-König085e79e2011-01-17 09:52:18 +0100187 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
189#else
190#define OPT_FRAME_SIZE 0
191#endif
192
193/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and
194 * tx_bd_base always point to the base of the buffer descriptors. The
195 * cur_rx and cur_tx point to the currently available buffer.
196 * The dirty_tx tracks the current buffer that is being sent by the
197 * controller. The cur_tx and dirty_tx are equal under both completely
198 * empty and completely full conditions. The empty/ready indicator in
199 * the buffer descriptor determines the actual condition.
200 */
201struct fec_enet_private {
202 /* Hardware registers of the FEC device */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000203 void __iomem *hwp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Greg Ungerercb84d6e2007-07-30 16:29:09 +1000205 struct net_device *netdev;
206
Sascha Haueread73182009-01-28 23:03:11 +0000207 struct clk *clk;
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
210 unsigned char *tx_bounce[TX_RING_SIZE];
211 struct sk_buff* tx_skbuff[TX_RING_SIZE];
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000212 struct sk_buff* rx_skbuff[RX_RING_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 ushort skb_cur;
214 ushort skb_dirty;
215
Sascha Hauer22f6b862009-04-15 01:32:18 +0000216 /* CPM dual port RAM relative addresses */
Sascha Hauer4661e752009-01-28 23:03:07 +0000217 dma_addr_t bd_dma;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000218 /* Address of Rx and Tx buffers */
Sascha Hauer2e285322009-04-15 01:32:16 +0000219 struct bufdesc *rx_bd_base;
220 struct bufdesc *tx_bd_base;
221 /* The next free ring entry */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100222 struct bufdesc *cur_rx, *cur_tx;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000223 /* The ring entries to be free()ed */
Sascha Hauer2e285322009-04-15 01:32:16 +0000224 struct bufdesc *dirty_tx;
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 uint tx_full;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000227 /* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
228 spinlock_t hw_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100230 struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 int opened;
Bryan Wue6b043d2010-03-31 02:10:44 +0000233
234 /* Phylib and MDIO interface */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100235 struct mii_bus *mii_bus;
236 struct phy_device *phy_dev;
237 int mii_timeout;
238 uint phy_speed;
Baruch Siach5eb32bd2010-05-24 00:36:13 -0700239 phy_interface_t phy_interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 int link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 int full_duplex;
Baruch Siach97b72e42010-07-11 21:12:51 +0000242 struct completion mdio_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243};
244
Bryan Wue6b043d2010-03-31 02:10:44 +0000245/* FEC MII MMFR bits definition */
246#define FEC_MMFR_ST (1 << 30)
247#define FEC_MMFR_OP_READ (2 << 28)
248#define FEC_MMFR_OP_WRITE (1 << 28)
249#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
250#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
251#define FEC_MMFR_TA (2 << 16)
252#define FEC_MMFR_DATA(v) (v & 0xffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Baruch Siach97b72e42010-07-11 21:12:51 +0000254#define FEC_MII_TIMEOUT 1000 /* us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Sascha Hauer22f6b862009-04-15 01:32:18 +0000256/* Transmitter timeout */
257#define TX_TIMEOUT (2 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Shawn Guob5680e02011-01-05 21:13:13 +0000259static void *swap_buffer(void *bufaddr, int len)
260{
261 int i;
262 unsigned int *buf = bufaddr;
263
264 for (i = 0; i < (len + 3) / 4; i++, buf++)
265 *buf = cpu_to_be32(*buf);
266
267 return bufaddr;
268}
269
Denis Kirjanovc7621cb2010-06-02 09:15:47 +0000270static netdev_tx_t
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100271fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100273 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000274 const struct platform_device_id *id_entry =
275 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000276 struct bufdesc *bdp;
Greg Ungerer9555b312009-08-06 17:58:18 +0000277 void *bufaddr;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000278 unsigned short status;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000279 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (!fep->link) {
282 /* Link is down or autonegotiation is in progress. */
Patrick McHardy5b548142009-06-12 06:22:29 +0000283 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000286 spin_lock_irqsave(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /* Fill in a Tx ring entry */
288 bdp = fep->cur_tx;
289
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000290 status = bdp->cbd_sc;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000291
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000292 if (status & BD_ENET_TX_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* Ooops. All transmit buffers are full. Bail out.
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100294 * This should not happen, since ndev->tbusy should be set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100296 printk("%s: tx queue full!.\n", ndev->name);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000297 spin_unlock_irqrestore(&fep->hw_lock, flags);
Patrick McHardy5b548142009-06-12 06:22:29 +0000298 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Sascha Hauer22f6b862009-04-15 01:32:18 +0000301 /* Clear all of the status flags */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000302 status &= ~BD_ENET_TX_STATS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Sascha Hauer22f6b862009-04-15 01:32:18 +0000304 /* Set buffer length and buffer pointer */
Greg Ungerer9555b312009-08-06 17:58:18 +0000305 bufaddr = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 bdp->cbd_datlen = skb->len;
307
308 /*
Sascha Hauer22f6b862009-04-15 01:32:18 +0000309 * On some FEC implementations data must be aligned on
310 * 4-byte boundaries. Use bounce buffers to copy data
311 * and get it aligned. Ugh.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 */
Greg Ungerer9555b312009-08-06 17:58:18 +0000313 if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 unsigned int index;
315 index = bdp - fep->tx_bd_base;
Uwe Kleine-König8a73b0b2011-01-13 21:34:31 +0100316 memcpy(fep->tx_bounce[index], skb->data, skb->len);
Greg Ungerer9555b312009-08-06 17:58:18 +0000317 bufaddr = fep->tx_bounce[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319
Shawn Guob5680e02011-01-05 21:13:13 +0000320 /*
321 * Some design made an incorrect assumption on endian mode of
322 * the system that it's running on. As the result, driver has to
323 * swap every frame going to and coming from the controller.
324 */
325 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
326 swap_buffer(bufaddr, skb->len);
327
Sascha Hauer22f6b862009-04-15 01:32:18 +0000328 /* Save skb pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 fep->tx_skbuff[fep->skb_cur] = skb;
330
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100331 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /* Push the data cache so the CPM does not get stale memory
335 * data.
336 */
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100337 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000338 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000340 /* Send it on its way. Tell FEC it's ready, interrupt when done,
341 * it's the last BD of the frame, and to put the CRC on the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000343 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000345 bdp->cbd_sc = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 /* Trigger transmission start */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000348 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Sascha Hauer22f6b862009-04-15 01:32:18 +0000350 /* If this was the last BD in the ring, start at the beginning again. */
351 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 bdp = fep->tx_bd_base;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000353 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 bdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 if (bdp == fep->dirty_tx) {
357 fep->tx_full = 1;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100358 netif_stop_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360
Sascha Hauer2e285322009-04-15 01:32:16 +0000361 fep->cur_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Richard Cochran18a03b92011-06-12 02:18:59 +0000363 skb_tx_timestamp(skb);
364
Richard Cochrana0087a32011-06-19 03:31:40 +0000365 spin_unlock_irqrestore(&fep->hw_lock, flags);
366
Patrick McHardy6ed10652009-06-23 06:03:08 +0000367 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Uwe Kleine-König45993652011-01-19 20:47:04 +0100370/* This function is called to start or restart the FEC during a link
371 * change. This only happens when switching between half and full
372 * duplex.
373 */
374static void
375fec_restart(struct net_device *ndev, int duplex)
376{
377 struct fec_enet_private *fep = netdev_priv(ndev);
378 const struct platform_device_id *id_entry =
379 platform_get_device_id(fep->pdev);
380 int i;
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100381 u32 temp_mac[2];
382 u32 rcntl = OPT_FRAME_SIZE | 0x04;
Shawn Guo230dec62011-09-23 02:12:48 +0000383 u32 ecntl = 0x2; /* ETHEREN */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100384
385 /* Whack a reset. We should wait for this. */
386 writel(1, fep->hwp + FEC_ECNTRL);
387 udelay(10);
388
389 /*
390 * enet-mac reset will reset mac address registers too,
391 * so need to reconfigure it.
392 */
393 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
394 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
395 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
396 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
397 }
398
399 /* Clear any outstanding interrupt. */
400 writel(0xffc00000, fep->hwp + FEC_IEVENT);
401
402 /* Reset all multicast. */
403 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
404 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
405#ifndef CONFIG_M5272
406 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
407 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
408#endif
409
410 /* Set maximum receive buffer size. */
411 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
412
413 /* Set receive and transmit descriptor base. */
414 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
415 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc) * RX_RING_SIZE,
416 fep->hwp + FEC_X_DES_START);
417
418 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
419 fep->cur_rx = fep->rx_bd_base;
420
421 /* Reset SKB transmit buffers. */
422 fep->skb_cur = fep->skb_dirty = 0;
423 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
424 if (fep->tx_skbuff[i]) {
425 dev_kfree_skb_any(fep->tx_skbuff[i]);
426 fep->tx_skbuff[i] = NULL;
427 }
428 }
429
430 /* Enable MII mode */
431 if (duplex) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100432 /* FD enable */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100433 writel(0x04, fep->hwp + FEC_X_CNTRL);
434 } else {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100435 /* No Rcv on Xmit */
436 rcntl |= 0x02;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100437 writel(0x0, fep->hwp + FEC_X_CNTRL);
438 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100439
Uwe Kleine-König45993652011-01-19 20:47:04 +0100440 fep->full_duplex = duplex;
441
442 /* Set MII speed */
443 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
444
445 /*
446 * The phy interface and speed need to get configured
447 * differently on enet-mac.
448 */
449 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100450 /* Enable flow control and length check */
451 rcntl |= 0x40000000 | 0x00000020;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100452
Shawn Guo230dec62011-09-23 02:12:48 +0000453 /* RGMII, RMII or MII */
454 if (fep->phy_interface == PHY_INTERFACE_MODE_RGMII)
455 rcntl |= (1 << 6);
456 else if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100457 rcntl |= (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100458 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100459 rcntl &= ~(1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100460
Shawn Guo230dec62011-09-23 02:12:48 +0000461 /* 1G, 100M or 10M */
462 if (fep->phy_dev) {
463 if (fep->phy_dev->speed == SPEED_1000)
464 ecntl |= (1 << 5);
465 else if (fep->phy_dev->speed == SPEED_100)
466 rcntl &= ~(1 << 9);
467 else
468 rcntl |= (1 << 9);
469 }
Uwe Kleine-König45993652011-01-19 20:47:04 +0100470 } else {
471#ifdef FEC_MIIGSK_ENR
Shawn Guo0ca1e292011-07-01 18:11:22 +0800472 if (id_entry->driver_data & FEC_QUIRK_USE_GASKET) {
Uwe Kleine-König45993652011-01-19 20:47:04 +0100473 /* disable the gasket and wait */
474 writel(0, fep->hwp + FEC_MIIGSK_ENR);
475 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
476 udelay(1);
477
478 /*
479 * configure the gasket:
480 * RMII, 50 MHz, no loopback, no echo
Shawn Guo0ca1e292011-07-01 18:11:22 +0800481 * MII, 25 MHz, no loopback, no echo
Uwe Kleine-König45993652011-01-19 20:47:04 +0100482 */
Shawn Guo0ca1e292011-07-01 18:11:22 +0800483 writel((fep->phy_interface == PHY_INTERFACE_MODE_RMII) ?
484 1 : 0, fep->hwp + FEC_MIIGSK_CFGR);
485
Uwe Kleine-König45993652011-01-19 20:47:04 +0100486
487 /* re-enable the gasket */
488 writel(2, fep->hwp + FEC_MIIGSK_ENR);
489 }
490#endif
491 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100492 writel(rcntl, fep->hwp + FEC_R_CNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100493
Shawn Guo230dec62011-09-23 02:12:48 +0000494 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
495 /* enable ENET endian swap */
496 ecntl |= (1 << 8);
497 /* enable ENET store and forward mode */
498 writel(1 << 8, fep->hwp + FEC_X_WMRK);
499 }
500
Uwe Kleine-König45993652011-01-19 20:47:04 +0100501 /* And last, enable the transmit and receive processing */
Shawn Guo230dec62011-09-23 02:12:48 +0000502 writel(ecntl, fep->hwp + FEC_ECNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100503 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
504
505 /* Enable interrupts we wish to service */
506 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
507}
508
509static void
510fec_stop(struct net_device *ndev)
511{
512 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +0000513 const struct platform_device_id *id_entry =
514 platform_get_device_id(fep->pdev);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100515
516 /* We cannot expect a graceful transmit stop without link !!! */
517 if (fep->link) {
518 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
519 udelay(10);
520 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
521 printk("fec_stop : Graceful transmit stop did not complete !\n");
522 }
523
524 /* Whack a reset. We should wait for this. */
525 writel(1, fep->hwp + FEC_ECNTRL);
526 udelay(10);
527 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
528 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
Shawn Guo230dec62011-09-23 02:12:48 +0000529
530 /* We have to keep ENET enabled to have MII interrupt stay working */
531 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
532 writel(2, fep->hwp + FEC_ECNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100533}
534
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100537fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100539 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100541 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100543 fec_restart(ndev, fep->full_duplex);
544 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100548fec_enet_tx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
550 struct fec_enet_private *fep;
Sascha Hauer2e285322009-04-15 01:32:16 +0000551 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000552 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 struct sk_buff *skb;
554
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100555 fep = netdev_priv(ndev);
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000556 spin_lock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 bdp = fep->dirty_tx;
558
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000559 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000560 if (bdp == fep->cur_tx && fep->tx_full == 0)
561 break;
562
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100563 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
564 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000565 bdp->cbd_bufaddr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 skb = fep->tx_skbuff[fep->skb_dirty];
568 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000569 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 BD_ENET_TX_RL | BD_ENET_TX_UN |
571 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100572 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000573 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100574 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000575 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100576 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000577 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100578 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000579 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100580 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000581 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100582 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100584 ndev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000587 if (status & BD_ENET_TX_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 printk("HEY! Enet xmit interrupt and TX_READY.\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +0000589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 /* Deferred means some collisions occurred during transmit,
591 * but we eventually sent the packet OK.
592 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000593 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100594 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400595
Sascha Hauer22f6b862009-04-15 01:32:18 +0000596 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 dev_kfree_skb_any(skb);
598 fep->tx_skbuff[fep->skb_dirty] = NULL;
599 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400600
Sascha Hauer22f6b862009-04-15 01:32:18 +0000601 /* Update pointer to next buffer descriptor to be transmitted */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000602 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 bdp = fep->tx_bd_base;
604 else
605 bdp++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400606
Sascha Hauer22f6b862009-04-15 01:32:18 +0000607 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 */
609 if (fep->tx_full) {
610 fep->tx_full = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100611 if (netif_queue_stopped(ndev))
612 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000615 fep->dirty_tx = bdp;
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000616 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
619
620/* During a receive, the cur_rx points to the current incoming buffer.
621 * When we update through the ring, if the next incoming buffer has
622 * not been given to the system, we just set the empty indicator,
623 * effectively tossing the packet.
624 */
625static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100626fec_enet_rx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100628 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000629 const struct platform_device_id *id_entry =
630 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000631 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000632 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 struct sk_buff *skb;
634 ushort pkt_len;
635 __u8 *data;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400636
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000637#ifdef CONFIG_M532x
638 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400639#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000641 spin_lock(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /* First, grab all of the stats for the incoming packet.
644 * These get messed up if we get called due to a busy condition.
645 */
646 bdp = fep->cur_rx;
647
Sascha Hauer22f6b862009-04-15 01:32:18 +0000648 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Sascha Hauer22f6b862009-04-15 01:32:18 +0000650 /* Since we have allocated space to hold a complete frame,
651 * the last indicator should be set.
652 */
653 if ((status & BD_ENET_RX_LAST) == 0)
654 printk("FEC ENET: rcv is not +last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Sascha Hauer22f6b862009-04-15 01:32:18 +0000656 if (!fep->opened)
657 goto rx_processing_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Sascha Hauer22f6b862009-04-15 01:32:18 +0000659 /* Check for errors. */
660 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100662 ndev->stats.rx_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000663 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
664 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100665 ndev->stats.rx_length_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000666 }
667 if (status & BD_ENET_RX_NO) /* Frame alignment */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100668 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000669 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100670 ndev->stats.rx_crc_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000671 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100672 ndev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Sascha Hauer22f6b862009-04-15 01:32:18 +0000674
675 /* Report late collisions as a frame error.
676 * On this error, the BD is closed, but we don't know what we
677 * have in the buffer. So, just drop this frame on the floor.
678 */
679 if (status & BD_ENET_RX_CL) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100680 ndev->stats.rx_errors++;
681 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000682 goto rx_processing_done;
683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Sascha Hauer22f6b862009-04-15 01:32:18 +0000685 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100686 ndev->stats.rx_packets++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000687 pkt_len = bdp->cbd_datlen;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100688 ndev->stats.rx_bytes += pkt_len;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000689 data = (__u8*)__va(bdp->cbd_bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100691 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
692 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerccdc4f12009-01-28 23:03:09 +0000693
Shawn Guob5680e02011-01-05 21:13:13 +0000694 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
695 swap_buffer(data, pkt_len);
696
Sascha Hauer22f6b862009-04-15 01:32:18 +0000697 /* This does 16 byte alignment, exactly what we need.
698 * The packet length includes FCS, but we don't want to
699 * include that when passing upstream as it messes up
700 * bridging applications.
701 */
Sascha Hauer85498892009-04-15 01:32:21 +0000702 skb = dev_alloc_skb(pkt_len - 4 + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Sascha Hauer85498892009-04-15 01:32:21 +0000704 if (unlikely(!skb)) {
Sascha Hauer22f6b862009-04-15 01:32:18 +0000705 printk("%s: Memory squeeze, dropping packet.\n",
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100706 ndev->name);
707 ndev->stats.rx_dropped++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000708 } else {
Sascha Hauer85498892009-04-15 01:32:21 +0000709 skb_reserve(skb, NET_IP_ALIGN);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000710 skb_put(skb, pkt_len - 4); /* Make room */
711 skb_copy_to_linear_data(skb, data, pkt_len - 4);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100712 skb->protocol = eth_type_trans(skb, ndev);
Richard Cochran18a03b92011-06-12 02:18:59 +0000713 if (!skb_defer_rx_timestamp(skb))
714 netif_rx(skb);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000715 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000716
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100717 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, data,
718 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000719rx_processing_done:
720 /* Clear the status flags for this buffer */
721 status &= ~BD_ENET_RX_STATS;
722
723 /* Mark the buffer empty */
724 status |= BD_ENET_RX_EMPTY;
725 bdp->cbd_sc = status;
726
727 /* Update BD pointer to next entry */
728 if (status & BD_ENET_RX_WRAP)
729 bdp = fep->rx_bd_base;
730 else
731 bdp++;
732 /* Doing this here will keep the FEC running while we process
733 * incoming frames. On a heavily loaded network, we should be
734 * able to keep up at the expense of system resources.
735 */
736 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000738 fep->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000740 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
Uwe Kleine-König45993652011-01-19 20:47:04 +0100743static irqreturn_t
744fec_enet_interrupt(int irq, void *dev_id)
745{
746 struct net_device *ndev = dev_id;
747 struct fec_enet_private *fep = netdev_priv(ndev);
748 uint int_events;
749 irqreturn_t ret = IRQ_NONE;
750
751 do {
752 int_events = readl(fep->hwp + FEC_IEVENT);
753 writel(int_events, fep->hwp + FEC_IEVENT);
754
755 if (int_events & FEC_ENET_RXF) {
756 ret = IRQ_HANDLED;
757 fec_enet_rx(ndev);
758 }
759
760 /* Transmit OK, or non-fatal error. Update the buffer
761 * descriptors. FEC handles all errors, we just discover
762 * them as part of the transmit process.
763 */
764 if (int_events & FEC_ENET_TXF) {
765 ret = IRQ_HANDLED;
766 fec_enet_tx(ndev);
767 }
768
769 if (int_events & FEC_ENET_MII) {
770 ret = IRQ_HANDLED;
771 complete(&fep->mdio_done);
772 }
773 } while (int_events);
774
775 return ret;
776}
777
778
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780/* ------------------------------------------------------------------------- */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100781static void __inline__ fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100783 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo49da97d2011-01-05 21:13:11 +0000784 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000785 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Shawn Guo49da97d2011-01-05 21:13:11 +0000787 /*
788 * try to get mac address in following order:
789 *
790 * 1) module parameter via kernel command line in form
791 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
792 */
793 iap = macaddr;
794
Shawn Guoca2cc332011-06-25 02:04:35 +0800795#ifdef CONFIG_OF
Shawn Guo49da97d2011-01-05 21:13:11 +0000796 /*
Shawn Guoca2cc332011-06-25 02:04:35 +0800797 * 2) from device tree data
798 */
799 if (!is_valid_ether_addr(iap)) {
800 struct device_node *np = fep->pdev->dev.of_node;
801 if (np) {
802 const char *mac = of_get_mac_address(np);
803 if (mac)
804 iap = (unsigned char *) mac;
805 }
806 }
807#endif
808
809 /*
810 * 3) from flash or fuse (via platform data)
Shawn Guo49da97d2011-01-05 21:13:11 +0000811 */
812 if (!is_valid_ether_addr(iap)) {
813#ifdef CONFIG_M5272
814 if (FEC_FLASHMAC)
815 iap = (unsigned char *)FEC_FLASHMAC;
816#else
817 if (pdata)
818 memcpy(iap, pdata->mac, ETH_ALEN);
819#endif
820 }
821
822 /*
Shawn Guoca2cc332011-06-25 02:04:35 +0800823 * 4) FEC mac registers set by bootloader
Shawn Guo49da97d2011-01-05 21:13:11 +0000824 */
825 if (!is_valid_ether_addr(iap)) {
826 *((unsigned long *) &tmpaddr[0]) =
827 be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
828 *((unsigned short *) &tmpaddr[4]) =
829 be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 iap = &tmpaddr[0];
831 }
832
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100833 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Shawn Guo49da97d2011-01-05 21:13:11 +0000835 /* Adjust MAC if using macaddr */
836 if (iap == macaddr)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100837 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->pdev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840/* ------------------------------------------------------------------------- */
841
Bryan Wue6b043d2010-03-31 02:10:44 +0000842/*
843 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100845static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100847 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000848 struct phy_device *phy_dev = fep->phy_dev;
849 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Bryan Wue6b043d2010-03-31 02:10:44 +0000851 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Bryan Wue6b043d2010-03-31 02:10:44 +0000853 spin_lock_irqsave(&fep->hw_lock, flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400854
Bryan Wue6b043d2010-03-31 02:10:44 +0000855 /* Prevent a state halted on mii error */
856 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
857 phy_dev->state = PHY_RESUMING;
858 goto spin_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
Bryan Wue6b043d2010-03-31 02:10:44 +0000860
861 /* Duplex link change */
862 if (phy_dev->link) {
863 if (fep->full_duplex != phy_dev->duplex) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100864 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000865 status_change = 1;
866 }
867 }
868
869 /* Link on or off change */
870 if (phy_dev->link != fep->link) {
871 fep->link = phy_dev->link;
872 if (phy_dev->link)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100873 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000874 else
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100875 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000876 status_change = 1;
877 }
878
879spin_unlock:
880 spin_unlock_irqrestore(&fep->hw_lock, flags);
881
882 if (status_change)
883 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
Bryan Wue6b043d2010-03-31 02:10:44 +0000886static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Bryan Wue6b043d2010-03-31 02:10:44 +0000888 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000889 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000890
891 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000892 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000893
894 /* start a read op */
895 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
896 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
897 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
898
899 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000900 time_left = wait_for_completion_timeout(&fep->mdio_done,
901 usecs_to_jiffies(FEC_MII_TIMEOUT));
902 if (time_left == 0) {
903 fep->mii_timeout = 1;
904 printk(KERN_ERR "FEC: MDIO read timeout\n");
905 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000906 }
907
908 /* return value */
909 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
910}
911
912static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
913 u16 value)
914{
915 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000916 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000917
918 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000919 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000920
Shawn Guo862f0982011-01-05 21:13:09 +0000921 /* start a write op */
922 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +0000923 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
924 FEC_MMFR_TA | FEC_MMFR_DATA(value),
925 fep->hwp + FEC_MII_DATA);
926
927 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000928 time_left = wait_for_completion_timeout(&fep->mdio_done,
929 usecs_to_jiffies(FEC_MII_TIMEOUT));
930 if (time_left == 0) {
931 fep->mii_timeout = 1;
932 printk(KERN_ERR "FEC: MDIO write timeout\n");
933 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000934 }
935
936 return 0;
937}
938
939static int fec_enet_mdio_reset(struct mii_bus *bus)
940{
941 return 0;
942}
943
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100944static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +0000945{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100946 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +0000947 const struct platform_device_id *id_entry =
948 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000949 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000950 char mdio_bus_id[MII_BUS_ID_SIZE];
951 char phy_name[MII_BUS_ID_SIZE + 3];
952 int phy_id;
Shawn Guob5680e02011-01-05 21:13:13 +0000953 int dev_id = fep->pdev->id;
Bryan Wue6b043d2010-03-31 02:10:44 +0000954
Bryan Wu418bd0d2010-05-28 03:40:39 -0700955 fep->phy_dev = NULL;
956
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000957 /* check for attached phy */
958 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
959 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
960 continue;
961 if (fep->mii_bus->phy_map[phy_id] == NULL)
962 continue;
963 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
964 continue;
Shawn Guob5680e02011-01-05 21:13:13 +0000965 if (dev_id--)
966 continue;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000967 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
968 break;
Bryan Wue6b043d2010-03-31 02:10:44 +0000969 }
970
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000971 if (phy_id >= PHY_MAX_ADDR) {
972 printk(KERN_INFO "%s: no PHY, assuming direct connection "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100973 "to switch\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000974 strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE);
975 phy_id = 0;
976 }
977
978 snprintf(phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT, mdio_bus_id, phy_id);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100979 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link, 0,
Shawn Guo230dec62011-09-23 02:12:48 +0000980 fep->phy_interface);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000981 if (IS_ERR(phy_dev)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100982 printk(KERN_ERR "%s: could not attach to PHY\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000983 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000984 }
985
986 /* mask with MAC supported features */
Shawn Guo230dec62011-09-23 02:12:48 +0000987 if (id_entry->driver_data & FEC_QUIRK_HAS_GBIT)
988 phy_dev->supported &= PHY_GBIT_FEATURES;
989 else
990 phy_dev->supported &= PHY_BASIC_FEATURES;
991
Bryan Wue6b043d2010-03-31 02:10:44 +0000992 phy_dev->advertising = phy_dev->supported;
993
994 fep->phy_dev = phy_dev;
995 fep->link = 0;
996 fep->full_duplex = 0;
997
Bryan Wu418bd0d2010-05-28 03:40:39 -0700998 printk(KERN_INFO "%s: Freescale FEC PHY driver [%s] "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100999 "(mii_bus:phy_addr=%s, irq=%d)\n", ndev->name,
Bryan Wu418bd0d2010-05-28 03:40:39 -07001000 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
1001 fep->phy_dev->irq);
1002
Bryan Wue6b043d2010-03-31 02:10:44 +00001003 return 0;
1004}
1005
1006static int fec_enet_mii_init(struct platform_device *pdev)
1007{
Shawn Guob5680e02011-01-05 21:13:13 +00001008 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001009 struct net_device *ndev = platform_get_drvdata(pdev);
1010 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +00001011 const struct platform_device_id *id_entry =
1012 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001013 int err = -ENXIO, i;
1014
Shawn Guob5680e02011-01-05 21:13:13 +00001015 /*
1016 * The dual fec interfaces are not equivalent with enet-mac.
1017 * Here are the differences:
1018 *
1019 * - fec0 supports MII & RMII modes while fec1 only supports RMII
1020 * - fec0 acts as the 1588 time master while fec1 is slave
1021 * - external phys can only be configured by fec0
1022 *
1023 * That is to say fec1 can not work independently. It only works
1024 * when fec0 is working. The reason behind this design is that the
1025 * second interface is added primarily for Switch mode.
1026 *
1027 * Because of the last point above, both phys are attached on fec0
1028 * mdio interface in board design, and need to be configured by
1029 * fec0 mii_bus.
1030 */
Shawn Guoc8288272011-09-23 02:12:47 +00001031 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && pdev->id > 0) {
Shawn Guob5680e02011-01-05 21:13:13 +00001032 /* fec1 uses fec0 mii_bus */
1033 fep->mii_bus = fec0_mii_bus;
1034 return 0;
1035 }
1036
Bryan Wue6b043d2010-03-31 02:10:44 +00001037 fep->mii_timeout = 0;
1038
1039 /*
1040 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
Shawn Guo230dec62011-09-23 02:12:48 +00001041 *
1042 * The formula for FEC MDC is 'ref_freq / (MII_SPEED x 2)' while
1043 * for ENET-MAC is 'ref_freq / ((MII_SPEED + 1) x 2)'. The i.MX28
1044 * Reference Manual has an error on this, and gets fixed on i.MX6Q
1045 * document.
Bryan Wue6b043d2010-03-31 02:10:44 +00001046 */
Shawn Guo230dec62011-09-23 02:12:48 +00001047 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk), 5000000);
1048 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1049 fep->phy_speed--;
1050 fep->phy_speed <<= 1;
Bryan Wue6b043d2010-03-31 02:10:44 +00001051 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1052
1053 fep->mii_bus = mdiobus_alloc();
1054 if (fep->mii_bus == NULL) {
1055 err = -ENOMEM;
1056 goto err_out;
1057 }
1058
1059 fep->mii_bus->name = "fec_enet_mii_bus";
1060 fep->mii_bus->read = fec_enet_mdio_read;
1061 fep->mii_bus->write = fec_enet_mdio_write;
1062 fep->mii_bus->reset = fec_enet_mdio_reset;
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001063 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%x", pdev->id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +00001064 fep->mii_bus->priv = fep;
1065 fep->mii_bus->parent = &pdev->dev;
1066
1067 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
1068 if (!fep->mii_bus->irq) {
1069 err = -ENOMEM;
1070 goto err_out_free_mdiobus;
1071 }
1072
1073 for (i = 0; i < PHY_MAX_ADDR; i++)
1074 fep->mii_bus->irq[i] = PHY_POLL;
1075
Bryan Wue6b043d2010-03-31 02:10:44 +00001076 if (mdiobus_register(fep->mii_bus))
1077 goto err_out_free_mdio_irq;
1078
Shawn Guob5680e02011-01-05 21:13:13 +00001079 /* save fec0 mii_bus */
1080 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1081 fec0_mii_bus = fep->mii_bus;
1082
Bryan Wue6b043d2010-03-31 02:10:44 +00001083 return 0;
1084
Bryan Wue6b043d2010-03-31 02:10:44 +00001085err_out_free_mdio_irq:
1086 kfree(fep->mii_bus->irq);
1087err_out_free_mdiobus:
1088 mdiobus_free(fep->mii_bus);
1089err_out:
1090 return err;
1091}
1092
1093static void fec_enet_mii_remove(struct fec_enet_private *fep)
1094{
1095 if (fep->phy_dev)
1096 phy_disconnect(fep->phy_dev);
1097 mdiobus_unregister(fep->mii_bus);
1098 kfree(fep->mii_bus->irq);
1099 mdiobus_free(fep->mii_bus);
1100}
1101
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001102static int fec_enet_get_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001103 struct ethtool_cmd *cmd)
1104{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001105 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001106 struct phy_device *phydev = fep->phy_dev;
1107
1108 if (!phydev)
1109 return -ENODEV;
1110
1111 return phy_ethtool_gset(phydev, cmd);
1112}
1113
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001114static int fec_enet_set_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001115 struct ethtool_cmd *cmd)
1116{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001117 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001118 struct phy_device *phydev = fep->phy_dev;
1119
1120 if (!phydev)
1121 return -ENODEV;
1122
1123 return phy_ethtool_sset(phydev, cmd);
1124}
1125
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001126static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001127 struct ethtool_drvinfo *info)
1128{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001129 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Bryan Wue6b043d2010-03-31 02:10:44 +00001131 strcpy(info->driver, fep->pdev->dev.driver->name);
1132 strcpy(info->version, "Revision: 1.0");
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001133 strcpy(info->bus_info, dev_name(&ndev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
Bryan Wue6b043d2010-03-31 02:10:44 +00001135
1136static struct ethtool_ops fec_enet_ethtool_ops = {
1137 .get_settings = fec_enet_get_settings,
1138 .set_settings = fec_enet_set_settings,
1139 .get_drvinfo = fec_enet_get_drvinfo,
1140 .get_link = ethtool_op_get_link,
1141};
1142
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001143static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00001144{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001145 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001146 struct phy_device *phydev = fep->phy_dev;
1147
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001148 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00001149 return -EINVAL;
1150
1151 if (!phydev)
1152 return -ENODEV;
1153
Richard Cochran28b04112010-07-17 08:48:55 +00001154 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00001155}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001157static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001158{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001159 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001160 int i;
1161 struct sk_buff *skb;
1162 struct bufdesc *bdp;
1163
1164 bdp = fep->rx_bd_base;
1165 for (i = 0; i < RX_RING_SIZE; i++) {
1166 skb = fep->rx_skbuff[i];
1167
1168 if (bdp->cbd_bufaddr)
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001169 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001170 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1171 if (skb)
1172 dev_kfree_skb(skb);
1173 bdp++;
1174 }
1175
1176 bdp = fep->tx_bd_base;
1177 for (i = 0; i < TX_RING_SIZE; i++)
1178 kfree(fep->tx_bounce[i]);
1179}
1180
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001181static int fec_enet_alloc_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001182{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001183 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001184 int i;
1185 struct sk_buff *skb;
1186 struct bufdesc *bdp;
1187
1188 bdp = fep->rx_bd_base;
1189 for (i = 0; i < RX_RING_SIZE; i++) {
1190 skb = dev_alloc_skb(FEC_ENET_RX_FRSIZE);
1191 if (!skb) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001192 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001193 return -ENOMEM;
1194 }
1195 fep->rx_skbuff[i] = skb;
1196
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001197 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, skb->data,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001198 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1199 bdp->cbd_sc = BD_ENET_RX_EMPTY;
1200 bdp++;
1201 }
1202
1203 /* Set the last buffer to wrap. */
1204 bdp--;
1205 bdp->cbd_sc |= BD_SC_WRAP;
1206
1207 bdp = fep->tx_bd_base;
1208 for (i = 0; i < TX_RING_SIZE; i++) {
1209 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
1210
1211 bdp->cbd_sc = 0;
1212 bdp->cbd_bufaddr = 0;
1213 bdp++;
1214 }
1215
1216 /* Set the last buffer to wrap. */
1217 bdp--;
1218 bdp->cbd_sc |= BD_SC_WRAP;
1219
1220 return 0;
1221}
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001224fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001226 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001227 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 /* I should reset the ring buffers here, but I don't yet know
1230 * a simple way to do that.
1231 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001233 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001234 if (ret)
1235 return ret;
1236
Bryan Wu418bd0d2010-05-28 03:40:39 -07001237 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001238 ret = fec_enet_mii_probe(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001239 if (ret) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001240 fec_enet_free_buffers(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001241 return ret;
1242 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001243 phy_start(fep->phy_dev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001244 netif_start_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 fep->opened = 1;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
1249static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001250fec_enet_close(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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Sascha Hauer22f6b862009-04-15 01:32:18 +00001254 /* Don't know what to do yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 fep->opened = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001256 netif_stop_queue(ndev);
1257 fec_stop(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001259 if (fep->phy_dev) {
1260 phy_stop(fep->phy_dev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001261 phy_disconnect(fep->phy_dev);
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001262 }
Bryan Wu418bd0d2010-05-28 03:40:39 -07001263
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001264 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return 0;
1267}
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269/* Set or clear the multicast filter for this adaptor.
1270 * Skeleton taken from sunlance driver.
1271 * The CPM Ethernet implementation allows Multicast as well as individual
1272 * MAC address filtering. Some of the drivers check to make sure it is
1273 * a group multicast address, and discard those that are not. I guess I
1274 * will do the same for now, but just remove the test if you want
1275 * individual filtering as well (do the upper net layers want or support
1276 * this kind of feature?).
1277 */
1278
1279#define HASH_BITS 6 /* #bits in hash */
1280#define CRC32_POLY 0xEDB88320
1281
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001282static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001284 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001285 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00001286 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 unsigned char hash;
1288
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001289 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00001290 tmp = readl(fep->hwp + FEC_R_CNTRL);
1291 tmp |= 0x8;
1292 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00001293 return;
1294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Sascha Hauer4e831832009-04-15 01:32:19 +00001296 tmp = readl(fep->hwp + FEC_R_CNTRL);
1297 tmp &= ~0x8;
1298 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001299
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001300 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001301 /* Catch all multicast addresses, so set the
1302 * filter to all 1's
1303 */
1304 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1305 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Sascha Hauer4e831832009-04-15 01:32:19 +00001307 return;
1308 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001309
Sascha Hauer4e831832009-04-15 01:32:19 +00001310 /* Clear filter and add the addresses in hash register
1311 */
1312 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1313 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001315 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001316 /* calculate crc32 value of mac address */
1317 crc = 0xffffffff;
1318
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001319 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001320 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00001321 for (bit = 0; bit < 8; bit++, data >>= 1) {
1322 crc = (crc >> 1) ^
1323 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
1325 }
Sascha Hauer4e831832009-04-15 01:32:19 +00001326
1327 /* only upper 6 bits (HASH_BITS) are used
1328 * which point to specific bit in he hash registers
1329 */
1330 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1331
1332 if (hash > 31) {
1333 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1334 tmp |= 1 << (hash - 32);
1335 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1336 } else {
1337 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1338 tmp |= 1 << hash;
1339 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
1342}
1343
Sascha Hauer22f6b862009-04-15 01:32:18 +00001344/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00001345static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001346fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001348 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00001349 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Sascha Hauer009fda82009-04-15 01:32:23 +00001351 if (!is_valid_ether_addr(addr->sa_data))
1352 return -EADDRNOTAVAIL;
1353
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001354 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
Sascha Hauer009fda82009-04-15 01:32:23 +00001355
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001356 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
1357 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00001358 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001359 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07001360 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00001361 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
1363
Sascha Hauer009fda82009-04-15 01:32:23 +00001364static const struct net_device_ops fec_netdev_ops = {
1365 .ndo_open = fec_enet_open,
1366 .ndo_stop = fec_enet_close,
1367 .ndo_start_xmit = fec_enet_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001368 .ndo_set_rx_mode = set_multicast_list,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00001369 .ndo_change_mtu = eth_change_mtu,
Sascha Hauer009fda82009-04-15 01:32:23 +00001370 .ndo_validate_addr = eth_validate_addr,
1371 .ndo_tx_timeout = fec_timeout,
1372 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001373 .ndo_do_ioctl = fec_enet_ioctl,
Sascha Hauer009fda82009-04-15 01:32:23 +00001374};
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 /*
1377 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00001378 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001380static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001382 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001383 struct bufdesc *cbd_base;
Rob Herring633e7532010-02-05 08:56:20 +00001384 struct bufdesc *bdp;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001385 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001387 /* Allocate memory for buffer descriptors. */
1388 cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
1389 GFP_KERNEL);
1390 if (!cbd_base) {
Greg Ungerer562d2f82005-11-07 14:09:50 +10001391 printk("FEC: allocate descriptor memory failed?\n");
1392 return -ENOMEM;
1393 }
1394
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001395 spin_lock_init(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001396
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001397 fep->netdev = ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Shawn Guo49da97d2011-01-05 21:13:11 +00001399 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001400 fec_get_mac(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001402 /* Set receive and transmit descriptor base. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 fep->rx_bd_base = cbd_base;
1404 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1405
Sascha Hauer22f6b862009-04-15 01:32:18 +00001406 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001407 ndev->watchdog_timeo = TX_TIMEOUT;
1408 ndev->netdev_ops = &fec_netdev_ops;
1409 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00001410
1411 /* Initialize the receive buffer descriptors. */
1412 bdp = fep->rx_bd_base;
1413 for (i = 0; i < RX_RING_SIZE; i++) {
1414
1415 /* Initialize the BD for every fragment in the page. */
1416 bdp->cbd_sc = 0;
1417 bdp++;
1418 }
1419
1420 /* Set the last buffer to wrap */
1421 bdp--;
1422 bdp->cbd_sc |= BD_SC_WRAP;
1423
1424 /* ...and the same for transmit */
1425 bdp = fep->tx_bd_base;
1426 for (i = 0; i < TX_RING_SIZE; i++) {
1427
1428 /* Initialize the BD for every fragment in the page. */
1429 bdp->cbd_sc = 0;
1430 bdp->cbd_bufaddr = 0;
1431 bdp++;
1432 }
1433
1434 /* Set the last buffer to wrap */
1435 bdp--;
1436 bdp->cbd_sc |= BD_SC_WRAP;
1437
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001438 fec_restart(ndev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return 0;
1441}
1442
Shawn Guoca2cc332011-06-25 02:04:35 +08001443#ifdef CONFIG_OF
1444static int __devinit fec_get_phy_mode_dt(struct platform_device *pdev)
1445{
1446 struct device_node *np = pdev->dev.of_node;
1447
1448 if (np)
1449 return of_get_phy_mode(np);
1450
1451 return -ENODEV;
1452}
1453
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001454static void __devinit fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08001455{
1456 int err, phy_reset;
1457 struct device_node *np = pdev->dev.of_node;
1458
1459 if (!np)
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001460 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08001461
1462 phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
1463 err = gpio_request_one(phy_reset, GPIOF_OUT_INIT_LOW, "phy-reset");
1464 if (err) {
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001465 pr_debug("FEC: failed to get gpio phy-reset: %d\n", err);
1466 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08001467 }
1468 msleep(1);
1469 gpio_set_value(phy_reset, 1);
Shawn Guoca2cc332011-06-25 02:04:35 +08001470}
1471#else /* CONFIG_OF */
1472static inline int fec_get_phy_mode_dt(struct platform_device *pdev)
1473{
1474 return -ENODEV;
1475}
1476
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001477static inline void fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08001478{
1479 /*
1480 * In case of platform probe, the reset has been done
1481 * by machine code.
1482 */
Shawn Guoca2cc332011-06-25 02:04:35 +08001483}
1484#endif /* CONFIG_OF */
1485
Sascha Haueread73182009-01-28 23:03:11 +00001486static int __devinit
1487fec_probe(struct platform_device *pdev)
1488{
1489 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001490 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00001491 struct net_device *ndev;
1492 int i, irq, ret = 0;
1493 struct resource *r;
Shawn Guoca2cc332011-06-25 02:04:35 +08001494 const struct of_device_id *of_id;
1495
1496 of_id = of_match_device(fec_dt_ids, &pdev->dev);
1497 if (of_id)
1498 pdev->id_entry = of_id->data;
Sascha Haueread73182009-01-28 23:03:11 +00001499
1500 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1501 if (!r)
1502 return -ENXIO;
1503
1504 r = request_mem_region(r->start, resource_size(r), pdev->name);
1505 if (!r)
1506 return -EBUSY;
1507
1508 /* Init network device */
1509 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001510 if (!ndev) {
1511 ret = -ENOMEM;
1512 goto failed_alloc_etherdev;
1513 }
Sascha Haueread73182009-01-28 23:03:11 +00001514
1515 SET_NETDEV_DEV(ndev, &pdev->dev);
1516
1517 /* setup board info structure */
1518 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001519
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001520 fep->hwp = ioremap(r->start, resource_size(r));
Bryan Wue6b043d2010-03-31 02:10:44 +00001521 fep->pdev = pdev;
Sascha Haueread73182009-01-28 23:03:11 +00001522
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001523 if (!fep->hwp) {
Sascha Haueread73182009-01-28 23:03:11 +00001524 ret = -ENOMEM;
1525 goto failed_ioremap;
1526 }
1527
1528 platform_set_drvdata(pdev, ndev);
1529
Shawn Guoca2cc332011-06-25 02:04:35 +08001530 ret = fec_get_phy_mode_dt(pdev);
1531 if (ret < 0) {
1532 pdata = pdev->dev.platform_data;
1533 if (pdata)
1534 fep->phy_interface = pdata->phy;
1535 else
1536 fep->phy_interface = PHY_INTERFACE_MODE_MII;
1537 } else {
1538 fep->phy_interface = ret;
1539 }
1540
1541 fec_reset_phy(pdev);
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001542
Sascha Haueread73182009-01-28 23:03:11 +00001543 /* This device has up to three irqs on some platforms */
1544 for (i = 0; i < 3; i++) {
1545 irq = platform_get_irq(pdev, i);
1546 if (i && irq < 0)
1547 break;
1548 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1549 if (ret) {
Uwe Kleine-Königb2b09ad2011-01-13 21:49:05 +01001550 while (--i >= 0) {
Sascha Haueread73182009-01-28 23:03:11 +00001551 irq = platform_get_irq(pdev, i);
1552 free_irq(irq, ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001553 }
1554 goto failed_irq;
1555 }
1556 }
1557
1558 fep->clk = clk_get(&pdev->dev, "fec_clk");
1559 if (IS_ERR(fep->clk)) {
1560 ret = PTR_ERR(fep->clk);
1561 goto failed_clk;
1562 }
1563 clk_enable(fep->clk);
1564
Shawn Guo8649a232011-01-05 21:13:10 +00001565 ret = fec_enet_init(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001566 if (ret)
1567 goto failed_init;
1568
Bryan Wue6b043d2010-03-31 02:10:44 +00001569 ret = fec_enet_mii_init(pdev);
1570 if (ret)
1571 goto failed_mii_init;
1572
Oskar Schirmer03c698c2010-10-07 02:30:30 +00001573 /* Carrier starts down, phylib will bring it up */
1574 netif_carrier_off(ndev);
1575
Sascha Haueread73182009-01-28 23:03:11 +00001576 ret = register_netdev(ndev);
1577 if (ret)
1578 goto failed_register;
1579
1580 return 0;
1581
1582failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00001583 fec_enet_mii_remove(fep);
1584failed_mii_init:
Sascha Haueread73182009-01-28 23:03:11 +00001585failed_init:
1586 clk_disable(fep->clk);
1587 clk_put(fep->clk);
1588failed_clk:
1589 for (i = 0; i < 3; i++) {
1590 irq = platform_get_irq(pdev, i);
1591 if (irq > 0)
1592 free_irq(irq, ndev);
1593 }
1594failed_irq:
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001595 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001596failed_ioremap:
1597 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001598failed_alloc_etherdev:
1599 release_mem_region(r->start, resource_size(r));
Sascha Haueread73182009-01-28 23:03:11 +00001600
1601 return ret;
1602}
1603
1604static int __devexit
1605fec_drv_remove(struct platform_device *pdev)
1606{
1607 struct net_device *ndev = platform_get_drvdata(pdev);
1608 struct fec_enet_private *fep = netdev_priv(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001609 struct resource *r;
Sascha Haueread73182009-01-28 23:03:11 +00001610
Sascha Haueread73182009-01-28 23:03:11 +00001611 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001612 fec_enet_mii_remove(fep);
Sascha Haueread73182009-01-28 23:03:11 +00001613 clk_disable(fep->clk);
1614 clk_put(fep->clk);
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001615 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001616 unregister_netdev(ndev);
1617 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001618
1619 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1620 BUG_ON(!r);
1621 release_mem_region(r->start, resource_size(r));
1622
Uwe Kleine-Königb3cde362011-01-25 18:03:37 +01001623 platform_set_drvdata(pdev, NULL);
1624
Sascha Haueread73182009-01-28 23:03:11 +00001625 return 0;
1626}
1627
Denis Kirjanov59d42892010-06-02 09:27:04 +00001628#ifdef CONFIG_PM
Sascha Haueread73182009-01-28 23:03:11 +00001629static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001630fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001631{
Eric Benard87cad5c2010-06-18 04:19:54 +00001632 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001633 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001634
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001635 if (netif_running(ndev)) {
1636 fec_stop(ndev);
1637 netif_device_detach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001638 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001639 clk_disable(fep->clk);
1640
Sascha Haueread73182009-01-28 23:03:11 +00001641 return 0;
1642}
1643
1644static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001645fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001646{
Eric Benard87cad5c2010-06-18 04:19:54 +00001647 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001648 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001649
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001650 clk_enable(fep->clk);
1651 if (netif_running(ndev)) {
1652 fec_restart(ndev, fep->full_duplex);
1653 netif_device_attach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001654 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001655
Sascha Haueread73182009-01-28 23:03:11 +00001656 return 0;
1657}
1658
Denis Kirjanov59d42892010-06-02 09:27:04 +00001659static const struct dev_pm_ops fec_pm_ops = {
1660 .suspend = fec_suspend,
1661 .resume = fec_resume,
1662 .freeze = fec_suspend,
1663 .thaw = fec_resume,
1664 .poweroff = fec_suspend,
1665 .restore = fec_resume,
1666};
Eric Benard87cad5c2010-06-18 04:19:54 +00001667#endif
Denis Kirjanov59d42892010-06-02 09:27:04 +00001668
Sascha Haueread73182009-01-28 23:03:11 +00001669static struct platform_driver fec_driver = {
1670 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00001671 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00001672 .owner = THIS_MODULE,
1673#ifdef CONFIG_PM
1674 .pm = &fec_pm_ops,
1675#endif
Shawn Guoca2cc332011-06-25 02:04:35 +08001676 .of_match_table = fec_dt_ids,
Sascha Haueread73182009-01-28 23:03:11 +00001677 },
Shawn Guob5680e02011-01-05 21:13:13 +00001678 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00001679 .probe = fec_probe,
1680 .remove = __devexit_p(fec_drv_remove),
Sascha Haueread73182009-01-28 23:03:11 +00001681};
1682
1683static int __init
1684fec_enet_module_init(void)
1685{
1686 printk(KERN_INFO "FEC Ethernet Driver\n");
1687
1688 return platform_driver_register(&fec_driver);
1689}
1690
1691static void __exit
1692fec_enet_cleanup(void)
1693{
1694 platform_driver_unregister(&fec_driver);
1695}
1696
1697module_exit(fec_enet_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698module_init(fec_enet_module_init);
1699
1700MODULE_LICENSE("GPL");