blob: 74798bee672eeea21ca8cfef9126a648d4b59984 [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 */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100185 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
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100193 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 */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100198 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
Bryan Wue6b043d2010-03-31 02:10:44 +0000208/* FEC MII MMFR bits definition */
209#define FEC_MMFR_ST (1 << 30)
210#define FEC_MMFR_OP_READ (2 << 28)
211#define FEC_MMFR_OP_WRITE (1 << 28)
212#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
213#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
214#define FEC_MMFR_TA (2 << 16)
215#define FEC_MMFR_DATA(v) (v & 0xffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Baruch Siach97b72e42010-07-11 21:12:51 +0000217#define FEC_MII_TIMEOUT 1000 /* us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Sascha Hauer22f6b862009-04-15 01:32:18 +0000219/* Transmitter timeout */
220#define TX_TIMEOUT (2 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Shawn Guob5680e02011-01-05 21:13:13 +0000222static void *swap_buffer(void *bufaddr, int len)
223{
224 int i;
225 unsigned int *buf = bufaddr;
226
227 for (i = 0; i < (len + 3) / 4; i++, buf++)
228 *buf = cpu_to_be32(*buf);
229
230 return bufaddr;
231}
232
Denis Kirjanovc7621cb2010-06-02 09:15:47 +0000233static netdev_tx_t
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100234fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100236 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000237 const struct platform_device_id *id_entry =
238 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000239 struct bufdesc *bdp;
Greg Ungerer9555b312009-08-06 17:58:18 +0000240 void *bufaddr;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000241 unsigned short status;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000242 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (!fep->link) {
245 /* Link is down or autonegotiation is in progress. */
Patrick McHardy5b548142009-06-12 06:22:29 +0000246 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000249 spin_lock_irqsave(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* Fill in a Tx ring entry */
251 bdp = fep->cur_tx;
252
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000253 status = bdp->cbd_sc;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000254
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000255 if (status & BD_ENET_TX_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* Ooops. All transmit buffers are full. Bail out.
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100257 * This should not happen, since ndev->tbusy should be set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100259 printk("%s: tx queue full!.\n", ndev->name);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000260 spin_unlock_irqrestore(&fep->hw_lock, flags);
Patrick McHardy5b548142009-06-12 06:22:29 +0000261 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Sascha Hauer22f6b862009-04-15 01:32:18 +0000264 /* Clear all of the status flags */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000265 status &= ~BD_ENET_TX_STATS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Sascha Hauer22f6b862009-04-15 01:32:18 +0000267 /* Set buffer length and buffer pointer */
Greg Ungerer9555b312009-08-06 17:58:18 +0000268 bufaddr = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 bdp->cbd_datlen = skb->len;
270
271 /*
Sascha Hauer22f6b862009-04-15 01:32:18 +0000272 * On some FEC implementations data must be aligned on
273 * 4-byte boundaries. Use bounce buffers to copy data
274 * and get it aligned. Ugh.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 */
Greg Ungerer9555b312009-08-06 17:58:18 +0000276 if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 unsigned int index;
278 index = bdp - fep->tx_bd_base;
Uwe Kleine-König8a73b0b2011-01-13 21:34:31 +0100279 memcpy(fep->tx_bounce[index], skb->data, skb->len);
Greg Ungerer9555b312009-08-06 17:58:18 +0000280 bufaddr = fep->tx_bounce[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282
Shawn Guob5680e02011-01-05 21:13:13 +0000283 /*
284 * Some design made an incorrect assumption on endian mode of
285 * the system that it's running on. As the result, driver has to
286 * swap every frame going to and coming from the controller.
287 */
288 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
289 swap_buffer(bufaddr, skb->len);
290
Sascha Hauer22f6b862009-04-15 01:32:18 +0000291 /* Save skb pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 fep->tx_skbuff[fep->skb_cur] = skb;
293
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100294 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 /* Push the data cache so the CPM does not get stale memory
298 * data.
299 */
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100300 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000301 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000303 /* Send it on its way. Tell FEC it's ready, interrupt when done,
304 * it's the last BD of the frame, and to put the CRC on the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000306 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000308 bdp->cbd_sc = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* Trigger transmission start */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000311 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Sascha Hauer22f6b862009-04-15 01:32:18 +0000313 /* If this was the last BD in the ring, start at the beginning again. */
314 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 bdp = fep->tx_bd_base;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000316 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 bdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (bdp == fep->dirty_tx) {
320 fep->tx_full = 1;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100321 netif_stop_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323
Sascha Hauer2e285322009-04-15 01:32:16 +0000324 fep->cur_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000326 spin_unlock_irqrestore(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Patrick McHardy6ed10652009-06-23 06:03:08 +0000328 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Uwe Kleine-König45993652011-01-19 20:47:04 +0100331/* This function is called to start or restart the FEC during a link
332 * change. This only happens when switching between half and full
333 * duplex.
334 */
335static void
336fec_restart(struct net_device *ndev, int duplex)
337{
338 struct fec_enet_private *fep = netdev_priv(ndev);
339 const struct platform_device_id *id_entry =
340 platform_get_device_id(fep->pdev);
341 int i;
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100342 u32 temp_mac[2];
343 u32 rcntl = OPT_FRAME_SIZE | 0x04;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100344
345 /* Whack a reset. We should wait for this. */
346 writel(1, fep->hwp + FEC_ECNTRL);
347 udelay(10);
348
349 /*
350 * enet-mac reset will reset mac address registers too,
351 * so need to reconfigure it.
352 */
353 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
354 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
355 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
356 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
357 }
358
359 /* Clear any outstanding interrupt. */
360 writel(0xffc00000, fep->hwp + FEC_IEVENT);
361
362 /* Reset all multicast. */
363 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
364 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
365#ifndef CONFIG_M5272
366 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
367 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
368#endif
369
370 /* Set maximum receive buffer size. */
371 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
372
373 /* Set receive and transmit descriptor base. */
374 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
375 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc) * RX_RING_SIZE,
376 fep->hwp + FEC_X_DES_START);
377
378 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
379 fep->cur_rx = fep->rx_bd_base;
380
381 /* Reset SKB transmit buffers. */
382 fep->skb_cur = fep->skb_dirty = 0;
383 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
384 if (fep->tx_skbuff[i]) {
385 dev_kfree_skb_any(fep->tx_skbuff[i]);
386 fep->tx_skbuff[i] = NULL;
387 }
388 }
389
390 /* Enable MII mode */
391 if (duplex) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100392 /* FD enable */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100393 writel(0x04, fep->hwp + FEC_X_CNTRL);
394 } else {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100395 /* No Rcv on Xmit */
396 rcntl |= 0x02;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100397 writel(0x0, fep->hwp + FEC_X_CNTRL);
398 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100399
Uwe Kleine-König45993652011-01-19 20:47:04 +0100400 fep->full_duplex = duplex;
401
402 /* Set MII speed */
403 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
404
405 /*
406 * The phy interface and speed need to get configured
407 * differently on enet-mac.
408 */
409 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100410 /* Enable flow control and length check */
411 rcntl |= 0x40000000 | 0x00000020;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100412
413 /* MII or RMII */
414 if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100415 rcntl |= (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100416 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100417 rcntl &= ~(1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100418
419 /* 10M or 100M */
420 if (fep->phy_dev && fep->phy_dev->speed == SPEED_100)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100421 rcntl &= ~(1 << 9);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100422 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100423 rcntl |= (1 << 9);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100424
Uwe Kleine-König45993652011-01-19 20:47:04 +0100425 } else {
426#ifdef FEC_MIIGSK_ENR
427 if (fep->phy_interface == PHY_INTERFACE_MODE_RMII) {
428 /* disable the gasket and wait */
429 writel(0, fep->hwp + FEC_MIIGSK_ENR);
430 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
431 udelay(1);
432
433 /*
434 * configure the gasket:
435 * RMII, 50 MHz, no loopback, no echo
436 */
437 writel(1, fep->hwp + FEC_MIIGSK_CFGR);
438
439 /* re-enable the gasket */
440 writel(2, fep->hwp + FEC_MIIGSK_ENR);
441 }
442#endif
443 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100444 writel(rcntl, fep->hwp + FEC_R_CNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100445
446 /* And last, enable the transmit and receive processing */
447 writel(2, fep->hwp + FEC_ECNTRL);
448 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
449
450 /* Enable interrupts we wish to service */
451 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
452}
453
454static void
455fec_stop(struct net_device *ndev)
456{
457 struct fec_enet_private *fep = netdev_priv(ndev);
458
459 /* We cannot expect a graceful transmit stop without link !!! */
460 if (fep->link) {
461 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
462 udelay(10);
463 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
464 printk("fec_stop : Graceful transmit stop did not complete !\n");
465 }
466
467 /* Whack a reset. We should wait for this. */
468 writel(1, fep->hwp + FEC_ECNTRL);
469 udelay(10);
470 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
471 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
472}
473
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100476fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100478 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100480 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100482 fec_restart(ndev, fep->full_duplex);
483 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100487fec_enet_tx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct fec_enet_private *fep;
Sascha Hauer2e285322009-04-15 01:32:16 +0000490 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000491 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 struct sk_buff *skb;
493
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100494 fep = netdev_priv(ndev);
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000495 spin_lock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 bdp = fep->dirty_tx;
497
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000498 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000499 if (bdp == fep->cur_tx && fep->tx_full == 0)
500 break;
501
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100502 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
503 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000504 bdp->cbd_bufaddr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 skb = fep->tx_skbuff[fep->skb_dirty];
507 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000508 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 BD_ENET_TX_RL | BD_ENET_TX_UN |
510 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100511 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000512 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100513 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000514 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100515 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000516 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100517 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000518 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100519 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000520 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100521 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100523 ndev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000526 if (status & BD_ENET_TX_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 printk("HEY! Enet xmit interrupt and TX_READY.\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +0000528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /* Deferred means some collisions occurred during transmit,
530 * but we eventually sent the packet OK.
531 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000532 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100533 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400534
Sascha Hauer22f6b862009-04-15 01:32:18 +0000535 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 dev_kfree_skb_any(skb);
537 fep->tx_skbuff[fep->skb_dirty] = NULL;
538 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400539
Sascha Hauer22f6b862009-04-15 01:32:18 +0000540 /* Update pointer to next buffer descriptor to be transmitted */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000541 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 bdp = fep->tx_bd_base;
543 else
544 bdp++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400545
Sascha Hauer22f6b862009-04-15 01:32:18 +0000546 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 */
548 if (fep->tx_full) {
549 fep->tx_full = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100550 if (netif_queue_stopped(ndev))
551 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000554 fep->dirty_tx = bdp;
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000555 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558
559/* During a receive, the cur_rx points to the current incoming buffer.
560 * When we update through the ring, if the next incoming buffer has
561 * not been given to the system, we just set the empty indicator,
562 * effectively tossing the packet.
563 */
564static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100565fec_enet_rx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100567 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000568 const struct platform_device_id *id_entry =
569 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000570 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000571 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct sk_buff *skb;
573 ushort pkt_len;
574 __u8 *data;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400575
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000576#ifdef CONFIG_M532x
577 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400578#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000580 spin_lock(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /* First, grab all of the stats for the incoming packet.
583 * These get messed up if we get called due to a busy condition.
584 */
585 bdp = fep->cur_rx;
586
Sascha Hauer22f6b862009-04-15 01:32:18 +0000587 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Sascha Hauer22f6b862009-04-15 01:32:18 +0000589 /* Since we have allocated space to hold a complete frame,
590 * the last indicator should be set.
591 */
592 if ((status & BD_ENET_RX_LAST) == 0)
593 printk("FEC ENET: rcv is not +last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Sascha Hauer22f6b862009-04-15 01:32:18 +0000595 if (!fep->opened)
596 goto rx_processing_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Sascha Hauer22f6b862009-04-15 01:32:18 +0000598 /* Check for errors. */
599 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100601 ndev->stats.rx_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000602 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
603 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100604 ndev->stats.rx_length_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000605 }
606 if (status & BD_ENET_RX_NO) /* Frame alignment */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100607 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000608 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100609 ndev->stats.rx_crc_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000610 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100611 ndev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
Sascha Hauer22f6b862009-04-15 01:32:18 +0000613
614 /* Report late collisions as a frame error.
615 * On this error, the BD is closed, but we don't know what we
616 * have in the buffer. So, just drop this frame on the floor.
617 */
618 if (status & BD_ENET_RX_CL) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100619 ndev->stats.rx_errors++;
620 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000621 goto rx_processing_done;
622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Sascha Hauer22f6b862009-04-15 01:32:18 +0000624 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100625 ndev->stats.rx_packets++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000626 pkt_len = bdp->cbd_datlen;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100627 ndev->stats.rx_bytes += pkt_len;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000628 data = (__u8*)__va(bdp->cbd_bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100630 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
631 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerccdc4f12009-01-28 23:03:09 +0000632
Shawn Guob5680e02011-01-05 21:13:13 +0000633 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
634 swap_buffer(data, pkt_len);
635
Sascha Hauer22f6b862009-04-15 01:32:18 +0000636 /* This does 16 byte alignment, exactly what we need.
637 * The packet length includes FCS, but we don't want to
638 * include that when passing upstream as it messes up
639 * bridging applications.
640 */
Sascha Hauer85498892009-04-15 01:32:21 +0000641 skb = dev_alloc_skb(pkt_len - 4 + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Sascha Hauer85498892009-04-15 01:32:21 +0000643 if (unlikely(!skb)) {
Sascha Hauer22f6b862009-04-15 01:32:18 +0000644 printk("%s: Memory squeeze, dropping packet.\n",
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100645 ndev->name);
646 ndev->stats.rx_dropped++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000647 } else {
Sascha Hauer85498892009-04-15 01:32:21 +0000648 skb_reserve(skb, NET_IP_ALIGN);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000649 skb_put(skb, pkt_len - 4); /* Make room */
650 skb_copy_to_linear_data(skb, data, pkt_len - 4);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100651 skb->protocol = eth_type_trans(skb, ndev);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000652 netif_rx(skb);
653 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000654
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100655 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, data,
656 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000657rx_processing_done:
658 /* Clear the status flags for this buffer */
659 status &= ~BD_ENET_RX_STATS;
660
661 /* Mark the buffer empty */
662 status |= BD_ENET_RX_EMPTY;
663 bdp->cbd_sc = status;
664
665 /* Update BD pointer to next entry */
666 if (status & BD_ENET_RX_WRAP)
667 bdp = fep->rx_bd_base;
668 else
669 bdp++;
670 /* Doing this here will keep the FEC running while we process
671 * incoming frames. On a heavily loaded network, we should be
672 * able to keep up at the expense of system resources.
673 */
674 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000676 fep->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000678 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
Uwe Kleine-König45993652011-01-19 20:47:04 +0100681static irqreturn_t
682fec_enet_interrupt(int irq, void *dev_id)
683{
684 struct net_device *ndev = dev_id;
685 struct fec_enet_private *fep = netdev_priv(ndev);
686 uint int_events;
687 irqreturn_t ret = IRQ_NONE;
688
689 do {
690 int_events = readl(fep->hwp + FEC_IEVENT);
691 writel(int_events, fep->hwp + FEC_IEVENT);
692
693 if (int_events & FEC_ENET_RXF) {
694 ret = IRQ_HANDLED;
695 fec_enet_rx(ndev);
696 }
697
698 /* Transmit OK, or non-fatal error. Update the buffer
699 * descriptors. FEC handles all errors, we just discover
700 * them as part of the transmit process.
701 */
702 if (int_events & FEC_ENET_TXF) {
703 ret = IRQ_HANDLED;
704 fec_enet_tx(ndev);
705 }
706
707 if (int_events & FEC_ENET_MII) {
708 ret = IRQ_HANDLED;
709 complete(&fep->mdio_done);
710 }
711 } while (int_events);
712
713 return ret;
714}
715
716
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718/* ------------------------------------------------------------------------- */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100719static void __inline__ fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100721 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo49da97d2011-01-05 21:13:11 +0000722 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000723 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Shawn Guo49da97d2011-01-05 21:13:11 +0000725 /*
726 * try to get mac address in following order:
727 *
728 * 1) module parameter via kernel command line in form
729 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
730 */
731 iap = macaddr;
732
733 /*
734 * 2) from flash or fuse (via platform data)
735 */
736 if (!is_valid_ether_addr(iap)) {
737#ifdef CONFIG_M5272
738 if (FEC_FLASHMAC)
739 iap = (unsigned char *)FEC_FLASHMAC;
740#else
741 if (pdata)
742 memcpy(iap, pdata->mac, ETH_ALEN);
743#endif
744 }
745
746 /*
747 * 3) FEC mac registers set by bootloader
748 */
749 if (!is_valid_ether_addr(iap)) {
750 *((unsigned long *) &tmpaddr[0]) =
751 be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
752 *((unsigned short *) &tmpaddr[4]) =
753 be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 iap = &tmpaddr[0];
755 }
756
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100757 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Shawn Guo49da97d2011-01-05 21:13:11 +0000759 /* Adjust MAC if using macaddr */
760 if (iap == macaddr)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100761 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->pdev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764/* ------------------------------------------------------------------------- */
765
Bryan Wue6b043d2010-03-31 02:10:44 +0000766/*
767 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100769static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100771 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000772 struct phy_device *phy_dev = fep->phy_dev;
773 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Bryan Wue6b043d2010-03-31 02:10:44 +0000775 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Bryan Wue6b043d2010-03-31 02:10:44 +0000777 spin_lock_irqsave(&fep->hw_lock, flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400778
Bryan Wue6b043d2010-03-31 02:10:44 +0000779 /* Prevent a state halted on mii error */
780 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
781 phy_dev->state = PHY_RESUMING;
782 goto spin_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
Bryan Wue6b043d2010-03-31 02:10:44 +0000784
785 /* Duplex link change */
786 if (phy_dev->link) {
787 if (fep->full_duplex != phy_dev->duplex) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100788 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000789 status_change = 1;
790 }
791 }
792
793 /* Link on or off change */
794 if (phy_dev->link != fep->link) {
795 fep->link = phy_dev->link;
796 if (phy_dev->link)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100797 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000798 else
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100799 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000800 status_change = 1;
801 }
802
803spin_unlock:
804 spin_unlock_irqrestore(&fep->hw_lock, flags);
805
806 if (status_change)
807 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Bryan Wue6b043d2010-03-31 02:10:44 +0000810static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Bryan Wue6b043d2010-03-31 02:10:44 +0000812 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000813 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000814
815 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000816 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000817
818 /* start a read op */
819 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
820 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
821 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
822
823 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000824 time_left = wait_for_completion_timeout(&fep->mdio_done,
825 usecs_to_jiffies(FEC_MII_TIMEOUT));
826 if (time_left == 0) {
827 fep->mii_timeout = 1;
828 printk(KERN_ERR "FEC: MDIO read timeout\n");
829 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000830 }
831
832 /* return value */
833 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
834}
835
836static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
837 u16 value)
838{
839 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000840 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000841
842 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000843 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000844
Shawn Guo862f0982011-01-05 21:13:09 +0000845 /* start a write op */
846 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +0000847 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
848 FEC_MMFR_TA | FEC_MMFR_DATA(value),
849 fep->hwp + FEC_MII_DATA);
850
851 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000852 time_left = wait_for_completion_timeout(&fep->mdio_done,
853 usecs_to_jiffies(FEC_MII_TIMEOUT));
854 if (time_left == 0) {
855 fep->mii_timeout = 1;
856 printk(KERN_ERR "FEC: MDIO write timeout\n");
857 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000858 }
859
860 return 0;
861}
862
863static int fec_enet_mdio_reset(struct mii_bus *bus)
864{
865 return 0;
866}
867
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100868static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +0000869{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100870 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000871 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000872 char mdio_bus_id[MII_BUS_ID_SIZE];
873 char phy_name[MII_BUS_ID_SIZE + 3];
874 int phy_id;
Shawn Guob5680e02011-01-05 21:13:13 +0000875 int dev_id = fep->pdev->id;
Bryan Wue6b043d2010-03-31 02:10:44 +0000876
Bryan Wu418bd0d2010-05-28 03:40:39 -0700877 fep->phy_dev = NULL;
878
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000879 /* check for attached phy */
880 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
881 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
882 continue;
883 if (fep->mii_bus->phy_map[phy_id] == NULL)
884 continue;
885 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
886 continue;
Shawn Guob5680e02011-01-05 21:13:13 +0000887 if (dev_id--)
888 continue;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000889 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
890 break;
Bryan Wue6b043d2010-03-31 02:10:44 +0000891 }
892
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000893 if (phy_id >= PHY_MAX_ADDR) {
894 printk(KERN_INFO "%s: no PHY, assuming direct connection "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100895 "to switch\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000896 strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE);
897 phy_id = 0;
898 }
899
900 snprintf(phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT, mdio_bus_id, phy_id);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100901 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link, 0,
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000902 PHY_INTERFACE_MODE_MII);
903 if (IS_ERR(phy_dev)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100904 printk(KERN_ERR "%s: could not attach to PHY\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000905 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000906 }
907
908 /* mask with MAC supported features */
909 phy_dev->supported &= PHY_BASIC_FEATURES;
910 phy_dev->advertising = phy_dev->supported;
911
912 fep->phy_dev = phy_dev;
913 fep->link = 0;
914 fep->full_duplex = 0;
915
Bryan Wu418bd0d2010-05-28 03:40:39 -0700916 printk(KERN_INFO "%s: Freescale FEC PHY driver [%s] "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100917 "(mii_bus:phy_addr=%s, irq=%d)\n", ndev->name,
Bryan Wu418bd0d2010-05-28 03:40:39 -0700918 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
919 fep->phy_dev->irq);
920
Bryan Wue6b043d2010-03-31 02:10:44 +0000921 return 0;
922}
923
924static int fec_enet_mii_init(struct platform_device *pdev)
925{
Shawn Guob5680e02011-01-05 21:13:13 +0000926 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100927 struct net_device *ndev = platform_get_drvdata(pdev);
928 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000929 const struct platform_device_id *id_entry =
930 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000931 int err = -ENXIO, i;
932
Shawn Guob5680e02011-01-05 21:13:13 +0000933 /*
934 * The dual fec interfaces are not equivalent with enet-mac.
935 * Here are the differences:
936 *
937 * - fec0 supports MII & RMII modes while fec1 only supports RMII
938 * - fec0 acts as the 1588 time master while fec1 is slave
939 * - external phys can only be configured by fec0
940 *
941 * That is to say fec1 can not work independently. It only works
942 * when fec0 is working. The reason behind this design is that the
943 * second interface is added primarily for Switch mode.
944 *
945 * Because of the last point above, both phys are attached on fec0
946 * mdio interface in board design, and need to be configured by
947 * fec0 mii_bus.
948 */
949 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && pdev->id) {
950 /* fec1 uses fec0 mii_bus */
951 fep->mii_bus = fec0_mii_bus;
952 return 0;
953 }
954
Bryan Wue6b043d2010-03-31 02:10:44 +0000955 fep->mii_timeout = 0;
956
957 /*
958 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
959 */
960 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk), 5000000) << 1;
961 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
962
963 fep->mii_bus = mdiobus_alloc();
964 if (fep->mii_bus == NULL) {
965 err = -ENOMEM;
966 goto err_out;
967 }
968
969 fep->mii_bus->name = "fec_enet_mii_bus";
970 fep->mii_bus->read = fec_enet_mdio_read;
971 fep->mii_bus->write = fec_enet_mdio_write;
972 fep->mii_bus->reset = fec_enet_mdio_reset;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000973 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%x", pdev->id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +0000974 fep->mii_bus->priv = fep;
975 fep->mii_bus->parent = &pdev->dev;
976
977 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
978 if (!fep->mii_bus->irq) {
979 err = -ENOMEM;
980 goto err_out_free_mdiobus;
981 }
982
983 for (i = 0; i < PHY_MAX_ADDR; i++)
984 fep->mii_bus->irq[i] = PHY_POLL;
985
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100986 platform_set_drvdata(ndev, fep->mii_bus);
Bryan Wue6b043d2010-03-31 02:10:44 +0000987
988 if (mdiobus_register(fep->mii_bus))
989 goto err_out_free_mdio_irq;
990
Shawn Guob5680e02011-01-05 21:13:13 +0000991 /* save fec0 mii_bus */
992 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
993 fec0_mii_bus = fep->mii_bus;
994
Bryan Wue6b043d2010-03-31 02:10:44 +0000995 return 0;
996
Bryan Wue6b043d2010-03-31 02:10:44 +0000997err_out_free_mdio_irq:
998 kfree(fep->mii_bus->irq);
999err_out_free_mdiobus:
1000 mdiobus_free(fep->mii_bus);
1001err_out:
1002 return err;
1003}
1004
1005static void fec_enet_mii_remove(struct fec_enet_private *fep)
1006{
1007 if (fep->phy_dev)
1008 phy_disconnect(fep->phy_dev);
1009 mdiobus_unregister(fep->mii_bus);
1010 kfree(fep->mii_bus->irq);
1011 mdiobus_free(fep->mii_bus);
1012}
1013
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001014static int fec_enet_get_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001015 struct ethtool_cmd *cmd)
1016{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001017 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001018 struct phy_device *phydev = fep->phy_dev;
1019
1020 if (!phydev)
1021 return -ENODEV;
1022
1023 return phy_ethtool_gset(phydev, cmd);
1024}
1025
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001026static int fec_enet_set_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001027 struct ethtool_cmd *cmd)
1028{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001029 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001030 struct phy_device *phydev = fep->phy_dev;
1031
1032 if (!phydev)
1033 return -ENODEV;
1034
1035 return phy_ethtool_sset(phydev, cmd);
1036}
1037
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001038static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001039 struct ethtool_drvinfo *info)
1040{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001041 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Bryan Wue6b043d2010-03-31 02:10:44 +00001043 strcpy(info->driver, fep->pdev->dev.driver->name);
1044 strcpy(info->version, "Revision: 1.0");
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001045 strcpy(info->bus_info, dev_name(&ndev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
Bryan Wue6b043d2010-03-31 02:10:44 +00001047
1048static struct ethtool_ops fec_enet_ethtool_ops = {
1049 .get_settings = fec_enet_get_settings,
1050 .set_settings = fec_enet_set_settings,
1051 .get_drvinfo = fec_enet_get_drvinfo,
1052 .get_link = ethtool_op_get_link,
1053};
1054
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001055static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00001056{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001057 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001058 struct phy_device *phydev = fep->phy_dev;
1059
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001060 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00001061 return -EINVAL;
1062
1063 if (!phydev)
1064 return -ENODEV;
1065
Richard Cochran28b04112010-07-17 08:48:55 +00001066 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00001067}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001069static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001070{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001071 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001072 int i;
1073 struct sk_buff *skb;
1074 struct bufdesc *bdp;
1075
1076 bdp = fep->rx_bd_base;
1077 for (i = 0; i < RX_RING_SIZE; i++) {
1078 skb = fep->rx_skbuff[i];
1079
1080 if (bdp->cbd_bufaddr)
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001081 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001082 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1083 if (skb)
1084 dev_kfree_skb(skb);
1085 bdp++;
1086 }
1087
1088 bdp = fep->tx_bd_base;
1089 for (i = 0; i < TX_RING_SIZE; i++)
1090 kfree(fep->tx_bounce[i]);
1091}
1092
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001093static int fec_enet_alloc_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001094{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001095 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001096 int i;
1097 struct sk_buff *skb;
1098 struct bufdesc *bdp;
1099
1100 bdp = fep->rx_bd_base;
1101 for (i = 0; i < RX_RING_SIZE; i++) {
1102 skb = dev_alloc_skb(FEC_ENET_RX_FRSIZE);
1103 if (!skb) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001104 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001105 return -ENOMEM;
1106 }
1107 fep->rx_skbuff[i] = skb;
1108
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001109 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, skb->data,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001110 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1111 bdp->cbd_sc = BD_ENET_RX_EMPTY;
1112 bdp++;
1113 }
1114
1115 /* Set the last buffer to wrap. */
1116 bdp--;
1117 bdp->cbd_sc |= BD_SC_WRAP;
1118
1119 bdp = fep->tx_bd_base;
1120 for (i = 0; i < TX_RING_SIZE; i++) {
1121 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
1122
1123 bdp->cbd_sc = 0;
1124 bdp->cbd_bufaddr = 0;
1125 bdp++;
1126 }
1127
1128 /* Set the last buffer to wrap. */
1129 bdp--;
1130 bdp->cbd_sc |= BD_SC_WRAP;
1131
1132 return 0;
1133}
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001136fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001138 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001139 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141 /* I should reset the ring buffers here, but I don't yet know
1142 * a simple way to do that.
1143 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001145 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001146 if (ret)
1147 return ret;
1148
Bryan Wu418bd0d2010-05-28 03:40:39 -07001149 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001150 ret = fec_enet_mii_probe(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001151 if (ret) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001152 fec_enet_free_buffers(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001153 return ret;
1154 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001155 phy_start(fep->phy_dev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001156 netif_start_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 fep->opened = 1;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001158 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
1161static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001162fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001164 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Sascha Hauer22f6b862009-04-15 01:32:18 +00001166 /* Don't know what to do yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 fep->opened = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001168 netif_stop_queue(ndev);
1169 fec_stop(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001171 if (fep->phy_dev) {
1172 phy_stop(fep->phy_dev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001173 phy_disconnect(fep->phy_dev);
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001174 }
Bryan Wu418bd0d2010-05-28 03:40:39 -07001175
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001176 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 return 0;
1179}
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181/* Set or clear the multicast filter for this adaptor.
1182 * Skeleton taken from sunlance driver.
1183 * The CPM Ethernet implementation allows Multicast as well as individual
1184 * MAC address filtering. Some of the drivers check to make sure it is
1185 * a group multicast address, and discard those that are not. I guess I
1186 * will do the same for now, but just remove the test if you want
1187 * individual filtering as well (do the upper net layers want or support
1188 * this kind of feature?).
1189 */
1190
1191#define HASH_BITS 6 /* #bits in hash */
1192#define CRC32_POLY 0xEDB88320
1193
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001194static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001196 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001197 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00001198 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 unsigned char hash;
1200
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001201 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00001202 tmp = readl(fep->hwp + FEC_R_CNTRL);
1203 tmp |= 0x8;
1204 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00001205 return;
1206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Sascha Hauer4e831832009-04-15 01:32:19 +00001208 tmp = readl(fep->hwp + FEC_R_CNTRL);
1209 tmp &= ~0x8;
1210 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001211
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001212 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001213 /* Catch all multicast addresses, so set the
1214 * filter to all 1's
1215 */
1216 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1217 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Sascha Hauer4e831832009-04-15 01:32:19 +00001219 return;
1220 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001221
Sascha Hauer4e831832009-04-15 01:32:19 +00001222 /* Clear filter and add the addresses in hash register
1223 */
1224 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1225 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001227 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001228 /* Only support group multicast for now */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001229 if (!(ha->addr[0] & 1))
Sascha Hauer4e831832009-04-15 01:32:19 +00001230 continue;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001231
Sascha Hauer4e831832009-04-15 01:32:19 +00001232 /* calculate crc32 value of mac address */
1233 crc = 0xffffffff;
1234
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001235 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001236 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00001237 for (bit = 0; bit < 8; bit++, data >>= 1) {
1238 crc = (crc >> 1) ^
1239 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241 }
Sascha Hauer4e831832009-04-15 01:32:19 +00001242
1243 /* only upper 6 bits (HASH_BITS) are used
1244 * which point to specific bit in he hash registers
1245 */
1246 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1247
1248 if (hash > 31) {
1249 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1250 tmp |= 1 << (hash - 32);
1251 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1252 } else {
1253 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1254 tmp |= 1 << hash;
1255 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
1258}
1259
Sascha Hauer22f6b862009-04-15 01:32:18 +00001260/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00001261static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001262fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001264 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00001265 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Sascha Hauer009fda82009-04-15 01:32:23 +00001267 if (!is_valid_ether_addr(addr->sa_data))
1268 return -EADDRNOTAVAIL;
1269
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001270 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
Sascha Hauer009fda82009-04-15 01:32:23 +00001271
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001272 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
1273 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00001274 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001275 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07001276 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00001277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Sascha Hauer009fda82009-04-15 01:32:23 +00001280static const struct net_device_ops fec_netdev_ops = {
1281 .ndo_open = fec_enet_open,
1282 .ndo_stop = fec_enet_close,
1283 .ndo_start_xmit = fec_enet_start_xmit,
1284 .ndo_set_multicast_list = set_multicast_list,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00001285 .ndo_change_mtu = eth_change_mtu,
Sascha Hauer009fda82009-04-15 01:32:23 +00001286 .ndo_validate_addr = eth_validate_addr,
1287 .ndo_tx_timeout = fec_timeout,
1288 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001289 .ndo_do_ioctl = fec_enet_ioctl,
Sascha Hauer009fda82009-04-15 01:32:23 +00001290};
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /*
1293 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00001294 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001296static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001298 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001299 struct bufdesc *cbd_base;
Rob Herring633e7532010-02-05 08:56:20 +00001300 struct bufdesc *bdp;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001301 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001303 /* Allocate memory for buffer descriptors. */
1304 cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
1305 GFP_KERNEL);
1306 if (!cbd_base) {
Greg Ungerer562d2f82005-11-07 14:09:50 +10001307 printk("FEC: allocate descriptor memory failed?\n");
1308 return -ENOMEM;
1309 }
1310
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001311 spin_lock_init(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001312
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001313 fep->netdev = ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Shawn Guo49da97d2011-01-05 21:13:11 +00001315 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001316 fec_get_mac(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001318 /* Set receive and transmit descriptor base. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 fep->rx_bd_base = cbd_base;
1320 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1321
Sascha Hauer22f6b862009-04-15 01:32:18 +00001322 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001323 ndev->watchdog_timeo = TX_TIMEOUT;
1324 ndev->netdev_ops = &fec_netdev_ops;
1325 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00001326
1327 /* Initialize the receive buffer descriptors. */
1328 bdp = fep->rx_bd_base;
1329 for (i = 0; i < RX_RING_SIZE; i++) {
1330
1331 /* Initialize the BD for every fragment in the page. */
1332 bdp->cbd_sc = 0;
1333 bdp++;
1334 }
1335
1336 /* Set the last buffer to wrap */
1337 bdp--;
1338 bdp->cbd_sc |= BD_SC_WRAP;
1339
1340 /* ...and the same for transmit */
1341 bdp = fep->tx_bd_base;
1342 for (i = 0; i < TX_RING_SIZE; i++) {
1343
1344 /* Initialize the BD for every fragment in the page. */
1345 bdp->cbd_sc = 0;
1346 bdp->cbd_bufaddr = 0;
1347 bdp++;
1348 }
1349
1350 /* Set the last buffer to wrap */
1351 bdp--;
1352 bdp->cbd_sc |= BD_SC_WRAP;
1353
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001354 fec_restart(ndev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 return 0;
1357}
1358
Sascha Haueread73182009-01-28 23:03:11 +00001359static int __devinit
1360fec_probe(struct platform_device *pdev)
1361{
1362 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001363 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00001364 struct net_device *ndev;
1365 int i, irq, ret = 0;
1366 struct resource *r;
1367
1368 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1369 if (!r)
1370 return -ENXIO;
1371
1372 r = request_mem_region(r->start, resource_size(r), pdev->name);
1373 if (!r)
1374 return -EBUSY;
1375
1376 /* Init network device */
1377 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001378 if (!ndev) {
1379 ret = -ENOMEM;
1380 goto failed_alloc_etherdev;
1381 }
Sascha Haueread73182009-01-28 23:03:11 +00001382
1383 SET_NETDEV_DEV(ndev, &pdev->dev);
1384
1385 /* setup board info structure */
1386 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001387
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001388 fep->hwp = ioremap(r->start, resource_size(r));
Bryan Wue6b043d2010-03-31 02:10:44 +00001389 fep->pdev = pdev;
Sascha Haueread73182009-01-28 23:03:11 +00001390
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001391 if (!fep->hwp) {
Sascha Haueread73182009-01-28 23:03:11 +00001392 ret = -ENOMEM;
1393 goto failed_ioremap;
1394 }
1395
1396 platform_set_drvdata(pdev, ndev);
1397
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001398 pdata = pdev->dev.platform_data;
1399 if (pdata)
1400 fep->phy_interface = pdata->phy;
1401
Sascha Haueread73182009-01-28 23:03:11 +00001402 /* This device has up to three irqs on some platforms */
1403 for (i = 0; i < 3; i++) {
1404 irq = platform_get_irq(pdev, i);
1405 if (i && irq < 0)
1406 break;
1407 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1408 if (ret) {
Uwe Kleine-Königb2b09ad2011-01-13 21:49:05 +01001409 while (--i >= 0) {
Sascha Haueread73182009-01-28 23:03:11 +00001410 irq = platform_get_irq(pdev, i);
1411 free_irq(irq, ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001412 }
1413 goto failed_irq;
1414 }
1415 }
1416
1417 fep->clk = clk_get(&pdev->dev, "fec_clk");
1418 if (IS_ERR(fep->clk)) {
1419 ret = PTR_ERR(fep->clk);
1420 goto failed_clk;
1421 }
1422 clk_enable(fep->clk);
1423
Shawn Guo8649a232011-01-05 21:13:10 +00001424 ret = fec_enet_init(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001425 if (ret)
1426 goto failed_init;
1427
Bryan Wue6b043d2010-03-31 02:10:44 +00001428 ret = fec_enet_mii_init(pdev);
1429 if (ret)
1430 goto failed_mii_init;
1431
Oskar Schirmer03c698c2010-10-07 02:30:30 +00001432 /* Carrier starts down, phylib will bring it up */
1433 netif_carrier_off(ndev);
1434
Sascha Haueread73182009-01-28 23:03:11 +00001435 ret = register_netdev(ndev);
1436 if (ret)
1437 goto failed_register;
1438
1439 return 0;
1440
1441failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00001442 fec_enet_mii_remove(fep);
1443failed_mii_init:
Sascha Haueread73182009-01-28 23:03:11 +00001444failed_init:
1445 clk_disable(fep->clk);
1446 clk_put(fep->clk);
1447failed_clk:
1448 for (i = 0; i < 3; i++) {
1449 irq = platform_get_irq(pdev, i);
1450 if (irq > 0)
1451 free_irq(irq, ndev);
1452 }
1453failed_irq:
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001454 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001455failed_ioremap:
1456 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001457failed_alloc_etherdev:
1458 release_mem_region(r->start, resource_size(r));
Sascha Haueread73182009-01-28 23:03:11 +00001459
1460 return ret;
1461}
1462
1463static int __devexit
1464fec_drv_remove(struct platform_device *pdev)
1465{
1466 struct net_device *ndev = platform_get_drvdata(pdev);
1467 struct fec_enet_private *fep = netdev_priv(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001468 struct resource *r;
Sascha Haueread73182009-01-28 23:03:11 +00001469
Sascha Haueread73182009-01-28 23:03:11 +00001470 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001471 fec_enet_mii_remove(fep);
Sascha Haueread73182009-01-28 23:03:11 +00001472 clk_disable(fep->clk);
1473 clk_put(fep->clk);
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001474 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001475 unregister_netdev(ndev);
1476 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001477
1478 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1479 BUG_ON(!r);
1480 release_mem_region(r->start, resource_size(r));
1481
Uwe Kleine-Königb3cde362011-01-25 18:03:37 +01001482 platform_set_drvdata(pdev, NULL);
1483
Sascha Haueread73182009-01-28 23:03:11 +00001484 return 0;
1485}
1486
Denis Kirjanov59d42892010-06-02 09:27:04 +00001487#ifdef CONFIG_PM
Sascha Haueread73182009-01-28 23:03:11 +00001488static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001489fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001490{
Eric Benard87cad5c2010-06-18 04:19:54 +00001491 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001492 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001493
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001494 if (netif_running(ndev)) {
1495 fec_stop(ndev);
1496 netif_device_detach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001497 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001498 clk_disable(fep->clk);
1499
Sascha Haueread73182009-01-28 23:03:11 +00001500 return 0;
1501}
1502
1503static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001504fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001505{
Eric Benard87cad5c2010-06-18 04:19:54 +00001506 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001507 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001508
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001509 clk_enable(fep->clk);
1510 if (netif_running(ndev)) {
1511 fec_restart(ndev, fep->full_duplex);
1512 netif_device_attach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001513 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001514
Sascha Haueread73182009-01-28 23:03:11 +00001515 return 0;
1516}
1517
Denis Kirjanov59d42892010-06-02 09:27:04 +00001518static const struct dev_pm_ops fec_pm_ops = {
1519 .suspend = fec_suspend,
1520 .resume = fec_resume,
1521 .freeze = fec_suspend,
1522 .thaw = fec_resume,
1523 .poweroff = fec_suspend,
1524 .restore = fec_resume,
1525};
Eric Benard87cad5c2010-06-18 04:19:54 +00001526#endif
Denis Kirjanov59d42892010-06-02 09:27:04 +00001527
Sascha Haueread73182009-01-28 23:03:11 +00001528static struct platform_driver fec_driver = {
1529 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00001530 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00001531 .owner = THIS_MODULE,
1532#ifdef CONFIG_PM
1533 .pm = &fec_pm_ops,
1534#endif
Sascha Haueread73182009-01-28 23:03:11 +00001535 },
Shawn Guob5680e02011-01-05 21:13:13 +00001536 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00001537 .probe = fec_probe,
1538 .remove = __devexit_p(fec_drv_remove),
Sascha Haueread73182009-01-28 23:03:11 +00001539};
1540
1541static int __init
1542fec_enet_module_init(void)
1543{
1544 printk(KERN_INFO "FEC Ethernet Driver\n");
1545
1546 return platform_driver_register(&fec_driver);
1547}
1548
1549static void __exit
1550fec_enet_cleanup(void)
1551{
1552 platform_driver_unregister(&fec_driver);
1553}
1554
1555module_exit(fec_enet_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556module_init(fec_enet_module_init);
1557
1558MODULE_LICENSE("GPL");