blob: 2bbe6a519bf4cd2258eeb0a878be2482202d4f38 [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 *
21 * Copyright (C) 2010 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 Guob5680e02011-01-05 21:13:13 +000075
76static struct platform_device_id fec_devtype[] = {
77 {
Shawn Guo0ca1e292011-07-01 18:11:22 +080078 /* keep it for coldfire */
Shawn Guob5680e02011-01-05 21:13:13 +000079 .name = DRIVER_NAME,
80 .driver_data = 0,
81 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +080082 .name = "imx25-fec",
83 .driver_data = FEC_QUIRK_USE_GASKET,
84 }, {
85 .name = "imx27-fec",
86 .driver_data = 0,
87 }, {
Shawn Guob5680e02011-01-05 21:13:13 +000088 .name = "imx28-fec",
89 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME,
Shawn Guo0ca1e292011-07-01 18:11:22 +080090 }, {
91 /* sentinel */
92 }
Shawn Guob5680e02011-01-05 21:13:13 +000093};
Shawn Guo0ca1e292011-07-01 18:11:22 +080094MODULE_DEVICE_TABLE(platform, fec_devtype);
Shawn Guob5680e02011-01-05 21:13:13 +000095
Shawn Guoca2cc332011-06-25 02:04:35 +080096enum imx_fec_type {
97 IMX25_FEC = 1, /* runs on i.mx25/50/53 */
98 IMX27_FEC, /* runs on i.mx27/35/51 */
99 IMX28_FEC,
100};
101
102static const struct of_device_id fec_dt_ids[] = {
103 { .compatible = "fsl,imx25-fec", .data = &fec_devtype[IMX25_FEC], },
104 { .compatible = "fsl,imx27-fec", .data = &fec_devtype[IMX27_FEC], },
105 { .compatible = "fsl,imx28-fec", .data = &fec_devtype[IMX28_FEC], },
106 { /* sentinel */ }
107};
108MODULE_DEVICE_TABLE(of, fec_dt_ids);
109
Shawn Guo49da97d2011-01-05 21:13:11 +0000110static unsigned char macaddr[ETH_ALEN];
111module_param_array(macaddr, byte, NULL, 0);
112MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
113
Greg Ungerer87f4abb2008-06-06 15:55:36 +1000114#if defined(CONFIG_M5272)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*
116 * Some hardware gets it MAC address out of local flash memory.
117 * if this is non-zero then assume it is the address to get MAC from.
118 */
119#if defined(CONFIG_NETtel)
120#define FEC_FLASHMAC 0xf0006006
121#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
122#define FEC_FLASHMAC 0xf0006000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#elif defined(CONFIG_CANCam)
124#define FEC_FLASHMAC 0xf0020000
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000125#elif defined (CONFIG_M5272C3)
126#define FEC_FLASHMAC (0xffe04000 + 4)
127#elif defined(CONFIG_MOD5272)
128#define FEC_FLASHMAC 0xffc0406b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#else
130#define FEC_FLASHMAC 0
131#endif
Greg Ungerer43be6362009-02-26 22:42:51 -0800132#endif /* CONFIG_M5272 */
Sascha Haueread73182009-01-28 23:03:11 +0000133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/* The number of Tx and Rx buffers. These are allocated from the page
135 * pool. The code may assume these are power of two, so it it best
136 * to keep them that size.
137 * We don't need to allocate pages for the transmitter. We just use
138 * the skbuffer directly.
139 */
140#define FEC_ENET_RX_PAGES 8
141#define FEC_ENET_RX_FRSIZE 2048
142#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE)
143#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
144#define FEC_ENET_TX_FRSIZE 2048
145#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
146#define TX_RING_SIZE 16 /* Must be power of two */
147#define TX_RING_MOD_MASK 15 /* for this to work */
148
Greg Ungerer562d2f82005-11-07 14:09:50 +1000149#if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
Matt Waddel6b265292006-06-27 13:10:56 +1000150#error "FEC: descriptor ring size constants too large"
Greg Ungerer562d2f82005-11-07 14:09:50 +1000151#endif
152
Sascha Hauer22f6b862009-04-15 01:32:18 +0000153/* Interrupt events/masks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
155#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
156#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */
157#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */
158#define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */
159#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */
160#define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */
161#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */
162#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */
163#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */
164
Wolfram Sang4bee1f92010-07-21 02:51:13 +0000165#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII)
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/* The FEC stores dest/src/type, data, and checksum for receive packets.
168 */
169#define PKT_MAXBUF_SIZE 1518
170#define PKT_MINBUF_SIZE 64
171#define PKT_MAXBLR_SIZE 1520
172
173
174/*
Matt Waddel6b265292006-06-27 13:10:56 +1000175 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * size bits. Other FEC hardware does not, so we need to take that into
177 * account when setting it.
178 */
Greg Ungerer562d2f82005-11-07 14:09:50 +1000179#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Uwe Kleine-König085e79e2011-01-17 09:52:18 +0100180 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
182#else
183#define OPT_FRAME_SIZE 0
184#endif
185
186/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and
187 * tx_bd_base always point to the base of the buffer descriptors. The
188 * cur_rx and cur_tx point to the currently available buffer.
189 * The dirty_tx tracks the current buffer that is being sent by the
190 * controller. The cur_tx and dirty_tx are equal under both completely
191 * empty and completely full conditions. The empty/ready indicator in
192 * the buffer descriptor determines the actual condition.
193 */
194struct fec_enet_private {
195 /* Hardware registers of the FEC device */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000196 void __iomem *hwp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Greg Ungerercb84d6e2007-07-30 16:29:09 +1000198 struct net_device *netdev;
199
Sascha Haueread73182009-01-28 23:03:11 +0000200 struct clk *clk;
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
203 unsigned char *tx_bounce[TX_RING_SIZE];
204 struct sk_buff* tx_skbuff[TX_RING_SIZE];
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000205 struct sk_buff* rx_skbuff[RX_RING_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 ushort skb_cur;
207 ushort skb_dirty;
208
Sascha Hauer22f6b862009-04-15 01:32:18 +0000209 /* CPM dual port RAM relative addresses */
Sascha Hauer4661e752009-01-28 23:03:07 +0000210 dma_addr_t bd_dma;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000211 /* Address of Rx and Tx buffers */
Sascha Hauer2e285322009-04-15 01:32:16 +0000212 struct bufdesc *rx_bd_base;
213 struct bufdesc *tx_bd_base;
214 /* The next free ring entry */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100215 struct bufdesc *cur_rx, *cur_tx;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000216 /* The ring entries to be free()ed */
Sascha Hauer2e285322009-04-15 01:32:16 +0000217 struct bufdesc *dirty_tx;
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 uint tx_full;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000220 /* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
221 spinlock_t hw_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100223 struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 int opened;
Bryan Wue6b043d2010-03-31 02:10:44 +0000226
227 /* Phylib and MDIO interface */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100228 struct mii_bus *mii_bus;
229 struct phy_device *phy_dev;
230 int mii_timeout;
231 uint phy_speed;
Baruch Siach5eb32bd2010-05-24 00:36:13 -0700232 phy_interface_t phy_interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 int link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 int full_duplex;
Baruch Siach97b72e42010-07-11 21:12:51 +0000235 struct completion mdio_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236};
237
Bryan Wue6b043d2010-03-31 02:10:44 +0000238/* FEC MII MMFR bits definition */
239#define FEC_MMFR_ST (1 << 30)
240#define FEC_MMFR_OP_READ (2 << 28)
241#define FEC_MMFR_OP_WRITE (1 << 28)
242#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
243#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
244#define FEC_MMFR_TA (2 << 16)
245#define FEC_MMFR_DATA(v) (v & 0xffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Baruch Siach97b72e42010-07-11 21:12:51 +0000247#define FEC_MII_TIMEOUT 1000 /* us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Sascha Hauer22f6b862009-04-15 01:32:18 +0000249/* Transmitter timeout */
250#define TX_TIMEOUT (2 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Shawn Guob5680e02011-01-05 21:13:13 +0000252static void *swap_buffer(void *bufaddr, int len)
253{
254 int i;
255 unsigned int *buf = bufaddr;
256
257 for (i = 0; i < (len + 3) / 4; i++, buf++)
258 *buf = cpu_to_be32(*buf);
259
260 return bufaddr;
261}
262
Denis Kirjanovc7621cb2010-06-02 09:15:47 +0000263static netdev_tx_t
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100264fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100266 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000267 const struct platform_device_id *id_entry =
268 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000269 struct bufdesc *bdp;
Greg Ungerer9555b312009-08-06 17:58:18 +0000270 void *bufaddr;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000271 unsigned short status;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000272 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (!fep->link) {
275 /* Link is down or autonegotiation is in progress. */
Patrick McHardy5b548142009-06-12 06:22:29 +0000276 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
278
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000279 spin_lock_irqsave(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /* Fill in a Tx ring entry */
281 bdp = fep->cur_tx;
282
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000283 status = bdp->cbd_sc;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000284
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000285 if (status & BD_ENET_TX_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /* Ooops. All transmit buffers are full. Bail out.
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100287 * This should not happen, since ndev->tbusy should be set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100289 printk("%s: tx queue full!.\n", ndev->name);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000290 spin_unlock_irqrestore(&fep->hw_lock, flags);
Patrick McHardy5b548142009-06-12 06:22:29 +0000291 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Sascha Hauer22f6b862009-04-15 01:32:18 +0000294 /* Clear all of the status flags */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000295 status &= ~BD_ENET_TX_STATS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Sascha Hauer22f6b862009-04-15 01:32:18 +0000297 /* Set buffer length and buffer pointer */
Greg Ungerer9555b312009-08-06 17:58:18 +0000298 bufaddr = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 bdp->cbd_datlen = skb->len;
300
301 /*
Sascha Hauer22f6b862009-04-15 01:32:18 +0000302 * On some FEC implementations data must be aligned on
303 * 4-byte boundaries. Use bounce buffers to copy data
304 * and get it aligned. Ugh.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 */
Greg Ungerer9555b312009-08-06 17:58:18 +0000306 if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 unsigned int index;
308 index = bdp - fep->tx_bd_base;
Uwe Kleine-König8a73b0b2011-01-13 21:34:31 +0100309 memcpy(fep->tx_bounce[index], skb->data, skb->len);
Greg Ungerer9555b312009-08-06 17:58:18 +0000310 bufaddr = fep->tx_bounce[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312
Shawn Guob5680e02011-01-05 21:13:13 +0000313 /*
314 * Some design made an incorrect assumption on endian mode of
315 * the system that it's running on. As the result, driver has to
316 * swap every frame going to and coming from the controller.
317 */
318 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
319 swap_buffer(bufaddr, skb->len);
320
Sascha Hauer22f6b862009-04-15 01:32:18 +0000321 /* Save skb pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 fep->tx_skbuff[fep->skb_cur] = skb;
323
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100324 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 /* Push the data cache so the CPM does not get stale memory
328 * data.
329 */
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100330 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000331 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000333 /* Send it on its way. Tell FEC it's ready, interrupt when done,
334 * it's the last BD of the frame, and to put the CRC on the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000336 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000338 bdp->cbd_sc = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /* Trigger transmission start */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000341 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Sascha Hauer22f6b862009-04-15 01:32:18 +0000343 /* If this was the last BD in the ring, start at the beginning again. */
344 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 bdp = fep->tx_bd_base;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000346 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 bdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 if (bdp == fep->dirty_tx) {
350 fep->tx_full = 1;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100351 netif_stop_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353
Sascha Hauer2e285322009-04-15 01:32:16 +0000354 fep->cur_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Richard Cochran18a03b92011-06-12 02:18:59 +0000356 skb_tx_timestamp(skb);
357
Richard Cochrana0087a32011-06-19 03:31:40 +0000358 spin_unlock_irqrestore(&fep->hw_lock, flags);
359
Patrick McHardy6ed10652009-06-23 06:03:08 +0000360 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
Uwe Kleine-König45993652011-01-19 20:47:04 +0100363/* This function is called to start or restart the FEC during a link
364 * change. This only happens when switching between half and full
365 * duplex.
366 */
367static void
368fec_restart(struct net_device *ndev, int duplex)
369{
370 struct fec_enet_private *fep = netdev_priv(ndev);
371 const struct platform_device_id *id_entry =
372 platform_get_device_id(fep->pdev);
373 int i;
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100374 u32 temp_mac[2];
375 u32 rcntl = OPT_FRAME_SIZE | 0x04;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100376
377 /* Whack a reset. We should wait for this. */
378 writel(1, fep->hwp + FEC_ECNTRL);
379 udelay(10);
380
381 /*
382 * enet-mac reset will reset mac address registers too,
383 * so need to reconfigure it.
384 */
385 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
386 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
387 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
388 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
389 }
390
391 /* Clear any outstanding interrupt. */
392 writel(0xffc00000, fep->hwp + FEC_IEVENT);
393
394 /* Reset all multicast. */
395 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
396 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
397#ifndef CONFIG_M5272
398 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
399 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
400#endif
401
402 /* Set maximum receive buffer size. */
403 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
404
405 /* Set receive and transmit descriptor base. */
406 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
407 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc) * RX_RING_SIZE,
408 fep->hwp + FEC_X_DES_START);
409
410 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
411 fep->cur_rx = fep->rx_bd_base;
412
413 /* Reset SKB transmit buffers. */
414 fep->skb_cur = fep->skb_dirty = 0;
415 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
416 if (fep->tx_skbuff[i]) {
417 dev_kfree_skb_any(fep->tx_skbuff[i]);
418 fep->tx_skbuff[i] = NULL;
419 }
420 }
421
422 /* Enable MII mode */
423 if (duplex) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100424 /* FD enable */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100425 writel(0x04, fep->hwp + FEC_X_CNTRL);
426 } else {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100427 /* No Rcv on Xmit */
428 rcntl |= 0x02;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100429 writel(0x0, fep->hwp + FEC_X_CNTRL);
430 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100431
Uwe Kleine-König45993652011-01-19 20:47:04 +0100432 fep->full_duplex = duplex;
433
434 /* Set MII speed */
435 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
436
437 /*
438 * The phy interface and speed need to get configured
439 * differently on enet-mac.
440 */
441 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100442 /* Enable flow control and length check */
443 rcntl |= 0x40000000 | 0x00000020;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100444
445 /* MII or RMII */
446 if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100447 rcntl |= (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100448 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100449 rcntl &= ~(1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100450
451 /* 10M or 100M */
452 if (fep->phy_dev && fep->phy_dev->speed == SPEED_100)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100453 rcntl &= ~(1 << 9);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100454 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100455 rcntl |= (1 << 9);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100456
Uwe Kleine-König45993652011-01-19 20:47:04 +0100457 } else {
458#ifdef FEC_MIIGSK_ENR
Shawn Guo0ca1e292011-07-01 18:11:22 +0800459 if (id_entry->driver_data & FEC_QUIRK_USE_GASKET) {
Uwe Kleine-König45993652011-01-19 20:47:04 +0100460 /* disable the gasket and wait */
461 writel(0, fep->hwp + FEC_MIIGSK_ENR);
462 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
463 udelay(1);
464
465 /*
466 * configure the gasket:
467 * RMII, 50 MHz, no loopback, no echo
Shawn Guo0ca1e292011-07-01 18:11:22 +0800468 * MII, 25 MHz, no loopback, no echo
Uwe Kleine-König45993652011-01-19 20:47:04 +0100469 */
Shawn Guo0ca1e292011-07-01 18:11:22 +0800470 writel((fep->phy_interface == PHY_INTERFACE_MODE_RMII) ?
471 1 : 0, fep->hwp + FEC_MIIGSK_CFGR);
472
Uwe Kleine-König45993652011-01-19 20:47:04 +0100473
474 /* re-enable the gasket */
475 writel(2, fep->hwp + FEC_MIIGSK_ENR);
476 }
477#endif
478 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100479 writel(rcntl, fep->hwp + FEC_R_CNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100480
481 /* And last, enable the transmit and receive processing */
482 writel(2, fep->hwp + FEC_ECNTRL);
483 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
484
485 /* Enable interrupts we wish to service */
486 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
487}
488
489static void
490fec_stop(struct net_device *ndev)
491{
492 struct fec_enet_private *fep = netdev_priv(ndev);
493
494 /* We cannot expect a graceful transmit stop without link !!! */
495 if (fep->link) {
496 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
497 udelay(10);
498 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
499 printk("fec_stop : Graceful transmit stop did not complete !\n");
500 }
501
502 /* Whack a reset. We should wait for this. */
503 writel(1, fep->hwp + FEC_ECNTRL);
504 udelay(10);
505 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
506 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
507}
508
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100511fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100513 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100515 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100517 fec_restart(ndev, fep->full_duplex);
518 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100522fec_enet_tx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 struct fec_enet_private *fep;
Sascha Hauer2e285322009-04-15 01:32:16 +0000525 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000526 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 struct sk_buff *skb;
528
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100529 fep = netdev_priv(ndev);
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000530 spin_lock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 bdp = fep->dirty_tx;
532
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000533 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000534 if (bdp == fep->cur_tx && fep->tx_full == 0)
535 break;
536
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100537 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
538 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000539 bdp->cbd_bufaddr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 skb = fep->tx_skbuff[fep->skb_dirty];
542 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000543 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 BD_ENET_TX_RL | BD_ENET_TX_UN |
545 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100546 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000547 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100548 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000549 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100550 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000551 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100552 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000553 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100554 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000555 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100556 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100558 ndev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
560
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000561 if (status & BD_ENET_TX_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 printk("HEY! Enet xmit interrupt and TX_READY.\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +0000563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 /* Deferred means some collisions occurred during transmit,
565 * but we eventually sent the packet OK.
566 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000567 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100568 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400569
Sascha Hauer22f6b862009-04-15 01:32:18 +0000570 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 dev_kfree_skb_any(skb);
572 fep->tx_skbuff[fep->skb_dirty] = NULL;
573 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400574
Sascha Hauer22f6b862009-04-15 01:32:18 +0000575 /* Update pointer to next buffer descriptor to be transmitted */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000576 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 bdp = fep->tx_bd_base;
578 else
579 bdp++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400580
Sascha Hauer22f6b862009-04-15 01:32:18 +0000581 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 */
583 if (fep->tx_full) {
584 fep->tx_full = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100585 if (netif_queue_stopped(ndev))
586 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000589 fep->dirty_tx = bdp;
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000590 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593
594/* During a receive, the cur_rx points to the current incoming buffer.
595 * When we update through the ring, if the next incoming buffer has
596 * not been given to the system, we just set the empty indicator,
597 * effectively tossing the packet.
598 */
599static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100600fec_enet_rx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100602 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000603 const struct platform_device_id *id_entry =
604 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000605 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000606 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 struct sk_buff *skb;
608 ushort pkt_len;
609 __u8 *data;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400610
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000611#ifdef CONFIG_M532x
612 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400613#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000615 spin_lock(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 /* First, grab all of the stats for the incoming packet.
618 * These get messed up if we get called due to a busy condition.
619 */
620 bdp = fep->cur_rx;
621
Sascha Hauer22f6b862009-04-15 01:32:18 +0000622 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Sascha Hauer22f6b862009-04-15 01:32:18 +0000624 /* Since we have allocated space to hold a complete frame,
625 * the last indicator should be set.
626 */
627 if ((status & BD_ENET_RX_LAST) == 0)
628 printk("FEC ENET: rcv is not +last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Sascha Hauer22f6b862009-04-15 01:32:18 +0000630 if (!fep->opened)
631 goto rx_processing_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Sascha Hauer22f6b862009-04-15 01:32:18 +0000633 /* Check for errors. */
634 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100636 ndev->stats.rx_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000637 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
638 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100639 ndev->stats.rx_length_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000640 }
641 if (status & BD_ENET_RX_NO) /* Frame alignment */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100642 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000643 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100644 ndev->stats.rx_crc_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000645 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100646 ndev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
Sascha Hauer22f6b862009-04-15 01:32:18 +0000648
649 /* Report late collisions as a frame error.
650 * On this error, the BD is closed, but we don't know what we
651 * have in the buffer. So, just drop this frame on the floor.
652 */
653 if (status & BD_ENET_RX_CL) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100654 ndev->stats.rx_errors++;
655 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000656 goto rx_processing_done;
657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Sascha Hauer22f6b862009-04-15 01:32:18 +0000659 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100660 ndev->stats.rx_packets++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000661 pkt_len = bdp->cbd_datlen;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100662 ndev->stats.rx_bytes += pkt_len;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000663 data = (__u8*)__va(bdp->cbd_bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100665 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
666 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerccdc4f12009-01-28 23:03:09 +0000667
Shawn Guob5680e02011-01-05 21:13:13 +0000668 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
669 swap_buffer(data, pkt_len);
670
Sascha Hauer22f6b862009-04-15 01:32:18 +0000671 /* This does 16 byte alignment, exactly what we need.
672 * The packet length includes FCS, but we don't want to
673 * include that when passing upstream as it messes up
674 * bridging applications.
675 */
Sascha Hauer85498892009-04-15 01:32:21 +0000676 skb = dev_alloc_skb(pkt_len - 4 + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Sascha Hauer85498892009-04-15 01:32:21 +0000678 if (unlikely(!skb)) {
Sascha Hauer22f6b862009-04-15 01:32:18 +0000679 printk("%s: Memory squeeze, dropping packet.\n",
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100680 ndev->name);
681 ndev->stats.rx_dropped++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000682 } else {
Sascha Hauer85498892009-04-15 01:32:21 +0000683 skb_reserve(skb, NET_IP_ALIGN);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000684 skb_put(skb, pkt_len - 4); /* Make room */
685 skb_copy_to_linear_data(skb, data, pkt_len - 4);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100686 skb->protocol = eth_type_trans(skb, ndev);
Richard Cochran18a03b92011-06-12 02:18:59 +0000687 if (!skb_defer_rx_timestamp(skb))
688 netif_rx(skb);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000689 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000690
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100691 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, data,
692 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000693rx_processing_done:
694 /* Clear the status flags for this buffer */
695 status &= ~BD_ENET_RX_STATS;
696
697 /* Mark the buffer empty */
698 status |= BD_ENET_RX_EMPTY;
699 bdp->cbd_sc = status;
700
701 /* Update BD pointer to next entry */
702 if (status & BD_ENET_RX_WRAP)
703 bdp = fep->rx_bd_base;
704 else
705 bdp++;
706 /* Doing this here will keep the FEC running while we process
707 * incoming frames. On a heavily loaded network, we should be
708 * able to keep up at the expense of system resources.
709 */
710 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000712 fep->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000714 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Uwe Kleine-König45993652011-01-19 20:47:04 +0100717static irqreturn_t
718fec_enet_interrupt(int irq, void *dev_id)
719{
720 struct net_device *ndev = dev_id;
721 struct fec_enet_private *fep = netdev_priv(ndev);
722 uint int_events;
723 irqreturn_t ret = IRQ_NONE;
724
725 do {
726 int_events = readl(fep->hwp + FEC_IEVENT);
727 writel(int_events, fep->hwp + FEC_IEVENT);
728
729 if (int_events & FEC_ENET_RXF) {
730 ret = IRQ_HANDLED;
731 fec_enet_rx(ndev);
732 }
733
734 /* Transmit OK, or non-fatal error. Update the buffer
735 * descriptors. FEC handles all errors, we just discover
736 * them as part of the transmit process.
737 */
738 if (int_events & FEC_ENET_TXF) {
739 ret = IRQ_HANDLED;
740 fec_enet_tx(ndev);
741 }
742
743 if (int_events & FEC_ENET_MII) {
744 ret = IRQ_HANDLED;
745 complete(&fep->mdio_done);
746 }
747 } while (int_events);
748
749 return ret;
750}
751
752
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754/* ------------------------------------------------------------------------- */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100755static void __inline__ fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100757 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo49da97d2011-01-05 21:13:11 +0000758 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000759 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Shawn Guo49da97d2011-01-05 21:13:11 +0000761 /*
762 * try to get mac address in following order:
763 *
764 * 1) module parameter via kernel command line in form
765 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
766 */
767 iap = macaddr;
768
Shawn Guoca2cc332011-06-25 02:04:35 +0800769#ifdef CONFIG_OF
Shawn Guo49da97d2011-01-05 21:13:11 +0000770 /*
Shawn Guoca2cc332011-06-25 02:04:35 +0800771 * 2) from device tree data
772 */
773 if (!is_valid_ether_addr(iap)) {
774 struct device_node *np = fep->pdev->dev.of_node;
775 if (np) {
776 const char *mac = of_get_mac_address(np);
777 if (mac)
778 iap = (unsigned char *) mac;
779 }
780 }
781#endif
782
783 /*
784 * 3) from flash or fuse (via platform data)
Shawn Guo49da97d2011-01-05 21:13:11 +0000785 */
786 if (!is_valid_ether_addr(iap)) {
787#ifdef CONFIG_M5272
788 if (FEC_FLASHMAC)
789 iap = (unsigned char *)FEC_FLASHMAC;
790#else
791 if (pdata)
792 memcpy(iap, pdata->mac, ETH_ALEN);
793#endif
794 }
795
796 /*
Shawn Guoca2cc332011-06-25 02:04:35 +0800797 * 4) FEC mac registers set by bootloader
Shawn Guo49da97d2011-01-05 21:13:11 +0000798 */
799 if (!is_valid_ether_addr(iap)) {
800 *((unsigned long *) &tmpaddr[0]) =
801 be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
802 *((unsigned short *) &tmpaddr[4]) =
803 be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 iap = &tmpaddr[0];
805 }
806
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100807 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Shawn Guo49da97d2011-01-05 21:13:11 +0000809 /* Adjust MAC if using macaddr */
810 if (iap == macaddr)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100811 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->pdev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814/* ------------------------------------------------------------------------- */
815
Bryan Wue6b043d2010-03-31 02:10:44 +0000816/*
817 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100819static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100821 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000822 struct phy_device *phy_dev = fep->phy_dev;
823 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Bryan Wue6b043d2010-03-31 02:10:44 +0000825 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Bryan Wue6b043d2010-03-31 02:10:44 +0000827 spin_lock_irqsave(&fep->hw_lock, flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400828
Bryan Wue6b043d2010-03-31 02:10:44 +0000829 /* Prevent a state halted on mii error */
830 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
831 phy_dev->state = PHY_RESUMING;
832 goto spin_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
Bryan Wue6b043d2010-03-31 02:10:44 +0000834
835 /* Duplex link change */
836 if (phy_dev->link) {
837 if (fep->full_duplex != phy_dev->duplex) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100838 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000839 status_change = 1;
840 }
841 }
842
843 /* Link on or off change */
844 if (phy_dev->link != fep->link) {
845 fep->link = phy_dev->link;
846 if (phy_dev->link)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100847 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000848 else
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100849 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000850 status_change = 1;
851 }
852
853spin_unlock:
854 spin_unlock_irqrestore(&fep->hw_lock, flags);
855
856 if (status_change)
857 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Bryan Wue6b043d2010-03-31 02:10:44 +0000860static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Bryan Wue6b043d2010-03-31 02:10:44 +0000862 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000863 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000864
865 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000866 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000867
868 /* start a read op */
869 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
870 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
871 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
872
873 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000874 time_left = wait_for_completion_timeout(&fep->mdio_done,
875 usecs_to_jiffies(FEC_MII_TIMEOUT));
876 if (time_left == 0) {
877 fep->mii_timeout = 1;
878 printk(KERN_ERR "FEC: MDIO read timeout\n");
879 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000880 }
881
882 /* return value */
883 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
884}
885
886static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
887 u16 value)
888{
889 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000890 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000891
892 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000893 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000894
Shawn Guo862f0982011-01-05 21:13:09 +0000895 /* start a write op */
896 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +0000897 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
898 FEC_MMFR_TA | FEC_MMFR_DATA(value),
899 fep->hwp + FEC_MII_DATA);
900
901 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000902 time_left = wait_for_completion_timeout(&fep->mdio_done,
903 usecs_to_jiffies(FEC_MII_TIMEOUT));
904 if (time_left == 0) {
905 fep->mii_timeout = 1;
906 printk(KERN_ERR "FEC: MDIO write timeout\n");
907 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000908 }
909
910 return 0;
911}
912
913static int fec_enet_mdio_reset(struct mii_bus *bus)
914{
915 return 0;
916}
917
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100918static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +0000919{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100920 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000921 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000922 char mdio_bus_id[MII_BUS_ID_SIZE];
923 char phy_name[MII_BUS_ID_SIZE + 3];
924 int phy_id;
Shawn Guob5680e02011-01-05 21:13:13 +0000925 int dev_id = fep->pdev->id;
Bryan Wue6b043d2010-03-31 02:10:44 +0000926
Bryan Wu418bd0d2010-05-28 03:40:39 -0700927 fep->phy_dev = NULL;
928
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000929 /* check for attached phy */
930 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
931 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
932 continue;
933 if (fep->mii_bus->phy_map[phy_id] == NULL)
934 continue;
935 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
936 continue;
Shawn Guob5680e02011-01-05 21:13:13 +0000937 if (dev_id--)
938 continue;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000939 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
940 break;
Bryan Wue6b043d2010-03-31 02:10:44 +0000941 }
942
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000943 if (phy_id >= PHY_MAX_ADDR) {
944 printk(KERN_INFO "%s: no PHY, assuming direct connection "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100945 "to switch\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000946 strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE);
947 phy_id = 0;
948 }
949
950 snprintf(phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT, mdio_bus_id, phy_id);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100951 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link, 0,
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000952 PHY_INTERFACE_MODE_MII);
953 if (IS_ERR(phy_dev)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100954 printk(KERN_ERR "%s: could not attach to PHY\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000955 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000956 }
957
958 /* mask with MAC supported features */
959 phy_dev->supported &= PHY_BASIC_FEATURES;
960 phy_dev->advertising = phy_dev->supported;
961
962 fep->phy_dev = phy_dev;
963 fep->link = 0;
964 fep->full_duplex = 0;
965
Bryan Wu418bd0d2010-05-28 03:40:39 -0700966 printk(KERN_INFO "%s: Freescale FEC PHY driver [%s] "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100967 "(mii_bus:phy_addr=%s, irq=%d)\n", ndev->name,
Bryan Wu418bd0d2010-05-28 03:40:39 -0700968 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
969 fep->phy_dev->irq);
970
Bryan Wue6b043d2010-03-31 02:10:44 +0000971 return 0;
972}
973
974static int fec_enet_mii_init(struct platform_device *pdev)
975{
Shawn Guob5680e02011-01-05 21:13:13 +0000976 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100977 struct net_device *ndev = platform_get_drvdata(pdev);
978 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000979 const struct platform_device_id *id_entry =
980 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000981 int err = -ENXIO, i;
982
Shawn Guob5680e02011-01-05 21:13:13 +0000983 /*
984 * The dual fec interfaces are not equivalent with enet-mac.
985 * Here are the differences:
986 *
987 * - fec0 supports MII & RMII modes while fec1 only supports RMII
988 * - fec0 acts as the 1588 time master while fec1 is slave
989 * - external phys can only be configured by fec0
990 *
991 * That is to say fec1 can not work independently. It only works
992 * when fec0 is working. The reason behind this design is that the
993 * second interface is added primarily for Switch mode.
994 *
995 * Because of the last point above, both phys are attached on fec0
996 * mdio interface in board design, and need to be configured by
997 * fec0 mii_bus.
998 */
Shawn Guoc8288272011-09-23 02:12:47 +0000999 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && pdev->id > 0) {
Shawn Guob5680e02011-01-05 21:13:13 +00001000 /* fec1 uses fec0 mii_bus */
1001 fep->mii_bus = fec0_mii_bus;
1002 return 0;
1003 }
1004
Bryan Wue6b043d2010-03-31 02:10:44 +00001005 fep->mii_timeout = 0;
1006
1007 /*
1008 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
1009 */
1010 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk), 5000000) << 1;
1011 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1012
1013 fep->mii_bus = mdiobus_alloc();
1014 if (fep->mii_bus == NULL) {
1015 err = -ENOMEM;
1016 goto err_out;
1017 }
1018
1019 fep->mii_bus->name = "fec_enet_mii_bus";
1020 fep->mii_bus->read = fec_enet_mdio_read;
1021 fep->mii_bus->write = fec_enet_mdio_write;
1022 fep->mii_bus->reset = fec_enet_mdio_reset;
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001023 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%x", pdev->id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +00001024 fep->mii_bus->priv = fep;
1025 fep->mii_bus->parent = &pdev->dev;
1026
1027 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
1028 if (!fep->mii_bus->irq) {
1029 err = -ENOMEM;
1030 goto err_out_free_mdiobus;
1031 }
1032
1033 for (i = 0; i < PHY_MAX_ADDR; i++)
1034 fep->mii_bus->irq[i] = PHY_POLL;
1035
Bryan Wue6b043d2010-03-31 02:10:44 +00001036 if (mdiobus_register(fep->mii_bus))
1037 goto err_out_free_mdio_irq;
1038
Shawn Guob5680e02011-01-05 21:13:13 +00001039 /* save fec0 mii_bus */
1040 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1041 fec0_mii_bus = fep->mii_bus;
1042
Bryan Wue6b043d2010-03-31 02:10:44 +00001043 return 0;
1044
Bryan Wue6b043d2010-03-31 02:10:44 +00001045err_out_free_mdio_irq:
1046 kfree(fep->mii_bus->irq);
1047err_out_free_mdiobus:
1048 mdiobus_free(fep->mii_bus);
1049err_out:
1050 return err;
1051}
1052
1053static void fec_enet_mii_remove(struct fec_enet_private *fep)
1054{
1055 if (fep->phy_dev)
1056 phy_disconnect(fep->phy_dev);
1057 mdiobus_unregister(fep->mii_bus);
1058 kfree(fep->mii_bus->irq);
1059 mdiobus_free(fep->mii_bus);
1060}
1061
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001062static int fec_enet_get_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001063 struct ethtool_cmd *cmd)
1064{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001065 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001066 struct phy_device *phydev = fep->phy_dev;
1067
1068 if (!phydev)
1069 return -ENODEV;
1070
1071 return phy_ethtool_gset(phydev, cmd);
1072}
1073
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001074static int fec_enet_set_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001075 struct ethtool_cmd *cmd)
1076{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001077 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001078 struct phy_device *phydev = fep->phy_dev;
1079
1080 if (!phydev)
1081 return -ENODEV;
1082
1083 return phy_ethtool_sset(phydev, cmd);
1084}
1085
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001086static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001087 struct ethtool_drvinfo *info)
1088{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001089 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Bryan Wue6b043d2010-03-31 02:10:44 +00001091 strcpy(info->driver, fep->pdev->dev.driver->name);
1092 strcpy(info->version, "Revision: 1.0");
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001093 strcpy(info->bus_info, dev_name(&ndev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
Bryan Wue6b043d2010-03-31 02:10:44 +00001095
1096static struct ethtool_ops fec_enet_ethtool_ops = {
1097 .get_settings = fec_enet_get_settings,
1098 .set_settings = fec_enet_set_settings,
1099 .get_drvinfo = fec_enet_get_drvinfo,
1100 .get_link = ethtool_op_get_link,
1101};
1102
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001103static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00001104{
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
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001108 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00001109 return -EINVAL;
1110
1111 if (!phydev)
1112 return -ENODEV;
1113
Richard Cochran28b04112010-07-17 08:48:55 +00001114 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00001115}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001117static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001118{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001119 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001120 int i;
1121 struct sk_buff *skb;
1122 struct bufdesc *bdp;
1123
1124 bdp = fep->rx_bd_base;
1125 for (i = 0; i < RX_RING_SIZE; i++) {
1126 skb = fep->rx_skbuff[i];
1127
1128 if (bdp->cbd_bufaddr)
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001129 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001130 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1131 if (skb)
1132 dev_kfree_skb(skb);
1133 bdp++;
1134 }
1135
1136 bdp = fep->tx_bd_base;
1137 for (i = 0; i < TX_RING_SIZE; i++)
1138 kfree(fep->tx_bounce[i]);
1139}
1140
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001141static int fec_enet_alloc_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001142{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001143 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001144 int i;
1145 struct sk_buff *skb;
1146 struct bufdesc *bdp;
1147
1148 bdp = fep->rx_bd_base;
1149 for (i = 0; i < RX_RING_SIZE; i++) {
1150 skb = dev_alloc_skb(FEC_ENET_RX_FRSIZE);
1151 if (!skb) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001152 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001153 return -ENOMEM;
1154 }
1155 fep->rx_skbuff[i] = skb;
1156
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001157 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, skb->data,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001158 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1159 bdp->cbd_sc = BD_ENET_RX_EMPTY;
1160 bdp++;
1161 }
1162
1163 /* Set the last buffer to wrap. */
1164 bdp--;
1165 bdp->cbd_sc |= BD_SC_WRAP;
1166
1167 bdp = fep->tx_bd_base;
1168 for (i = 0; i < TX_RING_SIZE; i++) {
1169 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
1170
1171 bdp->cbd_sc = 0;
1172 bdp->cbd_bufaddr = 0;
1173 bdp++;
1174 }
1175
1176 /* Set the last buffer to wrap. */
1177 bdp--;
1178 bdp->cbd_sc |= BD_SC_WRAP;
1179
1180 return 0;
1181}
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001184fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001186 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001187 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 /* I should reset the ring buffers here, but I don't yet know
1190 * a simple way to do that.
1191 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001193 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001194 if (ret)
1195 return ret;
1196
Bryan Wu418bd0d2010-05-28 03:40:39 -07001197 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001198 ret = fec_enet_mii_probe(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001199 if (ret) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001200 fec_enet_free_buffers(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001201 return ret;
1202 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001203 phy_start(fep->phy_dev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001204 netif_start_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 fep->opened = 1;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001206 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
1208
1209static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001210fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001212 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Sascha Hauer22f6b862009-04-15 01:32:18 +00001214 /* Don't know what to do yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 fep->opened = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001216 netif_stop_queue(ndev);
1217 fec_stop(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001219 if (fep->phy_dev) {
1220 phy_stop(fep->phy_dev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001221 phy_disconnect(fep->phy_dev);
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001222 }
Bryan Wu418bd0d2010-05-28 03:40:39 -07001223
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001224 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return 0;
1227}
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229/* Set or clear the multicast filter for this adaptor.
1230 * Skeleton taken from sunlance driver.
1231 * The CPM Ethernet implementation allows Multicast as well as individual
1232 * MAC address filtering. Some of the drivers check to make sure it is
1233 * a group multicast address, and discard those that are not. I guess I
1234 * will do the same for now, but just remove the test if you want
1235 * individual filtering as well (do the upper net layers want or support
1236 * this kind of feature?).
1237 */
1238
1239#define HASH_BITS 6 /* #bits in hash */
1240#define CRC32_POLY 0xEDB88320
1241
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001242static void set_multicast_list(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);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001245 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00001246 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 unsigned char hash;
1248
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001249 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00001250 tmp = readl(fep->hwp + FEC_R_CNTRL);
1251 tmp |= 0x8;
1252 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00001253 return;
1254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Sascha Hauer4e831832009-04-15 01:32:19 +00001256 tmp = readl(fep->hwp + FEC_R_CNTRL);
1257 tmp &= ~0x8;
1258 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001259
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001260 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001261 /* Catch all multicast addresses, so set the
1262 * filter to all 1's
1263 */
1264 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1265 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Sascha Hauer4e831832009-04-15 01:32:19 +00001267 return;
1268 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001269
Sascha Hauer4e831832009-04-15 01:32:19 +00001270 /* Clear filter and add the addresses in hash register
1271 */
1272 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1273 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001275 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001276 /* calculate crc32 value of mac address */
1277 crc = 0xffffffff;
1278
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001279 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001280 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00001281 for (bit = 0; bit < 8; bit++, data >>= 1) {
1282 crc = (crc >> 1) ^
1283 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
1285 }
Sascha Hauer4e831832009-04-15 01:32:19 +00001286
1287 /* only upper 6 bits (HASH_BITS) are used
1288 * which point to specific bit in he hash registers
1289 */
1290 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1291
1292 if (hash > 31) {
1293 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1294 tmp |= 1 << (hash - 32);
1295 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1296 } else {
1297 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1298 tmp |= 1 << hash;
1299 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302}
1303
Sascha Hauer22f6b862009-04-15 01:32:18 +00001304/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00001305static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001306fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001308 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00001309 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Sascha Hauer009fda82009-04-15 01:32:23 +00001311 if (!is_valid_ether_addr(addr->sa_data))
1312 return -EADDRNOTAVAIL;
1313
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001314 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
Sascha Hauer009fda82009-04-15 01:32:23 +00001315
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001316 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
1317 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00001318 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001319 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07001320 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00001321 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322}
1323
Sascha Hauer009fda82009-04-15 01:32:23 +00001324static const struct net_device_ops fec_netdev_ops = {
1325 .ndo_open = fec_enet_open,
1326 .ndo_stop = fec_enet_close,
1327 .ndo_start_xmit = fec_enet_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001328 .ndo_set_rx_mode = set_multicast_list,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00001329 .ndo_change_mtu = eth_change_mtu,
Sascha Hauer009fda82009-04-15 01:32:23 +00001330 .ndo_validate_addr = eth_validate_addr,
1331 .ndo_tx_timeout = fec_timeout,
1332 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001333 .ndo_do_ioctl = fec_enet_ioctl,
Sascha Hauer009fda82009-04-15 01:32:23 +00001334};
1335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 /*
1337 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00001338 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001340static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001342 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001343 struct bufdesc *cbd_base;
Rob Herring633e7532010-02-05 08:56:20 +00001344 struct bufdesc *bdp;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001345 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001347 /* Allocate memory for buffer descriptors. */
1348 cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
1349 GFP_KERNEL);
1350 if (!cbd_base) {
Greg Ungerer562d2f82005-11-07 14:09:50 +10001351 printk("FEC: allocate descriptor memory failed?\n");
1352 return -ENOMEM;
1353 }
1354
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001355 spin_lock_init(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001356
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001357 fep->netdev = ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Shawn Guo49da97d2011-01-05 21:13:11 +00001359 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001360 fec_get_mac(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001362 /* Set receive and transmit descriptor base. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 fep->rx_bd_base = cbd_base;
1364 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1365
Sascha Hauer22f6b862009-04-15 01:32:18 +00001366 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001367 ndev->watchdog_timeo = TX_TIMEOUT;
1368 ndev->netdev_ops = &fec_netdev_ops;
1369 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00001370
1371 /* Initialize the receive buffer descriptors. */
1372 bdp = fep->rx_bd_base;
1373 for (i = 0; i < RX_RING_SIZE; i++) {
1374
1375 /* Initialize the BD for every fragment in the page. */
1376 bdp->cbd_sc = 0;
1377 bdp++;
1378 }
1379
1380 /* Set the last buffer to wrap */
1381 bdp--;
1382 bdp->cbd_sc |= BD_SC_WRAP;
1383
1384 /* ...and the same for transmit */
1385 bdp = fep->tx_bd_base;
1386 for (i = 0; i < TX_RING_SIZE; i++) {
1387
1388 /* Initialize the BD for every fragment in the page. */
1389 bdp->cbd_sc = 0;
1390 bdp->cbd_bufaddr = 0;
1391 bdp++;
1392 }
1393
1394 /* Set the last buffer to wrap */
1395 bdp--;
1396 bdp->cbd_sc |= BD_SC_WRAP;
1397
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001398 fec_restart(ndev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 return 0;
1401}
1402
Shawn Guoca2cc332011-06-25 02:04:35 +08001403#ifdef CONFIG_OF
1404static int __devinit fec_get_phy_mode_dt(struct platform_device *pdev)
1405{
1406 struct device_node *np = pdev->dev.of_node;
1407
1408 if (np)
1409 return of_get_phy_mode(np);
1410
1411 return -ENODEV;
1412}
1413
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001414static void __devinit fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08001415{
1416 int err, phy_reset;
1417 struct device_node *np = pdev->dev.of_node;
1418
1419 if (!np)
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001420 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08001421
1422 phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
1423 err = gpio_request_one(phy_reset, GPIOF_OUT_INIT_LOW, "phy-reset");
1424 if (err) {
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001425 pr_debug("FEC: failed to get gpio phy-reset: %d\n", err);
1426 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08001427 }
1428 msleep(1);
1429 gpio_set_value(phy_reset, 1);
Shawn Guoca2cc332011-06-25 02:04:35 +08001430}
1431#else /* CONFIG_OF */
1432static inline int fec_get_phy_mode_dt(struct platform_device *pdev)
1433{
1434 return -ENODEV;
1435}
1436
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00001437static inline void fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08001438{
1439 /*
1440 * In case of platform probe, the reset has been done
1441 * by machine code.
1442 */
Shawn Guoca2cc332011-06-25 02:04:35 +08001443}
1444#endif /* CONFIG_OF */
1445
Sascha Haueread73182009-01-28 23:03:11 +00001446static int __devinit
1447fec_probe(struct platform_device *pdev)
1448{
1449 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001450 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00001451 struct net_device *ndev;
1452 int i, irq, ret = 0;
1453 struct resource *r;
Shawn Guoca2cc332011-06-25 02:04:35 +08001454 const struct of_device_id *of_id;
1455
1456 of_id = of_match_device(fec_dt_ids, &pdev->dev);
1457 if (of_id)
1458 pdev->id_entry = of_id->data;
Sascha Haueread73182009-01-28 23:03:11 +00001459
1460 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1461 if (!r)
1462 return -ENXIO;
1463
1464 r = request_mem_region(r->start, resource_size(r), pdev->name);
1465 if (!r)
1466 return -EBUSY;
1467
1468 /* Init network device */
1469 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001470 if (!ndev) {
1471 ret = -ENOMEM;
1472 goto failed_alloc_etherdev;
1473 }
Sascha Haueread73182009-01-28 23:03:11 +00001474
1475 SET_NETDEV_DEV(ndev, &pdev->dev);
1476
1477 /* setup board info structure */
1478 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001479
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001480 fep->hwp = ioremap(r->start, resource_size(r));
Bryan Wue6b043d2010-03-31 02:10:44 +00001481 fep->pdev = pdev;
Sascha Haueread73182009-01-28 23:03:11 +00001482
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001483 if (!fep->hwp) {
Sascha Haueread73182009-01-28 23:03:11 +00001484 ret = -ENOMEM;
1485 goto failed_ioremap;
1486 }
1487
1488 platform_set_drvdata(pdev, ndev);
1489
Shawn Guoca2cc332011-06-25 02:04:35 +08001490 ret = fec_get_phy_mode_dt(pdev);
1491 if (ret < 0) {
1492 pdata = pdev->dev.platform_data;
1493 if (pdata)
1494 fep->phy_interface = pdata->phy;
1495 else
1496 fep->phy_interface = PHY_INTERFACE_MODE_MII;
1497 } else {
1498 fep->phy_interface = ret;
1499 }
1500
1501 fec_reset_phy(pdev);
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001502
Sascha Haueread73182009-01-28 23:03:11 +00001503 /* This device has up to three irqs on some platforms */
1504 for (i = 0; i < 3; i++) {
1505 irq = platform_get_irq(pdev, i);
1506 if (i && irq < 0)
1507 break;
1508 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1509 if (ret) {
Uwe Kleine-Königb2b09ad2011-01-13 21:49:05 +01001510 while (--i >= 0) {
Sascha Haueread73182009-01-28 23:03:11 +00001511 irq = platform_get_irq(pdev, i);
1512 free_irq(irq, ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001513 }
1514 goto failed_irq;
1515 }
1516 }
1517
1518 fep->clk = clk_get(&pdev->dev, "fec_clk");
1519 if (IS_ERR(fep->clk)) {
1520 ret = PTR_ERR(fep->clk);
1521 goto failed_clk;
1522 }
1523 clk_enable(fep->clk);
1524
Shawn Guo8649a232011-01-05 21:13:10 +00001525 ret = fec_enet_init(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001526 if (ret)
1527 goto failed_init;
1528
Bryan Wue6b043d2010-03-31 02:10:44 +00001529 ret = fec_enet_mii_init(pdev);
1530 if (ret)
1531 goto failed_mii_init;
1532
Oskar Schirmer03c698c2010-10-07 02:30:30 +00001533 /* Carrier starts down, phylib will bring it up */
1534 netif_carrier_off(ndev);
1535
Sascha Haueread73182009-01-28 23:03:11 +00001536 ret = register_netdev(ndev);
1537 if (ret)
1538 goto failed_register;
1539
1540 return 0;
1541
1542failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00001543 fec_enet_mii_remove(fep);
1544failed_mii_init:
Sascha Haueread73182009-01-28 23:03:11 +00001545failed_init:
1546 clk_disable(fep->clk);
1547 clk_put(fep->clk);
1548failed_clk:
1549 for (i = 0; i < 3; i++) {
1550 irq = platform_get_irq(pdev, i);
1551 if (irq > 0)
1552 free_irq(irq, ndev);
1553 }
1554failed_irq:
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001555 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001556failed_ioremap:
1557 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001558failed_alloc_etherdev:
1559 release_mem_region(r->start, resource_size(r));
Sascha Haueread73182009-01-28 23:03:11 +00001560
1561 return ret;
1562}
1563
1564static int __devexit
1565fec_drv_remove(struct platform_device *pdev)
1566{
1567 struct net_device *ndev = platform_get_drvdata(pdev);
1568 struct fec_enet_private *fep = netdev_priv(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001569 struct resource *r;
Sascha Haueread73182009-01-28 23:03:11 +00001570
Sascha Haueread73182009-01-28 23:03:11 +00001571 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001572 fec_enet_mii_remove(fep);
Sascha Haueread73182009-01-28 23:03:11 +00001573 clk_disable(fep->clk);
1574 clk_put(fep->clk);
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001575 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001576 unregister_netdev(ndev);
1577 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001578
1579 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1580 BUG_ON(!r);
1581 release_mem_region(r->start, resource_size(r));
1582
Uwe Kleine-Königb3cde362011-01-25 18:03:37 +01001583 platform_set_drvdata(pdev, NULL);
1584
Sascha Haueread73182009-01-28 23:03:11 +00001585 return 0;
1586}
1587
Denis Kirjanov59d42892010-06-02 09:27:04 +00001588#ifdef CONFIG_PM
Sascha Haueread73182009-01-28 23:03:11 +00001589static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001590fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001591{
Eric Benard87cad5c2010-06-18 04:19:54 +00001592 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001593 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001594
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001595 if (netif_running(ndev)) {
1596 fec_stop(ndev);
1597 netif_device_detach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001598 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001599 clk_disable(fep->clk);
1600
Sascha Haueread73182009-01-28 23:03:11 +00001601 return 0;
1602}
1603
1604static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001605fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001606{
Eric Benard87cad5c2010-06-18 04:19:54 +00001607 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001608 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001609
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001610 clk_enable(fep->clk);
1611 if (netif_running(ndev)) {
1612 fec_restart(ndev, fep->full_duplex);
1613 netif_device_attach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001614 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001615
Sascha Haueread73182009-01-28 23:03:11 +00001616 return 0;
1617}
1618
Denis Kirjanov59d42892010-06-02 09:27:04 +00001619static const struct dev_pm_ops fec_pm_ops = {
1620 .suspend = fec_suspend,
1621 .resume = fec_resume,
1622 .freeze = fec_suspend,
1623 .thaw = fec_resume,
1624 .poweroff = fec_suspend,
1625 .restore = fec_resume,
1626};
Eric Benard87cad5c2010-06-18 04:19:54 +00001627#endif
Denis Kirjanov59d42892010-06-02 09:27:04 +00001628
Sascha Haueread73182009-01-28 23:03:11 +00001629static struct platform_driver fec_driver = {
1630 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00001631 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00001632 .owner = THIS_MODULE,
1633#ifdef CONFIG_PM
1634 .pm = &fec_pm_ops,
1635#endif
Shawn Guoca2cc332011-06-25 02:04:35 +08001636 .of_match_table = fec_dt_ids,
Sascha Haueread73182009-01-28 23:03:11 +00001637 },
Shawn Guob5680e02011-01-05 21:13:13 +00001638 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00001639 .probe = fec_probe,
1640 .remove = __devexit_p(fec_drv_remove),
Sascha Haueread73182009-01-28 23:03:11 +00001641};
1642
1643static int __init
1644fec_enet_module_init(void)
1645{
1646 printk(KERN_INFO "FEC Ethernet Driver\n");
1647
1648 return platform_driver_register(&fec_driver);
1649}
1650
1651static void __exit
1652fec_enet_cleanup(void)
1653{
1654 platform_driver_unregister(&fec_driver);
1655}
1656
1657module_exit(fec_enet_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658module_init(fec_enet_module_init);
1659
1660MODULE_LICENSE("GPL");