blob: c70503a065bb0f25c9e26d308a1e585e0e6a155b [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Greg Ungerer080853a2007-07-30 16:28:46 +100048#include <asm/cacheflush.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000049
Shawn Guob5680e02011-01-05 21:13:13 +000050#ifndef CONFIG_ARM
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/coldfire.h>
52#include <asm/mcfsim.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000053#endif
Sascha Hauer6f501b12009-01-28 23:03:05 +000054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include "fec.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Uwe Kleine-König085e79e2011-01-17 09:52:18 +010057#if defined(CONFIG_ARM)
Sascha Hauer196719e2009-01-28 23:03:10 +000058#define FEC_ALIGNMENT 0xf
59#else
60#define FEC_ALIGNMENT 0x3
61#endif
62
Shawn Guob5680e02011-01-05 21:13:13 +000063#define DRIVER_NAME "fec"
64
65/* Controller is ENET-MAC */
66#define FEC_QUIRK_ENET_MAC (1 << 0)
67/* Controller needs driver to swap frame */
68#define FEC_QUIRK_SWAP_FRAME (1 << 1)
69
70static struct platform_device_id fec_devtype[] = {
71 {
72 .name = DRIVER_NAME,
73 .driver_data = 0,
74 }, {
75 .name = "imx28-fec",
76 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME,
77 }
78};
79
Shawn Guo49da97d2011-01-05 21:13:11 +000080static unsigned char macaddr[ETH_ALEN];
81module_param_array(macaddr, byte, NULL, 0);
82MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
83
Greg Ungerer87f4abb2008-06-06 15:55:36 +100084#if defined(CONFIG_M5272)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
86 * Some hardware gets it MAC address out of local flash memory.
87 * if this is non-zero then assume it is the address to get MAC from.
88 */
89#if defined(CONFIG_NETtel)
90#define FEC_FLASHMAC 0xf0006006
91#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
92#define FEC_FLASHMAC 0xf0006000
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#elif defined(CONFIG_CANCam)
94#define FEC_FLASHMAC 0xf0020000
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +100095#elif defined (CONFIG_M5272C3)
96#define FEC_FLASHMAC (0xffe04000 + 4)
97#elif defined(CONFIG_MOD5272)
98#define FEC_FLASHMAC 0xffc0406b
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#else
100#define FEC_FLASHMAC 0
101#endif
Greg Ungerer43be6362009-02-26 22:42:51 -0800102#endif /* CONFIG_M5272 */
Sascha Haueread73182009-01-28 23:03:11 +0000103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/* The number of Tx and Rx buffers. These are allocated from the page
105 * pool. The code may assume these are power of two, so it it best
106 * to keep them that size.
107 * We don't need to allocate pages for the transmitter. We just use
108 * the skbuffer directly.
109 */
110#define FEC_ENET_RX_PAGES 8
111#define FEC_ENET_RX_FRSIZE 2048
112#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE)
113#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
114#define FEC_ENET_TX_FRSIZE 2048
115#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
116#define TX_RING_SIZE 16 /* Must be power of two */
117#define TX_RING_MOD_MASK 15 /* for this to work */
118
Greg Ungerer562d2f82005-11-07 14:09:50 +1000119#if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
Matt Waddel6b265292006-06-27 13:10:56 +1000120#error "FEC: descriptor ring size constants too large"
Greg Ungerer562d2f82005-11-07 14:09:50 +1000121#endif
122
Sascha Hauer22f6b862009-04-15 01:32:18 +0000123/* Interrupt events/masks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
125#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
126#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */
127#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */
128#define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */
129#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */
130#define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */
131#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */
132#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */
133#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */
134
Wolfram Sang4bee1f92010-07-21 02:51:13 +0000135#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII)
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/* The FEC stores dest/src/type, data, and checksum for receive packets.
138 */
139#define PKT_MAXBUF_SIZE 1518
140#define PKT_MINBUF_SIZE 64
141#define PKT_MAXBLR_SIZE 1520
142
143
144/*
Matt Waddel6b265292006-06-27 13:10:56 +1000145 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 * size bits. Other FEC hardware does not, so we need to take that into
147 * account when setting it.
148 */
Greg Ungerer562d2f82005-11-07 14:09:50 +1000149#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Uwe Kleine-König085e79e2011-01-17 09:52:18 +0100150 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
152#else
153#define OPT_FRAME_SIZE 0
154#endif
155
156/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and
157 * tx_bd_base always point to the base of the buffer descriptors. The
158 * cur_rx and cur_tx point to the currently available buffer.
159 * The dirty_tx tracks the current buffer that is being sent by the
160 * controller. The cur_tx and dirty_tx are equal under both completely
161 * empty and completely full conditions. The empty/ready indicator in
162 * the buffer descriptor determines the actual condition.
163 */
164struct fec_enet_private {
165 /* Hardware registers of the FEC device */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000166 void __iomem *hwp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Greg Ungerercb84d6e2007-07-30 16:29:09 +1000168 struct net_device *netdev;
169
Sascha Haueread73182009-01-28 23:03:11 +0000170 struct clk *clk;
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
173 unsigned char *tx_bounce[TX_RING_SIZE];
174 struct sk_buff* tx_skbuff[TX_RING_SIZE];
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000175 struct sk_buff* rx_skbuff[RX_RING_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 ushort skb_cur;
177 ushort skb_dirty;
178
Sascha Hauer22f6b862009-04-15 01:32:18 +0000179 /* CPM dual port RAM relative addresses */
Sascha Hauer4661e752009-01-28 23:03:07 +0000180 dma_addr_t bd_dma;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000181 /* Address of Rx and Tx buffers */
Sascha Hauer2e285322009-04-15 01:32:16 +0000182 struct bufdesc *rx_bd_base;
183 struct bufdesc *tx_bd_base;
184 /* The next free ring entry */
185 struct bufdesc *cur_rx, *cur_tx;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000186 /* The ring entries to be free()ed */
Sascha Hauer2e285322009-04-15 01:32:16 +0000187 struct bufdesc *dirty_tx;
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 uint tx_full;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000190 /* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
191 spinlock_t hw_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Bryan Wue6b043d2010-03-31 02:10:44 +0000193 struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 int opened;
Bryan Wue6b043d2010-03-31 02:10:44 +0000196
197 /* Phylib and MDIO interface */
198 struct mii_bus *mii_bus;
199 struct phy_device *phy_dev;
200 int mii_timeout;
201 uint phy_speed;
Baruch Siach5eb32bd2010-05-24 00:36:13 -0700202 phy_interface_t phy_interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 int full_duplex;
Baruch Siach97b72e42010-07-11 21:12:51 +0000205 struct completion mdio_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
David Howells7d12e782006-10-05 14:55:46 +0100208static irqreturn_t fec_enet_interrupt(int irq, void * dev_id);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100209static void fec_enet_tx(struct net_device *ndev);
210static void fec_enet_rx(struct net_device *ndev);
211static int fec_enet_close(struct net_device *ndev);
212static void fec_restart(struct net_device *ndev, int duplex);
213static void fec_stop(struct net_device *ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Bryan Wue6b043d2010-03-31 02:10:44 +0000215/* FEC MII MMFR bits definition */
216#define FEC_MMFR_ST (1 << 30)
217#define FEC_MMFR_OP_READ (2 << 28)
218#define FEC_MMFR_OP_WRITE (1 << 28)
219#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
220#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
221#define FEC_MMFR_TA (2 << 16)
222#define FEC_MMFR_DATA(v) (v & 0xffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Baruch Siach97b72e42010-07-11 21:12:51 +0000224#define FEC_MII_TIMEOUT 1000 /* us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Sascha Hauer22f6b862009-04-15 01:32:18 +0000226/* Transmitter timeout */
227#define TX_TIMEOUT (2 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Shawn Guob5680e02011-01-05 21:13:13 +0000229static void *swap_buffer(void *bufaddr, int len)
230{
231 int i;
232 unsigned int *buf = bufaddr;
233
234 for (i = 0; i < (len + 3) / 4; i++, buf++)
235 *buf = cpu_to_be32(*buf);
236
237 return bufaddr;
238}
239
Denis Kirjanovc7621cb2010-06-02 09:15:47 +0000240static netdev_tx_t
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100241fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100243 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000244 const struct platform_device_id *id_entry =
245 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000246 struct bufdesc *bdp;
Greg Ungerer9555b312009-08-06 17:58:18 +0000247 void *bufaddr;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000248 unsigned short status;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000249 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (!fep->link) {
252 /* Link is down or autonegotiation is in progress. */
Patrick McHardy5b548142009-06-12 06:22:29 +0000253 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000256 spin_lock_irqsave(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /* Fill in a Tx ring entry */
258 bdp = fep->cur_tx;
259
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000260 status = bdp->cbd_sc;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000261
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000262 if (status & BD_ENET_TX_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /* Ooops. All transmit buffers are full. Bail out.
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100264 * This should not happen, since ndev->tbusy should be set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100266 printk("%s: tx queue full!.\n", ndev->name);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000267 spin_unlock_irqrestore(&fep->hw_lock, flags);
Patrick McHardy5b548142009-06-12 06:22:29 +0000268 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Sascha Hauer22f6b862009-04-15 01:32:18 +0000271 /* Clear all of the status flags */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000272 status &= ~BD_ENET_TX_STATS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Sascha Hauer22f6b862009-04-15 01:32:18 +0000274 /* Set buffer length and buffer pointer */
Greg Ungerer9555b312009-08-06 17:58:18 +0000275 bufaddr = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 bdp->cbd_datlen = skb->len;
277
278 /*
Sascha Hauer22f6b862009-04-15 01:32:18 +0000279 * On some FEC implementations data must be aligned on
280 * 4-byte boundaries. Use bounce buffers to copy data
281 * and get it aligned. Ugh.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 */
Greg Ungerer9555b312009-08-06 17:58:18 +0000283 if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 unsigned int index;
285 index = bdp - fep->tx_bd_base;
Uwe Kleine-König8a73b0b2011-01-13 21:34:31 +0100286 memcpy(fep->tx_bounce[index], skb->data, skb->len);
Greg Ungerer9555b312009-08-06 17:58:18 +0000287 bufaddr = fep->tx_bounce[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289
Shawn Guob5680e02011-01-05 21:13:13 +0000290 /*
291 * Some design made an incorrect assumption on endian mode of
292 * the system that it's running on. As the result, driver has to
293 * swap every frame going to and coming from the controller.
294 */
295 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
296 swap_buffer(bufaddr, skb->len);
297
Sascha Hauer22f6b862009-04-15 01:32:18 +0000298 /* Save skb pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 fep->tx_skbuff[fep->skb_cur] = skb;
300
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100301 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* Push the data cache so the CPM does not get stale memory
305 * data.
306 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100307 bdp->cbd_bufaddr = dma_map_single(&ndev->dev, bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000308 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000310 /* Send it on its way. Tell FEC it's ready, interrupt when done,
311 * it's the last BD of the frame, and to put the CRC on the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000313 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000315 bdp->cbd_sc = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* Trigger transmission start */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000318 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Sascha Hauer22f6b862009-04-15 01:32:18 +0000320 /* If this was the last BD in the ring, start at the beginning again. */
321 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 bdp = fep->tx_bd_base;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000323 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 bdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 if (bdp == fep->dirty_tx) {
327 fep->tx_full = 1;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100328 netif_stop_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330
Sascha Hauer2e285322009-04-15 01:32:16 +0000331 fep->cur_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000333 spin_unlock_irqrestore(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Patrick McHardy6ed10652009-06-23 06:03:08 +0000335 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100339fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100341 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100343 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100345 fec_restart(ndev, fep->full_duplex);
346 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349static irqreturn_t
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100350fec_enet_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100352 struct net_device *ndev = dev_id;
353 struct fec_enet_private *fep = netdev_priv(ndev);
354 uint int_events;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000355 irqreturn_t ret = IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000357 do {
Sascha Hauerf44d6302009-04-15 03:11:30 +0000358 int_events = readl(fep->hwp + FEC_IEVENT);
359 writel(int_events, fep->hwp + FEC_IEVENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (int_events & FEC_ENET_RXF) {
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000362 ret = IRQ_HANDLED;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100363 fec_enet_rx(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365
366 /* Transmit OK, or non-fatal error. Update the buffer
Sascha Hauerf44d6302009-04-15 03:11:30 +0000367 * descriptors. FEC handles all errors, we just discover
368 * them as part of the transmit process.
369 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (int_events & FEC_ENET_TXF) {
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000371 ret = IRQ_HANDLED;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100372 fec_enet_tx(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
Baruch Siach97b72e42010-07-11 21:12:51 +0000374
375 if (int_events & FEC_ENET_MII) {
376 ret = IRQ_HANDLED;
377 complete(&fep->mdio_done);
378 }
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000379 } while (int_events);
380
381 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384
385static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100386fec_enet_tx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 struct fec_enet_private *fep;
Sascha Hauer2e285322009-04-15 01:32:16 +0000389 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000390 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 struct sk_buff *skb;
392
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100393 fep = netdev_priv(ndev);
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000394 spin_lock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 bdp = fep->dirty_tx;
396
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000397 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000398 if (bdp == fep->cur_tx && fep->tx_full == 0)
399 break;
400
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100401 dma_unmap_single(&ndev->dev, bdp->cbd_bufaddr, FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000402 bdp->cbd_bufaddr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 skb = fep->tx_skbuff[fep->skb_dirty];
405 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000406 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 BD_ENET_TX_RL | BD_ENET_TX_UN |
408 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100409 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000410 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100411 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000412 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100413 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000414 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100415 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000416 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100417 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000418 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100419 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100421 ndev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000424 if (status & BD_ENET_TX_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 printk("HEY! Enet xmit interrupt and TX_READY.\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +0000426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 /* Deferred means some collisions occurred during transmit,
428 * but we eventually sent the packet OK.
429 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000430 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100431 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400432
Sascha Hauer22f6b862009-04-15 01:32:18 +0000433 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 dev_kfree_skb_any(skb);
435 fep->tx_skbuff[fep->skb_dirty] = NULL;
436 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400437
Sascha Hauer22f6b862009-04-15 01:32:18 +0000438 /* Update pointer to next buffer descriptor to be transmitted */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000439 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 bdp = fep->tx_bd_base;
441 else
442 bdp++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400443
Sascha Hauer22f6b862009-04-15 01:32:18 +0000444 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 */
446 if (fep->tx_full) {
447 fep->tx_full = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100448 if (netif_queue_stopped(ndev))
449 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000452 fep->dirty_tx = bdp;
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000453 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
456
457/* During a receive, the cur_rx points to the current incoming buffer.
458 * When we update through the ring, if the next incoming buffer has
459 * not been given to the system, we just set the empty indicator,
460 * effectively tossing the packet.
461 */
462static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100463fec_enet_rx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100465 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000466 const struct platform_device_id *id_entry =
467 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000468 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000469 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 struct sk_buff *skb;
471 ushort pkt_len;
472 __u8 *data;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400473
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000474#ifdef CONFIG_M532x
475 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400476#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000478 spin_lock(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 /* First, grab all of the stats for the incoming packet.
481 * These get messed up if we get called due to a busy condition.
482 */
483 bdp = fep->cur_rx;
484
Sascha Hauer22f6b862009-04-15 01:32:18 +0000485 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Sascha Hauer22f6b862009-04-15 01:32:18 +0000487 /* Since we have allocated space to hold a complete frame,
488 * the last indicator should be set.
489 */
490 if ((status & BD_ENET_RX_LAST) == 0)
491 printk("FEC ENET: rcv is not +last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Sascha Hauer22f6b862009-04-15 01:32:18 +0000493 if (!fep->opened)
494 goto rx_processing_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Sascha Hauer22f6b862009-04-15 01:32:18 +0000496 /* Check for errors. */
497 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100499 ndev->stats.rx_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000500 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
501 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100502 ndev->stats.rx_length_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000503 }
504 if (status & BD_ENET_RX_NO) /* Frame alignment */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100505 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000506 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100507 ndev->stats.rx_crc_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000508 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100509 ndev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
Sascha Hauer22f6b862009-04-15 01:32:18 +0000511
512 /* Report late collisions as a frame error.
513 * On this error, the BD is closed, but we don't know what we
514 * have in the buffer. So, just drop this frame on the floor.
515 */
516 if (status & BD_ENET_RX_CL) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100517 ndev->stats.rx_errors++;
518 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000519 goto rx_processing_done;
520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Sascha Hauer22f6b862009-04-15 01:32:18 +0000522 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100523 ndev->stats.rx_packets++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000524 pkt_len = bdp->cbd_datlen;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100525 ndev->stats.rx_bytes += pkt_len;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000526 data = (__u8*)__va(bdp->cbd_bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000528 dma_unmap_single(NULL, bdp->cbd_bufaddr, bdp->cbd_datlen,
529 DMA_FROM_DEVICE);
Sascha Hauerccdc4f12009-01-28 23:03:09 +0000530
Shawn Guob5680e02011-01-05 21:13:13 +0000531 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
532 swap_buffer(data, pkt_len);
533
Sascha Hauer22f6b862009-04-15 01:32:18 +0000534 /* This does 16 byte alignment, exactly what we need.
535 * The packet length includes FCS, but we don't want to
536 * include that when passing upstream as it messes up
537 * bridging applications.
538 */
Sascha Hauer85498892009-04-15 01:32:21 +0000539 skb = dev_alloc_skb(pkt_len - 4 + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Sascha Hauer85498892009-04-15 01:32:21 +0000541 if (unlikely(!skb)) {
Sascha Hauer22f6b862009-04-15 01:32:18 +0000542 printk("%s: Memory squeeze, dropping packet.\n",
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100543 ndev->name);
544 ndev->stats.rx_dropped++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000545 } else {
Sascha Hauer85498892009-04-15 01:32:21 +0000546 skb_reserve(skb, NET_IP_ALIGN);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000547 skb_put(skb, pkt_len - 4); /* Make room */
548 skb_copy_to_linear_data(skb, data, pkt_len - 4);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100549 skb->protocol = eth_type_trans(skb, ndev);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000550 netif_rx(skb);
551 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000552
553 bdp->cbd_bufaddr = dma_map_single(NULL, data, bdp->cbd_datlen,
554 DMA_FROM_DEVICE);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000555rx_processing_done:
556 /* Clear the status flags for this buffer */
557 status &= ~BD_ENET_RX_STATS;
558
559 /* Mark the buffer empty */
560 status |= BD_ENET_RX_EMPTY;
561 bdp->cbd_sc = status;
562
563 /* Update BD pointer to next entry */
564 if (status & BD_ENET_RX_WRAP)
565 bdp = fep->rx_bd_base;
566 else
567 bdp++;
568 /* Doing this here will keep the FEC running while we process
569 * incoming frames. On a heavily loaded network, we should be
570 * able to keep up at the expense of system resources.
571 */
572 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000574 fep->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000576 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579/* ------------------------------------------------------------------------- */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100580static void __inline__ fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100582 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo49da97d2011-01-05 21:13:11 +0000583 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000584 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Shawn Guo49da97d2011-01-05 21:13:11 +0000586 /*
587 * try to get mac address in following order:
588 *
589 * 1) module parameter via kernel command line in form
590 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
591 */
592 iap = macaddr;
593
594 /*
595 * 2) from flash or fuse (via platform data)
596 */
597 if (!is_valid_ether_addr(iap)) {
598#ifdef CONFIG_M5272
599 if (FEC_FLASHMAC)
600 iap = (unsigned char *)FEC_FLASHMAC;
601#else
602 if (pdata)
603 memcpy(iap, pdata->mac, ETH_ALEN);
604#endif
605 }
606
607 /*
608 * 3) FEC mac registers set by bootloader
609 */
610 if (!is_valid_ether_addr(iap)) {
611 *((unsigned long *) &tmpaddr[0]) =
612 be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
613 *((unsigned short *) &tmpaddr[4]) =
614 be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 iap = &tmpaddr[0];
616 }
617
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100618 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Shawn Guo49da97d2011-01-05 21:13:11 +0000620 /* Adjust MAC if using macaddr */
621 if (iap == macaddr)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100622 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->pdev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625/* ------------------------------------------------------------------------- */
626
Bryan Wue6b043d2010-03-31 02:10:44 +0000627/*
628 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100630static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100632 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000633 struct phy_device *phy_dev = fep->phy_dev;
634 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Bryan Wue6b043d2010-03-31 02:10:44 +0000636 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Bryan Wue6b043d2010-03-31 02:10:44 +0000638 spin_lock_irqsave(&fep->hw_lock, flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400639
Bryan Wue6b043d2010-03-31 02:10:44 +0000640 /* Prevent a state halted on mii error */
641 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
642 phy_dev->state = PHY_RESUMING;
643 goto spin_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
Bryan Wue6b043d2010-03-31 02:10:44 +0000645
646 /* Duplex link change */
647 if (phy_dev->link) {
648 if (fep->full_duplex != phy_dev->duplex) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100649 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000650 status_change = 1;
651 }
652 }
653
654 /* Link on or off change */
655 if (phy_dev->link != fep->link) {
656 fep->link = phy_dev->link;
657 if (phy_dev->link)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100658 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000659 else
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100660 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000661 status_change = 1;
662 }
663
664spin_unlock:
665 spin_unlock_irqrestore(&fep->hw_lock, flags);
666
667 if (status_change)
668 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
Bryan Wue6b043d2010-03-31 02:10:44 +0000671static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Bryan Wue6b043d2010-03-31 02:10:44 +0000673 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000674 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000675
676 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000677 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000678
679 /* start a read op */
680 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
681 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
682 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
683
684 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000685 time_left = wait_for_completion_timeout(&fep->mdio_done,
686 usecs_to_jiffies(FEC_MII_TIMEOUT));
687 if (time_left == 0) {
688 fep->mii_timeout = 1;
689 printk(KERN_ERR "FEC: MDIO read timeout\n");
690 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000691 }
692
693 /* return value */
694 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
695}
696
697static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
698 u16 value)
699{
700 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000701 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000702
703 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000704 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000705
Shawn Guo862f0982011-01-05 21:13:09 +0000706 /* start a write op */
707 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +0000708 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
709 FEC_MMFR_TA | FEC_MMFR_DATA(value),
710 fep->hwp + FEC_MII_DATA);
711
712 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000713 time_left = wait_for_completion_timeout(&fep->mdio_done,
714 usecs_to_jiffies(FEC_MII_TIMEOUT));
715 if (time_left == 0) {
716 fep->mii_timeout = 1;
717 printk(KERN_ERR "FEC: MDIO write timeout\n");
718 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000719 }
720
721 return 0;
722}
723
724static int fec_enet_mdio_reset(struct mii_bus *bus)
725{
726 return 0;
727}
728
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100729static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +0000730{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100731 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000732 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000733 char mdio_bus_id[MII_BUS_ID_SIZE];
734 char phy_name[MII_BUS_ID_SIZE + 3];
735 int phy_id;
Shawn Guob5680e02011-01-05 21:13:13 +0000736 int dev_id = fep->pdev->id;
Bryan Wue6b043d2010-03-31 02:10:44 +0000737
Bryan Wu418bd0d2010-05-28 03:40:39 -0700738 fep->phy_dev = NULL;
739
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000740 /* check for attached phy */
741 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
742 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
743 continue;
744 if (fep->mii_bus->phy_map[phy_id] == NULL)
745 continue;
746 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
747 continue;
Shawn Guob5680e02011-01-05 21:13:13 +0000748 if (dev_id--)
749 continue;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000750 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
751 break;
Bryan Wue6b043d2010-03-31 02:10:44 +0000752 }
753
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000754 if (phy_id >= PHY_MAX_ADDR) {
755 printk(KERN_INFO "%s: no PHY, assuming direct connection "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100756 "to switch\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000757 strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE);
758 phy_id = 0;
759 }
760
761 snprintf(phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT, mdio_bus_id, phy_id);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100762 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link, 0,
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000763 PHY_INTERFACE_MODE_MII);
764 if (IS_ERR(phy_dev)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100765 printk(KERN_ERR "%s: could not attach to PHY\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000766 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000767 }
768
769 /* mask with MAC supported features */
770 phy_dev->supported &= PHY_BASIC_FEATURES;
771 phy_dev->advertising = phy_dev->supported;
772
773 fep->phy_dev = phy_dev;
774 fep->link = 0;
775 fep->full_duplex = 0;
776
Bryan Wu418bd0d2010-05-28 03:40:39 -0700777 printk(KERN_INFO "%s: Freescale FEC PHY driver [%s] "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100778 "(mii_bus:phy_addr=%s, irq=%d)\n", ndev->name,
Bryan Wu418bd0d2010-05-28 03:40:39 -0700779 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
780 fep->phy_dev->irq);
781
Bryan Wue6b043d2010-03-31 02:10:44 +0000782 return 0;
783}
784
785static int fec_enet_mii_init(struct platform_device *pdev)
786{
Shawn Guob5680e02011-01-05 21:13:13 +0000787 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100788 struct net_device *ndev = platform_get_drvdata(pdev);
789 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000790 const struct platform_device_id *id_entry =
791 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000792 int err = -ENXIO, i;
793
Shawn Guob5680e02011-01-05 21:13:13 +0000794 /*
795 * The dual fec interfaces are not equivalent with enet-mac.
796 * Here are the differences:
797 *
798 * - fec0 supports MII & RMII modes while fec1 only supports RMII
799 * - fec0 acts as the 1588 time master while fec1 is slave
800 * - external phys can only be configured by fec0
801 *
802 * That is to say fec1 can not work independently. It only works
803 * when fec0 is working. The reason behind this design is that the
804 * second interface is added primarily for Switch mode.
805 *
806 * Because of the last point above, both phys are attached on fec0
807 * mdio interface in board design, and need to be configured by
808 * fec0 mii_bus.
809 */
810 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && pdev->id) {
811 /* fec1 uses fec0 mii_bus */
812 fep->mii_bus = fec0_mii_bus;
813 return 0;
814 }
815
Bryan Wue6b043d2010-03-31 02:10:44 +0000816 fep->mii_timeout = 0;
817
818 /*
819 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
820 */
821 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk), 5000000) << 1;
822 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
823
824 fep->mii_bus = mdiobus_alloc();
825 if (fep->mii_bus == NULL) {
826 err = -ENOMEM;
827 goto err_out;
828 }
829
830 fep->mii_bus->name = "fec_enet_mii_bus";
831 fep->mii_bus->read = fec_enet_mdio_read;
832 fep->mii_bus->write = fec_enet_mdio_write;
833 fep->mii_bus->reset = fec_enet_mdio_reset;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000834 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%x", pdev->id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +0000835 fep->mii_bus->priv = fep;
836 fep->mii_bus->parent = &pdev->dev;
837
838 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
839 if (!fep->mii_bus->irq) {
840 err = -ENOMEM;
841 goto err_out_free_mdiobus;
842 }
843
844 for (i = 0; i < PHY_MAX_ADDR; i++)
845 fep->mii_bus->irq[i] = PHY_POLL;
846
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100847 platform_set_drvdata(ndev, fep->mii_bus);
Bryan Wue6b043d2010-03-31 02:10:44 +0000848
849 if (mdiobus_register(fep->mii_bus))
850 goto err_out_free_mdio_irq;
851
Shawn Guob5680e02011-01-05 21:13:13 +0000852 /* save fec0 mii_bus */
853 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
854 fec0_mii_bus = fep->mii_bus;
855
Bryan Wue6b043d2010-03-31 02:10:44 +0000856 return 0;
857
Bryan Wue6b043d2010-03-31 02:10:44 +0000858err_out_free_mdio_irq:
859 kfree(fep->mii_bus->irq);
860err_out_free_mdiobus:
861 mdiobus_free(fep->mii_bus);
862err_out:
863 return err;
864}
865
866static void fec_enet_mii_remove(struct fec_enet_private *fep)
867{
868 if (fep->phy_dev)
869 phy_disconnect(fep->phy_dev);
870 mdiobus_unregister(fep->mii_bus);
871 kfree(fep->mii_bus->irq);
872 mdiobus_free(fep->mii_bus);
873}
874
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100875static int fec_enet_get_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +0000876 struct ethtool_cmd *cmd)
877{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100878 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000879 struct phy_device *phydev = fep->phy_dev;
880
881 if (!phydev)
882 return -ENODEV;
883
884 return phy_ethtool_gset(phydev, cmd);
885}
886
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100887static int fec_enet_set_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +0000888 struct ethtool_cmd *cmd)
889{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100890 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000891 struct phy_device *phydev = fep->phy_dev;
892
893 if (!phydev)
894 return -ENODEV;
895
896 return phy_ethtool_sset(phydev, cmd);
897}
898
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100899static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +0000900 struct ethtool_drvinfo *info)
901{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100902 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Bryan Wue6b043d2010-03-31 02:10:44 +0000904 strcpy(info->driver, fep->pdev->dev.driver->name);
905 strcpy(info->version, "Revision: 1.0");
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100906 strcpy(info->bus_info, dev_name(&ndev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
Bryan Wue6b043d2010-03-31 02:10:44 +0000908
909static struct ethtool_ops fec_enet_ethtool_ops = {
910 .get_settings = fec_enet_get_settings,
911 .set_settings = fec_enet_set_settings,
912 .get_drvinfo = fec_enet_get_drvinfo,
913 .get_link = ethtool_op_get_link,
914};
915
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100916static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +0000917{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100918 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000919 struct phy_device *phydev = fep->phy_dev;
920
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100921 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +0000922 return -EINVAL;
923
924 if (!phydev)
925 return -ENODEV;
926
Richard Cochran28b04112010-07-17 08:48:55 +0000927 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +0000928}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100930static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000931{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100932 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000933 int i;
934 struct sk_buff *skb;
935 struct bufdesc *bdp;
936
937 bdp = fep->rx_bd_base;
938 for (i = 0; i < RX_RING_SIZE; i++) {
939 skb = fep->rx_skbuff[i];
940
941 if (bdp->cbd_bufaddr)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100942 dma_unmap_single(&ndev->dev, bdp->cbd_bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000943 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
944 if (skb)
945 dev_kfree_skb(skb);
946 bdp++;
947 }
948
949 bdp = fep->tx_bd_base;
950 for (i = 0; i < TX_RING_SIZE; i++)
951 kfree(fep->tx_bounce[i]);
952}
953
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100954static int fec_enet_alloc_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000955{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100956 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000957 int i;
958 struct sk_buff *skb;
959 struct bufdesc *bdp;
960
961 bdp = fep->rx_bd_base;
962 for (i = 0; i < RX_RING_SIZE; i++) {
963 skb = dev_alloc_skb(FEC_ENET_RX_FRSIZE);
964 if (!skb) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100965 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000966 return -ENOMEM;
967 }
968 fep->rx_skbuff[i] = skb;
969
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100970 bdp->cbd_bufaddr = dma_map_single(&ndev->dev, skb->data,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000971 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
972 bdp->cbd_sc = BD_ENET_RX_EMPTY;
973 bdp++;
974 }
975
976 /* Set the last buffer to wrap. */
977 bdp--;
978 bdp->cbd_sc |= BD_SC_WRAP;
979
980 bdp = fep->tx_bd_base;
981 for (i = 0; i < TX_RING_SIZE; i++) {
982 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
983
984 bdp->cbd_sc = 0;
985 bdp->cbd_bufaddr = 0;
986 bdp++;
987 }
988
989 /* Set the last buffer to wrap. */
990 bdp--;
991 bdp->cbd_sc |= BD_SC_WRAP;
992
993 return 0;
994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100997fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100999 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001000 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 /* I should reset the ring buffers here, but I don't yet know
1003 * a simple way to do that.
1004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001006 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001007 if (ret)
1008 return ret;
1009
Bryan Wu418bd0d2010-05-28 03:40:39 -07001010 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001011 ret = fec_enet_mii_probe(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001012 if (ret) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001013 fec_enet_free_buffers(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001014 return ret;
1015 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001016 phy_start(fep->phy_dev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001017 netif_start_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 fep->opened = 1;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001019 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
1022static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001023fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001025 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Sascha Hauer22f6b862009-04-15 01:32:18 +00001027 /* Don't know what to do yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 fep->opened = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001029 netif_stop_queue(ndev);
1030 fec_stop(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001032 if (fep->phy_dev) {
1033 phy_stop(fep->phy_dev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001034 phy_disconnect(fep->phy_dev);
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001035 }
Bryan Wu418bd0d2010-05-28 03:40:39 -07001036
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001037 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return 0;
1040}
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042/* Set or clear the multicast filter for this adaptor.
1043 * Skeleton taken from sunlance driver.
1044 * The CPM Ethernet implementation allows Multicast as well as individual
1045 * MAC address filtering. Some of the drivers check to make sure it is
1046 * a group multicast address, and discard those that are not. I guess I
1047 * will do the same for now, but just remove the test if you want
1048 * individual filtering as well (do the upper net layers want or support
1049 * this kind of feature?).
1050 */
1051
1052#define HASH_BITS 6 /* #bits in hash */
1053#define CRC32_POLY 0xEDB88320
1054
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001055static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001057 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001058 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00001059 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 unsigned char hash;
1061
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001062 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00001063 tmp = readl(fep->hwp + FEC_R_CNTRL);
1064 tmp |= 0x8;
1065 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00001066 return;
1067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Sascha Hauer4e831832009-04-15 01:32:19 +00001069 tmp = readl(fep->hwp + FEC_R_CNTRL);
1070 tmp &= ~0x8;
1071 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001072
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001073 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001074 /* Catch all multicast addresses, so set the
1075 * filter to all 1's
1076 */
1077 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1078 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Sascha Hauer4e831832009-04-15 01:32:19 +00001080 return;
1081 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001082
Sascha Hauer4e831832009-04-15 01:32:19 +00001083 /* Clear filter and add the addresses in hash register
1084 */
1085 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1086 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001088 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001089 /* Only support group multicast for now */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001090 if (!(ha->addr[0] & 1))
Sascha Hauer4e831832009-04-15 01:32:19 +00001091 continue;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001092
Sascha Hauer4e831832009-04-15 01:32:19 +00001093 /* calculate crc32 value of mac address */
1094 crc = 0xffffffff;
1095
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001096 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001097 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00001098 for (bit = 0; bit < 8; bit++, data >>= 1) {
1099 crc = (crc >> 1) ^
1100 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102 }
Sascha Hauer4e831832009-04-15 01:32:19 +00001103
1104 /* only upper 6 bits (HASH_BITS) are used
1105 * which point to specific bit in he hash registers
1106 */
1107 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1108
1109 if (hash > 31) {
1110 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1111 tmp |= 1 << (hash - 32);
1112 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1113 } else {
1114 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1115 tmp |= 1 << hash;
1116 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119}
1120
Sascha Hauer22f6b862009-04-15 01:32:18 +00001121/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00001122static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001123fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001125 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00001126 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Sascha Hauer009fda82009-04-15 01:32:23 +00001128 if (!is_valid_ether_addr(addr->sa_data))
1129 return -EADDRNOTAVAIL;
1130
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001131 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
Sascha Hauer009fda82009-04-15 01:32:23 +00001132
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001133 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
1134 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00001135 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001136 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07001137 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00001138 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
Sascha Hauer009fda82009-04-15 01:32:23 +00001141static const struct net_device_ops fec_netdev_ops = {
1142 .ndo_open = fec_enet_open,
1143 .ndo_stop = fec_enet_close,
1144 .ndo_start_xmit = fec_enet_start_xmit,
1145 .ndo_set_multicast_list = set_multicast_list,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00001146 .ndo_change_mtu = eth_change_mtu,
Sascha Hauer009fda82009-04-15 01:32:23 +00001147 .ndo_validate_addr = eth_validate_addr,
1148 .ndo_tx_timeout = fec_timeout,
1149 .ndo_set_mac_address = fec_set_mac_address,
Bryan Wue6b043d2010-03-31 02:10:44 +00001150 .ndo_do_ioctl = fec_enet_ioctl,
Sascha Hauer009fda82009-04-15 01:32:23 +00001151};
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 /*
1154 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00001155 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001157static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001159 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001160 struct bufdesc *cbd_base;
Rob Herring633e7532010-02-05 08:56:20 +00001161 struct bufdesc *bdp;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001162 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001164 /* Allocate memory for buffer descriptors. */
1165 cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
1166 GFP_KERNEL);
1167 if (!cbd_base) {
Greg Ungerer562d2f82005-11-07 14:09:50 +10001168 printk("FEC: allocate descriptor memory failed?\n");
1169 return -ENOMEM;
1170 }
1171
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001172 spin_lock_init(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001173
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001174 fep->netdev = ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Shawn Guo49da97d2011-01-05 21:13:11 +00001176 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001177 fec_get_mac(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001179 /* Set receive and transmit descriptor base. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 fep->rx_bd_base = cbd_base;
1181 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1182
Sascha Hauer22f6b862009-04-15 01:32:18 +00001183 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001184 ndev->watchdog_timeo = TX_TIMEOUT;
1185 ndev->netdev_ops = &fec_netdev_ops;
1186 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00001187
1188 /* Initialize the receive buffer descriptors. */
1189 bdp = fep->rx_bd_base;
1190 for (i = 0; i < RX_RING_SIZE; i++) {
1191
1192 /* Initialize the BD for every fragment in the page. */
1193 bdp->cbd_sc = 0;
1194 bdp++;
1195 }
1196
1197 /* Set the last buffer to wrap */
1198 bdp--;
1199 bdp->cbd_sc |= BD_SC_WRAP;
1200
1201 /* ...and the same for transmit */
1202 bdp = fep->tx_bd_base;
1203 for (i = 0; i < TX_RING_SIZE; i++) {
1204
1205 /* Initialize the BD for every fragment in the page. */
1206 bdp->cbd_sc = 0;
1207 bdp->cbd_bufaddr = 0;
1208 bdp++;
1209 }
1210
1211 /* Set the last buffer to wrap */
1212 bdp--;
1213 bdp->cbd_sc |= BD_SC_WRAP;
1214
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001215 fec_restart(ndev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return 0;
1218}
1219
1220/* This function is called to start or restart the FEC during a link
1221 * change. This only happens when switching between half and full
1222 * duplex.
1223 */
1224static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001225fec_restart(struct net_device *ndev, int duplex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001227 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +00001228 const struct platform_device_id *id_entry =
1229 platform_get_device_id(fep->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 int i;
Shawn Guob5680e02011-01-05 21:13:13 +00001231 u32 val, temp_mac[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Sascha Hauerf44d6302009-04-15 03:11:30 +00001233 /* Whack a reset. We should wait for this. */
1234 writel(1, fep->hwp + FEC_ECNTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 udelay(10);
1236
Shawn Guob5680e02011-01-05 21:13:13 +00001237 /*
1238 * enet-mac reset will reset mac address registers too,
1239 * so need to reconfigure it.
1240 */
1241 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001242 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
Shawn Guob5680e02011-01-05 21:13:13 +00001243 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
1244 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
1245 }
1246
Sascha Hauerf44d6302009-04-15 03:11:30 +00001247 /* Clear any outstanding interrupt. */
1248 writel(0xffc00000, fep->hwp + FEC_IEVENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Sascha Hauerf44d6302009-04-15 03:11:30 +00001250 /* Reset all multicast. */
1251 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1252 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Sascha Hauer4f1ceb42009-04-15 01:32:20 +00001253#ifndef CONFIG_M5272
1254 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
1255 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
1256#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Sascha Hauerf44d6302009-04-15 03:11:30 +00001258 /* Set maximum receive buffer size. */
1259 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Sascha Hauerf44d6302009-04-15 03:11:30 +00001261 /* Set receive and transmit descriptor base. */
1262 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
Sascha Hauer2e285322009-04-15 01:32:16 +00001263 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc) * RX_RING_SIZE,
Sascha Hauerf44d6302009-04-15 03:11:30 +00001264 fep->hwp + FEC_X_DES_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
1267 fep->cur_rx = fep->rx_bd_base;
1268
Sascha Hauerf44d6302009-04-15 03:11:30 +00001269 /* Reset SKB transmit buffers. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 fep->skb_cur = fep->skb_dirty = 0;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001271 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
1272 if (fep->tx_skbuff[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 dev_kfree_skb_any(fep->tx_skbuff[i]);
1274 fep->tx_skbuff[i] = NULL;
1275 }
1276 }
1277
Sascha Hauer22f6b862009-04-15 01:32:18 +00001278 /* Enable MII mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 if (duplex) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00001280 /* MII enable / FD enable */
1281 writel(OPT_FRAME_SIZE | 0x04, fep->hwp + FEC_R_CNTRL);
1282 writel(0x04, fep->hwp + FEC_X_CNTRL);
Philippe De Muyterf909b1e2007-10-23 14:37:54 +10001283 } else {
Sascha Hauerf44d6302009-04-15 03:11:30 +00001284 /* MII enable / No Rcv on Xmit */
1285 writel(OPT_FRAME_SIZE | 0x06, fep->hwp + FEC_R_CNTRL);
1286 writel(0x0, fep->hwp + FEC_X_CNTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 }
1288 fep->full_duplex = duplex;
1289
Sascha Hauer22f6b862009-04-15 01:32:18 +00001290 /* Set MII speed */
Sascha Hauerf44d6302009-04-15 03:11:30 +00001291 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Shawn Guob5680e02011-01-05 21:13:13 +00001293 /*
1294 * The phy interface and speed need to get configured
1295 * differently on enet-mac.
1296 */
1297 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
1298 val = readl(fep->hwp + FEC_R_CNTRL);
1299
1300 /* MII or RMII */
1301 if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
1302 val |= (1 << 8);
1303 else
1304 val &= ~(1 << 8);
1305
1306 /* 10M or 100M */
1307 if (fep->phy_dev && fep->phy_dev->speed == SPEED_100)
1308 val &= ~(1 << 9);
1309 else
1310 val |= (1 << 9);
1311
1312 writel(val, fep->hwp + FEC_R_CNTRL);
1313 } else {
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001314#ifdef FEC_MIIGSK_ENR
Shawn Guob5680e02011-01-05 21:13:13 +00001315 if (fep->phy_interface == PHY_INTERFACE_MODE_RMII) {
1316 /* disable the gasket and wait */
1317 writel(0, fep->hwp + FEC_MIIGSK_ENR);
1318 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
1319 udelay(1);
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001320
Shawn Guob5680e02011-01-05 21:13:13 +00001321 /*
1322 * configure the gasket:
1323 * RMII, 50 MHz, no loopback, no echo
1324 */
1325 writel(1, fep->hwp + FEC_MIIGSK_CFGR);
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001326
Shawn Guob5680e02011-01-05 21:13:13 +00001327 /* re-enable the gasket */
1328 writel(2, fep->hwp + FEC_MIIGSK_ENR);
1329 }
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001330#endif
Shawn Guob5680e02011-01-05 21:13:13 +00001331 }
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001332
Sascha Hauer22f6b862009-04-15 01:32:18 +00001333 /* And last, enable the transmit and receive processing */
Sascha Hauerf44d6302009-04-15 03:11:30 +00001334 writel(2, fep->hwp + FEC_ECNTRL);
1335 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Matt Waddel6b265292006-06-27 13:10:56 +10001336
Sascha Hauer22f6b862009-04-15 01:32:18 +00001337 /* Enable interrupts we wish to service */
Wolfram Sang4bee1f92010-07-21 02:51:13 +00001338 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
1341static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001342fec_stop(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001344 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Sascha Hauer22f6b862009-04-15 01:32:18 +00001346 /* We cannot expect a graceful transmit stop without link !!! */
Sascha Hauerf44d6302009-04-15 03:11:30 +00001347 if (fep->link) {
1348 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
Philippe De Muyter677177c2006-06-27 13:05:33 +10001349 udelay(10);
Sascha Hauerf44d6302009-04-15 03:11:30 +00001350 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
Philippe De Muyter677177c2006-06-27 13:05:33 +10001351 printk("fec_stop : Graceful transmit stop did not complete !\n");
Sascha Hauerf44d6302009-04-15 03:11:30 +00001352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Sascha Hauerf44d6302009-04-15 03:11:30 +00001354 /* Whack a reset. We should wait for this. */
1355 writel(1, fep->hwp + FEC_ECNTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 udelay(10);
Sascha Hauerf44d6302009-04-15 03:11:30 +00001357 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
Wolfram Sang4bee1f92010-07-21 02:51:13 +00001358 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359}
1360
Sascha Haueread73182009-01-28 23:03:11 +00001361static int __devinit
1362fec_probe(struct platform_device *pdev)
1363{
1364 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001365 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00001366 struct net_device *ndev;
1367 int i, irq, ret = 0;
1368 struct resource *r;
1369
1370 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1371 if (!r)
1372 return -ENXIO;
1373
1374 r = request_mem_region(r->start, resource_size(r), pdev->name);
1375 if (!r)
1376 return -EBUSY;
1377
1378 /* Init network device */
1379 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001380 if (!ndev) {
1381 ret = -ENOMEM;
1382 goto failed_alloc_etherdev;
1383 }
Sascha Haueread73182009-01-28 23:03:11 +00001384
1385 SET_NETDEV_DEV(ndev, &pdev->dev);
1386
1387 /* setup board info structure */
1388 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001389
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001390 fep->hwp = ioremap(r->start, resource_size(r));
Bryan Wue6b043d2010-03-31 02:10:44 +00001391 fep->pdev = pdev;
Sascha Haueread73182009-01-28 23:03:11 +00001392
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001393 if (!fep->hwp) {
Sascha Haueread73182009-01-28 23:03:11 +00001394 ret = -ENOMEM;
1395 goto failed_ioremap;
1396 }
1397
1398 platform_set_drvdata(pdev, ndev);
1399
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001400 pdata = pdev->dev.platform_data;
1401 if (pdata)
1402 fep->phy_interface = pdata->phy;
1403
Sascha Haueread73182009-01-28 23:03:11 +00001404 /* This device has up to three irqs on some platforms */
1405 for (i = 0; i < 3; i++) {
1406 irq = platform_get_irq(pdev, i);
1407 if (i && irq < 0)
1408 break;
1409 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1410 if (ret) {
Uwe Kleine-Königb2b09ad2011-01-13 21:49:05 +01001411 while (--i >= 0) {
Sascha Haueread73182009-01-28 23:03:11 +00001412 irq = platform_get_irq(pdev, i);
1413 free_irq(irq, ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001414 }
1415 goto failed_irq;
1416 }
1417 }
1418
1419 fep->clk = clk_get(&pdev->dev, "fec_clk");
1420 if (IS_ERR(fep->clk)) {
1421 ret = PTR_ERR(fep->clk);
1422 goto failed_clk;
1423 }
1424 clk_enable(fep->clk);
1425
Shawn Guo8649a232011-01-05 21:13:10 +00001426 ret = fec_enet_init(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001427 if (ret)
1428 goto failed_init;
1429
Bryan Wue6b043d2010-03-31 02:10:44 +00001430 ret = fec_enet_mii_init(pdev);
1431 if (ret)
1432 goto failed_mii_init;
1433
Oskar Schirmer03c698c2010-10-07 02:30:30 +00001434 /* Carrier starts down, phylib will bring it up */
1435 netif_carrier_off(ndev);
1436
Sascha Haueread73182009-01-28 23:03:11 +00001437 ret = register_netdev(ndev);
1438 if (ret)
1439 goto failed_register;
1440
1441 return 0;
1442
1443failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00001444 fec_enet_mii_remove(fep);
1445failed_mii_init:
Sascha Haueread73182009-01-28 23:03:11 +00001446failed_init:
1447 clk_disable(fep->clk);
1448 clk_put(fep->clk);
1449failed_clk:
1450 for (i = 0; i < 3; i++) {
1451 irq = platform_get_irq(pdev, i);
1452 if (irq > 0)
1453 free_irq(irq, ndev);
1454 }
1455failed_irq:
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001456 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001457failed_ioremap:
1458 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001459failed_alloc_etherdev:
1460 release_mem_region(r->start, resource_size(r));
Sascha Haueread73182009-01-28 23:03:11 +00001461
1462 return ret;
1463}
1464
1465static int __devexit
1466fec_drv_remove(struct platform_device *pdev)
1467{
1468 struct net_device *ndev = platform_get_drvdata(pdev);
1469 struct fec_enet_private *fep = netdev_priv(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001470 struct resource *r;
Sascha Haueread73182009-01-28 23:03:11 +00001471
1472 platform_set_drvdata(pdev, NULL);
1473
1474 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001475 fec_enet_mii_remove(fep);
Sascha Haueread73182009-01-28 23:03:11 +00001476 clk_disable(fep->clk);
1477 clk_put(fep->clk);
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001478 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001479 unregister_netdev(ndev);
1480 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001481
1482 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1483 BUG_ON(!r);
1484 release_mem_region(r->start, resource_size(r));
1485
Sascha Haueread73182009-01-28 23:03:11 +00001486 return 0;
1487}
1488
Denis Kirjanov59d42892010-06-02 09:27:04 +00001489#ifdef CONFIG_PM
Sascha Haueread73182009-01-28 23:03:11 +00001490static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001491fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001492{
Eric Benard87cad5c2010-06-18 04:19:54 +00001493 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001494 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001495
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001496 if (netif_running(ndev)) {
1497 fec_stop(ndev);
1498 netif_device_detach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001499 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001500 clk_disable(fep->clk);
1501
Sascha Haueread73182009-01-28 23:03:11 +00001502 return 0;
1503}
1504
1505static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001506fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001507{
Eric Benard87cad5c2010-06-18 04:19:54 +00001508 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001509 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001510
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001511 clk_enable(fep->clk);
1512 if (netif_running(ndev)) {
1513 fec_restart(ndev, fep->full_duplex);
1514 netif_device_attach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001515 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001516
Sascha Haueread73182009-01-28 23:03:11 +00001517 return 0;
1518}
1519
Denis Kirjanov59d42892010-06-02 09:27:04 +00001520static const struct dev_pm_ops fec_pm_ops = {
1521 .suspend = fec_suspend,
1522 .resume = fec_resume,
1523 .freeze = fec_suspend,
1524 .thaw = fec_resume,
1525 .poweroff = fec_suspend,
1526 .restore = fec_resume,
1527};
Eric Benard87cad5c2010-06-18 04:19:54 +00001528#endif
Denis Kirjanov59d42892010-06-02 09:27:04 +00001529
Sascha Haueread73182009-01-28 23:03:11 +00001530static struct platform_driver fec_driver = {
1531 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00001532 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00001533 .owner = THIS_MODULE,
1534#ifdef CONFIG_PM
1535 .pm = &fec_pm_ops,
1536#endif
Sascha Haueread73182009-01-28 23:03:11 +00001537 },
Shawn Guob5680e02011-01-05 21:13:13 +00001538 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00001539 .probe = fec_probe,
1540 .remove = __devexit_p(fec_drv_remove),
Sascha Haueread73182009-01-28 23:03:11 +00001541};
1542
1543static int __init
1544fec_enet_module_init(void)
1545{
1546 printk(KERN_INFO "FEC Ethernet Driver\n");
1547
1548 return platform_driver_register(&fec_driver);
1549}
1550
1551static void __exit
1552fec_enet_cleanup(void)
1553{
1554 platform_driver_unregister(&fec_driver);
1555}
1556
1557module_exit(fec_enet_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558module_init(fec_enet_module_init);
1559
1560MODULE_LICENSE("GPL");