blob: ed137bbbcf619f0df6b4e0ca6f7d79afb02e00d9 [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)
Shawn Guo0ca1e292011-07-01 18:11:22 +080069/* Controller uses gasket */
70#define FEC_QUIRK_USE_GASKET (1 << 2)
Shawn Guob5680e02011-01-05 21:13:13 +000071
72static struct platform_device_id fec_devtype[] = {
73 {
Shawn Guo0ca1e292011-07-01 18:11:22 +080074 /* keep it for coldfire */
Shawn Guob5680e02011-01-05 21:13:13 +000075 .name = DRIVER_NAME,
76 .driver_data = 0,
77 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +080078 .name = "imx25-fec",
79 .driver_data = FEC_QUIRK_USE_GASKET,
80 }, {
81 .name = "imx27-fec",
82 .driver_data = 0,
83 }, {
Shawn Guob5680e02011-01-05 21:13:13 +000084 .name = "imx28-fec",
85 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME,
Shawn Guo0ca1e292011-07-01 18:11:22 +080086 }, {
87 /* sentinel */
88 }
Shawn Guob5680e02011-01-05 21:13:13 +000089};
Shawn Guo0ca1e292011-07-01 18:11:22 +080090MODULE_DEVICE_TABLE(platform, fec_devtype);
Shawn Guob5680e02011-01-05 21:13:13 +000091
Shawn Guo49da97d2011-01-05 21:13:11 +000092static unsigned char macaddr[ETH_ALEN];
93module_param_array(macaddr, byte, NULL, 0);
94MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
95
Greg Ungerer87f4abb2008-06-06 15:55:36 +100096#if defined(CONFIG_M5272)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/*
98 * Some hardware gets it MAC address out of local flash memory.
99 * if this is non-zero then assume it is the address to get MAC from.
100 */
101#if defined(CONFIG_NETtel)
102#define FEC_FLASHMAC 0xf0006006
103#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
104#define FEC_FLASHMAC 0xf0006000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#elif defined(CONFIG_CANCam)
106#define FEC_FLASHMAC 0xf0020000
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000107#elif defined (CONFIG_M5272C3)
108#define FEC_FLASHMAC (0xffe04000 + 4)
109#elif defined(CONFIG_MOD5272)
110#define FEC_FLASHMAC 0xffc0406b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#else
112#define FEC_FLASHMAC 0
113#endif
Greg Ungerer43be6362009-02-26 22:42:51 -0800114#endif /* CONFIG_M5272 */
Sascha Haueread73182009-01-28 23:03:11 +0000115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/* The number of Tx and Rx buffers. These are allocated from the page
117 * pool. The code may assume these are power of two, so it it best
118 * to keep them that size.
119 * We don't need to allocate pages for the transmitter. We just use
120 * the skbuffer directly.
121 */
122#define FEC_ENET_RX_PAGES 8
123#define FEC_ENET_RX_FRSIZE 2048
124#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE)
125#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
126#define FEC_ENET_TX_FRSIZE 2048
127#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
128#define TX_RING_SIZE 16 /* Must be power of two */
129#define TX_RING_MOD_MASK 15 /* for this to work */
130
Greg Ungerer562d2f82005-11-07 14:09:50 +1000131#if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
Matt Waddel6b265292006-06-27 13:10:56 +1000132#error "FEC: descriptor ring size constants too large"
Greg Ungerer562d2f82005-11-07 14:09:50 +1000133#endif
134
Sascha Hauer22f6b862009-04-15 01:32:18 +0000135/* Interrupt events/masks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
137#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
138#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */
139#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */
140#define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */
141#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */
142#define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */
143#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */
144#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */
145#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */
146
Wolfram Sang4bee1f92010-07-21 02:51:13 +0000147#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII)
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/* The FEC stores dest/src/type, data, and checksum for receive packets.
150 */
151#define PKT_MAXBUF_SIZE 1518
152#define PKT_MINBUF_SIZE 64
153#define PKT_MAXBLR_SIZE 1520
154
155
156/*
Matt Waddel6b265292006-06-27 13:10:56 +1000157 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * size bits. Other FEC hardware does not, so we need to take that into
159 * account when setting it.
160 */
Greg Ungerer562d2f82005-11-07 14:09:50 +1000161#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Uwe Kleine-König085e79e2011-01-17 09:52:18 +0100162 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
164#else
165#define OPT_FRAME_SIZE 0
166#endif
167
168/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and
169 * tx_bd_base always point to the base of the buffer descriptors. The
170 * cur_rx and cur_tx point to the currently available buffer.
171 * The dirty_tx tracks the current buffer that is being sent by the
172 * controller. The cur_tx and dirty_tx are equal under both completely
173 * empty and completely full conditions. The empty/ready indicator in
174 * the buffer descriptor determines the actual condition.
175 */
176struct fec_enet_private {
177 /* Hardware registers of the FEC device */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000178 void __iomem *hwp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Greg Ungerercb84d6e2007-07-30 16:29:09 +1000180 struct net_device *netdev;
181
Sascha Haueread73182009-01-28 23:03:11 +0000182 struct clk *clk;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
185 unsigned char *tx_bounce[TX_RING_SIZE];
186 struct sk_buff* tx_skbuff[TX_RING_SIZE];
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000187 struct sk_buff* rx_skbuff[RX_RING_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 ushort skb_cur;
189 ushort skb_dirty;
190
Sascha Hauer22f6b862009-04-15 01:32:18 +0000191 /* CPM dual port RAM relative addresses */
Sascha Hauer4661e752009-01-28 23:03:07 +0000192 dma_addr_t bd_dma;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000193 /* Address of Rx and Tx buffers */
Sascha Hauer2e285322009-04-15 01:32:16 +0000194 struct bufdesc *rx_bd_base;
195 struct bufdesc *tx_bd_base;
196 /* The next free ring entry */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100197 struct bufdesc *cur_rx, *cur_tx;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000198 /* The ring entries to be free()ed */
Sascha Hauer2e285322009-04-15 01:32:16 +0000199 struct bufdesc *dirty_tx;
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 uint tx_full;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000202 /* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
203 spinlock_t hw_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100205 struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 int opened;
Bryan Wue6b043d2010-03-31 02:10:44 +0000208
209 /* Phylib and MDIO interface */
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +0100210 struct mii_bus *mii_bus;
211 struct phy_device *phy_dev;
212 int mii_timeout;
213 uint phy_speed;
Baruch Siach5eb32bd2010-05-24 00:36:13 -0700214 phy_interface_t phy_interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 int link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 int full_duplex;
Baruch Siach97b72e42010-07-11 21:12:51 +0000217 struct completion mdio_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
Bryan Wue6b043d2010-03-31 02:10:44 +0000220/* FEC MII MMFR bits definition */
221#define FEC_MMFR_ST (1 << 30)
222#define FEC_MMFR_OP_READ (2 << 28)
223#define FEC_MMFR_OP_WRITE (1 << 28)
224#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
225#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
226#define FEC_MMFR_TA (2 << 16)
227#define FEC_MMFR_DATA(v) (v & 0xffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Baruch Siach97b72e42010-07-11 21:12:51 +0000229#define FEC_MII_TIMEOUT 1000 /* us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Sascha Hauer22f6b862009-04-15 01:32:18 +0000231/* Transmitter timeout */
232#define TX_TIMEOUT (2 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Shawn Guob5680e02011-01-05 21:13:13 +0000234static void *swap_buffer(void *bufaddr, int len)
235{
236 int i;
237 unsigned int *buf = bufaddr;
238
239 for (i = 0; i < (len + 3) / 4; i++, buf++)
240 *buf = cpu_to_be32(*buf);
241
242 return bufaddr;
243}
244
Denis Kirjanovc7621cb2010-06-02 09:15:47 +0000245static netdev_tx_t
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100246fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100248 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000249 const struct platform_device_id *id_entry =
250 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000251 struct bufdesc *bdp;
Greg Ungerer9555b312009-08-06 17:58:18 +0000252 void *bufaddr;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000253 unsigned short status;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000254 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (!fep->link) {
257 /* Link is down or autonegotiation is in progress. */
Patrick McHardy5b548142009-06-12 06:22:29 +0000258 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000261 spin_lock_irqsave(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /* Fill in a Tx ring entry */
263 bdp = fep->cur_tx;
264
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000265 status = bdp->cbd_sc;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000266
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000267 if (status & BD_ENET_TX_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 /* Ooops. All transmit buffers are full. Bail out.
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100269 * This should not happen, since ndev->tbusy should be set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100271 printk("%s: tx queue full!.\n", ndev->name);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000272 spin_unlock_irqrestore(&fep->hw_lock, flags);
Patrick McHardy5b548142009-06-12 06:22:29 +0000273 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Sascha Hauer22f6b862009-04-15 01:32:18 +0000276 /* Clear all of the status flags */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000277 status &= ~BD_ENET_TX_STATS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Sascha Hauer22f6b862009-04-15 01:32:18 +0000279 /* Set buffer length and buffer pointer */
Greg Ungerer9555b312009-08-06 17:58:18 +0000280 bufaddr = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 bdp->cbd_datlen = skb->len;
282
283 /*
Sascha Hauer22f6b862009-04-15 01:32:18 +0000284 * On some FEC implementations data must be aligned on
285 * 4-byte boundaries. Use bounce buffers to copy data
286 * and get it aligned. Ugh.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 */
Greg Ungerer9555b312009-08-06 17:58:18 +0000288 if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 unsigned int index;
290 index = bdp - fep->tx_bd_base;
Uwe Kleine-König8a73b0b2011-01-13 21:34:31 +0100291 memcpy(fep->tx_bounce[index], skb->data, skb->len);
Greg Ungerer9555b312009-08-06 17:58:18 +0000292 bufaddr = fep->tx_bounce[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294
Shawn Guob5680e02011-01-05 21:13:13 +0000295 /*
296 * Some design made an incorrect assumption on endian mode of
297 * the system that it's running on. As the result, driver has to
298 * swap every frame going to and coming from the controller.
299 */
300 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
301 swap_buffer(bufaddr, skb->len);
302
Sascha Hauer22f6b862009-04-15 01:32:18 +0000303 /* Save skb pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 fep->tx_skbuff[fep->skb_cur] = skb;
305
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100306 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* Push the data cache so the CPM does not get stale memory
310 * data.
311 */
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100312 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000313 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000315 /* Send it on its way. Tell FEC it's ready, interrupt when done,
316 * it's the last BD of the frame, and to put the CRC on the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000318 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000320 bdp->cbd_sc = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 /* Trigger transmission start */
Sascha Hauerf44d6302009-04-15 03:11:30 +0000323 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Sascha Hauer22f6b862009-04-15 01:32:18 +0000325 /* If this was the last BD in the ring, start at the beginning again. */
326 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 bdp = fep->tx_bd_base;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000328 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 bdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 if (bdp == fep->dirty_tx) {
332 fep->tx_full = 1;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100333 netif_stop_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335
Sascha Hauer2e285322009-04-15 01:32:16 +0000336 fep->cur_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Richard Cochran18a03b92011-06-12 02:18:59 +0000338 skb_tx_timestamp(skb);
339
Richard Cochrana0087a32011-06-19 03:31:40 +0000340 spin_unlock_irqrestore(&fep->hw_lock, flags);
341
Patrick McHardy6ed10652009-06-23 06:03:08 +0000342 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Uwe Kleine-König45993652011-01-19 20:47:04 +0100345/* This function is called to start or restart the FEC during a link
346 * change. This only happens when switching between half and full
347 * duplex.
348 */
349static void
350fec_restart(struct net_device *ndev, int duplex)
351{
352 struct fec_enet_private *fep = netdev_priv(ndev);
353 const struct platform_device_id *id_entry =
354 platform_get_device_id(fep->pdev);
355 int i;
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100356 u32 temp_mac[2];
357 u32 rcntl = OPT_FRAME_SIZE | 0x04;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100358
359 /* Whack a reset. We should wait for this. */
360 writel(1, fep->hwp + FEC_ECNTRL);
361 udelay(10);
362
363 /*
364 * enet-mac reset will reset mac address registers too,
365 * so need to reconfigure it.
366 */
367 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
368 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
369 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
370 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
371 }
372
373 /* Clear any outstanding interrupt. */
374 writel(0xffc00000, fep->hwp + FEC_IEVENT);
375
376 /* Reset all multicast. */
377 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
378 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
379#ifndef CONFIG_M5272
380 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
381 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
382#endif
383
384 /* Set maximum receive buffer size. */
385 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
386
387 /* Set receive and transmit descriptor base. */
388 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
389 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc) * RX_RING_SIZE,
390 fep->hwp + FEC_X_DES_START);
391
392 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
393 fep->cur_rx = fep->rx_bd_base;
394
395 /* Reset SKB transmit buffers. */
396 fep->skb_cur = fep->skb_dirty = 0;
397 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
398 if (fep->tx_skbuff[i]) {
399 dev_kfree_skb_any(fep->tx_skbuff[i]);
400 fep->tx_skbuff[i] = NULL;
401 }
402 }
403
404 /* Enable MII mode */
405 if (duplex) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100406 /* FD enable */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100407 writel(0x04, fep->hwp + FEC_X_CNTRL);
408 } else {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100409 /* No Rcv on Xmit */
410 rcntl |= 0x02;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100411 writel(0x0, fep->hwp + FEC_X_CNTRL);
412 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100413
Uwe Kleine-König45993652011-01-19 20:47:04 +0100414 fep->full_duplex = duplex;
415
416 /* Set MII speed */
417 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
418
419 /*
420 * The phy interface and speed need to get configured
421 * differently on enet-mac.
422 */
423 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100424 /* Enable flow control and length check */
425 rcntl |= 0x40000000 | 0x00000020;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100426
427 /* MII or RMII */
428 if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100429 rcntl |= (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100430 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100431 rcntl &= ~(1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100432
433 /* 10M or 100M */
434 if (fep->phy_dev && fep->phy_dev->speed == SPEED_100)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100435 rcntl &= ~(1 << 9);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100436 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100437 rcntl |= (1 << 9);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100438
Uwe Kleine-König45993652011-01-19 20:47:04 +0100439 } else {
440#ifdef FEC_MIIGSK_ENR
Shawn Guo0ca1e292011-07-01 18:11:22 +0800441 if (id_entry->driver_data & FEC_QUIRK_USE_GASKET) {
Uwe Kleine-König45993652011-01-19 20:47:04 +0100442 /* disable the gasket and wait */
443 writel(0, fep->hwp + FEC_MIIGSK_ENR);
444 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
445 udelay(1);
446
447 /*
448 * configure the gasket:
449 * RMII, 50 MHz, no loopback, no echo
Shawn Guo0ca1e292011-07-01 18:11:22 +0800450 * MII, 25 MHz, no loopback, no echo
Uwe Kleine-König45993652011-01-19 20:47:04 +0100451 */
Shawn Guo0ca1e292011-07-01 18:11:22 +0800452 writel((fep->phy_interface == PHY_INTERFACE_MODE_RMII) ?
453 1 : 0, fep->hwp + FEC_MIIGSK_CFGR);
454
Uwe Kleine-König45993652011-01-19 20:47:04 +0100455
456 /* re-enable the gasket */
457 writel(2, fep->hwp + FEC_MIIGSK_ENR);
458 }
459#endif
460 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100461 writel(rcntl, fep->hwp + FEC_R_CNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100462
463 /* And last, enable the transmit and receive processing */
464 writel(2, fep->hwp + FEC_ECNTRL);
465 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
466
467 /* Enable interrupts we wish to service */
468 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
469}
470
471static void
472fec_stop(struct net_device *ndev)
473{
474 struct fec_enet_private *fep = netdev_priv(ndev);
475
476 /* We cannot expect a graceful transmit stop without link !!! */
477 if (fep->link) {
478 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
479 udelay(10);
480 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
481 printk("fec_stop : Graceful transmit stop did not complete !\n");
482 }
483
484 /* Whack a reset. We should wait for this. */
485 writel(1, fep->hwp + FEC_ECNTRL);
486 udelay(10);
487 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
488 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
489}
490
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100493fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100495 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100497 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100499 fec_restart(ndev, fep->full_duplex);
500 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100504fec_enet_tx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
506 struct fec_enet_private *fep;
Sascha Hauer2e285322009-04-15 01:32:16 +0000507 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000508 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 struct sk_buff *skb;
510
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100511 fep = netdev_priv(ndev);
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000512 spin_lock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 bdp = fep->dirty_tx;
514
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000515 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000516 if (bdp == fep->cur_tx && fep->tx_full == 0)
517 break;
518
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100519 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
520 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000521 bdp->cbd_bufaddr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 skb = fep->tx_skbuff[fep->skb_dirty];
524 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000525 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 BD_ENET_TX_RL | BD_ENET_TX_UN |
527 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100528 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000529 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100530 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000531 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100532 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000533 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100534 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000535 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100536 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000537 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100538 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100540 ndev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000543 if (status & BD_ENET_TX_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 printk("HEY! Enet xmit interrupt and TX_READY.\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +0000545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* Deferred means some collisions occurred during transmit,
547 * but we eventually sent the packet OK.
548 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000549 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100550 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400551
Sascha Hauer22f6b862009-04-15 01:32:18 +0000552 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 dev_kfree_skb_any(skb);
554 fep->tx_skbuff[fep->skb_dirty] = NULL;
555 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400556
Sascha Hauer22f6b862009-04-15 01:32:18 +0000557 /* Update pointer to next buffer descriptor to be transmitted */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000558 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 bdp = fep->tx_bd_base;
560 else
561 bdp++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400562
Sascha Hauer22f6b862009-04-15 01:32:18 +0000563 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 */
565 if (fep->tx_full) {
566 fep->tx_full = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100567 if (netif_queue_stopped(ndev))
568 netif_wake_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000571 fep->dirty_tx = bdp;
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000572 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
575
576/* During a receive, the cur_rx points to the current incoming buffer.
577 * When we update through the ring, if the next incoming buffer has
578 * not been given to the system, we just set the empty indicator,
579 * effectively tossing the packet.
580 */
581static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100582fec_enet_rx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100584 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000585 const struct platform_device_id *id_entry =
586 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +0000587 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000588 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 struct sk_buff *skb;
590 ushort pkt_len;
591 __u8 *data;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400592
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000593#ifdef CONFIG_M532x
594 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400595#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000597 spin_lock(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* First, grab all of the stats for the incoming packet.
600 * These get messed up if we get called due to a busy condition.
601 */
602 bdp = fep->cur_rx;
603
Sascha Hauer22f6b862009-04-15 01:32:18 +0000604 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Sascha Hauer22f6b862009-04-15 01:32:18 +0000606 /* Since we have allocated space to hold a complete frame,
607 * the last indicator should be set.
608 */
609 if ((status & BD_ENET_RX_LAST) == 0)
610 printk("FEC ENET: rcv is not +last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Sascha Hauer22f6b862009-04-15 01:32:18 +0000612 if (!fep->opened)
613 goto rx_processing_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Sascha Hauer22f6b862009-04-15 01:32:18 +0000615 /* Check for errors. */
616 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100618 ndev->stats.rx_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000619 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
620 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100621 ndev->stats.rx_length_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000622 }
623 if (status & BD_ENET_RX_NO) /* Frame alignment */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100624 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000625 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100626 ndev->stats.rx_crc_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000627 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100628 ndev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
Sascha Hauer22f6b862009-04-15 01:32:18 +0000630
631 /* Report late collisions as a frame error.
632 * On this error, the BD is closed, but we don't know what we
633 * have in the buffer. So, just drop this frame on the floor.
634 */
635 if (status & BD_ENET_RX_CL) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100636 ndev->stats.rx_errors++;
637 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000638 goto rx_processing_done;
639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Sascha Hauer22f6b862009-04-15 01:32:18 +0000641 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100642 ndev->stats.rx_packets++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000643 pkt_len = bdp->cbd_datlen;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100644 ndev->stats.rx_bytes += pkt_len;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000645 data = (__u8*)__va(bdp->cbd_bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100647 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
648 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerccdc4f12009-01-28 23:03:09 +0000649
Shawn Guob5680e02011-01-05 21:13:13 +0000650 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
651 swap_buffer(data, pkt_len);
652
Sascha Hauer22f6b862009-04-15 01:32:18 +0000653 /* This does 16 byte alignment, exactly what we need.
654 * The packet length includes FCS, but we don't want to
655 * include that when passing upstream as it messes up
656 * bridging applications.
657 */
Sascha Hauer85498892009-04-15 01:32:21 +0000658 skb = dev_alloc_skb(pkt_len - 4 + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Sascha Hauer85498892009-04-15 01:32:21 +0000660 if (unlikely(!skb)) {
Sascha Hauer22f6b862009-04-15 01:32:18 +0000661 printk("%s: Memory squeeze, dropping packet.\n",
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100662 ndev->name);
663 ndev->stats.rx_dropped++;
Sascha Hauer22f6b862009-04-15 01:32:18 +0000664 } else {
Sascha Hauer85498892009-04-15 01:32:21 +0000665 skb_reserve(skb, NET_IP_ALIGN);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000666 skb_put(skb, pkt_len - 4); /* Make room */
667 skb_copy_to_linear_data(skb, data, pkt_len - 4);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100668 skb->protocol = eth_type_trans(skb, ndev);
Richard Cochran18a03b92011-06-12 02:18:59 +0000669 if (!skb_defer_rx_timestamp(skb))
670 netif_rx(skb);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000671 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +0000672
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +0100673 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, data,
674 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauer22f6b862009-04-15 01:32:18 +0000675rx_processing_done:
676 /* Clear the status flags for this buffer */
677 status &= ~BD_ENET_RX_STATS;
678
679 /* Mark the buffer empty */
680 status |= BD_ENET_RX_EMPTY;
681 bdp->cbd_sc = status;
682
683 /* Update BD pointer to next entry */
684 if (status & BD_ENET_RX_WRAP)
685 bdp = fep->rx_bd_base;
686 else
687 bdp++;
688 /* Doing this here will keep the FEC running while we process
689 * incoming frames. On a heavily loaded network, we should be
690 * able to keep up at the expense of system resources.
691 */
692 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
Sascha Hauer2e285322009-04-15 01:32:16 +0000694 fep->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Uwe Kleine-König81538e72009-09-01 23:14:16 +0000696 spin_unlock(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Uwe Kleine-König45993652011-01-19 20:47:04 +0100699static irqreturn_t
700fec_enet_interrupt(int irq, void *dev_id)
701{
702 struct net_device *ndev = dev_id;
703 struct fec_enet_private *fep = netdev_priv(ndev);
704 uint int_events;
705 irqreturn_t ret = IRQ_NONE;
706
707 do {
708 int_events = readl(fep->hwp + FEC_IEVENT);
709 writel(int_events, fep->hwp + FEC_IEVENT);
710
711 if (int_events & FEC_ENET_RXF) {
712 ret = IRQ_HANDLED;
713 fec_enet_rx(ndev);
714 }
715
716 /* Transmit OK, or non-fatal error. Update the buffer
717 * descriptors. FEC handles all errors, we just discover
718 * them as part of the transmit process.
719 */
720 if (int_events & FEC_ENET_TXF) {
721 ret = IRQ_HANDLED;
722 fec_enet_tx(ndev);
723 }
724
725 if (int_events & FEC_ENET_MII) {
726 ret = IRQ_HANDLED;
727 complete(&fep->mdio_done);
728 }
729 } while (int_events);
730
731 return ret;
732}
733
734
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736/* ------------------------------------------------------------------------- */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100737static void __inline__ fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100739 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo49da97d2011-01-05 21:13:11 +0000740 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000741 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Shawn Guo49da97d2011-01-05 21:13:11 +0000743 /*
744 * try to get mac address in following order:
745 *
746 * 1) module parameter via kernel command line in form
747 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
748 */
749 iap = macaddr;
750
751 /*
752 * 2) from flash or fuse (via platform data)
753 */
754 if (!is_valid_ether_addr(iap)) {
755#ifdef CONFIG_M5272
756 if (FEC_FLASHMAC)
757 iap = (unsigned char *)FEC_FLASHMAC;
758#else
759 if (pdata)
760 memcpy(iap, pdata->mac, ETH_ALEN);
761#endif
762 }
763
764 /*
765 * 3) FEC mac registers set by bootloader
766 */
767 if (!is_valid_ether_addr(iap)) {
768 *((unsigned long *) &tmpaddr[0]) =
769 be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
770 *((unsigned short *) &tmpaddr[4]) =
771 be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 iap = &tmpaddr[0];
773 }
774
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100775 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Shawn Guo49da97d2011-01-05 21:13:11 +0000777 /* Adjust MAC if using macaddr */
778 if (iap == macaddr)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100779 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->pdev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782/* ------------------------------------------------------------------------- */
783
Bryan Wue6b043d2010-03-31 02:10:44 +0000784/*
785 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100787static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100789 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000790 struct phy_device *phy_dev = fep->phy_dev;
791 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Bryan Wue6b043d2010-03-31 02:10:44 +0000793 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Bryan Wue6b043d2010-03-31 02:10:44 +0000795 spin_lock_irqsave(&fep->hw_lock, flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400796
Bryan Wue6b043d2010-03-31 02:10:44 +0000797 /* Prevent a state halted on mii error */
798 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
799 phy_dev->state = PHY_RESUMING;
800 goto spin_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
Bryan Wue6b043d2010-03-31 02:10:44 +0000802
803 /* Duplex link change */
804 if (phy_dev->link) {
805 if (fep->full_duplex != phy_dev->duplex) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100806 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000807 status_change = 1;
808 }
809 }
810
811 /* Link on or off change */
812 if (phy_dev->link != fep->link) {
813 fep->link = phy_dev->link;
814 if (phy_dev->link)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100815 fec_restart(ndev, phy_dev->duplex);
Bryan Wue6b043d2010-03-31 02:10:44 +0000816 else
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100817 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000818 status_change = 1;
819 }
820
821spin_unlock:
822 spin_unlock_irqrestore(&fep->hw_lock, flags);
823
824 if (status_change)
825 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Bryan Wue6b043d2010-03-31 02:10:44 +0000828static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Bryan Wue6b043d2010-03-31 02:10:44 +0000830 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000831 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000832
833 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000834 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000835
836 /* start a read op */
837 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
838 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
839 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
840
841 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000842 time_left = wait_for_completion_timeout(&fep->mdio_done,
843 usecs_to_jiffies(FEC_MII_TIMEOUT));
844 if (time_left == 0) {
845 fep->mii_timeout = 1;
846 printk(KERN_ERR "FEC: MDIO read timeout\n");
847 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000848 }
849
850 /* return value */
851 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
852}
853
854static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
855 u16 value)
856{
857 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +0000858 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +0000859
860 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +0000861 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +0000862
Shawn Guo862f0982011-01-05 21:13:09 +0000863 /* start a write op */
864 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +0000865 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
866 FEC_MMFR_TA | FEC_MMFR_DATA(value),
867 fep->hwp + FEC_MII_DATA);
868
869 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +0000870 time_left = wait_for_completion_timeout(&fep->mdio_done,
871 usecs_to_jiffies(FEC_MII_TIMEOUT));
872 if (time_left == 0) {
873 fep->mii_timeout = 1;
874 printk(KERN_ERR "FEC: MDIO write timeout\n");
875 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +0000876 }
877
878 return 0;
879}
880
881static int fec_enet_mdio_reset(struct mii_bus *bus)
882{
883 return 0;
884}
885
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100886static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +0000887{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100888 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000889 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000890 char mdio_bus_id[MII_BUS_ID_SIZE];
891 char phy_name[MII_BUS_ID_SIZE + 3];
892 int phy_id;
Shawn Guob5680e02011-01-05 21:13:13 +0000893 int dev_id = fep->pdev->id;
Bryan Wue6b043d2010-03-31 02:10:44 +0000894
Bryan Wu418bd0d2010-05-28 03:40:39 -0700895 fep->phy_dev = NULL;
896
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000897 /* check for attached phy */
898 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
899 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
900 continue;
901 if (fep->mii_bus->phy_map[phy_id] == NULL)
902 continue;
903 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
904 continue;
Shawn Guob5680e02011-01-05 21:13:13 +0000905 if (dev_id--)
906 continue;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000907 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
908 break;
Bryan Wue6b043d2010-03-31 02:10:44 +0000909 }
910
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000911 if (phy_id >= PHY_MAX_ADDR) {
912 printk(KERN_INFO "%s: no PHY, assuming direct connection "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100913 "to switch\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000914 strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE);
915 phy_id = 0;
916 }
917
918 snprintf(phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT, mdio_bus_id, phy_id);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100919 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link, 0,
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000920 PHY_INTERFACE_MODE_MII);
921 if (IS_ERR(phy_dev)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100922 printk(KERN_ERR "%s: could not attach to PHY\n", ndev->name);
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000923 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000924 }
925
926 /* mask with MAC supported features */
927 phy_dev->supported &= PHY_BASIC_FEATURES;
928 phy_dev->advertising = phy_dev->supported;
929
930 fep->phy_dev = phy_dev;
931 fep->link = 0;
932 fep->full_duplex = 0;
933
Bryan Wu418bd0d2010-05-28 03:40:39 -0700934 printk(KERN_INFO "%s: Freescale FEC PHY driver [%s] "
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100935 "(mii_bus:phy_addr=%s, irq=%d)\n", ndev->name,
Bryan Wu418bd0d2010-05-28 03:40:39 -0700936 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
937 fep->phy_dev->irq);
938
Bryan Wue6b043d2010-03-31 02:10:44 +0000939 return 0;
940}
941
942static int fec_enet_mii_init(struct platform_device *pdev)
943{
Shawn Guob5680e02011-01-05 21:13:13 +0000944 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +0100945 struct net_device *ndev = platform_get_drvdata(pdev);
946 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +0000947 const struct platform_device_id *id_entry =
948 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +0000949 int err = -ENXIO, i;
950
Shawn Guob5680e02011-01-05 21:13:13 +0000951 /*
952 * The dual fec interfaces are not equivalent with enet-mac.
953 * Here are the differences:
954 *
955 * - fec0 supports MII & RMII modes while fec1 only supports RMII
956 * - fec0 acts as the 1588 time master while fec1 is slave
957 * - external phys can only be configured by fec0
958 *
959 * That is to say fec1 can not work independently. It only works
960 * when fec0 is working. The reason behind this design is that the
961 * second interface is added primarily for Switch mode.
962 *
963 * Because of the last point above, both phys are attached on fec0
964 * mdio interface in board design, and need to be configured by
965 * fec0 mii_bus.
966 */
967 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && pdev->id) {
968 /* fec1 uses fec0 mii_bus */
969 fep->mii_bus = fec0_mii_bus;
970 return 0;
971 }
972
Bryan Wue6b043d2010-03-31 02:10:44 +0000973 fep->mii_timeout = 0;
974
975 /*
976 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
977 */
978 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk), 5000000) << 1;
979 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
980
981 fep->mii_bus = mdiobus_alloc();
982 if (fep->mii_bus == NULL) {
983 err = -ENOMEM;
984 goto err_out;
985 }
986
987 fep->mii_bus->name = "fec_enet_mii_bus";
988 fep->mii_bus->read = fec_enet_mdio_read;
989 fep->mii_bus->write = fec_enet_mdio_write;
990 fep->mii_bus->reset = fec_enet_mdio_reset;
Greg Ungerer6fcc0402010-10-11 21:03:05 +0000991 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%x", pdev->id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +0000992 fep->mii_bus->priv = fep;
993 fep->mii_bus->parent = &pdev->dev;
994
995 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
996 if (!fep->mii_bus->irq) {
997 err = -ENOMEM;
998 goto err_out_free_mdiobus;
999 }
1000
1001 for (i = 0; i < PHY_MAX_ADDR; i++)
1002 fep->mii_bus->irq[i] = PHY_POLL;
1003
Bryan Wue6b043d2010-03-31 02:10:44 +00001004 if (mdiobus_register(fep->mii_bus))
1005 goto err_out_free_mdio_irq;
1006
Shawn Guob5680e02011-01-05 21:13:13 +00001007 /* save fec0 mii_bus */
1008 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1009 fec0_mii_bus = fep->mii_bus;
1010
Bryan Wue6b043d2010-03-31 02:10:44 +00001011 return 0;
1012
Bryan Wue6b043d2010-03-31 02:10:44 +00001013err_out_free_mdio_irq:
1014 kfree(fep->mii_bus->irq);
1015err_out_free_mdiobus:
1016 mdiobus_free(fep->mii_bus);
1017err_out:
1018 return err;
1019}
1020
1021static void fec_enet_mii_remove(struct fec_enet_private *fep)
1022{
1023 if (fep->phy_dev)
1024 phy_disconnect(fep->phy_dev);
1025 mdiobus_unregister(fep->mii_bus);
1026 kfree(fep->mii_bus->irq);
1027 mdiobus_free(fep->mii_bus);
1028}
1029
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001030static int fec_enet_get_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001031 struct ethtool_cmd *cmd)
1032{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001033 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001034 struct phy_device *phydev = fep->phy_dev;
1035
1036 if (!phydev)
1037 return -ENODEV;
1038
1039 return phy_ethtool_gset(phydev, cmd);
1040}
1041
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001042static int fec_enet_set_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001043 struct ethtool_cmd *cmd)
1044{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001045 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001046 struct phy_device *phydev = fep->phy_dev;
1047
1048 if (!phydev)
1049 return -ENODEV;
1050
1051 return phy_ethtool_sset(phydev, cmd);
1052}
1053
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001054static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001055 struct ethtool_drvinfo *info)
1056{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001057 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Bryan Wue6b043d2010-03-31 02:10:44 +00001059 strcpy(info->driver, fep->pdev->dev.driver->name);
1060 strcpy(info->version, "Revision: 1.0");
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001061 strcpy(info->bus_info, dev_name(&ndev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
Bryan Wue6b043d2010-03-31 02:10:44 +00001063
1064static struct ethtool_ops fec_enet_ethtool_ops = {
1065 .get_settings = fec_enet_get_settings,
1066 .set_settings = fec_enet_set_settings,
1067 .get_drvinfo = fec_enet_get_drvinfo,
1068 .get_link = ethtool_op_get_link,
1069};
1070
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001071static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00001072{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001073 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001074 struct phy_device *phydev = fep->phy_dev;
1075
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001076 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00001077 return -EINVAL;
1078
1079 if (!phydev)
1080 return -ENODEV;
1081
Richard Cochran28b04112010-07-17 08:48:55 +00001082 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00001083}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001085static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001086{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001087 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001088 int i;
1089 struct sk_buff *skb;
1090 struct bufdesc *bdp;
1091
1092 bdp = fep->rx_bd_base;
1093 for (i = 0; i < RX_RING_SIZE; i++) {
1094 skb = fep->rx_skbuff[i];
1095
1096 if (bdp->cbd_bufaddr)
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001097 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001098 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1099 if (skb)
1100 dev_kfree_skb(skb);
1101 bdp++;
1102 }
1103
1104 bdp = fep->tx_bd_base;
1105 for (i = 0; i < TX_RING_SIZE; i++)
1106 kfree(fep->tx_bounce[i]);
1107}
1108
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001109static int fec_enet_alloc_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001110{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001111 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001112 int i;
1113 struct sk_buff *skb;
1114 struct bufdesc *bdp;
1115
1116 bdp = fep->rx_bd_base;
1117 for (i = 0; i < RX_RING_SIZE; i++) {
1118 skb = dev_alloc_skb(FEC_ENET_RX_FRSIZE);
1119 if (!skb) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001120 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001121 return -ENOMEM;
1122 }
1123 fep->rx_skbuff[i] = skb;
1124
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01001125 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, skb->data,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001126 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1127 bdp->cbd_sc = BD_ENET_RX_EMPTY;
1128 bdp++;
1129 }
1130
1131 /* Set the last buffer to wrap. */
1132 bdp--;
1133 bdp->cbd_sc |= BD_SC_WRAP;
1134
1135 bdp = fep->tx_bd_base;
1136 for (i = 0; i < TX_RING_SIZE; i++) {
1137 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
1138
1139 bdp->cbd_sc = 0;
1140 bdp->cbd_bufaddr = 0;
1141 bdp++;
1142 }
1143
1144 /* Set the last buffer to wrap. */
1145 bdp--;
1146 bdp->cbd_sc |= BD_SC_WRAP;
1147
1148 return 0;
1149}
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001152fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001154 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001155 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 /* I should reset the ring buffers here, but I don't yet know
1158 * a simple way to do that.
1159 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001161 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001162 if (ret)
1163 return ret;
1164
Bryan Wu418bd0d2010-05-28 03:40:39 -07001165 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001166 ret = fec_enet_mii_probe(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001167 if (ret) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001168 fec_enet_free_buffers(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001169 return ret;
1170 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001171 phy_start(fep->phy_dev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001172 netif_start_queue(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 fep->opened = 1;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001174 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
1177static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001178fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001180 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Sascha Hauer22f6b862009-04-15 01:32:18 +00001182 /* Don't know what to do yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 fep->opened = 0;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001184 netif_stop_queue(ndev);
1185 fec_stop(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001187 if (fep->phy_dev) {
1188 phy_stop(fep->phy_dev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001189 phy_disconnect(fep->phy_dev);
Uwe Kleine-Könige497ba82011-01-17 20:04:23 +01001190 }
Bryan Wu418bd0d2010-05-28 03:40:39 -07001191
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001192 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 return 0;
1195}
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197/* Set or clear the multicast filter for this adaptor.
1198 * Skeleton taken from sunlance driver.
1199 * The CPM Ethernet implementation allows Multicast as well as individual
1200 * MAC address filtering. Some of the drivers check to make sure it is
1201 * a group multicast address, and discard those that are not. I guess I
1202 * will do the same for now, but just remove the test if you want
1203 * individual filtering as well (do the upper net layers want or support
1204 * this kind of feature?).
1205 */
1206
1207#define HASH_BITS 6 /* #bits in hash */
1208#define CRC32_POLY 0xEDB88320
1209
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001210static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001212 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001213 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00001214 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 unsigned char hash;
1216
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001217 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00001218 tmp = readl(fep->hwp + FEC_R_CNTRL);
1219 tmp |= 0x8;
1220 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00001221 return;
1222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Sascha Hauer4e831832009-04-15 01:32:19 +00001224 tmp = readl(fep->hwp + FEC_R_CNTRL);
1225 tmp &= ~0x8;
1226 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001227
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001228 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001229 /* Catch all multicast addresses, so set the
1230 * filter to all 1's
1231 */
1232 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1233 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Sascha Hauer4e831832009-04-15 01:32:19 +00001235 return;
1236 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001237
Sascha Hauer4e831832009-04-15 01:32:19 +00001238 /* Clear filter and add the addresses in hash register
1239 */
1240 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1241 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001243 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00001244 /* calculate crc32 value of mac address */
1245 crc = 0xffffffff;
1246
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001247 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001248 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00001249 for (bit = 0; bit < 8; bit++, data >>= 1) {
1250 crc = (crc >> 1) ^
1251 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
1253 }
Sascha Hauer4e831832009-04-15 01:32:19 +00001254
1255 /* only upper 6 bits (HASH_BITS) are used
1256 * which point to specific bit in he hash registers
1257 */
1258 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1259
1260 if (hash > 31) {
1261 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1262 tmp |= 1 << (hash - 32);
1263 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1264 } else {
1265 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1266 tmp |= 1 << hash;
1267 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270}
1271
Sascha Hauer22f6b862009-04-15 01:32:18 +00001272/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00001273static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001274fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001276 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00001277 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Sascha Hauer009fda82009-04-15 01:32:23 +00001279 if (!is_valid_ether_addr(addr->sa_data))
1280 return -EADDRNOTAVAIL;
1281
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001282 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
Sascha Hauer009fda82009-04-15 01:32:23 +00001283
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001284 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
1285 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00001286 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001287 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07001288 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00001289 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
Sascha Hauer009fda82009-04-15 01:32:23 +00001292static const struct net_device_ops fec_netdev_ops = {
1293 .ndo_open = fec_enet_open,
1294 .ndo_stop = fec_enet_close,
1295 .ndo_start_xmit = fec_enet_start_xmit,
1296 .ndo_set_multicast_list = set_multicast_list,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00001297 .ndo_change_mtu = eth_change_mtu,
Sascha Hauer009fda82009-04-15 01:32:23 +00001298 .ndo_validate_addr = eth_validate_addr,
1299 .ndo_tx_timeout = fec_timeout,
1300 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01001301 .ndo_do_ioctl = fec_enet_ioctl,
Sascha Hauer009fda82009-04-15 01:32:23 +00001302};
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 /*
1305 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00001306 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001308static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001310 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001311 struct bufdesc *cbd_base;
Rob Herring633e7532010-02-05 08:56:20 +00001312 struct bufdesc *bdp;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001313 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001315 /* Allocate memory for buffer descriptors. */
1316 cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
1317 GFP_KERNEL);
1318 if (!cbd_base) {
Greg Ungerer562d2f82005-11-07 14:09:50 +10001319 printk("FEC: allocate descriptor memory failed?\n");
1320 return -ENOMEM;
1321 }
1322
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001323 spin_lock_init(&fep->hw_lock);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10001324
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001325 fep->netdev = ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Shawn Guo49da97d2011-01-05 21:13:11 +00001327 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001328 fec_get_mac(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00001330 /* Set receive and transmit descriptor base. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 fep->rx_bd_base = cbd_base;
1332 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1333
Sascha Hauer22f6b862009-04-15 01:32:18 +00001334 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001335 ndev->watchdog_timeo = TX_TIMEOUT;
1336 ndev->netdev_ops = &fec_netdev_ops;
1337 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00001338
1339 /* Initialize the receive buffer descriptors. */
1340 bdp = fep->rx_bd_base;
1341 for (i = 0; i < RX_RING_SIZE; i++) {
1342
1343 /* Initialize the BD for every fragment in the page. */
1344 bdp->cbd_sc = 0;
1345 bdp++;
1346 }
1347
1348 /* Set the last buffer to wrap */
1349 bdp--;
1350 bdp->cbd_sc |= BD_SC_WRAP;
1351
1352 /* ...and the same for transmit */
1353 bdp = fep->tx_bd_base;
1354 for (i = 0; i < TX_RING_SIZE; i++) {
1355
1356 /* Initialize the BD for every fragment in the page. */
1357 bdp->cbd_sc = 0;
1358 bdp->cbd_bufaddr = 0;
1359 bdp++;
1360 }
1361
1362 /* Set the last buffer to wrap */
1363 bdp--;
1364 bdp->cbd_sc |= BD_SC_WRAP;
1365
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001366 fec_restart(ndev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return 0;
1369}
1370
Sascha Haueread73182009-01-28 23:03:11 +00001371static int __devinit
1372fec_probe(struct platform_device *pdev)
1373{
1374 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001375 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00001376 struct net_device *ndev;
1377 int i, irq, ret = 0;
1378 struct resource *r;
1379
1380 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1381 if (!r)
1382 return -ENXIO;
1383
1384 r = request_mem_region(r->start, resource_size(r), pdev->name);
1385 if (!r)
1386 return -EBUSY;
1387
1388 /* Init network device */
1389 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001390 if (!ndev) {
1391 ret = -ENOMEM;
1392 goto failed_alloc_etherdev;
1393 }
Sascha Haueread73182009-01-28 23:03:11 +00001394
1395 SET_NETDEV_DEV(ndev, &pdev->dev);
1396
1397 /* setup board info structure */
1398 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001399
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001400 fep->hwp = ioremap(r->start, resource_size(r));
Bryan Wue6b043d2010-03-31 02:10:44 +00001401 fep->pdev = pdev;
Sascha Haueread73182009-01-28 23:03:11 +00001402
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001403 if (!fep->hwp) {
Sascha Haueread73182009-01-28 23:03:11 +00001404 ret = -ENOMEM;
1405 goto failed_ioremap;
1406 }
1407
1408 platform_set_drvdata(pdev, ndev);
1409
Baruch Siach5eb32bd2010-05-24 00:36:13 -07001410 pdata = pdev->dev.platform_data;
1411 if (pdata)
1412 fep->phy_interface = pdata->phy;
1413
Sascha Haueread73182009-01-28 23:03:11 +00001414 /* This device has up to three irqs on some platforms */
1415 for (i = 0; i < 3; i++) {
1416 irq = platform_get_irq(pdev, i);
1417 if (i && irq < 0)
1418 break;
1419 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1420 if (ret) {
Uwe Kleine-Königb2b09ad2011-01-13 21:49:05 +01001421 while (--i >= 0) {
Sascha Haueread73182009-01-28 23:03:11 +00001422 irq = platform_get_irq(pdev, i);
1423 free_irq(irq, ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001424 }
1425 goto failed_irq;
1426 }
1427 }
1428
1429 fep->clk = clk_get(&pdev->dev, "fec_clk");
1430 if (IS_ERR(fep->clk)) {
1431 ret = PTR_ERR(fep->clk);
1432 goto failed_clk;
1433 }
1434 clk_enable(fep->clk);
1435
Shawn Guo8649a232011-01-05 21:13:10 +00001436 ret = fec_enet_init(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001437 if (ret)
1438 goto failed_init;
1439
Bryan Wue6b043d2010-03-31 02:10:44 +00001440 ret = fec_enet_mii_init(pdev);
1441 if (ret)
1442 goto failed_mii_init;
1443
Oskar Schirmer03c698c2010-10-07 02:30:30 +00001444 /* Carrier starts down, phylib will bring it up */
1445 netif_carrier_off(ndev);
1446
Sascha Haueread73182009-01-28 23:03:11 +00001447 ret = register_netdev(ndev);
1448 if (ret)
1449 goto failed_register;
1450
1451 return 0;
1452
1453failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00001454 fec_enet_mii_remove(fep);
1455failed_mii_init:
Sascha Haueread73182009-01-28 23:03:11 +00001456failed_init:
1457 clk_disable(fep->clk);
1458 clk_put(fep->clk);
1459failed_clk:
1460 for (i = 0; i < 3; i++) {
1461 irq = platform_get_irq(pdev, i);
1462 if (irq > 0)
1463 free_irq(irq, ndev);
1464 }
1465failed_irq:
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001466 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001467failed_ioremap:
1468 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001469failed_alloc_etherdev:
1470 release_mem_region(r->start, resource_size(r));
Sascha Haueread73182009-01-28 23:03:11 +00001471
1472 return ret;
1473}
1474
1475static int __devexit
1476fec_drv_remove(struct platform_device *pdev)
1477{
1478 struct net_device *ndev = platform_get_drvdata(pdev);
1479 struct fec_enet_private *fep = netdev_priv(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001480 struct resource *r;
Sascha Haueread73182009-01-28 23:03:11 +00001481
Sascha Haueread73182009-01-28 23:03:11 +00001482 fec_stop(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001483 fec_enet_mii_remove(fep);
Sascha Haueread73182009-01-28 23:03:11 +00001484 clk_disable(fep->clk);
1485 clk_put(fep->clk);
Uwe Kleine-König24e531b2011-01-13 22:29:05 +01001486 iounmap(fep->hwp);
Sascha Haueread73182009-01-28 23:03:11 +00001487 unregister_netdev(ndev);
1488 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01001489
1490 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1491 BUG_ON(!r);
1492 release_mem_region(r->start, resource_size(r));
1493
Uwe Kleine-Königb3cde362011-01-25 18:03:37 +01001494 platform_set_drvdata(pdev, NULL);
1495
Sascha Haueread73182009-01-28 23:03:11 +00001496 return 0;
1497}
1498
Denis Kirjanov59d42892010-06-02 09:27:04 +00001499#ifdef CONFIG_PM
Sascha Haueread73182009-01-28 23:03:11 +00001500static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001501fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001502{
Eric Benard87cad5c2010-06-18 04:19:54 +00001503 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001504 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001505
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001506 if (netif_running(ndev)) {
1507 fec_stop(ndev);
1508 netif_device_detach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001509 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001510 clk_disable(fep->clk);
1511
Sascha Haueread73182009-01-28 23:03:11 +00001512 return 0;
1513}
1514
1515static int
Eric Benard87cad5c2010-06-18 04:19:54 +00001516fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00001517{
Eric Benard87cad5c2010-06-18 04:19:54 +00001518 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001519 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001520
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001521 clk_enable(fep->clk);
1522 if (netif_running(ndev)) {
1523 fec_restart(ndev, fep->full_duplex);
1524 netif_device_attach(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00001525 }
Uwe Kleine-König04e52162011-01-13 21:53:40 +01001526
Sascha Haueread73182009-01-28 23:03:11 +00001527 return 0;
1528}
1529
Denis Kirjanov59d42892010-06-02 09:27:04 +00001530static const struct dev_pm_ops fec_pm_ops = {
1531 .suspend = fec_suspend,
1532 .resume = fec_resume,
1533 .freeze = fec_suspend,
1534 .thaw = fec_resume,
1535 .poweroff = fec_suspend,
1536 .restore = fec_resume,
1537};
Eric Benard87cad5c2010-06-18 04:19:54 +00001538#endif
Denis Kirjanov59d42892010-06-02 09:27:04 +00001539
Sascha Haueread73182009-01-28 23:03:11 +00001540static struct platform_driver fec_driver = {
1541 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00001542 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00001543 .owner = THIS_MODULE,
1544#ifdef CONFIG_PM
1545 .pm = &fec_pm_ops,
1546#endif
Sascha Haueread73182009-01-28 23:03:11 +00001547 },
Shawn Guob5680e02011-01-05 21:13:13 +00001548 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00001549 .probe = fec_probe,
1550 .remove = __devexit_p(fec_drv_remove),
Sascha Haueread73182009-01-28 23:03:11 +00001551};
1552
1553static int __init
1554fec_enet_module_init(void)
1555{
1556 printk(KERN_INFO "FEC Ethernet Driver\n");
1557
1558 return platform_driver_register(&fec_driver);
1559}
1560
1561static void __exit
1562fec_enet_cleanup(void)
1563{
1564 platform_driver_unregister(&fec_driver);
1565}
1566
1567module_exit(fec_enet_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568module_init(fec_enet_module_init);
1569
1570MODULE_LICENSE("GPL");