]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/net/fec.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris...
[mirror_ubuntu-zesty-kernel.git] / drivers / net / fec.c
CommitLineData
1da177e4
LT
1/*
2 * Fast Ethernet Controller (FEC) driver for Motorola MPC8xx.
3 * Copyright (c) 1997 Dan Malek (dmalek@jlc.net)
4 *
7dd6a2aa 5 * Right now, I am very wasteful with the buffers. I allocate memory
1da177e4
LT
6 * 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 *
562d2f8c
GU
15 * Support for FEC controller of ColdFire processors.
16 * Copyright (c) 2001-2005 Greg Ungerer (gerg@snapgear.com)
7dd6a2aa
GU
17 *
18 * Bug fixes and cleanup by Philippe De Muyter (phdm@macqel.be)
677177c5 19 * Copyright (c) 2004-2006 Macq Electronique SA.
b5680e0b
SG
20 *
21 * Copyright (C) 2010 Freescale Semiconductor, Inc.
1da177e4
LT
22 */
23
1da177e4
LT
24#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>
6f501b17
SH
41#include <linux/io.h>
42#include <linux/irq.h>
196719ec 43#include <linux/clk.h>
ead73183 44#include <linux/platform_device.h>
e6b043d5 45#include <linux/phy.h>
5eb32bd0 46#include <linux/fec.h>
1da177e4 47
080853af 48#include <asm/cacheflush.h>
196719ec 49
b5680e0b 50#ifndef CONFIG_ARM
1da177e4
LT
51#include <asm/coldfire.h>
52#include <asm/mcfsim.h>
196719ec 53#endif
6f501b17 54
1da177e4 55#include "fec.h"
1da177e4 56
b5680e0b 57#if defined(CONFIG_ARCH_MXC) || defined(CONFIG_SOC_IMX28)
196719ec
SH
58#define FEC_ALIGNMENT 0xf
59#else
60#define FEC_ALIGNMENT 0x3
61#endif
62
b5680e0b
SG
63#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,
9eb0e6f2
AL
77 },
78 { }
b5680e0b
SG
79};
80
49da97dc
SG
81static unsigned char macaddr[ETH_ALEN];
82module_param_array(macaddr, byte, NULL, 0);
83MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
1da177e4 84
49da97dc 85#if defined(CONFIG_M5272)
1da177e4
LT
86/*
87 * Some hardware gets it MAC address out of local flash memory.
88 * if this is non-zero then assume it is the address to get MAC from.
89 */
90#if defined(CONFIG_NETtel)
91#define FEC_FLASHMAC 0xf0006006
92#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
93#define FEC_FLASHMAC 0xf0006000
1da177e4
LT
94#elif defined(CONFIG_CANCam)
95#define FEC_FLASHMAC 0xf0020000
7dd6a2aa
GU
96#elif defined (CONFIG_M5272C3)
97#define FEC_FLASHMAC (0xffe04000 + 4)
98#elif defined(CONFIG_MOD5272)
99#define FEC_FLASHMAC 0xffc0406b
1da177e4
LT
100#else
101#define FEC_FLASHMAC 0
102#endif
43be6366 103#endif /* CONFIG_M5272 */
ead73183 104
1da177e4
LT
105/* The number of Tx and Rx buffers. These are allocated from the page
106 * pool. The code may assume these are power of two, so it it best
107 * to keep them that size.
108 * We don't need to allocate pages for the transmitter. We just use
109 * the skbuffer directly.
110 */
111#define FEC_ENET_RX_PAGES 8
112#define FEC_ENET_RX_FRSIZE 2048
113#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE)
114#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
115#define FEC_ENET_TX_FRSIZE 2048
116#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
117#define TX_RING_SIZE 16 /* Must be power of two */
118#define TX_RING_MOD_MASK 15 /* for this to work */
119
562d2f8c 120#if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
6b265293 121#error "FEC: descriptor ring size constants too large"
562d2f8c
GU
122#endif
123
22f6b860 124/* Interrupt events/masks. */
1da177e4
LT
125#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
126#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
127#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */
128#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */
129#define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */
130#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */
131#define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */
132#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */
133#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */
134#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */
135
4bee1f9a
WS
136#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII)
137
1da177e4
LT
138/* The FEC stores dest/src/type, data, and checksum for receive packets.
139 */
140#define PKT_MAXBUF_SIZE 1518
141#define PKT_MINBUF_SIZE 64
142#define PKT_MAXBLR_SIZE 1520
143
144
145/*
6b265293 146 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
1da177e4
LT
147 * size bits. Other FEC hardware does not, so we need to take that into
148 * account when setting it.
149 */
562d2f8c 150#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
b5680e0b
SG
151 defined(CONFIG_M520x) || defined(CONFIG_M532x) || \
152 defined(CONFIG_ARCH_MXC) || defined(CONFIG_SOC_IMX28)
1da177e4
LT
153#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
154#else
155#define OPT_FRAME_SIZE 0
156#endif
157
158/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and
159 * tx_bd_base always point to the base of the buffer descriptors. The
160 * cur_rx and cur_tx point to the currently available buffer.
161 * The dirty_tx tracks the current buffer that is being sent by the
162 * controller. The cur_tx and dirty_tx are equal under both completely
163 * empty and completely full conditions. The empty/ready indicator in
164 * the buffer descriptor determines the actual condition.
165 */
166struct fec_enet_private {
167 /* Hardware registers of the FEC device */
f44d6305 168 void __iomem *hwp;
1da177e4 169
cb84d6e7
GU
170 struct net_device *netdev;
171
ead73183
SH
172 struct clk *clk;
173
1da177e4
LT
174 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
175 unsigned char *tx_bounce[TX_RING_SIZE];
176 struct sk_buff* tx_skbuff[TX_RING_SIZE];
f0b3fbea 177 struct sk_buff* rx_skbuff[RX_RING_SIZE];
1da177e4
LT
178 ushort skb_cur;
179 ushort skb_dirty;
180
22f6b860 181 /* CPM dual port RAM relative addresses */
4661e75b 182 dma_addr_t bd_dma;
22f6b860 183 /* Address of Rx and Tx buffers */
2e28532f
SH
184 struct bufdesc *rx_bd_base;
185 struct bufdesc *tx_bd_base;
186 /* The next free ring entry */
187 struct bufdesc *cur_rx, *cur_tx;
22f6b860 188 /* The ring entries to be free()ed */
2e28532f
SH
189 struct bufdesc *dirty_tx;
190
1da177e4 191 uint tx_full;
3b2b74ca
SS
192 /* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
193 spinlock_t hw_lock;
1da177e4 194
e6b043d5 195 struct platform_device *pdev;
1da177e4 196
e6b043d5 197 int opened;
1da177e4 198
e6b043d5
BW
199 /* Phylib and MDIO interface */
200 struct mii_bus *mii_bus;
201 struct phy_device *phy_dev;
202 int mii_timeout;
203 uint phy_speed;
5eb32bd0 204 phy_interface_t phy_interface;
1da177e4 205 int link;
1da177e4 206 int full_duplex;
97b72e43 207 struct completion mdio_done;
1da177e4
LT
208};
209
7d12e780 210static irqreturn_t fec_enet_interrupt(int irq, void * dev_id);
1da177e4
LT
211static void fec_enet_tx(struct net_device *dev);
212static void fec_enet_rx(struct net_device *dev);
213static int fec_enet_close(struct net_device *dev);
1da177e4
LT
214static void fec_restart(struct net_device *dev, int duplex);
215static void fec_stop(struct net_device *dev);
1da177e4 216
e6b043d5
BW
217/* FEC MII MMFR bits definition */
218#define FEC_MMFR_ST (1 << 30)
219#define FEC_MMFR_OP_READ (2 << 28)
220#define FEC_MMFR_OP_WRITE (1 << 28)
221#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
222#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
223#define FEC_MMFR_TA (2 << 16)
224#define FEC_MMFR_DATA(v) (v & 0xffff)
1da177e4 225
97b72e43 226#define FEC_MII_TIMEOUT 1000 /* us */
1da177e4 227
22f6b860
SH
228/* Transmitter timeout */
229#define TX_TIMEOUT (2 * HZ)
1da177e4 230
b5680e0b
SG
231static void *swap_buffer(void *bufaddr, int len)
232{
233 int i;
234 unsigned int *buf = bufaddr;
235
236 for (i = 0; i < (len + 3) / 4; i++, buf++)
237 *buf = cpu_to_be32(*buf);
238
239 return bufaddr;
240}
241
c7621cb3 242static netdev_tx_t
1da177e4
LT
243fec_enet_start_xmit(struct sk_buff *skb, struct net_device *dev)
244{
f44d6305 245 struct fec_enet_private *fep = netdev_priv(dev);
b5680e0b
SG
246 const struct platform_device_id *id_entry =
247 platform_get_device_id(fep->pdev);
2e28532f 248 struct bufdesc *bdp;
9555b31e 249 void *bufaddr;
0e702ab3 250 unsigned short status;
3b2b74ca 251 unsigned long flags;
1da177e4 252
1da177e4
LT
253 if (!fep->link) {
254 /* Link is down or autonegotiation is in progress. */
5b548140 255 return NETDEV_TX_BUSY;
1da177e4
LT
256 }
257
3b2b74ca 258 spin_lock_irqsave(&fep->hw_lock, flags);
1da177e4
LT
259 /* Fill in a Tx ring entry */
260 bdp = fep->cur_tx;
261
0e702ab3 262 status = bdp->cbd_sc;
22f6b860 263
0e702ab3 264 if (status & BD_ENET_TX_READY) {
1da177e4
LT
265 /* Ooops. All transmit buffers are full. Bail out.
266 * This should not happen, since dev->tbusy should be set.
267 */
268 printk("%s: tx queue full!.\n", dev->name);
3b2b74ca 269 spin_unlock_irqrestore(&fep->hw_lock, flags);
5b548140 270 return NETDEV_TX_BUSY;
1da177e4 271 }
1da177e4 272
22f6b860 273 /* Clear all of the status flags */
0e702ab3 274 status &= ~BD_ENET_TX_STATS;
1da177e4 275
22f6b860 276 /* Set buffer length and buffer pointer */
9555b31e 277 bufaddr = skb->data;
1da177e4
LT
278 bdp->cbd_datlen = skb->len;
279
280 /*
22f6b860
SH
281 * On some FEC implementations data must be aligned on
282 * 4-byte boundaries. Use bounce buffers to copy data
283 * and get it aligned. Ugh.
1da177e4 284 */
9555b31e 285 if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
1da177e4
LT
286 unsigned int index;
287 index = bdp - fep->tx_bd_base;
6989f512 288 memcpy(fep->tx_bounce[index], (void *)skb->data, skb->len);
9555b31e 289 bufaddr = fep->tx_bounce[index];
1da177e4
LT
290 }
291
b5680e0b
SG
292 /*
293 * Some design made an incorrect assumption on endian mode of
294 * the system that it's running on. As the result, driver has to
295 * swap every frame going to and coming from the controller.
296 */
297 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
298 swap_buffer(bufaddr, skb->len);
299
22f6b860 300 /* Save skb pointer */
1da177e4
LT
301 fep->tx_skbuff[fep->skb_cur] = skb;
302
09f75cd7 303 dev->stats.tx_bytes += skb->len;
1da177e4 304 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
6aa20a22 305
1da177e4
LT
306 /* Push the data cache so the CPM does not get stale memory
307 * data.
308 */
9555b31e 309 bdp->cbd_bufaddr = dma_map_single(&dev->dev, bufaddr,
f0b3fbea 310 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
1da177e4 311
0e702ab3
GU
312 /* Send it on its way. Tell FEC it's ready, interrupt when done,
313 * it's the last BD of the frame, and to put the CRC on the end.
1da177e4 314 */
0e702ab3 315 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
1da177e4 316 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
0e702ab3 317 bdp->cbd_sc = status;
1da177e4 318
1da177e4 319 /* Trigger transmission start */
f44d6305 320 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
1da177e4 321
22f6b860
SH
322 /* If this was the last BD in the ring, start at the beginning again. */
323 if (status & BD_ENET_TX_WRAP)
1da177e4 324 bdp = fep->tx_bd_base;
22f6b860 325 else
1da177e4 326 bdp++;
1da177e4
LT
327
328 if (bdp == fep->dirty_tx) {
329 fep->tx_full = 1;
330 netif_stop_queue(dev);
331 }
332
2e28532f 333 fep->cur_tx = bdp;
1da177e4 334
3b2b74ca 335 spin_unlock_irqrestore(&fep->hw_lock, flags);
1da177e4 336
6ed10654 337 return NETDEV_TX_OK;
1da177e4
LT
338}
339
340static void
341fec_timeout(struct net_device *dev)
342{
343 struct fec_enet_private *fep = netdev_priv(dev);
344
09f75cd7 345 dev->stats.tx_errors++;
1da177e4 346
7dd6a2aa 347 fec_restart(dev, fep->full_duplex);
1da177e4
LT
348 netif_wake_queue(dev);
349}
350
1da177e4 351static irqreturn_t
7d12e780 352fec_enet_interrupt(int irq, void * dev_id)
1da177e4
LT
353{
354 struct net_device *dev = dev_id;
f44d6305 355 struct fec_enet_private *fep = netdev_priv(dev);
1da177e4 356 uint int_events;
3b2b74ca 357 irqreturn_t ret = IRQ_NONE;
1da177e4 358
3b2b74ca 359 do {
f44d6305
SH
360 int_events = readl(fep->hwp + FEC_IEVENT);
361 writel(int_events, fep->hwp + FEC_IEVENT);
1da177e4 362
1da177e4 363 if (int_events & FEC_ENET_RXF) {
3b2b74ca 364 ret = IRQ_HANDLED;
1da177e4
LT
365 fec_enet_rx(dev);
366 }
367
368 /* Transmit OK, or non-fatal error. Update the buffer
f44d6305
SH
369 * descriptors. FEC handles all errors, we just discover
370 * them as part of the transmit process.
371 */
1da177e4 372 if (int_events & FEC_ENET_TXF) {
3b2b74ca 373 ret = IRQ_HANDLED;
1da177e4
LT
374 fec_enet_tx(dev);
375 }
97b72e43
BS
376
377 if (int_events & FEC_ENET_MII) {
378 ret = IRQ_HANDLED;
379 complete(&fep->mdio_done);
380 }
3b2b74ca
SS
381 } while (int_events);
382
383 return ret;
1da177e4
LT
384}
385
386
387static void
388fec_enet_tx(struct net_device *dev)
389{
390 struct fec_enet_private *fep;
2e28532f 391 struct bufdesc *bdp;
0e702ab3 392 unsigned short status;
1da177e4
LT
393 struct sk_buff *skb;
394
395 fep = netdev_priv(dev);
81538e74 396 spin_lock(&fep->hw_lock);
1da177e4
LT
397 bdp = fep->dirty_tx;
398
0e702ab3 399 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
f0b3fbea
SH
400 if (bdp == fep->cur_tx && fep->tx_full == 0)
401 break;
402
403 dma_unmap_single(&dev->dev, bdp->cbd_bufaddr, FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
404 bdp->cbd_bufaddr = 0;
1da177e4
LT
405
406 skb = fep->tx_skbuff[fep->skb_dirty];
407 /* Check for errors. */
0e702ab3 408 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
1da177e4
LT
409 BD_ENET_TX_RL | BD_ENET_TX_UN |
410 BD_ENET_TX_CSL)) {
09f75cd7 411 dev->stats.tx_errors++;
0e702ab3 412 if (status & BD_ENET_TX_HB) /* No heartbeat */
09f75cd7 413 dev->stats.tx_heartbeat_errors++;
0e702ab3 414 if (status & BD_ENET_TX_LC) /* Late collision */
09f75cd7 415 dev->stats.tx_window_errors++;
0e702ab3 416 if (status & BD_ENET_TX_RL) /* Retrans limit */
09f75cd7 417 dev->stats.tx_aborted_errors++;
0e702ab3 418 if (status & BD_ENET_TX_UN) /* Underrun */
09f75cd7 419 dev->stats.tx_fifo_errors++;
0e702ab3 420 if (status & BD_ENET_TX_CSL) /* Carrier lost */
09f75cd7 421 dev->stats.tx_carrier_errors++;
1da177e4 422 } else {
09f75cd7 423 dev->stats.tx_packets++;
1da177e4
LT
424 }
425
0e702ab3 426 if (status & BD_ENET_TX_READY)
1da177e4 427 printk("HEY! Enet xmit interrupt and TX_READY.\n");
22f6b860 428
1da177e4
LT
429 /* Deferred means some collisions occurred during transmit,
430 * but we eventually sent the packet OK.
431 */
0e702ab3 432 if (status & BD_ENET_TX_DEF)
09f75cd7 433 dev->stats.collisions++;
6aa20a22 434
22f6b860 435 /* Free the sk buffer associated with this last transmit */
1da177e4
LT
436 dev_kfree_skb_any(skb);
437 fep->tx_skbuff[fep->skb_dirty] = NULL;
438 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
6aa20a22 439
22f6b860 440 /* Update pointer to next buffer descriptor to be transmitted */
0e702ab3 441 if (status & BD_ENET_TX_WRAP)
1da177e4
LT
442 bdp = fep->tx_bd_base;
443 else
444 bdp++;
6aa20a22 445
22f6b860 446 /* Since we have freed up a buffer, the ring is no longer full
1da177e4
LT
447 */
448 if (fep->tx_full) {
449 fep->tx_full = 0;
450 if (netif_queue_stopped(dev))
451 netif_wake_queue(dev);
452 }
453 }
2e28532f 454 fep->dirty_tx = bdp;
81538e74 455 spin_unlock(&fep->hw_lock);
1da177e4
LT
456}
457
458
459/* During a receive, the cur_rx points to the current incoming buffer.
460 * When we update through the ring, if the next incoming buffer has
461 * not been given to the system, we just set the empty indicator,
462 * effectively tossing the packet.
463 */
464static void
465fec_enet_rx(struct net_device *dev)
466{
f44d6305 467 struct fec_enet_private *fep = netdev_priv(dev);
b5680e0b
SG
468 const struct platform_device_id *id_entry =
469 platform_get_device_id(fep->pdev);
2e28532f 470 struct bufdesc *bdp;
0e702ab3 471 unsigned short status;
1da177e4
LT
472 struct sk_buff *skb;
473 ushort pkt_len;
474 __u8 *data;
6aa20a22 475
0e702ab3
GU
476#ifdef CONFIG_M532x
477 flush_cache_all();
6aa20a22 478#endif
1da177e4 479
81538e74 480 spin_lock(&fep->hw_lock);
3b2b74ca 481
1da177e4
LT
482 /* First, grab all of the stats for the incoming packet.
483 * These get messed up if we get called due to a busy condition.
484 */
485 bdp = fep->cur_rx;
486
22f6b860 487 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
1da177e4 488
22f6b860
SH
489 /* Since we have allocated space to hold a complete frame,
490 * the last indicator should be set.
491 */
492 if ((status & BD_ENET_RX_LAST) == 0)
493 printk("FEC ENET: rcv is not +last\n");
1da177e4 494
22f6b860
SH
495 if (!fep->opened)
496 goto rx_processing_done;
1da177e4 497
22f6b860
SH
498 /* Check for errors. */
499 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
1da177e4 500 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
22f6b860
SH
501 dev->stats.rx_errors++;
502 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
503 /* Frame too long or too short. */
504 dev->stats.rx_length_errors++;
505 }
506 if (status & BD_ENET_RX_NO) /* Frame alignment */
507 dev->stats.rx_frame_errors++;
508 if (status & BD_ENET_RX_CR) /* CRC Error */
509 dev->stats.rx_crc_errors++;
510 if (status & BD_ENET_RX_OV) /* FIFO overrun */
511 dev->stats.rx_fifo_errors++;
1da177e4 512 }
1da177e4 513
22f6b860
SH
514 /* Report late collisions as a frame error.
515 * On this error, the BD is closed, but we don't know what we
516 * have in the buffer. So, just drop this frame on the floor.
517 */
518 if (status & BD_ENET_RX_CL) {
519 dev->stats.rx_errors++;
520 dev->stats.rx_frame_errors++;
521 goto rx_processing_done;
522 }
1da177e4 523
22f6b860
SH
524 /* Process the incoming frame. */
525 dev->stats.rx_packets++;
526 pkt_len = bdp->cbd_datlen;
527 dev->stats.rx_bytes += pkt_len;
528 data = (__u8*)__va(bdp->cbd_bufaddr);
1da177e4 529
f0b3fbea
SH
530 dma_unmap_single(NULL, bdp->cbd_bufaddr, bdp->cbd_datlen,
531 DMA_FROM_DEVICE);
ccdc4f19 532
b5680e0b
SG
533 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
534 swap_buffer(data, pkt_len);
535
22f6b860
SH
536 /* This does 16 byte alignment, exactly what we need.
537 * The packet length includes FCS, but we don't want to
538 * include that when passing upstream as it messes up
539 * bridging applications.
540 */
8549889c 541 skb = dev_alloc_skb(pkt_len - 4 + NET_IP_ALIGN);
1da177e4 542
8549889c 543 if (unlikely(!skb)) {
22f6b860
SH
544 printk("%s: Memory squeeze, dropping packet.\n",
545 dev->name);
546 dev->stats.rx_dropped++;
547 } else {
8549889c 548 skb_reserve(skb, NET_IP_ALIGN);
22f6b860
SH
549 skb_put(skb, pkt_len - 4); /* Make room */
550 skb_copy_to_linear_data(skb, data, pkt_len - 4);
551 skb->protocol = eth_type_trans(skb, dev);
552 netif_rx(skb);
553 }
f0b3fbea
SH
554
555 bdp->cbd_bufaddr = dma_map_single(NULL, data, bdp->cbd_datlen,
556 DMA_FROM_DEVICE);
22f6b860
SH
557rx_processing_done:
558 /* Clear the status flags for this buffer */
559 status &= ~BD_ENET_RX_STATS;
1da177e4 560
22f6b860
SH
561 /* Mark the buffer empty */
562 status |= BD_ENET_RX_EMPTY;
563 bdp->cbd_sc = status;
6aa20a22 564
22f6b860
SH
565 /* Update BD pointer to next entry */
566 if (status & BD_ENET_RX_WRAP)
567 bdp = fep->rx_bd_base;
568 else
569 bdp++;
570 /* Doing this here will keep the FEC running while we process
571 * incoming frames. On a heavily loaded network, we should be
572 * able to keep up at the expense of system resources.
573 */
574 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
575 }
2e28532f 576 fep->cur_rx = bdp;
1da177e4 577
81538e74 578 spin_unlock(&fep->hw_lock);
1da177e4
LT
579}
580
e6b043d5 581/* ------------------------------------------------------------------------- */
e6b043d5 582static void __inline__ fec_get_mac(struct net_device *dev)
1da177e4 583{
e6b043d5 584 struct fec_enet_private *fep = netdev_priv(dev);
49da97dc 585 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
e6b043d5 586 unsigned char *iap, tmpaddr[ETH_ALEN];
1da177e4 587
49da97dc
SG
588 /*
589 * try to get mac address in following order:
590 *
591 * 1) module parameter via kernel command line in form
592 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
593 */
594 iap = macaddr;
595
596 /*
597 * 2) from flash or fuse (via platform data)
598 */
599 if (!is_valid_ether_addr(iap)) {
600#ifdef CONFIG_M5272
601 if (FEC_FLASHMAC)
602 iap = (unsigned char *)FEC_FLASHMAC;
603#else
604 if (pdata)
605 memcpy(iap, pdata->mac, ETH_ALEN);
606#endif
607 }
608
609 /*
610 * 3) FEC mac registers set by bootloader
611 */
612 if (!is_valid_ether_addr(iap)) {
613 *((unsigned long *) &tmpaddr[0]) =
614 be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
615 *((unsigned short *) &tmpaddr[4]) =
616 be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
e6b043d5 617 iap = &tmpaddr[0];
1da177e4
LT
618 }
619
e6b043d5 620 memcpy(dev->dev_addr, iap, ETH_ALEN);
1da177e4 621
49da97dc
SG
622 /* Adjust MAC if using macaddr */
623 if (iap == macaddr)
624 dev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->pdev->id;
1da177e4
LT
625}
626
e6b043d5 627/* ------------------------------------------------------------------------- */
1da177e4 628
e6b043d5
BW
629/*
630 * Phy section
631 */
632static void fec_enet_adjust_link(struct net_device *dev)
1da177e4
LT
633{
634 struct fec_enet_private *fep = netdev_priv(dev);
e6b043d5
BW
635 struct phy_device *phy_dev = fep->phy_dev;
636 unsigned long flags;
1da177e4 637
e6b043d5 638 int status_change = 0;
1da177e4 639
e6b043d5 640 spin_lock_irqsave(&fep->hw_lock, flags);
1da177e4 641
e6b043d5
BW
642 /* Prevent a state halted on mii error */
643 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
644 phy_dev->state = PHY_RESUMING;
645 goto spin_unlock;
646 }
1da177e4 647
e6b043d5
BW
648 /* Duplex link change */
649 if (phy_dev->link) {
650 if (fep->full_duplex != phy_dev->duplex) {
651 fec_restart(dev, phy_dev->duplex);
652 status_change = 1;
653 }
654 }
1da177e4 655
e6b043d5
BW
656 /* Link on or off change */
657 if (phy_dev->link != fep->link) {
658 fep->link = phy_dev->link;
659 if (phy_dev->link)
660 fec_restart(dev, phy_dev->duplex);
1da177e4 661 else
e6b043d5
BW
662 fec_stop(dev);
663 status_change = 1;
1da177e4 664 }
6aa20a22 665
e6b043d5
BW
666spin_unlock:
667 spin_unlock_irqrestore(&fep->hw_lock, flags);
1da177e4 668
e6b043d5
BW
669 if (status_change)
670 phy_print_status(phy_dev);
671}
1da177e4 672
e6b043d5 673static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
1da177e4 674{
e6b043d5 675 struct fec_enet_private *fep = bus->priv;
97b72e43 676 unsigned long time_left;
1da177e4 677
e6b043d5 678 fep->mii_timeout = 0;
97b72e43 679 init_completion(&fep->mdio_done);
e6b043d5
BW
680
681 /* start a read op */
682 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
683 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
684 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
685
686 /* wait for end of transfer */
97b72e43
BS
687 time_left = wait_for_completion_timeout(&fep->mdio_done,
688 usecs_to_jiffies(FEC_MII_TIMEOUT));
689 if (time_left == 0) {
690 fep->mii_timeout = 1;
691 printk(KERN_ERR "FEC: MDIO read timeout\n");
692 return -ETIMEDOUT;
1da177e4 693 }
1da177e4 694
e6b043d5
BW
695 /* return value */
696 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
7dd6a2aa 697}
6aa20a22 698
e6b043d5
BW
699static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
700 u16 value)
1da177e4 701{
e6b043d5 702 struct fec_enet_private *fep = bus->priv;
97b72e43 703 unsigned long time_left;
1da177e4 704
e6b043d5 705 fep->mii_timeout = 0;
97b72e43 706 init_completion(&fep->mdio_done);
1da177e4 707
862f0982
SG
708 /* start a write op */
709 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
e6b043d5
BW
710 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
711 FEC_MMFR_TA | FEC_MMFR_DATA(value),
712 fep->hwp + FEC_MII_DATA);
713
714 /* wait for end of transfer */
97b72e43
BS
715 time_left = wait_for_completion_timeout(&fep->mdio_done,
716 usecs_to_jiffies(FEC_MII_TIMEOUT));
717 if (time_left == 0) {
718 fep->mii_timeout = 1;
719 printk(KERN_ERR "FEC: MDIO write timeout\n");
720 return -ETIMEDOUT;
e6b043d5 721 }
1da177e4 722
e6b043d5
BW
723 return 0;
724}
1da177e4 725
e6b043d5 726static int fec_enet_mdio_reset(struct mii_bus *bus)
1da177e4 727{
e6b043d5 728 return 0;
1da177e4
LT
729}
730
e6b043d5 731static int fec_enet_mii_probe(struct net_device *dev)
562d2f8c 732{
4cf1653a 733 struct fec_enet_private *fep = netdev_priv(dev);
e6b043d5 734 struct phy_device *phy_dev = NULL;
6fcc040f
GU
735 char mdio_bus_id[MII_BUS_ID_SIZE];
736 char phy_name[MII_BUS_ID_SIZE + 3];
737 int phy_id;
b5680e0b 738 int dev_id = fep->pdev->id;
562d2f8c 739
418bd0d4
BW
740 fep->phy_dev = NULL;
741
6fcc040f
GU
742 /* check for attached phy */
743 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
744 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
745 continue;
746 if (fep->mii_bus->phy_map[phy_id] == NULL)
747 continue;
748 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
749 continue;
b5680e0b
SG
750 if (dev_id--)
751 continue;
6fcc040f
GU
752 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
753 break;
e6b043d5 754 }
1da177e4 755
6fcc040f
GU
756 if (phy_id >= PHY_MAX_ADDR) {
757 printk(KERN_INFO "%s: no PHY, assuming direct connection "
758 "to switch\n", dev->name);
759 strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE);
760 phy_id = 0;
761 }
762
763 snprintf(phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT, mdio_bus_id, phy_id);
764 phy_dev = phy_connect(dev, phy_name, &fec_enet_adjust_link, 0,
765 PHY_INTERFACE_MODE_MII);
766 if (IS_ERR(phy_dev)) {
767 printk(KERN_ERR "%s: could not attach to PHY\n", dev->name);
768 return PTR_ERR(phy_dev);
e6b043d5 769 }
1da177e4 770
e6b043d5
BW
771 /* mask with MAC supported features */
772 phy_dev->supported &= PHY_BASIC_FEATURES;
773 phy_dev->advertising = phy_dev->supported;
1da177e4 774
e6b043d5
BW
775 fep->phy_dev = phy_dev;
776 fep->link = 0;
777 fep->full_duplex = 0;
1da177e4 778
418bd0d4
BW
779 printk(KERN_INFO "%s: Freescale FEC PHY driver [%s] "
780 "(mii_bus:phy_addr=%s, irq=%d)\n", dev->name,
781 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
782 fep->phy_dev->irq);
783
e6b043d5 784 return 0;
1da177e4
LT
785}
786
e6b043d5 787static int fec_enet_mii_init(struct platform_device *pdev)
562d2f8c 788{
b5680e0b 789 static struct mii_bus *fec0_mii_bus;
e6b043d5 790 struct net_device *dev = platform_get_drvdata(pdev);
562d2f8c 791 struct fec_enet_private *fep = netdev_priv(dev);
b5680e0b
SG
792 const struct platform_device_id *id_entry =
793 platform_get_device_id(fep->pdev);
e6b043d5 794 int err = -ENXIO, i;
6b265293 795
b5680e0b
SG
796 /*
797 * The dual fec interfaces are not equivalent with enet-mac.
798 * Here are the differences:
799 *
800 * - fec0 supports MII & RMII modes while fec1 only supports RMII
801 * - fec0 acts as the 1588 time master while fec1 is slave
802 * - external phys can only be configured by fec0
803 *
804 * That is to say fec1 can not work independently. It only works
805 * when fec0 is working. The reason behind this design is that the
806 * second interface is added primarily for Switch mode.
807 *
808 * Because of the last point above, both phys are attached on fec0
809 * mdio interface in board design, and need to be configured by
810 * fec0 mii_bus.
811 */
812 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && pdev->id) {
813 /* fec1 uses fec0 mii_bus */
814 fep->mii_bus = fec0_mii_bus;
815 return 0;
816 }
817
e6b043d5 818 fep->mii_timeout = 0;
1da177e4 819
e6b043d5
BW
820 /*
821 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
822 */
823 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk), 5000000) << 1;
824 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1da177e4 825
e6b043d5
BW
826 fep->mii_bus = mdiobus_alloc();
827 if (fep->mii_bus == NULL) {
828 err = -ENOMEM;
829 goto err_out;
1da177e4
LT
830 }
831
e6b043d5
BW
832 fep->mii_bus->name = "fec_enet_mii_bus";
833 fep->mii_bus->read = fec_enet_mdio_read;
834 fep->mii_bus->write = fec_enet_mdio_write;
835 fep->mii_bus->reset = fec_enet_mdio_reset;
6fcc040f 836 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%x", pdev->id + 1);
e6b043d5
BW
837 fep->mii_bus->priv = fep;
838 fep->mii_bus->parent = &pdev->dev;
839
840 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
841 if (!fep->mii_bus->irq) {
842 err = -ENOMEM;
843 goto err_out_free_mdiobus;
1da177e4
LT
844 }
845
e6b043d5
BW
846 for (i = 0; i < PHY_MAX_ADDR; i++)
847 fep->mii_bus->irq[i] = PHY_POLL;
1da177e4 848
e6b043d5 849 platform_set_drvdata(dev, fep->mii_bus);
1da177e4 850
e6b043d5
BW
851 if (mdiobus_register(fep->mii_bus))
852 goto err_out_free_mdio_irq;
1da177e4 853
b5680e0b
SG
854 /* save fec0 mii_bus */
855 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
856 fec0_mii_bus = fep->mii_bus;
857
e6b043d5 858 return 0;
1da177e4 859
e6b043d5
BW
860err_out_free_mdio_irq:
861 kfree(fep->mii_bus->irq);
862err_out_free_mdiobus:
863 mdiobus_free(fep->mii_bus);
864err_out:
865 return err;
1da177e4
LT
866}
867
e6b043d5 868static void fec_enet_mii_remove(struct fec_enet_private *fep)
1da177e4 869{
e6b043d5
BW
870 if (fep->phy_dev)
871 phy_disconnect(fep->phy_dev);
872 mdiobus_unregister(fep->mii_bus);
873 kfree(fep->mii_bus->irq);
874 mdiobus_free(fep->mii_bus);
1da177e4
LT
875}
876
e6b043d5
BW
877static int fec_enet_get_settings(struct net_device *dev,
878 struct ethtool_cmd *cmd)
1da177e4
LT
879{
880 struct fec_enet_private *fep = netdev_priv(dev);
e6b043d5 881 struct phy_device *phydev = fep->phy_dev;
1da177e4 882
e6b043d5
BW
883 if (!phydev)
884 return -ENODEV;
1da177e4 885
e6b043d5 886 return phy_ethtool_gset(phydev, cmd);
1da177e4
LT
887}
888
e6b043d5
BW
889static int fec_enet_set_settings(struct net_device *dev,
890 struct ethtool_cmd *cmd)
1da177e4
LT
891{
892 struct fec_enet_private *fep = netdev_priv(dev);
e6b043d5 893 struct phy_device *phydev = fep->phy_dev;
1da177e4 894
e6b043d5
BW
895 if (!phydev)
896 return -ENODEV;
1da177e4 897
e6b043d5 898 return phy_ethtool_sset(phydev, cmd);
1da177e4
LT
899}
900
e6b043d5
BW
901static void fec_enet_get_drvinfo(struct net_device *dev,
902 struct ethtool_drvinfo *info)
1da177e4 903{
e6b043d5 904 struct fec_enet_private *fep = netdev_priv(dev);
6aa20a22 905
e6b043d5
BW
906 strcpy(info->driver, fep->pdev->dev.driver->name);
907 strcpy(info->version, "Revision: 1.0");
908 strcpy(info->bus_info, dev_name(&dev->dev));
1da177e4
LT
909}
910
e6b043d5
BW
911static struct ethtool_ops fec_enet_ethtool_ops = {
912 .get_settings = fec_enet_get_settings,
913 .set_settings = fec_enet_set_settings,
914 .get_drvinfo = fec_enet_get_drvinfo,
915 .get_link = ethtool_op_get_link,
916};
1da177e4 917
e6b043d5 918static int fec_enet_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1da177e4 919{
1da177e4 920 struct fec_enet_private *fep = netdev_priv(dev);
e6b043d5 921 struct phy_device *phydev = fep->phy_dev;
1da177e4 922
e6b043d5
BW
923 if (!netif_running(dev))
924 return -EINVAL;
1da177e4 925
e6b043d5
BW
926 if (!phydev)
927 return -ENODEV;
928
28b04113 929 return phy_mii_ioctl(phydev, rq, cmd);
1da177e4
LT
930}
931
f0b3fbea
SH
932static void fec_enet_free_buffers(struct net_device *dev)
933{
934 struct fec_enet_private *fep = netdev_priv(dev);
935 int i;
936 struct sk_buff *skb;
937 struct bufdesc *bdp;
938
939 bdp = fep->rx_bd_base;
940 for (i = 0; i < RX_RING_SIZE; i++) {
941 skb = fep->rx_skbuff[i];
942
943 if (bdp->cbd_bufaddr)
944 dma_unmap_single(&dev->dev, bdp->cbd_bufaddr,
945 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
946 if (skb)
947 dev_kfree_skb(skb);
948 bdp++;
949 }
950
951 bdp = fep->tx_bd_base;
952 for (i = 0; i < TX_RING_SIZE; i++)
953 kfree(fep->tx_bounce[i]);
954}
955
956static int fec_enet_alloc_buffers(struct net_device *dev)
957{
958 struct fec_enet_private *fep = netdev_priv(dev);
959 int i;
960 struct sk_buff *skb;
961 struct bufdesc *bdp;
962
963 bdp = fep->rx_bd_base;
964 for (i = 0; i < RX_RING_SIZE; i++) {
965 skb = dev_alloc_skb(FEC_ENET_RX_FRSIZE);
966 if (!skb) {
967 fec_enet_free_buffers(dev);
968 return -ENOMEM;
969 }
970 fep->rx_skbuff[i] = skb;
971
972 bdp->cbd_bufaddr = dma_map_single(&dev->dev, skb->data,
973 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
974 bdp->cbd_sc = BD_ENET_RX_EMPTY;
975 bdp++;
976 }
977
978 /* Set the last buffer to wrap. */
979 bdp--;
980 bdp->cbd_sc |= BD_SC_WRAP;
981
982 bdp = fep->tx_bd_base;
983 for (i = 0; i < TX_RING_SIZE; i++) {
984 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
985
986 bdp->cbd_sc = 0;
987 bdp->cbd_bufaddr = 0;
988 bdp++;
989 }
990
991 /* Set the last buffer to wrap. */
992 bdp--;
993 bdp->cbd_sc |= BD_SC_WRAP;
994
995 return 0;
996}
997
1da177e4
LT
998static int
999fec_enet_open(struct net_device *dev)
1000{
1001 struct fec_enet_private *fep = netdev_priv(dev);
f0b3fbea 1002 int ret;
1da177e4
LT
1003
1004 /* I should reset the ring buffers here, but I don't yet know
1005 * a simple way to do that.
1006 */
1da177e4 1007
f0b3fbea
SH
1008 ret = fec_enet_alloc_buffers(dev);
1009 if (ret)
1010 return ret;
1011
418bd0d4
BW
1012 /* Probe and connect to PHY when open the interface */
1013 ret = fec_enet_mii_probe(dev);
1014 if (ret) {
1015 fec_enet_free_buffers(dev);
1016 return ret;
1017 }
e6b043d5 1018 phy_start(fep->phy_dev);
1da177e4
LT
1019 netif_start_queue(dev);
1020 fep->opened = 1;
22f6b860 1021 return 0;
1da177e4
LT
1022}
1023
1024static int
1025fec_enet_close(struct net_device *dev)
1026{
1027 struct fec_enet_private *fep = netdev_priv(dev);
1028
22f6b860 1029 /* Don't know what to do yet. */
1da177e4
LT
1030 fep->opened = 0;
1031 netif_stop_queue(dev);
1032 fec_stop(dev);
1033
418bd0d4
BW
1034 if (fep->phy_dev)
1035 phy_disconnect(fep->phy_dev);
1036
f0b3fbea
SH
1037 fec_enet_free_buffers(dev);
1038
1da177e4
LT
1039 return 0;
1040}
1041
1da177e4
LT
1042/* Set or clear the multicast filter for this adaptor.
1043 * Skeleton taken from sunlance driver.
1044 * The CPM Ethernet implementation allows Multicast as well as individual
1045 * MAC address filtering. Some of the drivers check to make sure it is
1046 * a group multicast address, and discard those that are not. I guess I
1047 * will do the same for now, but just remove the test if you want
1048 * individual filtering as well (do the upper net layers want or support
1049 * this kind of feature?).
1050 */
1051
1052#define HASH_BITS 6 /* #bits in hash */
1053#define CRC32_POLY 0xEDB88320
1054
1055static void set_multicast_list(struct net_device *dev)
1056{
f44d6305 1057 struct fec_enet_private *fep = netdev_priv(dev);
22bedad3 1058 struct netdev_hw_addr *ha;
48e2f183 1059 unsigned int i, bit, data, crc, tmp;
1da177e4
LT
1060 unsigned char hash;
1061
22f6b860 1062 if (dev->flags & IFF_PROMISC) {
f44d6305
SH
1063 tmp = readl(fep->hwp + FEC_R_CNTRL);
1064 tmp |= 0x8;
1065 writel(tmp, fep->hwp + FEC_R_CNTRL);
4e831836
SH
1066 return;
1067 }
1da177e4 1068
4e831836
SH
1069 tmp = readl(fep->hwp + FEC_R_CNTRL);
1070 tmp &= ~0x8;
1071 writel(tmp, fep->hwp + FEC_R_CNTRL);
1072
1073 if (dev->flags & IFF_ALLMULTI) {
1074 /* Catch all multicast addresses, so set the
1075 * filter to all 1's
1076 */
1077 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1078 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1079
1080 return;
1081 }
1082
1083 /* Clear filter and add the addresses in hash register
1084 */
1085 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1086 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1087
22bedad3 1088 netdev_for_each_mc_addr(ha, dev) {
4e831836 1089 /* Only support group multicast for now */
22bedad3 1090 if (!(ha->addr[0] & 1))
4e831836
SH
1091 continue;
1092
1093 /* calculate crc32 value of mac address */
1094 crc = 0xffffffff;
1095
22bedad3
JP
1096 for (i = 0; i < dev->addr_len; i++) {
1097 data = ha->addr[i];
4e831836
SH
1098 for (bit = 0; bit < 8; bit++, data >>= 1) {
1099 crc = (crc >> 1) ^
1100 (((crc ^ data) & 1) ? CRC32_POLY : 0);
1da177e4
LT
1101 }
1102 }
4e831836
SH
1103
1104 /* only upper 6 bits (HASH_BITS) are used
1105 * which point to specific bit in he hash registers
1106 */
1107 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1108
1109 if (hash > 31) {
1110 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1111 tmp |= 1 << (hash - 32);
1112 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1113 } else {
1114 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1115 tmp |= 1 << hash;
1116 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1117 }
1da177e4
LT
1118 }
1119}
1120
22f6b860 1121/* Set a MAC change in hardware. */
009fda83
SH
1122static int
1123fec_set_mac_address(struct net_device *dev, void *p)
1da177e4 1124{
f44d6305 1125 struct fec_enet_private *fep = netdev_priv(dev);
009fda83
SH
1126 struct sockaddr *addr = p;
1127
1128 if (!is_valid_ether_addr(addr->sa_data))
1129 return -EADDRNOTAVAIL;
1130
1131 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1da177e4 1132
f44d6305
SH
1133 writel(dev->dev_addr[3] | (dev->dev_addr[2] << 8) |
1134 (dev->dev_addr[1] << 16) | (dev->dev_addr[0] << 24),
1135 fep->hwp + FEC_ADDR_LOW);
1136 writel((dev->dev_addr[5] << 16) | (dev->dev_addr[4] << 24),
7cff0943 1137 fep->hwp + FEC_ADDR_HIGH);
009fda83 1138 return 0;
1da177e4
LT
1139}
1140
009fda83
SH
1141static const struct net_device_ops fec_netdev_ops = {
1142 .ndo_open = fec_enet_open,
1143 .ndo_stop = fec_enet_close,
1144 .ndo_start_xmit = fec_enet_start_xmit,
1145 .ndo_set_multicast_list = set_multicast_list,
635ecaa7 1146 .ndo_change_mtu = eth_change_mtu,
009fda83
SH
1147 .ndo_validate_addr = eth_validate_addr,
1148 .ndo_tx_timeout = fec_timeout,
1149 .ndo_set_mac_address = fec_set_mac_address,
e6b043d5 1150 .ndo_do_ioctl = fec_enet_ioctl,
009fda83
SH
1151};
1152
1da177e4
LT
1153 /*
1154 * XXX: We need to clean up on failure exits here.
ead73183 1155 *
1da177e4 1156 */
8649a230 1157static int fec_enet_init(struct net_device *dev)
1da177e4
LT
1158{
1159 struct fec_enet_private *fep = netdev_priv(dev);
f0b3fbea 1160 struct bufdesc *cbd_base;
633e7533 1161 struct bufdesc *bdp;
f0b3fbea 1162 int i;
1da177e4 1163
8d4dd5cf
SH
1164 /* Allocate memory for buffer descriptors. */
1165 cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
1166 GFP_KERNEL);
1167 if (!cbd_base) {
562d2f8c
GU
1168 printk("FEC: allocate descriptor memory failed?\n");
1169 return -ENOMEM;
1170 }
1171
3b2b74ca 1172 spin_lock_init(&fep->hw_lock);
3b2b74ca 1173
f44d6305 1174 fep->hwp = (void __iomem *)dev->base_addr;
cb84d6e7 1175 fep->netdev = dev;
1da177e4 1176
49da97dc 1177 /* Get the Ethernet address */
1da177e4
LT
1178 fec_get_mac(dev);
1179
8d4dd5cf 1180 /* Set receive and transmit descriptor base. */
1da177e4
LT
1181 fep->rx_bd_base = cbd_base;
1182 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1183
22f6b860 1184 /* The FEC Ethernet specific entries in the device structure */
1da177e4 1185 dev->watchdog_timeo = TX_TIMEOUT;
009fda83 1186 dev->netdev_ops = &fec_netdev_ops;
e6b043d5 1187 dev->ethtool_ops = &fec_enet_ethtool_ops;
633e7533
RH
1188
1189 /* Initialize the receive buffer descriptors. */
1190 bdp = fep->rx_bd_base;
1191 for (i = 0; i < RX_RING_SIZE; i++) {
1192
1193 /* Initialize the BD for every fragment in the page. */
1194 bdp->cbd_sc = 0;
1195 bdp++;
1196 }
1197
1198 /* Set the last buffer to wrap */
1199 bdp--;
1200 bdp->cbd_sc |= BD_SC_WRAP;
1201
1202 /* ...and the same for transmit */
1203 bdp = fep->tx_bd_base;
1204 for (i = 0; i < TX_RING_SIZE; i++) {
1205
1206 /* Initialize the BD for every fragment in the page. */
1207 bdp->cbd_sc = 0;
1208 bdp->cbd_bufaddr = 0;
1209 bdp++;
1210 }
1211
1212 /* Set the last buffer to wrap */
1213 bdp--;
1214 bdp->cbd_sc |= BD_SC_WRAP;
1215
ead73183 1216 fec_restart(dev, 0);
1da177e4 1217
1da177e4
LT
1218 return 0;
1219}
1220
1221/* This function is called to start or restart the FEC during a link
1222 * change. This only happens when switching between half and full
1223 * duplex.
1224 */
1225static void
1226fec_restart(struct net_device *dev, int duplex)
1227{
f44d6305 1228 struct fec_enet_private *fep = netdev_priv(dev);
b5680e0b
SG
1229 const struct platform_device_id *id_entry =
1230 platform_get_device_id(fep->pdev);
1da177e4 1231 int i;
b5680e0b 1232 u32 val, temp_mac[2];
1da177e4 1233
f44d6305
SH
1234 /* Whack a reset. We should wait for this. */
1235 writel(1, fep->hwp + FEC_ECNTRL);
1da177e4
LT
1236 udelay(10);
1237
b5680e0b
SG
1238 /*
1239 * enet-mac reset will reset mac address registers too,
1240 * so need to reconfigure it.
1241 */
1242 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
1243 memcpy(&temp_mac, dev->dev_addr, ETH_ALEN);
1244 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
1245 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
1246 }
1247
f44d6305
SH
1248 /* Clear any outstanding interrupt. */
1249 writel(0xffc00000, fep->hwp + FEC_IEVENT);
1da177e4 1250
f44d6305
SH
1251 /* Reset all multicast. */
1252 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1253 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
4f1ceb4b
SH
1254#ifndef CONFIG_M5272
1255 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
1256 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
1257#endif
1da177e4 1258
f44d6305
SH
1259 /* Set maximum receive buffer size. */
1260 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
1da177e4 1261
f44d6305
SH
1262 /* Set receive and transmit descriptor base. */
1263 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
2e28532f 1264 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc) * RX_RING_SIZE,
f44d6305 1265 fep->hwp + FEC_X_DES_START);
1da177e4
LT
1266
1267 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
1268 fep->cur_rx = fep->rx_bd_base;
1269
f44d6305 1270 /* Reset SKB transmit buffers. */
1da177e4 1271 fep->skb_cur = fep->skb_dirty = 0;
22f6b860
SH
1272 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
1273 if (fep->tx_skbuff[i]) {
1da177e4
LT
1274 dev_kfree_skb_any(fep->tx_skbuff[i]);
1275 fep->tx_skbuff[i] = NULL;
1276 }
1277 }
1278
22f6b860 1279 /* Enable MII mode */
1da177e4 1280 if (duplex) {
f44d6305
SH
1281 /* MII enable / FD enable */
1282 writel(OPT_FRAME_SIZE | 0x04, fep->hwp + FEC_R_CNTRL);
1283 writel(0x04, fep->hwp + FEC_X_CNTRL);
f909b1ef 1284 } else {
f44d6305
SH
1285 /* MII enable / No Rcv on Xmit */
1286 writel(OPT_FRAME_SIZE | 0x06, fep->hwp + FEC_R_CNTRL);
1287 writel(0x0, fep->hwp + FEC_X_CNTRL);
1da177e4
LT
1288 }
1289 fep->full_duplex = duplex;
1290
22f6b860 1291 /* Set MII speed */
f44d6305 1292 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1da177e4 1293
b5680e0b
SG
1294 /*
1295 * The phy interface and speed need to get configured
1296 * differently on enet-mac.
1297 */
1298 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
1299 val = readl(fep->hwp + FEC_R_CNTRL);
5eb32bd0 1300
b5680e0b
SG
1301 /* MII or RMII */
1302 if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
1303 val |= (1 << 8);
1304 else
1305 val &= ~(1 << 8);
5eb32bd0 1306
b5680e0b
SG
1307 /* 10M or 100M */
1308 if (fep->phy_dev && fep->phy_dev->speed == SPEED_100)
1309 val &= ~(1 << 9);
1310 else
1311 val |= (1 << 9);
1312
1313 writel(val, fep->hwp + FEC_R_CNTRL);
1314 } else {
1315#ifdef FEC_MIIGSK_ENR
1316 if (fep->phy_interface == PHY_INTERFACE_MODE_RMII) {
1317 /* disable the gasket and wait */
1318 writel(0, fep->hwp + FEC_MIIGSK_ENR);
1319 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
1320 udelay(1);
1321
1322 /*
1323 * configure the gasket:
1324 * RMII, 50 MHz, no loopback, no echo
1325 */
1326 writel(1, fep->hwp + FEC_MIIGSK_CFGR);
1327
1328 /* re-enable the gasket */
1329 writel(2, fep->hwp + FEC_MIIGSK_ENR);
1330 }
5eb32bd0 1331#endif
b5680e0b 1332 }
5eb32bd0 1333
22f6b860 1334 /* And last, enable the transmit and receive processing */
f44d6305
SH
1335 writel(2, fep->hwp + FEC_ECNTRL);
1336 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
6b265293 1337
22f6b860 1338 /* Enable interrupts we wish to service */
4bee1f9a 1339 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
1da177e4
LT
1340}
1341
1342static void
1343fec_stop(struct net_device *dev)
1344{
f44d6305 1345 struct fec_enet_private *fep = netdev_priv(dev);
1da177e4 1346
22f6b860 1347 /* We cannot expect a graceful transmit stop without link !!! */
f44d6305
SH
1348 if (fep->link) {
1349 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
677177c5 1350 udelay(10);
f44d6305 1351 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
677177c5 1352 printk("fec_stop : Graceful transmit stop did not complete !\n");
f44d6305 1353 }
1da177e4 1354
f44d6305
SH
1355 /* Whack a reset. We should wait for this. */
1356 writel(1, fep->hwp + FEC_ECNTRL);
1da177e4 1357 udelay(10);
f44d6305 1358 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
4bee1f9a 1359 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
1da177e4
LT
1360}
1361
ead73183
SH
1362static int __devinit
1363fec_probe(struct platform_device *pdev)
1364{
1365 struct fec_enet_private *fep;
5eb32bd0 1366 struct fec_platform_data *pdata;
ead73183
SH
1367 struct net_device *ndev;
1368 int i, irq, ret = 0;
1369 struct resource *r;
1370
1371 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1372 if (!r)
1373 return -ENXIO;
1374
1375 r = request_mem_region(r->start, resource_size(r), pdev->name);
1376 if (!r)
1377 return -EBUSY;
1378
1379 /* Init network device */
1380 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
1381 if (!ndev)
1382 return -ENOMEM;
1383
1384 SET_NETDEV_DEV(ndev, &pdev->dev);
1385
1386 /* setup board info structure */
1387 fep = netdev_priv(ndev);
1388 memset(fep, 0, sizeof(*fep));
1389
1390 ndev->base_addr = (unsigned long)ioremap(r->start, resource_size(r));
e6b043d5 1391 fep->pdev = pdev;
ead73183
SH
1392
1393 if (!ndev->base_addr) {
1394 ret = -ENOMEM;
1395 goto failed_ioremap;
1396 }
1397
1398 platform_set_drvdata(pdev, ndev);
1399
5eb32bd0
BS
1400 pdata = pdev->dev.platform_data;
1401 if (pdata)
1402 fep->phy_interface = pdata->phy;
1403
ead73183
SH
1404 /* This device has up to three irqs on some platforms */
1405 for (i = 0; i < 3; i++) {
1406 irq = platform_get_irq(pdev, i);
1407 if (i && irq < 0)
1408 break;
1409 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1410 if (ret) {
1411 while (i >= 0) {
1412 irq = platform_get_irq(pdev, i);
1413 free_irq(irq, ndev);
1414 i--;
1415 }
1416 goto failed_irq;
1417 }
1418 }
1419
1420 fep->clk = clk_get(&pdev->dev, "fec_clk");
1421 if (IS_ERR(fep->clk)) {
1422 ret = PTR_ERR(fep->clk);
1423 goto failed_clk;
1424 }
1425 clk_enable(fep->clk);
1426
8649a230 1427 ret = fec_enet_init(ndev);
ead73183
SH
1428 if (ret)
1429 goto failed_init;
1430
e6b043d5
BW
1431 ret = fec_enet_mii_init(pdev);
1432 if (ret)
1433 goto failed_mii_init;
1434
03c698c9
OS
1435 /* Carrier starts down, phylib will bring it up */
1436 netif_carrier_off(ndev);
1437
ead73183
SH
1438 ret = register_netdev(ndev);
1439 if (ret)
1440 goto failed_register;
1441
1442 return 0;
1443
1444failed_register:
e6b043d5
BW
1445 fec_enet_mii_remove(fep);
1446failed_mii_init:
ead73183
SH
1447failed_init:
1448 clk_disable(fep->clk);
1449 clk_put(fep->clk);
1450failed_clk:
1451 for (i = 0; i < 3; i++) {
1452 irq = platform_get_irq(pdev, i);
1453 if (irq > 0)
1454 free_irq(irq, ndev);
1455 }
1456failed_irq:
1457 iounmap((void __iomem *)ndev->base_addr);
1458failed_ioremap:
1459 free_netdev(ndev);
1460
1461 return ret;
1462}
1463
1464static int __devexit
1465fec_drv_remove(struct platform_device *pdev)
1466{
1467 struct net_device *ndev = platform_get_drvdata(pdev);
1468 struct fec_enet_private *fep = netdev_priv(ndev);
1469
1470 platform_set_drvdata(pdev, NULL);
1471
1472 fec_stop(ndev);
e6b043d5 1473 fec_enet_mii_remove(fep);
ead73183
SH
1474 clk_disable(fep->clk);
1475 clk_put(fep->clk);
1476 iounmap((void __iomem *)ndev->base_addr);
1477 unregister_netdev(ndev);
1478 free_netdev(ndev);
1479 return 0;
1480}
1481
59d4289b 1482#ifdef CONFIG_PM
ead73183 1483static int
87cad5c3 1484fec_suspend(struct device *dev)
ead73183 1485{
87cad5c3 1486 struct net_device *ndev = dev_get_drvdata(dev);
ead73183
SH
1487 struct fec_enet_private *fep;
1488
1489 if (ndev) {
1490 fep = netdev_priv(ndev);
bcc67771
SG
1491 if (netif_running(ndev)) {
1492 fec_stop(ndev);
1493 netif_device_detach(ndev);
1494 }
e3fe8558 1495 clk_disable(fep->clk);
ead73183
SH
1496 }
1497 return 0;
1498}
1499
1500static int
87cad5c3 1501fec_resume(struct device *dev)
ead73183 1502{
87cad5c3 1503 struct net_device *ndev = dev_get_drvdata(dev);
e3fe8558 1504 struct fec_enet_private *fep;
ead73183
SH
1505
1506 if (ndev) {
e3fe8558
EB
1507 fep = netdev_priv(ndev);
1508 clk_enable(fep->clk);
bcc67771
SG
1509 if (netif_running(ndev)) {
1510 fec_restart(ndev, fep->full_duplex);
1511 netif_device_attach(ndev);
1512 }
ead73183
SH
1513 }
1514 return 0;
1515}
1516
59d4289b
DK
1517static const struct dev_pm_ops fec_pm_ops = {
1518 .suspend = fec_suspend,
1519 .resume = fec_resume,
1520 .freeze = fec_suspend,
1521 .thaw = fec_resume,
1522 .poweroff = fec_suspend,
1523 .restore = fec_resume,
1524};
87cad5c3 1525#endif
59d4289b 1526
ead73183
SH
1527static struct platform_driver fec_driver = {
1528 .driver = {
b5680e0b 1529 .name = DRIVER_NAME,
87cad5c3
EB
1530 .owner = THIS_MODULE,
1531#ifdef CONFIG_PM
1532 .pm = &fec_pm_ops,
1533#endif
ead73183 1534 },
b5680e0b 1535 .id_table = fec_devtype,
87cad5c3
EB
1536 .probe = fec_probe,
1537 .remove = __devexit_p(fec_drv_remove),
ead73183
SH
1538};
1539
1540static int __init
1541fec_enet_module_init(void)
1542{
1543 printk(KERN_INFO "FEC Ethernet Driver\n");
1544
1545 return platform_driver_register(&fec_driver);
1546}
1547
1548static void __exit
1549fec_enet_cleanup(void)
1550{
1551 platform_driver_unregister(&fec_driver);
1552}
1553
1554module_exit(fec_enet_cleanup);
1da177e4
LT
1555module_init(fec_enet_module_init);
1556
1557MODULE_LICENSE("GPL");