blob: 885d8baff7d5804b272c664fbc69fefa0cbf87b8 [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,
Axel Lin9eb0e6f22011-02-22 23:28:46 +000077 },
78 { }
Shawn Guob5680e02011-01-05 21:13:13 +000079};
80
Shawn Guo49da97d2011-01-05 21:13:11 +000081static unsigned char macaddr[ETH_ALEN];
82module_param_array(macaddr, byte, NULL, 0);
83MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
84
Greg Ungerer87f4abb2008-06-06 15:55:36 +100085#if defined(CONFIG_M5272)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/*
87 * Some hardware gets it MAC address out of local flash memory.
88 * if this is non-zero then assume it is the address to get MAC from.
89 */
90#if defined(CONFIG_NETtel)
91#define FEC_FLASHMAC 0xf0006006
92#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
93#define FEC_FLASHMAC 0xf0006000
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#elif defined(CONFIG_CANCam)
95#define FEC_FLASHMAC 0xf0020000
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +100096#elif defined (CONFIG_M5272C3)
97#define FEC_FLASHMAC (0xffe04000 + 4)
98#elif defined(CONFIG_MOD5272)
99#define FEC_FLASHMAC 0xffc0406b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#else
101#define FEC_FLASHMAC 0
102#endif
Greg Ungerer43be6362009-02-26 22:42:51 -0800103#endif /* CONFIG_M5272 */
Sascha Haueread73182009-01-28 23:03:11 +0000104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/* The number of Tx and Rx buffers. These are allocated from the page
106 * pool. The code may assume these are power of two, so it it best
107 * to keep them that size.
108 * We don't need to allocate pages for the transmitter. We just use
109 * the skbuffer directly.
110 */
111#define FEC_ENET_RX_PAGES 8
112#define FEC_ENET_RX_FRSIZE 2048
113#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE)
114#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
115#define FEC_ENET_TX_FRSIZE 2048
116#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
117#define TX_RING_SIZE 16 /* Must be power of two */
118#define TX_RING_MOD_MASK 15 /* for this to work */
119
Greg Ungerer562d2f82005-11-07 14:09:50 +1000120#if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
Matt Waddel6b265292006-06-27 13:10:56 +1000121#error "FEC: descriptor ring size constants too large"
Greg Ungerer562d2f82005-11-07 14:09:50 +1000122#endif
123
Sascha Hauer22f6b862009-04-15 01:32:18 +0000124/* Interrupt events/masks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
126#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
127#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */
128#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */
129#define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */
130#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */
131#define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */
132#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */
133#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */
134#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */
135
Wolfram Sang4bee1f92010-07-21 02:51:13 +0000136#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII)
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/* The FEC stores dest/src/type, data, and checksum for receive packets.
139 */
140#define PKT_MAXBUF_SIZE 1518
141#define PKT_MINBUF_SIZE 64
142#define PKT_MAXBLR_SIZE 1520
143
144
145/*
Matt Waddel6b265292006-06-27 13:10:56 +1000146 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 * size bits. Other FEC hardware does not, so we need to take that into
148 * account when setting it.
149 */
Greg Ungerer562d2f82005-11-07 14:09:50 +1000150#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Uwe Kleine-König085e79e2011-01-17 09:52:18 +0100151 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
153#else
154#define OPT_FRAME_SIZE 0
155#endif
156
157/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and
158 * tx_bd_base always point to the base of the buffer descriptors. The
159 * cur_rx and cur_tx point to the currently available buffer.
160 * The dirty_tx tracks the current buffer that is being sent by the
161 * controller. The cur_tx and dirty_tx are equal under both completely
162 * empty and completely full conditions. The empty/ready indicator in
163 * the buffer descriptor determines the actual condition.
164 */
165struct fec_enet_private {
166 /* Hardware registers of the FEC device */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000167 void __iomem *hwp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Greg Ungerercb84d6e2007-07-30 16:29:09 +1000169 struct net_device *netdev;
170
Sascha Haueread73182009-01-28 23:03:11 +0000171 struct clk *clk;
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
174 unsigned char *tx_bounce[TX_RING_SIZE];
175 struct sk_buff* tx_skbuff[TX_RING_SIZE];
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000176 struct sk_buff* rx_skbuff[RX_RING_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 ushort skb_cur;
178 ushort skb_dirty;
179
Sascha Hauer22f6b862009-04-15 01:32:18 +0000180 /* CPM dual port RAM relative addresses */
Sascha Hauer4661e752009-01-28 23:03:07 +0000181 dma_addr_t bd_dma;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000182 /* Address of Rx and Tx buffers */
Sascha Hauer2e285322009-04-15 01:32:16 +0000183 struct bufdesc *rx_bd_base;
184 struct bufdesc *tx_bd_base;
185 /* The next free ring entry */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100186 struct bufdesc *cur_rx, *cur_tx;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000187 /* The ring entries to be free()ed */
Sascha Hauer2e285322009-04-15 01:32:16 +0000188 struct bufdesc *dirty_tx;
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 uint tx_full;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000191 /* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
192 spinlock_t hw_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100194 struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 int opened;
Bryan Wue6b043d2010-03-31 02:10:44 +0000197
198 /* Phylib and MDIO interface */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100199 struct mii_bus *mii_bus;
200 struct phy_device *phy_dev;
201 int mii_timeout;
202 uint phy_speed;
Baruch Siach5eb32bd2010-05-24 00:36:13 -0700203 phy_interface_t phy_interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 int link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 int full_duplex;
Baruch Siach97b72e42010-07-11 21:12:51 +0000206 struct completion mdio_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};
208
Bryan Wue6b043d2010-03-31 02:10:44 +0000209/* FEC MII MMFR bits definition */
210#define FEC_MMFR_ST (1 << 30)
211#define FEC_MMFR_OP_READ (2 << 28)
212#define FEC_MMFR_OP_WRITE (1 << 28)
213#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
214#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
215#define FEC_MMFR_TA (2 << 16)
216#define FEC_MMFR_DATA(v) (v & 0xffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Baruch Siach97b72e42010-07-11 21:12:51 +0000218#define FEC_MII_TIMEOUT 1000 /* us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Sascha Hauer22f6b862009-04-15 01:32:18 +0000220/* Transmitter timeout */
221#define TX_TIMEOUT (2 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Shawn Guob5680e02011-01-05 21:13:13 +0000223static void *swap_buffer(void *bufaddr, int len)
224{
225 int i;
226 unsigned int *buf = bufaddr;
227
228 for (i = 0; i < (len + 3) / 4; i++, buf++)
229 *buf = cpu_to_be32(*buf);
230
231 return bufaddr;
232}
233
Denis Kirjanovc7621cb2010-06-02 09:15:47 +0000234static netdev_tx_t
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100235fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100237 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000238 const struct platform_device_id *id_entry =
239 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000240 struct bufdesc *bdp;
Greg Ungerer9555b312009-08-06 17:58:18 +0000241 void *bufaddr;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000242 unsigned short status;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000243 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (!fep->link) {
246 /* Link is down or autonegotiation is in progress. */
Patrick McHardy5b548142009-06-12 06:22:29 +0000247 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000250 spin_lock_irqsave(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 /* Fill in a Tx ring entry */
252 bdp = fep->cur_tx;
253
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000254 status = bdp->cbd_sc;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000255
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000256 if (status & BD_ENET_TX_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /* Ooops. All transmit buffers are full. Bail out.
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100258 * This should not happen, since ndev->tbusy should be set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100260 printk("%s: tx queue full!.\n", ndev->name);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000261 spin_unlock_irqrestore(&fep->hw_lock, flags);
Patrick McHardy5b548142009-06-12 06:22:29 +0000262 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Sascha Hauer22f6b862009-04-15 01:32:18 +0000265 /* Clear all of the status flags */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000266 status &= ~BD_ENET_TX_STATS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Sascha Hauer22f6b862009-04-15 01:32:18 +0000268 /* Set buffer length and buffer pointer */
Greg Ungerer9555b312009-08-06 17:58:18 +0000269 bufaddr = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 bdp->cbd_datlen = skb->len;
271
272 /*
Sascha Hauer22f6b862009-04-15 01:32:18 +0000273 * On some FEC implementations data must be aligned on
274 * 4-byte boundaries. Use bounce buffers to copy data
275 * and get it aligned. Ugh.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 */
Greg Ungerer9555b312009-08-06 17:58:18 +0000277 if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 unsigned int index;
279 index = bdp - fep->tx_bd_base;
Uwe Kleine-König8a73b0b2011-01-13 21:34:31 +0100280 memcpy(fep->tx_bounce[index], skb->data, skb->len);
Greg Ungerer9555b312009-08-06 17:58:18 +0000281 bufaddr = fep->tx_bounce[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283
Shawn Guob5680e02011-01-05 21:13:13 +0000284 /*
285 * Some design made an incorrect assumption on endian mode of
286 * the system that it's running on. As the result, driver has to
287 * swap every frame going to and coming from the controller.
288 */
289 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
290 swap_buffer(bufaddr, skb->len);
291
Sascha Hauer22f6b862009-04-15 01:32:18 +0000292 /* Save skb pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 fep->tx_skbuff[fep->skb_cur] = skb;
294
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100295 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 /* Push the data cache so the CPM does not get stale memory
299 * data.
300 */
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100301 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000302 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000304 /* Send it on its way. Tell FEC it's ready, interrupt when done,
305 * it's the last BD of the frame, and to put the CRC on the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000307 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000309 bdp->cbd_sc = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 /* Trigger transmission start */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000312 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Sascha Hauer22f6b862009-04-15 01:32:18 +0000314 /* If this was the last BD in the ring, start at the beginning again. */
315 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 bdp = fep->tx_bd_base;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000317 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 bdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 if (bdp == fep->dirty_tx) {
321 fep->tx_full = 1;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100322 netif_stop_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324
Sascha Hauer2e285322009-04-15 01:32:16 +0000325 fep->cur_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000327 spin_unlock_irqrestore(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Patrick McHardy6ed10652009-06-23 06:03:08 +0000329 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
Uwe Kleine-König45993652011-01-19 20:47:04 +0100332/* This function is called to start or restart the FEC during a link
333 * change. This only happens when switching between half and full
334 * duplex.
335 */
336static void
337fec_restart(struct net_device *ndev, int duplex)
338{
339 struct fec_enet_private *fep = netdev_priv(ndev);
340 const struct platform_device_id *id_entry =
341 platform_get_device_id(fep->pdev);
342 int i;
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100343 u32 temp_mac[2];
344 u32 rcntl = OPT_FRAME_SIZE | 0x04;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100345
346 /* Whack a reset. We should wait for this. */
347 writel(1, fep->hwp + FEC_ECNTRL);
348 udelay(10);
349
350 /*
351 * enet-mac reset will reset mac address registers too,
352 * so need to reconfigure it.
353 */
354 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
355 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
356 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
357 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
358 }
359
360 /* Clear any outstanding interrupt. */
361 writel(0xffc00000, fep->hwp + FEC_IEVENT);
362
363 /* Reset all multicast. */
364 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
365 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
366#ifndef CONFIG_M5272
367 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
368 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
369#endif
370
371 /* Set maximum receive buffer size. */
372 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
373
374 /* Set receive and transmit descriptor base. */
375 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
376 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc) * RX_RING_SIZE,
377 fep->hwp + FEC_X_DES_START);
378
379 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
380 fep->cur_rx = fep->rx_bd_base;
381
382 /* Reset SKB transmit buffers. */
383 fep->skb_cur = fep->skb_dirty = 0;
384 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
385 if (fep->tx_skbuff[i]) {
386 dev_kfree_skb_any(fep->tx_skbuff[i]);
387 fep->tx_skbuff[i] = NULL;
388 }
389 }
390
391 /* Enable MII mode */
392 if (duplex) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100393 /* FD enable */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100394 writel(0x04, fep->hwp + FEC_X_CNTRL);
395 } else {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100396 /* No Rcv on Xmit */
397 rcntl |= 0x02;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100398 writel(0x0, fep->hwp + FEC_X_CNTRL);
399 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100400
Uwe Kleine-König45993652011-01-19 20:47:04 +0100401 fep->full_duplex = duplex;
402
403 /* Set MII speed */
404 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
405
406 /*
407 * The phy interface and speed need to get configured
408 * differently on enet-mac.
409 */
410 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100411 /* Enable flow control and length check */
412 rcntl |= 0x40000000 | 0x00000020;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100413
414 /* MII or RMII */
415 if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100416 rcntl |= (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100417 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100418 rcntl &= ~(1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100419
420 /* 10M or 100M */
421 if (fep->phy_dev && fep->phy_dev->speed == SPEED_100)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100422 rcntl &= ~(1 << 9);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100423 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100424 rcntl |= (1 << 9);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100425
Uwe Kleine-König45993652011-01-19 20:47:04 +0100426 } else {
427#ifdef FEC_MIIGSK_ENR
428 if (fep->phy_interface == PHY_INTERFACE_MODE_RMII) {
429 /* disable the gasket and wait */
430 writel(0, fep->hwp + FEC_MIIGSK_ENR);
431 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
432 udelay(1);
433
434 /*
435 * configure the gasket:
436 * RMII, 50 MHz, no loopback, no echo
437 */
438 writel(1, fep->hwp + FEC_MIIGSK_CFGR);
439
440 /* re-enable the gasket */
441 writel(2, fep->hwp + FEC_MIIGSK_ENR);
442 }
443#endif
444 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100445 writel(rcntl, fep->hwp + FEC_R_CNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100446
447 /* And last, enable the transmit and receive processing */
448 writel(2, fep->hwp + FEC_ECNTRL);
449 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
450
451 /* Enable interrupts we wish to service */
452 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
453}
454
455static void
456fec_stop(struct net_device *ndev)
457{
458 struct fec_enet_private *fep = netdev_priv(ndev);
459
460 /* We cannot expect a graceful transmit stop without link !!! */
461 if (fep->link) {
462 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
463 udelay(10);
464 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
465 printk("fec_stop : Graceful transmit stop did not complete !\n");
466 }
467
468 /* Whack a reset. We should wait for this. */
469 writel(1, fep->hwp + FEC_ECNTRL);
470 udelay(10);
471 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
472 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
473}
474
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100477fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100479 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100481 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100483 fec_restart(ndev, fep->full_duplex);
484 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100488fec_enet_tx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 struct fec_enet_private *fep;
Sascha Hauer2e285322009-04-15 01:32:16 +0000491 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000492 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 struct sk_buff *skb;
494
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100495 fep = netdev_priv(ndev);
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000496 spin_lock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 bdp = fep->dirty_tx;
498
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000499 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000500 if (bdp == fep->cur_tx && fep->tx_full == 0)
501 break;
502
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100503 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
504 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000505 bdp->cbd_bufaddr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 skb = fep->tx_skbuff[fep->skb_dirty];
508 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000509 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 BD_ENET_TX_RL | BD_ENET_TX_UN |
511 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100512 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000513 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100514 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000515 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100516 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000517 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100518 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000519 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100520 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000521 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100522 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100524 ndev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000527 if (status & BD_ENET_TX_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 printk("HEY! Enet xmit interrupt and TX_READY.\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +0000529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 /* Deferred means some collisions occurred during transmit,
531 * but we eventually sent the packet OK.
532 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000533 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100534 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400535
Sascha Hauer22f6b862009-04-15 01:32:18 +0000536 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 dev_kfree_skb_any(skb);
538 fep->tx_skbuff[fep->skb_dirty] = NULL;
539 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400540
Sascha Hauer22f6b862009-04-15 01:32:18 +0000541 /* Update pointer to next buffer descriptor to be transmitted */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000542 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 bdp = fep->tx_bd_base;
544 else
545 bdp++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400546
Sascha Hauer22f6b862009-04-15 01:32:18 +0000547 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 */
549 if (fep->tx_full) {
550 fep->tx_full = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100551 if (netif_queue_stopped(ndev))
552 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000555 fep->dirty_tx = bdp;
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000556 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
559
560/* During a receive, the cur_rx points to the current incoming buffer.
561 * When we update through the ring, if the next incoming buffer has
562 * not been given to the system, we just set the empty indicator,
563 * effectively tossing the packet.
564 */
565static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100566fec_enet_rx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100568 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000569 const struct platform_device_id *id_entry =
570 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000571 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000572 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 struct sk_buff *skb;
574 ushort pkt_len;
575 __u8 *data;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400576
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000577#ifdef CONFIG_M532x
578 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400579#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000581 spin_lock(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /* First, grab all of the stats for the incoming packet.
584 * These get messed up if we get called due to a busy condition.
585 */
586 bdp = fep->cur_rx;
587
Sascha Hauer22f6b862009-04-15 01:32:18 +0000588 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Sascha Hauer22f6b862009-04-15 01:32:18 +0000590 /* Since we have allocated space to hold a complete frame,
591 * the last indicator should be set.
592 */
593 if ((status & BD_ENET_RX_LAST) == 0)
594 printk("FEC ENET: rcv is not +last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Sascha Hauer22f6b862009-04-15 01:32:18 +0000596 if (!fep->opened)
597 goto rx_processing_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Sascha Hauer22f6b862009-04-15 01:32:18 +0000599 /* Check for errors. */
600 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100602 ndev->stats.rx_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000603 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
604 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100605 ndev->stats.rx_length_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000606 }
607 if (status & BD_ENET_RX_NO) /* Frame alignment */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100608 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000609 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100610 ndev->stats.rx_crc_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000611 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100612 ndev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
Sascha Hauer22f6b862009-04-15 01:32:18 +0000614
615 /* Report late collisions as a frame error.
616 * On this error, the BD is closed, but we don't know what we
617 * have in the buffer. So, just drop this frame on the floor.
618 */
619 if (status & BD_ENET_RX_CL) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100620 ndev->stats.rx_errors++;
621 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000622 goto rx_processing_done;
623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Sascha Hauer22f6b862009-04-15 01:32:18 +0000625 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100626 ndev->stats.rx_packets++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000627 pkt_len = bdp->cbd_datlen;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100628 ndev->stats.rx_bytes += pkt_len;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000629 data = (__u8*)__va(bdp->cbd_bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100631 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
632 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerccdc4f12009-01-28 23:03:09 +0000633
Shawn Guob5680e02011-01-05 21:13:13 +0000634 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
635 swap_buffer(data, pkt_len);
636
Sascha Hauer22f6b862009-04-15 01:32:18 +0000637 /* This does 16 byte alignment, exactly what we need.
638 * The packet length includes FCS, but we don't want to
639 * include that when passing upstream as it messes up
640 * bridging applications.
641 */
Sascha Hauer85498892009-04-15 01:32:21 +0000642 skb = dev_alloc_skb(pkt_len - 4 + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Sascha Hauer85498892009-04-15 01:32:21 +0000644 if (unlikely(!skb)) {
Sascha Hauer22f6b862009-04-15 01:32:18 +0000645 printk("%s: Memory squeeze, dropping packet.\n",
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100646 ndev->name);
647 ndev->stats.rx_dropped++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000648 } else {
Sascha Hauer85498892009-04-15 01:32:21 +0000649 skb_reserve(skb, NET_IP_ALIGN);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000650 skb_put(skb, pkt_len - 4); /* Make room */
651 skb_copy_to_linear_data(skb, data, pkt_len - 4);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100652 skb->protocol = eth_type_trans(skb, ndev);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000653 netif_rx(skb);
654 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000655
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100656 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, data,
657 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000658rx_processing_done:
659 /* Clear the status flags for this buffer */
660 status &= ~BD_ENET_RX_STATS;
661
662 /* Mark the buffer empty */
663 status |= BD_ENET_RX_EMPTY;
664 bdp->cbd_sc = status;
665
666 /* Update BD pointer to next entry */
667 if (status & BD_ENET_RX_WRAP)
668 bdp = fep->rx_bd_base;
669 else
670 bdp++;
671 /* Doing this here will keep the FEC running while we process
672 * incoming frames. On a heavily loaded network, we should be
673 * able to keep up at the expense of system resources.
674 */
675 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000677 fep->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000679 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
Uwe Kleine-König45993652011-01-19 20:47:04 +0100682static irqreturn_t
683fec_enet_interrupt(int irq, void *dev_id)
684{
685 struct net_device *ndev = dev_id;
686 struct fec_enet_private *fep = netdev_priv(ndev);
687 uint int_events;
688 irqreturn_t ret = IRQ_NONE;
689
690 do {
691 int_events = readl(fep->hwp + FEC_IEVENT);
692 writel(int_events, fep->hwp + FEC_IEVENT);
693
694 if (int_events & FEC_ENET_RXF) {
695 ret = IRQ_HANDLED;
696 fec_enet_rx(ndev);
697 }
698
699 /* Transmit OK, or non-fatal error. Update the buffer
700 * descriptors. FEC handles all errors, we just discover
701 * them as part of the transmit process.
702 */
703 if (int_events & FEC_ENET_TXF) {
704 ret = IRQ_HANDLED;
705 fec_enet_tx(ndev);
706 }
707
708 if (int_events & FEC_ENET_MII) {
709 ret = IRQ_HANDLED;
710 complete(&fep->mdio_done);
711 }
712 } while (int_events);
713
714 return ret;
715}
716
717
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719/* ------------------------------------------------------------------------- */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100720static void __inline__ fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100722 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo49da97d2011-01-05 21:13:11 +0000723 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000724 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Shawn Guo49da97d2011-01-05 21:13:11 +0000726 /*
727 * try to get mac address in following order:
728 *
729 * 1) module parameter via kernel command line in form
730 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
731 */
732 iap = macaddr;
733
734 /*
735 * 2) from flash or fuse (via platform data)
736 */
737 if (!is_valid_ether_addr(iap)) {
738#ifdef CONFIG_M5272
739 if (FEC_FLASHMAC)
740 iap = (unsigned char *)FEC_FLASHMAC;
741#else
742 if (pdata)
743 memcpy(iap, pdata->mac, ETH_ALEN);
744#endif
745 }
746
747 /*
748 * 3) FEC mac registers set by bootloader
749 */
750 if (!is_valid_ether_addr(iap)) {
751 *((unsigned long *) &tmpaddr[0]) =
752 be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
753 *((unsigned short *) &tmpaddr[4]) =
754 be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 iap = &tmpaddr[0];
756 }
757
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100758 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Shawn Guo49da97d2011-01-05 21:13:11 +0000760 /* Adjust MAC if using macaddr */
761 if (iap == macaddr)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100762 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->pdev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765/* ------------------------------------------------------------------------- */
766
Bryan Wue6b043d2010-03-31 02:10:44 +0000767/*
768 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100770static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100772 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000773 struct phy_device *phy_dev = fep->phy_dev;
774 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Bryan Wue6b043d2010-03-31 02:10:44 +0000776 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Bryan Wue6b043d2010-03-31 02:10:44 +0000778 spin_lock_irqsave(&fep->hw_lock, flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400779
Bryan Wue6b043d2010-03-31 02:10:44 +0000780 /* Prevent a state halted on mii error */
781 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
782 phy_dev->state = PHY_RESUMING;
783 goto spin_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
Bryan Wue6b043d2010-03-31 02:10:44 +0000785
786 /* Duplex link change */
787 if (phy_dev->link) {
788 if (fep->full_duplex != phy_dev->duplex) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100789 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000790 status_change = 1;
791 }
792 }
793
794 /* Link on or off change */
795 if (phy_dev->link != fep->link) {
796 fep->link = phy_dev->link;
797 if (phy_dev->link)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100798 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000799 else
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100800 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000801 status_change = 1;
802 }
803
804spin_unlock:
805 spin_unlock_irqrestore(&fep->hw_lock, flags);
806
807 if (status_change)
808 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
Bryan Wue6b043d2010-03-31 02:10:44 +0000811static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Bryan Wue6b043d2010-03-31 02:10:44 +0000813 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000814 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000815
816 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000817 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000818
819 /* start a read op */
820 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
821 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
822 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
823
824 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000825 time_left = wait_for_completion_timeout(&fep->mdio_done,
826 usecs_to_jiffies(FEC_MII_TIMEOUT));
827 if (time_left == 0) {
828 fep->mii_timeout = 1;
829 printk(KERN_ERR "FEC: MDIO read timeout\n");
830 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000831 }
832
833 /* return value */
834 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
835}
836
837static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
838 u16 value)
839{
840 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000841 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000842
843 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000844 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000845
Shawn Guo862f0982011-01-05 21:13:09 +0000846 /* start a write op */
847 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +0000848 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
849 FEC_MMFR_TA | FEC_MMFR_DATA(value),
850 fep->hwp + FEC_MII_DATA);
851
852 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000853 time_left = wait_for_completion_timeout(&fep->mdio_done,
854 usecs_to_jiffies(FEC_MII_TIMEOUT));
855 if (time_left == 0) {
856 fep->mii_timeout = 1;
857 printk(KERN_ERR "FEC: MDIO write timeout\n");
858 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000859 }
860
861 return 0;
862}
863
864static int fec_enet_mdio_reset(struct mii_bus *bus)
865{
866 return 0;
867}
868
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100869static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +0000870{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100871 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000872 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000873 char mdio_bus_id[MII_BUS_ID_SIZE];
874 char phy_name[MII_BUS_ID_SIZE + 3];
875 int phy_id;
Shawn Guob5680e02011-01-05 21:13:13 +0000876 int dev_id = fep->pdev->id;
Bryan Wue6b043d2010-03-31 02:10:44 +0000877
Bryan Wu418bd0d2010-05-28 03:40:39 -0700878 fep->phy_dev = NULL;
879
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000880 /* check for attached phy */
881 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
882 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
883 continue;
884 if (fep->mii_bus->phy_map[phy_id] == NULL)
885 continue;
886 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
887 continue;
Shawn Guob5680e02011-01-05 21:13:13 +0000888 if (dev_id--)
889 continue;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000890 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
891 break;
Bryan Wue6b043d2010-03-31 02:10:44 +0000892 }
893
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000894 if (phy_id >= PHY_MAX_ADDR) {
895 printk(KERN_INFO "%s: no PHY, assuming direct connection "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100896 "to switch\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000897 strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE);
898 phy_id = 0;
899 }
900
901 snprintf(phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT, mdio_bus_id, phy_id);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100902 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link, 0,
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000903 PHY_INTERFACE_MODE_MII);
904 if (IS_ERR(phy_dev)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100905 printk(KERN_ERR "%s: could not attach to PHY\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000906 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000907 }
908
909 /* mask with MAC supported features */
910 phy_dev->supported &= PHY_BASIC_FEATURES;
911 phy_dev->advertising = phy_dev->supported;
912
913 fep->phy_dev = phy_dev;
914 fep->link = 0;
915 fep->full_duplex = 0;
916
Bryan Wu418bd0d2010-05-28 03:40:39 -0700917 printk(KERN_INFO "%s: Freescale FEC PHY driver [%s] "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100918 "(mii_bus:phy_addr=%s, irq=%d)\n", ndev->name,
Bryan Wu418bd0d2010-05-28 03:40:39 -0700919 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
920 fep->phy_dev->irq);
921
Bryan Wue6b043d2010-03-31 02:10:44 +0000922 return 0;
923}
924
925static int fec_enet_mii_init(struct platform_device *pdev)
926{
Shawn Guob5680e02011-01-05 21:13:13 +0000927 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100928 struct net_device *ndev = platform_get_drvdata(pdev);
929 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000930 const struct platform_device_id *id_entry =
931 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000932 int err = -ENXIO, i;
933
Shawn Guob5680e02011-01-05 21:13:13 +0000934 /*
935 * The dual fec interfaces are not equivalent with enet-mac.
936 * Here are the differences:
937 *
938 * - fec0 supports MII & RMII modes while fec1 only supports RMII
939 * - fec0 acts as the 1588 time master while fec1 is slave
940 * - external phys can only be configured by fec0
941 *
942 * That is to say fec1 can not work independently. It only works
943 * when fec0 is working. The reason behind this design is that the
944 * second interface is added primarily for Switch mode.
945 *
946 * Because of the last point above, both phys are attached on fec0
947 * mdio interface in board design, and need to be configured by
948 * fec0 mii_bus.
949 */
950 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && pdev->id) {
951 /* fec1 uses fec0 mii_bus */
952 fep->mii_bus = fec0_mii_bus;
953 return 0;
954 }
955
Bryan Wue6b043d2010-03-31 02:10:44 +0000956 fep->mii_timeout = 0;
957
958 /*
959 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
960 */
961 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk), 5000000) << 1;
962 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
963
964 fep->mii_bus = mdiobus_alloc();
965 if (fep->mii_bus == NULL) {
966 err = -ENOMEM;
967 goto err_out;
968 }
969
970 fep->mii_bus->name = "fec_enet_mii_bus";
971 fep->mii_bus->read = fec_enet_mdio_read;
972 fep->mii_bus->write = fec_enet_mdio_write;
973 fep->mii_bus->reset = fec_enet_mdio_reset;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000974 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%x", pdev->id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +0000975 fep->mii_bus->priv = fep;
976 fep->mii_bus->parent = &pdev->dev;
977
978 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
979 if (!fep->mii_bus->irq) {
980 err = -ENOMEM;
981 goto err_out_free_mdiobus;
982 }
983
984 for (i = 0; i < PHY_MAX_ADDR; i++)
985 fep->mii_bus->irq[i] = PHY_POLL;
986
Bryan Wue6b043d2010-03-31 02:10:44 +0000987 if (mdiobus_register(fep->mii_bus))
988 goto err_out_free_mdio_irq;
989
Shawn Guob5680e02011-01-05 21:13:13 +0000990 /* save fec0 mii_bus */
991 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
992 fec0_mii_bus = fep->mii_bus;
993
Bryan Wue6b043d2010-03-31 02:10:44 +0000994 return 0;
995
Bryan Wue6b043d2010-03-31 02:10:44 +0000996err_out_free_mdio_irq:
997 kfree(fep->mii_bus->irq);
998err_out_free_mdiobus:
999 mdiobus_free(fep->mii_bus);
1000err_out:
1001 return err;
1002}
1003
1004static void fec_enet_mii_remove(struct fec_enet_private *fep)
1005{
1006 if (fep->phy_dev)
1007 phy_disconnect(fep->phy_dev);
1008 mdiobus_unregister(fep->mii_bus);
1009 kfree(fep->mii_bus->irq);
1010 mdiobus_free(fep->mii_bus);
1011}
1012
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001013static int fec_enet_get_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001014 struct ethtool_cmd *cmd)
1015{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001016 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001017 struct phy_device *phydev = fep->phy_dev;
1018
1019 if (!phydev)
1020 return -ENODEV;
1021
1022 return phy_ethtool_gset(phydev, cmd);
1023}
1024
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001025static int fec_enet_set_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001026 struct ethtool_cmd *cmd)
1027{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001028 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001029 struct phy_device *phydev = fep->phy_dev;
1030
1031 if (!phydev)
1032 return -ENODEV;
1033
1034 return phy_ethtool_sset(phydev, cmd);
1035}
1036
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001037static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001038 struct ethtool_drvinfo *info)
1039{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001040 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Bryan Wue6b043d2010-03-31 02:10:44 +00001042 strcpy(info->driver, fep->pdev->dev.driver->name);
1043 strcpy(info->version, "Revision: 1.0");
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001044 strcpy(info->bus_info, dev_name(&ndev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
Bryan Wue6b043d2010-03-31 02:10:44 +00001046
1047static struct ethtool_ops fec_enet_ethtool_ops = {
1048 .get_settings = fec_enet_get_settings,
1049 .set_settings = fec_enet_set_settings,
1050 .get_drvinfo = fec_enet_get_drvinfo,
1051 .get_link = ethtool_op_get_link,
1052};
1053
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001054static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00001055{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001056 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001057 struct phy_device *phydev = fep->phy_dev;
1058
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001059 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00001060 return -EINVAL;
1061
1062 if (!phydev)
1063 return -ENODEV;
1064
Richard Cochran28b04112010-07-17 08:48:55 +00001065 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00001066}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001068static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001069{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001070 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001071 int i;
1072 struct sk_buff *skb;
1073 struct bufdesc *bdp;
1074
1075 bdp = fep->rx_bd_base;
1076 for (i = 0; i < RX_RING_SIZE; i++) {
1077 skb = fep->rx_skbuff[i];
1078
1079 if (bdp->cbd_bufaddr)
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001080 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001081 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1082 if (skb)
1083 dev_kfree_skb(skb);
1084 bdp++;
1085 }
1086
1087 bdp = fep->tx_bd_base;
1088 for (i = 0; i < TX_RING_SIZE; i++)
1089 kfree(fep->tx_bounce[i]);
1090}
1091
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001092static int fec_enet_alloc_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001093{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001094 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001095 int i;
1096 struct sk_buff *skb;
1097 struct bufdesc *bdp;
1098
1099 bdp = fep->rx_bd_base;
1100 for (i = 0; i < RX_RING_SIZE; i++) {
1101 skb = dev_alloc_skb(FEC_ENET_RX_FRSIZE);
1102 if (!skb) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001103 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001104 return -ENOMEM;
1105 }
1106 fep->rx_skbuff[i] = skb;
1107
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001108 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, skb->data,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001109 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1110 bdp->cbd_sc = BD_ENET_RX_EMPTY;
1111 bdp++;
1112 }
1113
1114 /* Set the last buffer to wrap. */
1115 bdp--;
1116 bdp->cbd_sc |= BD_SC_WRAP;
1117
1118 bdp = fep->tx_bd_base;
1119 for (i = 0; i < TX_RING_SIZE; i++) {
1120 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
1121
1122 bdp->cbd_sc = 0;
1123 bdp->cbd_bufaddr = 0;
1124 bdp++;
1125 }
1126
1127 /* Set the last buffer to wrap. */
1128 bdp--;
1129 bdp->cbd_sc |= BD_SC_WRAP;
1130
1131 return 0;
1132}
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001135fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001137 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001138 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 /* I should reset the ring buffers here, but I don't yet know
1141 * a simple way to do that.
1142 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001144 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001145 if (ret)
1146 return ret;
1147
Bryan Wu418bd0d2010-05-28 03:40:39 -07001148 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001149 ret = fec_enet_mii_probe(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001150 if (ret) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001151 fec_enet_free_buffers(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001152 return ret;
1153 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001154 phy_start(fep->phy_dev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001155 netif_start_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 fep->opened = 1;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001157 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
1160static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001161fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001163 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Sascha Hauer22f6b862009-04-15 01:32:18 +00001165 /* Don't know what to do yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 fep->opened = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001167 netif_stop_queue(ndev);
1168 fec_stop(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001170 if (fep->phy_dev) {
1171 phy_stop(fep->phy_dev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001172 phy_disconnect(fep->phy_dev);
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001173 }
Bryan Wu418bd0d2010-05-28 03:40:39 -07001174
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001175 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return 0;
1178}
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180/* Set or clear the multicast filter for this adaptor.
1181 * Skeleton taken from sunlance driver.
1182 * The CPM Ethernet implementation allows Multicast as well as individual
1183 * MAC address filtering. Some of the drivers check to make sure it is
1184 * a group multicast address, and discard those that are not. I guess I
1185 * will do the same for now, but just remove the test if you want
1186 * individual filtering as well (do the upper net layers want or support
1187 * this kind of feature?).
1188 */
1189
1190#define HASH_BITS 6 /* #bits in hash */
1191#define CRC32_POLY 0xEDB88320
1192
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001193static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001195 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001196 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00001197 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 unsigned char hash;
1199
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001200 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00001201 tmp = readl(fep->hwp + FEC_R_CNTRL);
1202 tmp |= 0x8;
1203 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00001204 return;
1205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Sascha Hauer4e831832009-04-15 01:32:19 +00001207 tmp = readl(fep->hwp + FEC_R_CNTRL);
1208 tmp &= ~0x8;
1209 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001210
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001211 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001212 /* Catch all multicast addresses, so set the
1213 * filter to all 1's
1214 */
1215 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1216 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Sascha Hauer4e831832009-04-15 01:32:19 +00001218 return;
1219 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001220
Sascha Hauer4e831832009-04-15 01:32:19 +00001221 /* Clear filter and add the addresses in hash register
1222 */
1223 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1224 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001226 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001227 /* Only support group multicast for now */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001228 if (!(ha->addr[0] & 1))
Sascha Hauer4e831832009-04-15 01:32:19 +00001229 continue;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001230
Sascha Hauer4e831832009-04-15 01:32:19 +00001231 /* calculate crc32 value of mac address */
1232 crc = 0xffffffff;
1233
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001234 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001235 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00001236 for (bit = 0; bit < 8; bit++, data >>= 1) {
1237 crc = (crc >> 1) ^
1238 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
1240 }
Sascha Hauer4e831832009-04-15 01:32:19 +00001241
1242 /* only upper 6 bits (HASH_BITS) are used
1243 * which point to specific bit in he hash registers
1244 */
1245 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1246
1247 if (hash > 31) {
1248 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1249 tmp |= 1 << (hash - 32);
1250 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1251 } else {
1252 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1253 tmp |= 1 << hash;
1254 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 }
1257}
1258
Sascha Hauer22f6b862009-04-15 01:32:18 +00001259/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00001260static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001261fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001263 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00001264 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Sascha Hauer009fda82009-04-15 01:32:23 +00001266 if (!is_valid_ether_addr(addr->sa_data))
1267 return -EADDRNOTAVAIL;
1268
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001269 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
Sascha Hauer009fda82009-04-15 01:32:23 +00001270
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001271 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
1272 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00001273 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001274 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07001275 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00001276 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
Sascha Hauer009fda82009-04-15 01:32:23 +00001279static const struct net_device_ops fec_netdev_ops = {
1280 .ndo_open = fec_enet_open,
1281 .ndo_stop = fec_enet_close,
1282 .ndo_start_xmit = fec_enet_start_xmit,
1283 .ndo_set_multicast_list = set_multicast_list,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00001284 .ndo_change_mtu = eth_change_mtu,
Sascha Hauer009fda82009-04-15 01:32:23 +00001285 .ndo_validate_addr = eth_validate_addr,
1286 .ndo_tx_timeout = fec_timeout,
1287 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001288 .ndo_do_ioctl = fec_enet_ioctl,
Sascha Hauer009fda82009-04-15 01:32:23 +00001289};
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 /*
1292 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00001293 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001295static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001297 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001298 struct bufdesc *cbd_base;
Rob Herring633e7532010-02-05 08:56:20 +00001299 struct bufdesc *bdp;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001300 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001302 /* Allocate memory for buffer descriptors. */
1303 cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
1304 GFP_KERNEL);
1305 if (!cbd_base) {
Greg Ungerer562d2f82005-11-07 14:09:50 +10001306 printk("FEC: allocate descriptor memory failed?\n");
1307 return -ENOMEM;
1308 }
1309
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001310 spin_lock_init(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001311
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001312 fep->netdev = ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Shawn Guo49da97d2011-01-05 21:13:11 +00001314 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001315 fec_get_mac(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001317 /* Set receive and transmit descriptor base. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 fep->rx_bd_base = cbd_base;
1319 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1320
Sascha Hauer22f6b862009-04-15 01:32:18 +00001321 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001322 ndev->watchdog_timeo = TX_TIMEOUT;
1323 ndev->netdev_ops = &fec_netdev_ops;
1324 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00001325
1326 /* Initialize the receive buffer descriptors. */
1327 bdp = fep->rx_bd_base;
1328 for (i = 0; i < RX_RING_SIZE; i++) {
1329
1330 /* Initialize the BD for every fragment in the page. */
1331 bdp->cbd_sc = 0;
1332 bdp++;
1333 }
1334
1335 /* Set the last buffer to wrap */
1336 bdp--;
1337 bdp->cbd_sc |= BD_SC_WRAP;
1338
1339 /* ...and the same for transmit */
1340 bdp = fep->tx_bd_base;
1341 for (i = 0; i < TX_RING_SIZE; i++) {
1342
1343 /* Initialize the BD for every fragment in the page. */
1344 bdp->cbd_sc = 0;
1345 bdp->cbd_bufaddr = 0;
1346 bdp++;
1347 }
1348
1349 /* Set the last buffer to wrap */
1350 bdp--;
1351 bdp->cbd_sc |= BD_SC_WRAP;
1352
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001353 fec_restart(ndev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return 0;
1356}
1357
Sascha Haueread73182009-01-28 23:03:11 +00001358static int __devinit
1359fec_probe(struct platform_device *pdev)
1360{
1361 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001362 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00001363 struct net_device *ndev;
1364 int i, irq, ret = 0;
1365 struct resource *r;
1366
1367 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1368 if (!r)
1369 return -ENXIO;
1370
1371 r = request_mem_region(r->start, resource_size(r), pdev->name);
1372 if (!r)
1373 return -EBUSY;
1374
1375 /* Init network device */
1376 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001377 if (!ndev) {
1378 ret = -ENOMEM;
1379 goto failed_alloc_etherdev;
1380 }
Sascha Haueread73182009-01-28 23:03:11 +00001381
1382 SET_NETDEV_DEV(ndev, &pdev->dev);
1383
1384 /* setup board info structure */
1385 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001386
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001387 fep->hwp = ioremap(r->start, resource_size(r));
Bryan Wue6b043d2010-03-31 02:10:44 +00001388 fep->pdev = pdev;
Sascha Haueread73182009-01-28 23:03:11 +00001389
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001390 if (!fep->hwp) {
Sascha Haueread73182009-01-28 23:03:11 +00001391 ret = -ENOMEM;
1392 goto failed_ioremap;
1393 }
1394
1395 platform_set_drvdata(pdev, ndev);
1396
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001397 pdata = pdev->dev.platform_data;
1398 if (pdata)
1399 fep->phy_interface = pdata->phy;
1400
Sascha Haueread73182009-01-28 23:03:11 +00001401 /* This device has up to three irqs on some platforms */
1402 for (i = 0; i < 3; i++) {
1403 irq = platform_get_irq(pdev, i);
1404 if (i && irq < 0)
1405 break;
1406 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1407 if (ret) {
Uwe Kleine-Königb2b09ad2011-01-13 21:49:05 +01001408 while (--i >= 0) {
Sascha Haueread73182009-01-28 23:03:11 +00001409 irq = platform_get_irq(pdev, i);
1410 free_irq(irq, ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001411 }
1412 goto failed_irq;
1413 }
1414 }
1415
1416 fep->clk = clk_get(&pdev->dev, "fec_clk");
1417 if (IS_ERR(fep->clk)) {
1418 ret = PTR_ERR(fep->clk);
1419 goto failed_clk;
1420 }
1421 clk_enable(fep->clk);
1422
Shawn Guo8649a232011-01-05 21:13:10 +00001423 ret = fec_enet_init(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001424 if (ret)
1425 goto failed_init;
1426
Bryan Wue6b043d2010-03-31 02:10:44 +00001427 ret = fec_enet_mii_init(pdev);
1428 if (ret)
1429 goto failed_mii_init;
1430
Oskar Schirmer03c698c2010-10-07 02:30:30 +00001431 /* Carrier starts down, phylib will bring it up */
1432 netif_carrier_off(ndev);
1433
Sascha Haueread73182009-01-28 23:03:11 +00001434 ret = register_netdev(ndev);
1435 if (ret)
1436 goto failed_register;
1437
1438 return 0;
1439
1440failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00001441 fec_enet_mii_remove(fep);
1442failed_mii_init:
Sascha Haueread73182009-01-28 23:03:11 +00001443failed_init:
1444 clk_disable(fep->clk);
1445 clk_put(fep->clk);
1446failed_clk:
1447 for (i = 0; i < 3; i++) {
1448 irq = platform_get_irq(pdev, i);
1449 if (irq > 0)
1450 free_irq(irq, ndev);
1451 }
1452failed_irq:
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001453 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001454failed_ioremap:
1455 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001456failed_alloc_etherdev:
1457 release_mem_region(r->start, resource_size(r));
Sascha Haueread73182009-01-28 23:03:11 +00001458
1459 return ret;
1460}
1461
1462static int __devexit
1463fec_drv_remove(struct platform_device *pdev)
1464{
1465 struct net_device *ndev = platform_get_drvdata(pdev);
1466 struct fec_enet_private *fep = netdev_priv(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001467 struct resource *r;
Sascha Haueread73182009-01-28 23:03:11 +00001468
Sascha Haueread73182009-01-28 23:03:11 +00001469 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001470 fec_enet_mii_remove(fep);
Sascha Haueread73182009-01-28 23:03:11 +00001471 clk_disable(fep->clk);
1472 clk_put(fep->clk);
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001473 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001474 unregister_netdev(ndev);
1475 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001476
1477 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1478 BUG_ON(!r);
1479 release_mem_region(r->start, resource_size(r));
1480
Uwe Kleine-Königb3cde362011-01-25 18:03:37 +01001481 platform_set_drvdata(pdev, NULL);
1482
Sascha Haueread73182009-01-28 23:03:11 +00001483 return 0;
1484}
1485
Denis Kirjanov59d42892010-06-02 09:27:04 +00001486#ifdef CONFIG_PM
Sascha Haueread73182009-01-28 23:03:11 +00001487static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001488fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001489{
Eric Benard87cad5c2010-06-18 04:19:54 +00001490 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001491 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001492
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001493 if (netif_running(ndev)) {
1494 fec_stop(ndev);
1495 netif_device_detach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001496 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001497 clk_disable(fep->clk);
1498
Sascha Haueread73182009-01-28 23:03:11 +00001499 return 0;
1500}
1501
1502static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001503fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001504{
Eric Benard87cad5c2010-06-18 04:19:54 +00001505 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001506 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001507
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001508 clk_enable(fep->clk);
1509 if (netif_running(ndev)) {
1510 fec_restart(ndev, fep->full_duplex);
1511 netif_device_attach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001512 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001513
Sascha Haueread73182009-01-28 23:03:11 +00001514 return 0;
1515}
1516
Denis Kirjanov59d42892010-06-02 09:27:04 +00001517static const struct dev_pm_ops fec_pm_ops = {
1518 .suspend = fec_suspend,
1519 .resume = fec_resume,
1520 .freeze = fec_suspend,
1521 .thaw = fec_resume,
1522 .poweroff = fec_suspend,
1523 .restore = fec_resume,
1524};
Eric Benard87cad5c2010-06-18 04:19:54 +00001525#endif
Denis Kirjanov59d42892010-06-02 09:27:04 +00001526
Sascha Haueread73182009-01-28 23:03:11 +00001527static struct platform_driver fec_driver = {
1528 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00001529 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00001530 .owner = THIS_MODULE,
1531#ifdef CONFIG_PM
1532 .pm = &fec_pm_ops,
1533#endif
Sascha Haueread73182009-01-28 23:03:11 +00001534 },
Shawn Guob5680e02011-01-05 21:13:13 +00001535 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00001536 .probe = fec_probe,
1537 .remove = __devexit_p(fec_drv_remove),
Sascha Haueread73182009-01-28 23:03:11 +00001538};
1539
1540static int __init
1541fec_enet_module_init(void)
1542{
1543 printk(KERN_INFO "FEC Ethernet Driver\n");
1544
1545 return platform_driver_register(&fec_driver);
1546}
1547
1548static void __exit
1549fec_enet_cleanup(void)
1550{
1551 platform_driver_unregister(&fec_driver);
1552}
1553
1554module_exit(fec_enet_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555module_init(fec_enet_module_init);
1556
1557MODULE_LICENSE("GPL");