blob: 01ee9cc417b2ff96bc8fc83d02f5bc28c3e453a8 [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 {
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000102 IMX25_FEC = 1, /* runs on i.mx25/50/53 */
Shawn Guoca2cc332011-06-25 02:04:35 +0800103 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)
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000135#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
Xiao Jiangc7c83d12011-09-29 02:15:56 +0000180/* This device has up to three irqs on some platforms */
181#define FEC_IRQ_NUM 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183/*
Matt Waddel6b265292006-06-27 13:10:56 +1000184 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * size bits. Other FEC hardware does not, so we need to take that into
186 * account when setting it.
187 */
Greg Ungerer562d2f82005-11-07 14:09:50 +1000188#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Uwe Kleine-König085e79e2011-01-17 09:52:18 +0100189 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
191#else
192#define OPT_FRAME_SIZE 0
193#endif
194
195/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and
196 * tx_bd_base always point to the base of the buffer descriptors. The
197 * cur_rx and cur_tx point to the currently available buffer.
198 * The dirty_tx tracks the current buffer that is being sent by the
199 * controller. The cur_tx and dirty_tx are equal under both completely
200 * empty and completely full conditions. The empty/ready indicator in
201 * the buffer descriptor determines the actual condition.
202 */
203struct fec_enet_private {
204 /* Hardware registers of the FEC device */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000205 void __iomem *hwp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Greg Ungerercb84d6e2007-07-30 16:29:09 +1000207 struct net_device *netdev;
208
Sascha Haueread73182009-01-28 23:03:11 +0000209 struct clk *clk;
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
212 unsigned char *tx_bounce[TX_RING_SIZE];
213 struct sk_buff* tx_skbuff[TX_RING_SIZE];
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000214 struct sk_buff* rx_skbuff[RX_RING_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 ushort skb_cur;
216 ushort skb_dirty;
217
Sascha Hauer22f6b862009-04-15 01:32:18 +0000218 /* CPM dual port RAM relative addresses */
Sascha Hauer4661e752009-01-28 23:03:07 +0000219 dma_addr_t bd_dma;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000220 /* Address of Rx and Tx buffers */
Sascha Hauer2e285322009-04-15 01:32:16 +0000221 struct bufdesc *rx_bd_base;
222 struct bufdesc *tx_bd_base;
223 /* The next free ring entry */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100224 struct bufdesc *cur_rx, *cur_tx;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000225 /* The ring entries to be free()ed */
Sascha Hauer2e285322009-04-15 01:32:16 +0000226 struct bufdesc *dirty_tx;
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 uint tx_full;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000229 /* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
230 spinlock_t hw_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100232 struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 int opened;
Bryan Wue6b043d2010-03-31 02:10:44 +0000235
236 /* Phylib and MDIO interface */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100237 struct mii_bus *mii_bus;
238 struct phy_device *phy_dev;
239 int mii_timeout;
240 uint phy_speed;
Baruch Siach5eb32bd2010-05-24 00:36:13 -0700241 phy_interface_t phy_interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 int link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 int full_duplex;
Baruch Siach97b72e42010-07-11 21:12:51 +0000244 struct completion mdio_done;
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +0000245 int irq[FEC_IRQ_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246};
247
Bryan Wue6b043d2010-03-31 02:10:44 +0000248/* FEC MII MMFR bits definition */
249#define FEC_MMFR_ST (1 << 30)
250#define FEC_MMFR_OP_READ (2 << 28)
251#define FEC_MMFR_OP_WRITE (1 << 28)
252#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
253#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
254#define FEC_MMFR_TA (2 << 16)
255#define FEC_MMFR_DATA(v) (v & 0xffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Baruch Siach97b72e42010-07-11 21:12:51 +0000257#define FEC_MII_TIMEOUT 1000 /* us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Sascha Hauer22f6b862009-04-15 01:32:18 +0000259/* Transmitter timeout */
260#define TX_TIMEOUT (2 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Lothar Waßmanne163cc92011-12-07 21:59:31 +0000262static int mii_cnt;
263
Shawn Guob5680e02011-01-05 21:13:13 +0000264static void *swap_buffer(void *bufaddr, int len)
265{
266 int i;
267 unsigned int *buf = bufaddr;
268
269 for (i = 0; i < (len + 3) / 4; i++, buf++)
270 *buf = cpu_to_be32(*buf);
271
272 return bufaddr;
273}
274
Denis Kirjanovc7621cb2010-06-02 09:15:47 +0000275static netdev_tx_t
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100276fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100278 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000279 const struct platform_device_id *id_entry =
280 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000281 struct bufdesc *bdp;
Greg Ungerer9555b312009-08-06 17:58:18 +0000282 void *bufaddr;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000283 unsigned short status;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000284 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (!fep->link) {
287 /* Link is down or autonegotiation is in progress. */
Patrick McHardy5b548142009-06-12 06:22:29 +0000288 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000291 spin_lock_irqsave(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* Fill in a Tx ring entry */
293 bdp = fep->cur_tx;
294
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000295 status = bdp->cbd_sc;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000296
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000297 if (status & BD_ENET_TX_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 /* Ooops. All transmit buffers are full. Bail out.
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100299 * This should not happen, since ndev->tbusy should be set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100301 printk("%s: tx queue full!.\n", ndev->name);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000302 spin_unlock_irqrestore(&fep->hw_lock, flags);
Patrick McHardy5b548142009-06-12 06:22:29 +0000303 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Sascha Hauer22f6b862009-04-15 01:32:18 +0000306 /* Clear all of the status flags */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000307 status &= ~BD_ENET_TX_STATS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Sascha Hauer22f6b862009-04-15 01:32:18 +0000309 /* Set buffer length and buffer pointer */
Greg Ungerer9555b312009-08-06 17:58:18 +0000310 bufaddr = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 bdp->cbd_datlen = skb->len;
312
313 /*
Sascha Hauer22f6b862009-04-15 01:32:18 +0000314 * On some FEC implementations data must be aligned on
315 * 4-byte boundaries. Use bounce buffers to copy data
316 * and get it aligned. Ugh.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 */
Greg Ungerer9555b312009-08-06 17:58:18 +0000318 if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 unsigned int index;
320 index = bdp - fep->tx_bd_base;
Uwe Kleine-König8a73b0b2011-01-13 21:34:31 +0100321 memcpy(fep->tx_bounce[index], skb->data, skb->len);
Greg Ungerer9555b312009-08-06 17:58:18 +0000322 bufaddr = fep->tx_bounce[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324
Shawn Guob5680e02011-01-05 21:13:13 +0000325 /*
326 * Some design made an incorrect assumption on endian mode of
327 * the system that it's running on. As the result, driver has to
328 * swap every frame going to and coming from the controller.
329 */
330 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
331 swap_buffer(bufaddr, skb->len);
332
Sascha Hauer22f6b862009-04-15 01:32:18 +0000333 /* Save skb pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 fep->tx_skbuff[fep->skb_cur] = skb;
335
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100336 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 /* Push the data cache so the CPM does not get stale memory
340 * data.
341 */
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100342 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000343 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000345 /* Send it on its way. Tell FEC it's ready, interrupt when done,
346 * it's the last BD of the frame, and to put the CRC on the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000348 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000350 bdp->cbd_sc = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /* Trigger transmission start */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000353 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Sascha Hauer22f6b862009-04-15 01:32:18 +0000355 /* If this was the last BD in the ring, start at the beginning again. */
356 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 bdp = fep->tx_bd_base;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000358 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 bdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 if (bdp == fep->dirty_tx) {
362 fep->tx_full = 1;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100363 netif_stop_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365
Sascha Hauer2e285322009-04-15 01:32:16 +0000366 fep->cur_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Richard Cochran18a03b92011-06-12 02:18:59 +0000368 skb_tx_timestamp(skb);
369
Richard Cochrana0087a32011-06-19 03:31:40 +0000370 spin_unlock_irqrestore(&fep->hw_lock, flags);
371
Patrick McHardy6ed10652009-06-23 06:03:08 +0000372 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Uwe Kleine-König45993652011-01-19 20:47:04 +0100375/* This function is called to start or restart the FEC during a link
376 * change. This only happens when switching between half and full
377 * duplex.
378 */
379static void
380fec_restart(struct net_device *ndev, int duplex)
381{
382 struct fec_enet_private *fep = netdev_priv(ndev);
383 const struct platform_device_id *id_entry =
384 platform_get_device_id(fep->pdev);
385 int i;
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100386 u32 temp_mac[2];
387 u32 rcntl = OPT_FRAME_SIZE | 0x04;
Shawn Guo230dec62011-09-23 02:12:48 +0000388 u32 ecntl = 0x2; /* ETHEREN */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100389
390 /* Whack a reset. We should wait for this. */
391 writel(1, fep->hwp + FEC_ECNTRL);
392 udelay(10);
393
394 /*
395 * enet-mac reset will reset mac address registers too,
396 * so need to reconfigure it.
397 */
398 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
399 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
400 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
401 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
402 }
403
404 /* Clear any outstanding interrupt. */
405 writel(0xffc00000, fep->hwp + FEC_IEVENT);
406
407 /* Reset all multicast. */
408 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
409 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
410#ifndef CONFIG_M5272
411 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
412 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
413#endif
414
415 /* Set maximum receive buffer size. */
416 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
417
418 /* Set receive and transmit descriptor base. */
419 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
420 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc) * RX_RING_SIZE,
421 fep->hwp + FEC_X_DES_START);
422
423 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
424 fep->cur_rx = fep->rx_bd_base;
425
426 /* Reset SKB transmit buffers. */
427 fep->skb_cur = fep->skb_dirty = 0;
428 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
429 if (fep->tx_skbuff[i]) {
430 dev_kfree_skb_any(fep->tx_skbuff[i]);
431 fep->tx_skbuff[i] = NULL;
432 }
433 }
434
435 /* Enable MII mode */
436 if (duplex) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100437 /* FD enable */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100438 writel(0x04, fep->hwp + FEC_X_CNTRL);
439 } else {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100440 /* No Rcv on Xmit */
441 rcntl |= 0x02;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100442 writel(0x0, fep->hwp + FEC_X_CNTRL);
443 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100444
Uwe Kleine-König45993652011-01-19 20:47:04 +0100445 fep->full_duplex = duplex;
446
447 /* Set MII speed */
448 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
449
450 /*
451 * The phy interface and speed need to get configured
452 * differently on enet-mac.
453 */
454 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100455 /* Enable flow control and length check */
456 rcntl |= 0x40000000 | 0x00000020;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100457
Shawn Guo230dec62011-09-23 02:12:48 +0000458 /* RGMII, RMII or MII */
459 if (fep->phy_interface == PHY_INTERFACE_MODE_RGMII)
460 rcntl |= (1 << 6);
461 else if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100462 rcntl |= (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100463 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100464 rcntl &= ~(1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100465
Shawn Guo230dec62011-09-23 02:12:48 +0000466 /* 1G, 100M or 10M */
467 if (fep->phy_dev) {
468 if (fep->phy_dev->speed == SPEED_1000)
469 ecntl |= (1 << 5);
470 else if (fep->phy_dev->speed == SPEED_100)
471 rcntl &= ~(1 << 9);
472 else
473 rcntl |= (1 << 9);
474 }
Uwe Kleine-König45993652011-01-19 20:47:04 +0100475 } else {
476#ifdef FEC_MIIGSK_ENR
Shawn Guo0ca1e292011-07-01 18:11:22 +0800477 if (id_entry->driver_data & FEC_QUIRK_USE_GASKET) {
Uwe Kleine-König45993652011-01-19 20:47:04 +0100478 /* disable the gasket and wait */
479 writel(0, fep->hwp + FEC_MIIGSK_ENR);
480 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
481 udelay(1);
482
483 /*
484 * configure the gasket:
485 * RMII, 50 MHz, no loopback, no echo
Shawn Guo0ca1e292011-07-01 18:11:22 +0800486 * MII, 25 MHz, no loopback, no echo
Uwe Kleine-König45993652011-01-19 20:47:04 +0100487 */
Shawn Guo0ca1e292011-07-01 18:11:22 +0800488 writel((fep->phy_interface == PHY_INTERFACE_MODE_RMII) ?
489 1 : 0, fep->hwp + FEC_MIIGSK_CFGR);
490
Uwe Kleine-König45993652011-01-19 20:47:04 +0100491
492 /* re-enable the gasket */
493 writel(2, fep->hwp + FEC_MIIGSK_ENR);
494 }
495#endif
496 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100497 writel(rcntl, fep->hwp + FEC_R_CNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100498
Shawn Guo230dec62011-09-23 02:12:48 +0000499 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
500 /* enable ENET endian swap */
501 ecntl |= (1 << 8);
502 /* enable ENET store and forward mode */
503 writel(1 << 8, fep->hwp + FEC_X_WMRK);
504 }
505
Uwe Kleine-König45993652011-01-19 20:47:04 +0100506 /* And last, enable the transmit and receive processing */
Shawn Guo230dec62011-09-23 02:12:48 +0000507 writel(ecntl, fep->hwp + FEC_ECNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100508 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
509
510 /* Enable interrupts we wish to service */
511 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
512}
513
514static void
515fec_stop(struct net_device *ndev)
516{
517 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +0000518 const struct platform_device_id *id_entry =
519 platform_get_device_id(fep->pdev);
Lothar Waßmann42431dc2011-12-07 21:59:30 +0000520 u32 rmii_mode = readl(fep->hwp + FEC_R_CNTRL) & (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100521
522 /* We cannot expect a graceful transmit stop without link !!! */
523 if (fep->link) {
524 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
525 udelay(10);
526 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
527 printk("fec_stop : Graceful transmit stop did not complete !\n");
528 }
529
530 /* Whack a reset. We should wait for this. */
531 writel(1, fep->hwp + FEC_ECNTRL);
532 udelay(10);
533 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
534 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
Shawn Guo230dec62011-09-23 02:12:48 +0000535
536 /* We have to keep ENET enabled to have MII interrupt stay working */
Lothar Waßmann42431dc2011-12-07 21:59:30 +0000537 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Shawn Guo230dec62011-09-23 02:12:48 +0000538 writel(2, fep->hwp + FEC_ECNTRL);
Lothar Waßmann42431dc2011-12-07 21:59:30 +0000539 writel(rmii_mode, fep->hwp + FEC_R_CNTRL);
540 }
Uwe Kleine-König45993652011-01-19 20:47:04 +0100541}
542
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100545fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100547 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100549 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100551 fec_restart(ndev, fep->full_duplex);
552 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100556fec_enet_tx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 struct fec_enet_private *fep;
Sascha Hauer2e285322009-04-15 01:32:16 +0000559 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000560 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 struct sk_buff *skb;
562
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100563 fep = netdev_priv(ndev);
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000564 spin_lock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 bdp = fep->dirty_tx;
566
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000567 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000568 if (bdp == fep->cur_tx && fep->tx_full == 0)
569 break;
570
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100571 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
572 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000573 bdp->cbd_bufaddr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 skb = fep->tx_skbuff[fep->skb_dirty];
576 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000577 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 BD_ENET_TX_RL | BD_ENET_TX_UN |
579 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100580 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000581 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100582 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000583 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100584 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000585 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100586 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000587 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100588 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000589 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100590 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100592 ndev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000595 if (status & BD_ENET_TX_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 printk("HEY! Enet xmit interrupt and TX_READY.\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +0000597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /* Deferred means some collisions occurred during transmit,
599 * but we eventually sent the packet OK.
600 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000601 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100602 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400603
Sascha Hauer22f6b862009-04-15 01:32:18 +0000604 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 dev_kfree_skb_any(skb);
606 fep->tx_skbuff[fep->skb_dirty] = NULL;
607 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400608
Sascha Hauer22f6b862009-04-15 01:32:18 +0000609 /* Update pointer to next buffer descriptor to be transmitted */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000610 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 bdp = fep->tx_bd_base;
612 else
613 bdp++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400614
Sascha Hauer22f6b862009-04-15 01:32:18 +0000615 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 */
617 if (fep->tx_full) {
618 fep->tx_full = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100619 if (netif_queue_stopped(ndev))
620 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
622 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000623 fep->dirty_tx = bdp;
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000624 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
627
628/* During a receive, the cur_rx points to the current incoming buffer.
629 * When we update through the ring, if the next incoming buffer has
630 * not been given to the system, we just set the empty indicator,
631 * effectively tossing the packet.
632 */
633static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100634fec_enet_rx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100636 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000637 const struct platform_device_id *id_entry =
638 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000639 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000640 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 struct sk_buff *skb;
642 ushort pkt_len;
643 __u8 *data;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400644
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000645#ifdef CONFIG_M532x
646 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400647#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000649 spin_lock(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 /* First, grab all of the stats for the incoming packet.
652 * These get messed up if we get called due to a busy condition.
653 */
654 bdp = fep->cur_rx;
655
Sascha Hauer22f6b862009-04-15 01:32:18 +0000656 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Sascha Hauer22f6b862009-04-15 01:32:18 +0000658 /* Since we have allocated space to hold a complete frame,
659 * the last indicator should be set.
660 */
661 if ((status & BD_ENET_RX_LAST) == 0)
662 printk("FEC ENET: rcv is not +last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Sascha Hauer22f6b862009-04-15 01:32:18 +0000664 if (!fep->opened)
665 goto rx_processing_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Sascha Hauer22f6b862009-04-15 01:32:18 +0000667 /* Check for errors. */
668 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100670 ndev->stats.rx_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000671 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
672 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100673 ndev->stats.rx_length_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000674 }
675 if (status & BD_ENET_RX_NO) /* Frame alignment */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100676 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000677 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100678 ndev->stats.rx_crc_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000679 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100680 ndev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Sascha Hauer22f6b862009-04-15 01:32:18 +0000682
683 /* Report late collisions as a frame error.
684 * On this error, the BD is closed, but we don't know what we
685 * have in the buffer. So, just drop this frame on the floor.
686 */
687 if (status & BD_ENET_RX_CL) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100688 ndev->stats.rx_errors++;
689 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000690 goto rx_processing_done;
691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Sascha Hauer22f6b862009-04-15 01:32:18 +0000693 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100694 ndev->stats.rx_packets++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000695 pkt_len = bdp->cbd_datlen;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100696 ndev->stats.rx_bytes += pkt_len;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000697 data = (__u8*)__va(bdp->cbd_bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100699 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
700 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerccdc4f12009-01-28 23:03:09 +0000701
Shawn Guob5680e02011-01-05 21:13:13 +0000702 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
703 swap_buffer(data, pkt_len);
704
Sascha Hauer22f6b862009-04-15 01:32:18 +0000705 /* This does 16 byte alignment, exactly what we need.
706 * The packet length includes FCS, but we don't want to
707 * include that when passing upstream as it messes up
708 * bridging applications.
709 */
Sascha Hauer85498892009-04-15 01:32:21 +0000710 skb = dev_alloc_skb(pkt_len - 4 + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Sascha Hauer85498892009-04-15 01:32:21 +0000712 if (unlikely(!skb)) {
Sascha Hauer22f6b862009-04-15 01:32:18 +0000713 printk("%s: Memory squeeze, dropping packet.\n",
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100714 ndev->name);
715 ndev->stats.rx_dropped++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000716 } else {
Sascha Hauer85498892009-04-15 01:32:21 +0000717 skb_reserve(skb, NET_IP_ALIGN);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000718 skb_put(skb, pkt_len - 4); /* Make room */
719 skb_copy_to_linear_data(skb, data, pkt_len - 4);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100720 skb->protocol = eth_type_trans(skb, ndev);
Richard Cochran18a03b92011-06-12 02:18:59 +0000721 if (!skb_defer_rx_timestamp(skb))
722 netif_rx(skb);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000723 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000724
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100725 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, data,
726 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000727rx_processing_done:
728 /* Clear the status flags for this buffer */
729 status &= ~BD_ENET_RX_STATS;
730
731 /* Mark the buffer empty */
732 status |= BD_ENET_RX_EMPTY;
733 bdp->cbd_sc = status;
734
735 /* Update BD pointer to next entry */
736 if (status & BD_ENET_RX_WRAP)
737 bdp = fep->rx_bd_base;
738 else
739 bdp++;
740 /* Doing this here will keep the FEC running while we process
741 * incoming frames. On a heavily loaded network, we should be
742 * able to keep up at the expense of system resources.
743 */
744 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000746 fep->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000748 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
Uwe Kleine-König45993652011-01-19 20:47:04 +0100751static irqreturn_t
752fec_enet_interrupt(int irq, void *dev_id)
753{
754 struct net_device *ndev = dev_id;
755 struct fec_enet_private *fep = netdev_priv(ndev);
756 uint int_events;
757 irqreturn_t ret = IRQ_NONE;
758
759 do {
760 int_events = readl(fep->hwp + FEC_IEVENT);
761 writel(int_events, fep->hwp + FEC_IEVENT);
762
763 if (int_events & FEC_ENET_RXF) {
764 ret = IRQ_HANDLED;
765 fec_enet_rx(ndev);
766 }
767
768 /* Transmit OK, or non-fatal error. Update the buffer
769 * descriptors. FEC handles all errors, we just discover
770 * them as part of the transmit process.
771 */
772 if (int_events & FEC_ENET_TXF) {
773 ret = IRQ_HANDLED;
774 fec_enet_tx(ndev);
775 }
776
777 if (int_events & FEC_ENET_MII) {
778 ret = IRQ_HANDLED;
779 complete(&fep->mdio_done);
780 }
781 } while (int_events);
782
783 return ret;
784}
785
786
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788/* ------------------------------------------------------------------------- */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100789static void __inline__ fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100791 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo49da97d2011-01-05 21:13:11 +0000792 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000793 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Shawn Guo49da97d2011-01-05 21:13:11 +0000795 /*
796 * try to get mac address in following order:
797 *
798 * 1) module parameter via kernel command line in form
799 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
800 */
801 iap = macaddr;
802
Shawn Guoca2cc332011-06-25 02:04:35 +0800803#ifdef CONFIG_OF
Shawn Guo49da97d2011-01-05 21:13:11 +0000804 /*
Shawn Guoca2cc332011-06-25 02:04:35 +0800805 * 2) from device tree data
806 */
807 if (!is_valid_ether_addr(iap)) {
808 struct device_node *np = fep->pdev->dev.of_node;
809 if (np) {
810 const char *mac = of_get_mac_address(np);
811 if (mac)
812 iap = (unsigned char *) mac;
813 }
814 }
815#endif
816
817 /*
818 * 3) from flash or fuse (via platform data)
Shawn Guo49da97d2011-01-05 21:13:11 +0000819 */
820 if (!is_valid_ether_addr(iap)) {
821#ifdef CONFIG_M5272
822 if (FEC_FLASHMAC)
823 iap = (unsigned char *)FEC_FLASHMAC;
824#else
825 if (pdata)
Lothar Waßmann589efdc2011-12-07 21:59:29 +0000826 iap = (unsigned char *)&pdata->mac;
Shawn Guo49da97d2011-01-05 21:13:11 +0000827#endif
828 }
829
830 /*
Shawn Guoca2cc332011-06-25 02:04:35 +0800831 * 4) FEC mac registers set by bootloader
Shawn Guo49da97d2011-01-05 21:13:11 +0000832 */
833 if (!is_valid_ether_addr(iap)) {
834 *((unsigned long *) &tmpaddr[0]) =
835 be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
836 *((unsigned short *) &tmpaddr[4]) =
837 be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 iap = &tmpaddr[0];
839 }
840
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100841 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Shawn Guo49da97d2011-01-05 21:13:11 +0000843 /* Adjust MAC if using macaddr */
844 if (iap == macaddr)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100845 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->pdev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848/* ------------------------------------------------------------------------- */
849
Bryan Wue6b043d2010-03-31 02:10:44 +0000850/*
851 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100853static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100855 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000856 struct phy_device *phy_dev = fep->phy_dev;
857 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Bryan Wue6b043d2010-03-31 02:10:44 +0000859 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Bryan Wue6b043d2010-03-31 02:10:44 +0000861 spin_lock_irqsave(&fep->hw_lock, flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400862
Bryan Wue6b043d2010-03-31 02:10:44 +0000863 /* Prevent a state halted on mii error */
864 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
865 phy_dev->state = PHY_RESUMING;
866 goto spin_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
Bryan Wue6b043d2010-03-31 02:10:44 +0000868
869 /* Duplex link change */
870 if (phy_dev->link) {
871 if (fep->full_duplex != phy_dev->duplex) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100872 fec_restart(ndev, phy_dev->duplex);
Lothar Waßmann6ea07222011-12-07 21:59:27 +0000873 /* prevent unnecessary second fec_restart() below */
874 fep->link = phy_dev->link;
Bryan Wue6b043d2010-03-31 02:10:44 +0000875 status_change = 1;
876 }
877 }
878
879 /* Link on or off change */
880 if (phy_dev->link != fep->link) {
881 fep->link = phy_dev->link;
882 if (phy_dev->link)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100883 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000884 else
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100885 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000886 status_change = 1;
887 }
888
889spin_unlock:
890 spin_unlock_irqrestore(&fep->hw_lock, flags);
891
892 if (status_change)
893 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
Bryan Wue6b043d2010-03-31 02:10:44 +0000896static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Bryan Wue6b043d2010-03-31 02:10:44 +0000898 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000899 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000900
901 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000902 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000903
904 /* start a read op */
905 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
906 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
907 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
908
909 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000910 time_left = wait_for_completion_timeout(&fep->mdio_done,
911 usecs_to_jiffies(FEC_MII_TIMEOUT));
912 if (time_left == 0) {
913 fep->mii_timeout = 1;
914 printk(KERN_ERR "FEC: MDIO read timeout\n");
915 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000916 }
917
918 /* return value */
919 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
920}
921
922static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
923 u16 value)
924{
925 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000926 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000927
928 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000929 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000930
Shawn Guo862f0982011-01-05 21:13:09 +0000931 /* start a write op */
932 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +0000933 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
934 FEC_MMFR_TA | FEC_MMFR_DATA(value),
935 fep->hwp + FEC_MII_DATA);
936
937 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000938 time_left = wait_for_completion_timeout(&fep->mdio_done,
939 usecs_to_jiffies(FEC_MII_TIMEOUT));
940 if (time_left == 0) {
941 fep->mii_timeout = 1;
942 printk(KERN_ERR "FEC: MDIO write timeout\n");
943 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000944 }
945
946 return 0;
947}
948
949static int fec_enet_mdio_reset(struct mii_bus *bus)
950{
951 return 0;
952}
953
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100954static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +0000955{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100956 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +0000957 const struct platform_device_id *id_entry =
958 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000959 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000960 char mdio_bus_id[MII_BUS_ID_SIZE];
961 char phy_name[MII_BUS_ID_SIZE + 3];
962 int phy_id;
Shawn Guob5680e02011-01-05 21:13:13 +0000963 int dev_id = fep->pdev->id;
Bryan Wue6b043d2010-03-31 02:10:44 +0000964
Bryan Wu418bd0d2010-05-28 03:40:39 -0700965 fep->phy_dev = NULL;
966
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000967 /* check for attached phy */
968 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
969 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
970 continue;
971 if (fep->mii_bus->phy_map[phy_id] == NULL)
972 continue;
973 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
974 continue;
Shawn Guob5680e02011-01-05 21:13:13 +0000975 if (dev_id--)
976 continue;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000977 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
978 break;
Bryan Wue6b043d2010-03-31 02:10:44 +0000979 }
980
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000981 if (phy_id >= PHY_MAX_ADDR) {
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000982 printk(KERN_INFO
983 "%s: no PHY, assuming direct connection to switch\n",
984 ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000985 strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE);
986 phy_id = 0;
987 }
988
989 snprintf(phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT, mdio_bus_id, phy_id);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100990 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link, 0,
Shawn Guo230dec62011-09-23 02:12:48 +0000991 fep->phy_interface);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000992 if (IS_ERR(phy_dev)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100993 printk(KERN_ERR "%s: could not attach to PHY\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000994 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000995 }
996
997 /* mask with MAC supported features */
Shawn Guo230dec62011-09-23 02:12:48 +0000998 if (id_entry->driver_data & FEC_QUIRK_HAS_GBIT)
999 phy_dev->supported &= PHY_GBIT_FEATURES;
1000 else
1001 phy_dev->supported &= PHY_BASIC_FEATURES;
1002
Bryan Wue6b043d2010-03-31 02:10:44 +00001003 phy_dev->advertising = phy_dev->supported;
1004
1005 fep->phy_dev = phy_dev;
1006 fep->link = 0;
1007 fep->full_duplex = 0;
1008
Lothar Waßmanna7dd3212011-12-07 21:59:25 +00001009 printk(KERN_INFO
1010 "%s: Freescale FEC PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
1011 ndev->name,
Bryan Wu418bd0d2010-05-28 03:40:39 -07001012 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
1013 fep->phy_dev->irq);
1014
Bryan Wue6b043d2010-03-31 02:10:44 +00001015 return 0;
1016}
1017
1018static int fec_enet_mii_init(struct platform_device *pdev)
1019{
Shawn Guob5680e02011-01-05 21:13:13 +00001020 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001021 struct net_device *ndev = platform_get_drvdata(pdev);
1022 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +00001023 const struct platform_device_id *id_entry =
1024 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001025 int err = -ENXIO, i;
1026
Shawn Guob5680e02011-01-05 21:13:13 +00001027 /*
1028 * The dual fec interfaces are not equivalent with enet-mac.
1029 * Here are the differences:
1030 *
1031 * - fec0 supports MII & RMII modes while fec1 only supports RMII
1032 * - fec0 acts as the 1588 time master while fec1 is slave
1033 * - external phys can only be configured by fec0
1034 *
1035 * That is to say fec1 can not work independently. It only works
1036 * when fec0 is working. The reason behind this design is that the
1037 * second interface is added primarily for Switch mode.
1038 *
1039 * Because of the last point above, both phys are attached on fec0
1040 * mdio interface in board design, and need to be configured by
1041 * fec0 mii_bus.
1042 */
Shawn Guoc8288272011-09-23 02:12:47 +00001043 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && pdev->id > 0) {
Shawn Guob5680e02011-01-05 21:13:13 +00001044 /* fec1 uses fec0 mii_bus */
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001045 if (mii_cnt && fec0_mii_bus) {
1046 fep->mii_bus = fec0_mii_bus;
1047 mii_cnt++;
1048 return 0;
1049 }
1050 return -ENOENT;
Shawn Guob5680e02011-01-05 21:13:13 +00001051 }
1052
Bryan Wue6b043d2010-03-31 02:10:44 +00001053 fep->mii_timeout = 0;
1054
1055 /*
1056 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
Shawn Guo230dec62011-09-23 02:12:48 +00001057 *
1058 * The formula for FEC MDC is 'ref_freq / (MII_SPEED x 2)' while
1059 * for ENET-MAC is 'ref_freq / ((MII_SPEED + 1) x 2)'. The i.MX28
1060 * Reference Manual has an error on this, and gets fixed on i.MX6Q
1061 * document.
Bryan Wue6b043d2010-03-31 02:10:44 +00001062 */
Shawn Guo230dec62011-09-23 02:12:48 +00001063 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk), 5000000);
1064 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1065 fep->phy_speed--;
1066 fep->phy_speed <<= 1;
Bryan Wue6b043d2010-03-31 02:10:44 +00001067 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1068
1069 fep->mii_bus = mdiobus_alloc();
1070 if (fep->mii_bus == NULL) {
1071 err = -ENOMEM;
1072 goto err_out;
1073 }
1074
1075 fep->mii_bus->name = "fec_enet_mii_bus";
1076 fep->mii_bus->read = fec_enet_mdio_read;
1077 fep->mii_bus->write = fec_enet_mdio_write;
1078 fep->mii_bus->reset = fec_enet_mdio_reset;
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001079 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%x", pdev->id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +00001080 fep->mii_bus->priv = fep;
1081 fep->mii_bus->parent = &pdev->dev;
1082
1083 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
1084 if (!fep->mii_bus->irq) {
1085 err = -ENOMEM;
1086 goto err_out_free_mdiobus;
1087 }
1088
1089 for (i = 0; i < PHY_MAX_ADDR; i++)
1090 fep->mii_bus->irq[i] = PHY_POLL;
1091
Bryan Wue6b043d2010-03-31 02:10:44 +00001092 if (mdiobus_register(fep->mii_bus))
1093 goto err_out_free_mdio_irq;
1094
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001095 mii_cnt++;
1096
Shawn Guob5680e02011-01-05 21:13:13 +00001097 /* save fec0 mii_bus */
1098 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1099 fec0_mii_bus = fep->mii_bus;
1100
Bryan Wue6b043d2010-03-31 02:10:44 +00001101 return 0;
1102
Bryan Wue6b043d2010-03-31 02:10:44 +00001103err_out_free_mdio_irq:
1104 kfree(fep->mii_bus->irq);
1105err_out_free_mdiobus:
1106 mdiobus_free(fep->mii_bus);
1107err_out:
1108 return err;
1109}
1110
1111static void fec_enet_mii_remove(struct fec_enet_private *fep)
1112{
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001113 if (--mii_cnt == 0) {
1114 mdiobus_unregister(fep->mii_bus);
1115 kfree(fep->mii_bus->irq);
1116 mdiobus_free(fep->mii_bus);
1117 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001118}
1119
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001120static int fec_enet_get_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001121 struct ethtool_cmd *cmd)
1122{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001123 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001124 struct phy_device *phydev = fep->phy_dev;
1125
1126 if (!phydev)
1127 return -ENODEV;
1128
1129 return phy_ethtool_gset(phydev, cmd);
1130}
1131
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001132static int fec_enet_set_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001133 struct ethtool_cmd *cmd)
1134{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001135 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001136 struct phy_device *phydev = fep->phy_dev;
1137
1138 if (!phydev)
1139 return -ENODEV;
1140
1141 return phy_ethtool_sset(phydev, cmd);
1142}
1143
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001144static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001145 struct ethtool_drvinfo *info)
1146{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001147 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Bryan Wue6b043d2010-03-31 02:10:44 +00001149 strcpy(info->driver, fep->pdev->dev.driver->name);
1150 strcpy(info->version, "Revision: 1.0");
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001151 strcpy(info->bus_info, dev_name(&ndev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
Bryan Wue6b043d2010-03-31 02:10:44 +00001153
1154static struct ethtool_ops fec_enet_ethtool_ops = {
1155 .get_settings = fec_enet_get_settings,
1156 .set_settings = fec_enet_set_settings,
1157 .get_drvinfo = fec_enet_get_drvinfo,
1158 .get_link = ethtool_op_get_link,
1159};
1160
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001161static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00001162{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001163 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001164 struct phy_device *phydev = fep->phy_dev;
1165
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001166 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00001167 return -EINVAL;
1168
1169 if (!phydev)
1170 return -ENODEV;
1171
Richard Cochran28b04112010-07-17 08:48:55 +00001172 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00001173}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001175static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001176{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001177 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001178 int i;
1179 struct sk_buff *skb;
1180 struct bufdesc *bdp;
1181
1182 bdp = fep->rx_bd_base;
1183 for (i = 0; i < RX_RING_SIZE; i++) {
1184 skb = fep->rx_skbuff[i];
1185
1186 if (bdp->cbd_bufaddr)
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001187 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001188 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1189 if (skb)
1190 dev_kfree_skb(skb);
1191 bdp++;
1192 }
1193
1194 bdp = fep->tx_bd_base;
1195 for (i = 0; i < TX_RING_SIZE; i++)
1196 kfree(fep->tx_bounce[i]);
1197}
1198
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001199static int fec_enet_alloc_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001200{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001201 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001202 int i;
1203 struct sk_buff *skb;
1204 struct bufdesc *bdp;
1205
1206 bdp = fep->rx_bd_base;
1207 for (i = 0; i < RX_RING_SIZE; i++) {
1208 skb = dev_alloc_skb(FEC_ENET_RX_FRSIZE);
1209 if (!skb) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001210 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001211 return -ENOMEM;
1212 }
1213 fep->rx_skbuff[i] = skb;
1214
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001215 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, skb->data,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001216 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1217 bdp->cbd_sc = BD_ENET_RX_EMPTY;
1218 bdp++;
1219 }
1220
1221 /* Set the last buffer to wrap. */
1222 bdp--;
1223 bdp->cbd_sc |= BD_SC_WRAP;
1224
1225 bdp = fep->tx_bd_base;
1226 for (i = 0; i < TX_RING_SIZE; i++) {
1227 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
1228
1229 bdp->cbd_sc = 0;
1230 bdp->cbd_bufaddr = 0;
1231 bdp++;
1232 }
1233
1234 /* Set the last buffer to wrap. */
1235 bdp--;
1236 bdp->cbd_sc |= BD_SC_WRAP;
1237
1238 return 0;
1239}
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001242fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001244 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001245 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 /* I should reset the ring buffers here, but I don't yet know
1248 * a simple way to do that.
1249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001251 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001252 if (ret)
1253 return ret;
1254
Bryan Wu418bd0d2010-05-28 03:40:39 -07001255 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001256 ret = fec_enet_mii_probe(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001257 if (ret) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001258 fec_enet_free_buffers(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001259 return ret;
1260 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001261 phy_start(fep->phy_dev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001262 netif_start_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 fep->opened = 1;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001264 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
1267static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001268fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001270 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Sascha Hauer22f6b862009-04-15 01:32:18 +00001272 /* Don't know what to do yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 fep->opened = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001274 netif_stop_queue(ndev);
1275 fec_stop(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001277 if (fep->phy_dev) {
1278 phy_stop(fep->phy_dev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001279 phy_disconnect(fep->phy_dev);
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001280 }
Bryan Wu418bd0d2010-05-28 03:40:39 -07001281
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001282 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 return 0;
1285}
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287/* Set or clear the multicast filter for this adaptor.
1288 * Skeleton taken from sunlance driver.
1289 * The CPM Ethernet implementation allows Multicast as well as individual
1290 * MAC address filtering. Some of the drivers check to make sure it is
1291 * a group multicast address, and discard those that are not. I guess I
1292 * will do the same for now, but just remove the test if you want
1293 * individual filtering as well (do the upper net layers want or support
1294 * this kind of feature?).
1295 */
1296
1297#define HASH_BITS 6 /* #bits in hash */
1298#define CRC32_POLY 0xEDB88320
1299
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001300static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001302 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001303 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00001304 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 unsigned char hash;
1306
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001307 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00001308 tmp = readl(fep->hwp + FEC_R_CNTRL);
1309 tmp |= 0x8;
1310 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00001311 return;
1312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Sascha Hauer4e831832009-04-15 01:32:19 +00001314 tmp = readl(fep->hwp + FEC_R_CNTRL);
1315 tmp &= ~0x8;
1316 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001317
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001318 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001319 /* Catch all multicast addresses, so set the
1320 * filter to all 1's
1321 */
1322 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1323 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Sascha Hauer4e831832009-04-15 01:32:19 +00001325 return;
1326 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001327
Sascha Hauer4e831832009-04-15 01:32:19 +00001328 /* Clear filter and add the addresses in hash register
1329 */
1330 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1331 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001333 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001334 /* calculate crc32 value of mac address */
1335 crc = 0xffffffff;
1336
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001337 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001338 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00001339 for (bit = 0; bit < 8; bit++, data >>= 1) {
1340 crc = (crc >> 1) ^
1341 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343 }
Sascha Hauer4e831832009-04-15 01:32:19 +00001344
1345 /* only upper 6 bits (HASH_BITS) are used
1346 * which point to specific bit in he hash registers
1347 */
1348 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1349
1350 if (hash > 31) {
1351 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1352 tmp |= 1 << (hash - 32);
1353 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1354 } else {
1355 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1356 tmp |= 1 << hash;
1357 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
1360}
1361
Sascha Hauer22f6b862009-04-15 01:32:18 +00001362/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00001363static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001364fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001366 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00001367 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Sascha Hauer009fda82009-04-15 01:32:23 +00001369 if (!is_valid_ether_addr(addr->sa_data))
1370 return -EADDRNOTAVAIL;
1371
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001372 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
Sascha Hauer009fda82009-04-15 01:32:23 +00001373
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001374 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
1375 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00001376 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001377 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07001378 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00001379 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00001382#ifdef CONFIG_NET_POLL_CONTROLLER
1383/*
1384 * fec_poll_controller: FEC Poll controller function
1385 * @dev: The FEC network adapter
1386 *
1387 * Polled functionality used by netconsole and others in non interrupt mode
1388 *
1389 */
1390void fec_poll_controller(struct net_device *dev)
1391{
1392 int i;
1393 struct fec_enet_private *fep = netdev_priv(dev);
1394
1395 for (i = 0; i < FEC_IRQ_NUM; i++) {
1396 if (fep->irq[i] > 0) {
1397 disable_irq(fep->irq[i]);
1398 fec_enet_interrupt(fep->irq[i], dev);
1399 enable_irq(fep->irq[i]);
1400 }
1401 }
1402}
1403#endif
1404
Sascha Hauer009fda82009-04-15 01:32:23 +00001405static const struct net_device_ops fec_netdev_ops = {
1406 .ndo_open = fec_enet_open,
1407 .ndo_stop = fec_enet_close,
1408 .ndo_start_xmit = fec_enet_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001409 .ndo_set_rx_mode = set_multicast_list,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00001410 .ndo_change_mtu = eth_change_mtu,
Sascha Hauer009fda82009-04-15 01:32:23 +00001411 .ndo_validate_addr = eth_validate_addr,
1412 .ndo_tx_timeout = fec_timeout,
1413 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001414 .ndo_do_ioctl = fec_enet_ioctl,
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00001415#ifdef CONFIG_NET_POLL_CONTROLLER
1416 .ndo_poll_controller = fec_poll_controller,
1417#endif
Sascha Hauer009fda82009-04-15 01:32:23 +00001418};
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 /*
1421 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00001422 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001424static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001426 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001427 struct bufdesc *cbd_base;
Rob Herring633e7532010-02-05 08:56:20 +00001428 struct bufdesc *bdp;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001429 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001431 /* Allocate memory for buffer descriptors. */
1432 cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
1433 GFP_KERNEL);
1434 if (!cbd_base) {
Greg Ungerer562d2f82005-11-07 14:09:50 +10001435 printk("FEC: allocate descriptor memory failed?\n");
1436 return -ENOMEM;
1437 }
1438
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001439 spin_lock_init(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001440
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001441 fep->netdev = ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Shawn Guo49da97d2011-01-05 21:13:11 +00001443 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001444 fec_get_mac(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001446 /* Set receive and transmit descriptor base. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 fep->rx_bd_base = cbd_base;
1448 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1449
Sascha Hauer22f6b862009-04-15 01:32:18 +00001450 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001451 ndev->watchdog_timeo = TX_TIMEOUT;
1452 ndev->netdev_ops = &fec_netdev_ops;
1453 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00001454
1455 /* Initialize the receive buffer descriptors. */
1456 bdp = fep->rx_bd_base;
1457 for (i = 0; i < RX_RING_SIZE; i++) {
1458
1459 /* Initialize the BD for every fragment in the page. */
1460 bdp->cbd_sc = 0;
1461 bdp++;
1462 }
1463
1464 /* Set the last buffer to wrap */
1465 bdp--;
1466 bdp->cbd_sc |= BD_SC_WRAP;
1467
1468 /* ...and the same for transmit */
1469 bdp = fep->tx_bd_base;
1470 for (i = 0; i < TX_RING_SIZE; i++) {
1471
1472 /* Initialize the BD for every fragment in the page. */
1473 bdp->cbd_sc = 0;
1474 bdp->cbd_bufaddr = 0;
1475 bdp++;
1476 }
1477
1478 /* Set the last buffer to wrap */
1479 bdp--;
1480 bdp->cbd_sc |= BD_SC_WRAP;
1481
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001482 fec_restart(ndev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 return 0;
1485}
1486
Shawn Guoca2cc332011-06-25 02:04:35 +08001487#ifdef CONFIG_OF
1488static int __devinit fec_get_phy_mode_dt(struct platform_device *pdev)
1489{
1490 struct device_node *np = pdev->dev.of_node;
1491
1492 if (np)
1493 return of_get_phy_mode(np);
1494
1495 return -ENODEV;
1496}
1497
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001498static void __devinit fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08001499{
1500 int err, phy_reset;
1501 struct device_node *np = pdev->dev.of_node;
1502
1503 if (!np)
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001504 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08001505
1506 phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
1507 err = gpio_request_one(phy_reset, GPIOF_OUT_INIT_LOW, "phy-reset");
1508 if (err) {
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001509 pr_debug("FEC: failed to get gpio phy-reset: %d\n", err);
1510 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08001511 }
1512 msleep(1);
1513 gpio_set_value(phy_reset, 1);
Shawn Guoca2cc332011-06-25 02:04:35 +08001514}
1515#else /* CONFIG_OF */
1516static inline int fec_get_phy_mode_dt(struct platform_device *pdev)
1517{
1518 return -ENODEV;
1519}
1520
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001521static inline void fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08001522{
1523 /*
1524 * In case of platform probe, the reset has been done
1525 * by machine code.
1526 */
Shawn Guoca2cc332011-06-25 02:04:35 +08001527}
1528#endif /* CONFIG_OF */
1529
Sascha Haueread73182009-01-28 23:03:11 +00001530static int __devinit
1531fec_probe(struct platform_device *pdev)
1532{
1533 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001534 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00001535 struct net_device *ndev;
1536 int i, irq, ret = 0;
1537 struct resource *r;
Shawn Guoca2cc332011-06-25 02:04:35 +08001538 const struct of_device_id *of_id;
1539
1540 of_id = of_match_device(fec_dt_ids, &pdev->dev);
1541 if (of_id)
1542 pdev->id_entry = of_id->data;
Sascha Haueread73182009-01-28 23:03:11 +00001543
1544 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1545 if (!r)
1546 return -ENXIO;
1547
1548 r = request_mem_region(r->start, resource_size(r), pdev->name);
1549 if (!r)
1550 return -EBUSY;
1551
1552 /* Init network device */
1553 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001554 if (!ndev) {
1555 ret = -ENOMEM;
1556 goto failed_alloc_etherdev;
1557 }
Sascha Haueread73182009-01-28 23:03:11 +00001558
1559 SET_NETDEV_DEV(ndev, &pdev->dev);
1560
1561 /* setup board info structure */
1562 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001563
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001564 fep->hwp = ioremap(r->start, resource_size(r));
Bryan Wue6b043d2010-03-31 02:10:44 +00001565 fep->pdev = pdev;
Sascha Haueread73182009-01-28 23:03:11 +00001566
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001567 if (!fep->hwp) {
Sascha Haueread73182009-01-28 23:03:11 +00001568 ret = -ENOMEM;
1569 goto failed_ioremap;
1570 }
1571
1572 platform_set_drvdata(pdev, ndev);
1573
Shawn Guoca2cc332011-06-25 02:04:35 +08001574 ret = fec_get_phy_mode_dt(pdev);
1575 if (ret < 0) {
1576 pdata = pdev->dev.platform_data;
1577 if (pdata)
1578 fep->phy_interface = pdata->phy;
1579 else
1580 fep->phy_interface = PHY_INTERFACE_MODE_MII;
1581 } else {
1582 fep->phy_interface = ret;
1583 }
1584
1585 fec_reset_phy(pdev);
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001586
Xiao Jiangc7c83d12011-09-29 02:15:56 +00001587 for (i = 0; i < FEC_IRQ_NUM; i++) {
Sascha Haueread73182009-01-28 23:03:11 +00001588 irq = platform_get_irq(pdev, i);
Lothar Waßmann86f9f2c2011-12-07 21:59:28 +00001589 if (irq < 0) {
1590 if (i)
1591 break;
1592 ret = irq;
1593 goto failed_irq;
1594 }
Sascha Haueread73182009-01-28 23:03:11 +00001595 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1596 if (ret) {
Uwe Kleine-Königb2b09ad2011-01-13 21:49:05 +01001597 while (--i >= 0) {
Sascha Haueread73182009-01-28 23:03:11 +00001598 irq = platform_get_irq(pdev, i);
1599 free_irq(irq, ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001600 }
1601 goto failed_irq;
1602 }
1603 }
1604
Lothar Waßmann5b1436c2011-12-07 21:59:26 +00001605 fep->clk = clk_get(&pdev->dev, NULL);
Sascha Haueread73182009-01-28 23:03:11 +00001606 if (IS_ERR(fep->clk)) {
1607 ret = PTR_ERR(fep->clk);
1608 goto failed_clk;
1609 }
1610 clk_enable(fep->clk);
1611
Shawn Guo8649a232011-01-05 21:13:10 +00001612 ret = fec_enet_init(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001613 if (ret)
1614 goto failed_init;
1615
Bryan Wue6b043d2010-03-31 02:10:44 +00001616 ret = fec_enet_mii_init(pdev);
1617 if (ret)
1618 goto failed_mii_init;
1619
Oskar Schirmer03c698c2010-10-07 02:30:30 +00001620 /* Carrier starts down, phylib will bring it up */
1621 netif_carrier_off(ndev);
1622
Sascha Haueread73182009-01-28 23:03:11 +00001623 ret = register_netdev(ndev);
1624 if (ret)
1625 goto failed_register;
1626
1627 return 0;
1628
1629failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00001630 fec_enet_mii_remove(fep);
1631failed_mii_init:
Sascha Haueread73182009-01-28 23:03:11 +00001632failed_init:
1633 clk_disable(fep->clk);
1634 clk_put(fep->clk);
1635failed_clk:
Xiao Jiangc7c83d12011-09-29 02:15:56 +00001636 for (i = 0; i < FEC_IRQ_NUM; i++) {
Sascha Haueread73182009-01-28 23:03:11 +00001637 irq = platform_get_irq(pdev, i);
1638 if (irq > 0)
1639 free_irq(irq, ndev);
1640 }
1641failed_irq:
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001642 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001643failed_ioremap:
1644 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001645failed_alloc_etherdev:
1646 release_mem_region(r->start, resource_size(r));
Sascha Haueread73182009-01-28 23:03:11 +00001647
1648 return ret;
1649}
1650
1651static int __devexit
1652fec_drv_remove(struct platform_device *pdev)
1653{
1654 struct net_device *ndev = platform_get_drvdata(pdev);
1655 struct fec_enet_private *fep = netdev_priv(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001656 struct resource *r;
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001657 int i;
Sascha Haueread73182009-01-28 23:03:11 +00001658
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001659 unregister_netdev(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001660 fec_enet_mii_remove(fep);
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001661 for (i = 0; i < FEC_IRQ_NUM; i++) {
1662 int irq = platform_get_irq(pdev, i);
1663 if (irq > 0)
1664 free_irq(irq, ndev);
1665 }
Sascha Haueread73182009-01-28 23:03:11 +00001666 clk_disable(fep->clk);
1667 clk_put(fep->clk);
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001668 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001669 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001670
1671 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1672 BUG_ON(!r);
1673 release_mem_region(r->start, resource_size(r));
1674
Uwe Kleine-Königb3cde362011-01-25 18:03:37 +01001675 platform_set_drvdata(pdev, NULL);
1676
Sascha Haueread73182009-01-28 23:03:11 +00001677 return 0;
1678}
1679
Denis Kirjanov59d42892010-06-02 09:27:04 +00001680#ifdef CONFIG_PM
Sascha Haueread73182009-01-28 23:03:11 +00001681static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001682fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001683{
Eric Benard87cad5c2010-06-18 04:19:54 +00001684 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001685 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001686
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001687 if (netif_running(ndev)) {
1688 fec_stop(ndev);
1689 netif_device_detach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001690 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001691 clk_disable(fep->clk);
1692
Sascha Haueread73182009-01-28 23:03:11 +00001693 return 0;
1694}
1695
1696static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001697fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001698{
Eric Benard87cad5c2010-06-18 04:19:54 +00001699 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001700 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001701
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001702 clk_enable(fep->clk);
1703 if (netif_running(ndev)) {
1704 fec_restart(ndev, fep->full_duplex);
1705 netif_device_attach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001706 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001707
Sascha Haueread73182009-01-28 23:03:11 +00001708 return 0;
1709}
1710
Denis Kirjanov59d42892010-06-02 09:27:04 +00001711static const struct dev_pm_ops fec_pm_ops = {
1712 .suspend = fec_suspend,
1713 .resume = fec_resume,
1714 .freeze = fec_suspend,
1715 .thaw = fec_resume,
1716 .poweroff = fec_suspend,
1717 .restore = fec_resume,
1718};
Eric Benard87cad5c2010-06-18 04:19:54 +00001719#endif
Denis Kirjanov59d42892010-06-02 09:27:04 +00001720
Sascha Haueread73182009-01-28 23:03:11 +00001721static struct platform_driver fec_driver = {
1722 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00001723 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00001724 .owner = THIS_MODULE,
1725#ifdef CONFIG_PM
1726 .pm = &fec_pm_ops,
1727#endif
Shawn Guoca2cc332011-06-25 02:04:35 +08001728 .of_match_table = fec_dt_ids,
Sascha Haueread73182009-01-28 23:03:11 +00001729 },
Shawn Guob5680e02011-01-05 21:13:13 +00001730 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00001731 .probe = fec_probe,
1732 .remove = __devexit_p(fec_drv_remove),
Sascha Haueread73182009-01-28 23:03:11 +00001733};
1734
1735static int __init
1736fec_enet_module_init(void)
1737{
1738 printk(KERN_INFO "FEC Ethernet Driver\n");
1739
1740 return platform_driver_register(&fec_driver);
1741}
1742
1743static void __exit
1744fec_enet_cleanup(void)
1745{
1746 platform_driver_unregister(&fec_driver);
1747}
1748
1749module_exit(fec_enet_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750module_init(fec_enet_module_init);
1751
1752MODULE_LICENSE("GPL");