ipg: fix an unsigned widening cast of '~' truncation issue
[deliverable/linux.git] / drivers / net / ethernet / freescale / fec_main.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 20 *
230dec61 21 * Copyright (C) 2010-2011 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>
1da177e4
LT
32#include <linux/init.h>
33#include <linux/delay.h>
34#include <linux/netdevice.h>
35#include <linux/etherdevice.h>
36#include <linux/skbuff.h>
4c09eed9
JB
37#include <linux/in.h>
38#include <linux/ip.h>
39#include <net/ip.h>
40#include <linux/tcp.h>
41#include <linux/udp.h>
42#include <linux/icmp.h>
1da177e4
LT
43#include <linux/spinlock.h>
44#include <linux/workqueue.h>
45#include <linux/bitops.h>
6f501b17
SH
46#include <linux/io.h>
47#include <linux/irq.h>
196719ec 48#include <linux/clk.h>
ead73183 49#include <linux/platform_device.h>
e6b043d5 50#include <linux/phy.h>
5eb32bd0 51#include <linux/fec.h>
ca2cc333
SG
52#include <linux/of.h>
53#include <linux/of_device.h>
54#include <linux/of_gpio.h>
55#include <linux/of_net.h>
b2bccee1 56#include <linux/pinctrl/consumer.h>
5fa9c0fe 57#include <linux/regulator/consumer.h>
1da177e4 58
080853af 59#include <asm/cacheflush.h>
196719ec 60
1da177e4 61#include "fec.h"
1da177e4 62
085e79ed 63#if defined(CONFIG_ARM)
196719ec
SH
64#define FEC_ALIGNMENT 0xf
65#else
66#define FEC_ALIGNMENT 0x3
67#endif
68
b5680e0b 69#define DRIVER_NAME "fec"
dc975382 70#define FEC_NAPI_WEIGHT 64
b5680e0b 71
baa70a5c
FL
72/* Pause frame feild and FIFO threshold */
73#define FEC_ENET_FCE (1 << 5)
74#define FEC_ENET_RSEM_V 0x84
75#define FEC_ENET_RSFL_V 16
76#define FEC_ENET_RAEM_V 0x8
77#define FEC_ENET_RAFL_V 0x8
78#define FEC_ENET_OPD_V 0xFFF0
79
b5680e0b
SG
80/* Controller is ENET-MAC */
81#define FEC_QUIRK_ENET_MAC (1 << 0)
82/* Controller needs driver to swap frame */
83#define FEC_QUIRK_SWAP_FRAME (1 << 1)
0ca1e290
SG
84/* Controller uses gasket */
85#define FEC_QUIRK_USE_GASKET (1 << 2)
230dec61
SG
86/* Controller has GBIT support */
87#define FEC_QUIRK_HAS_GBIT (1 << 3)
ff43da86
FL
88/* Controller has extend desc buffer */
89#define FEC_QUIRK_HAS_BUFDESC_EX (1 << 4)
48496255
SG
90/* Controller has hardware checksum support */
91#define FEC_QUIRK_HAS_CSUM (1 << 5)
b5680e0b
SG
92
93static struct platform_device_id fec_devtype[] = {
94 {
0ca1e290 95 /* keep it for coldfire */
b5680e0b
SG
96 .name = DRIVER_NAME,
97 .driver_data = 0,
0ca1e290
SG
98 }, {
99 .name = "imx25-fec",
100 .driver_data = FEC_QUIRK_USE_GASKET,
101 }, {
102 .name = "imx27-fec",
103 .driver_data = 0,
b5680e0b
SG
104 }, {
105 .name = "imx28-fec",
106 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME,
230dec61
SG
107 }, {
108 .name = "imx6q-fec",
ff43da86 109 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT |
48496255 110 FEC_QUIRK_HAS_BUFDESC_EX | FEC_QUIRK_HAS_CSUM,
ca7c4a45
JL
111 }, {
112 .name = "mvf-fec",
113 .driver_data = FEC_QUIRK_ENET_MAC,
0ca1e290
SG
114 }, {
115 /* sentinel */
116 }
b5680e0b 117};
0ca1e290 118MODULE_DEVICE_TABLE(platform, fec_devtype);
b5680e0b 119
ca2cc333 120enum imx_fec_type {
a7dd3219 121 IMX25_FEC = 1, /* runs on i.mx25/50/53 */
ca2cc333
SG
122 IMX27_FEC, /* runs on i.mx27/35/51 */
123 IMX28_FEC,
230dec61 124 IMX6Q_FEC,
ca7c4a45 125 MVF_FEC,
ca2cc333
SG
126};
127
128static const struct of_device_id fec_dt_ids[] = {
129 { .compatible = "fsl,imx25-fec", .data = &fec_devtype[IMX25_FEC], },
130 { .compatible = "fsl,imx27-fec", .data = &fec_devtype[IMX27_FEC], },
131 { .compatible = "fsl,imx28-fec", .data = &fec_devtype[IMX28_FEC], },
230dec61 132 { .compatible = "fsl,imx6q-fec", .data = &fec_devtype[IMX6Q_FEC], },
ca7c4a45 133 { .compatible = "fsl,mvf-fec", .data = &fec_devtype[MVF_FEC], },
ca2cc333
SG
134 { /* sentinel */ }
135};
136MODULE_DEVICE_TABLE(of, fec_dt_ids);
137
49da97dc
SG
138static unsigned char macaddr[ETH_ALEN];
139module_param_array(macaddr, byte, NULL, 0);
140MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
1da177e4 141
49da97dc 142#if defined(CONFIG_M5272)
1da177e4
LT
143/*
144 * Some hardware gets it MAC address out of local flash memory.
145 * if this is non-zero then assume it is the address to get MAC from.
146 */
147#if defined(CONFIG_NETtel)
148#define FEC_FLASHMAC 0xf0006006
149#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
150#define FEC_FLASHMAC 0xf0006000
1da177e4
LT
151#elif defined(CONFIG_CANCam)
152#define FEC_FLASHMAC 0xf0020000
7dd6a2aa
GU
153#elif defined (CONFIG_M5272C3)
154#define FEC_FLASHMAC (0xffe04000 + 4)
155#elif defined(CONFIG_MOD5272)
a7dd3219 156#define FEC_FLASHMAC 0xffc0406b
1da177e4
LT
157#else
158#define FEC_FLASHMAC 0
159#endif
43be6366 160#endif /* CONFIG_M5272 */
ead73183 161
ff43da86 162#if (((RX_RING_SIZE + TX_RING_SIZE) * 32) > PAGE_SIZE)
6b265293 163#error "FEC: descriptor ring size constants too large"
562d2f8c
GU
164#endif
165
22f6b860 166/* Interrupt events/masks. */
1da177e4
LT
167#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
168#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
169#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */
170#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */
171#define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */
172#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */
173#define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */
174#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */
175#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */
176#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */
177
4bee1f9a 178#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII)
dc975382 179#define FEC_RX_DISABLED_IMASK (FEC_DEFAULT_IMASK & (~FEC_ENET_RXF))
4bee1f9a 180
1da177e4
LT
181/* The FEC stores dest/src/type, data, and checksum for receive packets.
182 */
183#define PKT_MAXBUF_SIZE 1518
184#define PKT_MINBUF_SIZE 64
185#define PKT_MAXBLR_SIZE 1520
186
4c09eed9
JB
187/* FEC receive acceleration */
188#define FEC_RACC_IPDIS (1 << 1)
189#define FEC_RACC_PRODIS (1 << 2)
190#define FEC_RACC_OPTIONS (FEC_RACC_IPDIS | FEC_RACC_PRODIS)
191
1da177e4 192/*
6b265293 193 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
1da177e4
LT
194 * size bits. Other FEC hardware does not, so we need to take that into
195 * account when setting it.
196 */
562d2f8c 197#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
085e79ed 198 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
1da177e4
LT
199#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
200#else
201#define OPT_FRAME_SIZE 0
202#endif
203
e6b043d5
BW
204/* FEC MII MMFR bits definition */
205#define FEC_MMFR_ST (1 << 30)
206#define FEC_MMFR_OP_READ (2 << 28)
207#define FEC_MMFR_OP_WRITE (1 << 28)
208#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
209#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
210#define FEC_MMFR_TA (2 << 16)
211#define FEC_MMFR_DATA(v) (v & 0xffff)
1da177e4 212
c3b084c2 213#define FEC_MII_TIMEOUT 30000 /* us */
1da177e4 214
22f6b860
SH
215/* Transmitter timeout */
216#define TX_TIMEOUT (2 * HZ)
1da177e4 217
baa70a5c
FL
218#define FEC_PAUSE_FLAG_AUTONEG 0x1
219#define FEC_PAUSE_FLAG_ENABLE 0x2
220
e163cc97
LW
221static int mii_cnt;
222
ff43da86
FL
223static struct bufdesc *fec_enet_get_nextdesc(struct bufdesc *bdp, int is_ex)
224{
225 struct bufdesc_ex *ex = (struct bufdesc_ex *)bdp;
226 if (is_ex)
227 return (struct bufdesc *)(ex + 1);
228 else
229 return bdp + 1;
230}
231
232static struct bufdesc *fec_enet_get_prevdesc(struct bufdesc *bdp, int is_ex)
233{
234 struct bufdesc_ex *ex = (struct bufdesc_ex *)bdp;
235 if (is_ex)
236 return (struct bufdesc *)(ex - 1);
237 else
238 return bdp - 1;
239}
240
b5680e0b
SG
241static void *swap_buffer(void *bufaddr, int len)
242{
243 int i;
244 unsigned int *buf = bufaddr;
245
246 for (i = 0; i < (len + 3) / 4; i++, buf++)
247 *buf = cpu_to_be32(*buf);
248
249 return bufaddr;
250}
251
4c09eed9
JB
252static int
253fec_enet_clear_csum(struct sk_buff *skb, struct net_device *ndev)
254{
255 /* Only run for packets requiring a checksum. */
256 if (skb->ip_summed != CHECKSUM_PARTIAL)
257 return 0;
258
259 if (unlikely(skb_cow_head(skb, 0)))
260 return -1;
261
262 *(__sum16 *)(skb->head + skb->csum_start + skb->csum_offset) = 0;
263
264 return 0;
265}
266
c7621cb3 267static netdev_tx_t
c556167f 268fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
1da177e4 269{
c556167f 270 struct fec_enet_private *fep = netdev_priv(ndev);
b5680e0b
SG
271 const struct platform_device_id *id_entry =
272 platform_get_device_id(fep->pdev);
2e28532f 273 struct bufdesc *bdp;
9555b31e 274 void *bufaddr;
0e702ab3 275 unsigned short status;
de5fb0a0 276 unsigned int index;
1da177e4 277
1da177e4 278 if (!fep->link) {
4c09eed9 279 /* Link is down or auto-negotiation is in progress. */
5b548140 280 return NETDEV_TX_BUSY;
1da177e4
LT
281 }
282
283 /* Fill in a Tx ring entry */
284 bdp = fep->cur_tx;
285
0e702ab3 286 status = bdp->cbd_sc;
22f6b860 287
0e702ab3 288 if (status & BD_ENET_TX_READY) {
1da177e4 289 /* Ooops. All transmit buffers are full. Bail out.
c556167f 290 * This should not happen, since ndev->tbusy should be set.
1da177e4 291 */
31b7720c 292 netdev_err(ndev, "tx queue full!\n");
5b548140 293 return NETDEV_TX_BUSY;
1da177e4 294 }
1da177e4 295
4c09eed9
JB
296 /* Protocol checksum off-load for TCP and UDP. */
297 if (fec_enet_clear_csum(skb, ndev)) {
298 kfree_skb(skb);
299 return NETDEV_TX_OK;
300 }
301
22f6b860 302 /* Clear all of the status flags */
0e702ab3 303 status &= ~BD_ENET_TX_STATS;
1da177e4 304
22f6b860 305 /* Set buffer length and buffer pointer */
9555b31e 306 bufaddr = skb->data;
1da177e4
LT
307 bdp->cbd_datlen = skb->len;
308
309 /*
22f6b860
SH
310 * On some FEC implementations data must be aligned on
311 * 4-byte boundaries. Use bounce buffers to copy data
312 * and get it aligned. Ugh.
1da177e4 313 */
de5fb0a0
FL
314 if (fep->bufdesc_ex)
315 index = (struct bufdesc_ex *)bdp -
316 (struct bufdesc_ex *)fep->tx_bd_base;
317 else
318 index = bdp - fep->tx_bd_base;
319
9555b31e 320 if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
8a73b0bc 321 memcpy(fep->tx_bounce[index], skb->data, skb->len);
9555b31e 322 bufaddr = fep->tx_bounce[index];
1da177e4
LT
323 }
324
b5680e0b
SG
325 /*
326 * Some design made an incorrect assumption on endian mode of
327 * the system that it's running on. As the result, driver has to
328 * swap every frame going to and coming from the controller.
329 */
330 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
331 swap_buffer(bufaddr, skb->len);
332
22f6b860 333 /* Save skb pointer */
de5fb0a0 334 fep->tx_skbuff[index] = skb;
6aa20a22 335
1da177e4
LT
336 /* Push the data cache so the CPM does not get stale memory
337 * data.
338 */
d1ab1f54 339 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, bufaddr,
f0b3fbea 340 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
1da177e4 341
0e702ab3
GU
342 /* Send it on its way. Tell FEC it's ready, interrupt when done,
343 * it's the last BD of the frame, and to put the CRC on the end.
1da177e4 344 */
0e702ab3 345 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
1da177e4 346 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
0e702ab3 347 bdp->cbd_sc = status;
1da177e4 348
ff43da86
FL
349 if (fep->bufdesc_ex) {
350
351 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
352 ebdp->cbd_bdu = 0;
353 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
6605b730 354 fep->hwts_tx_en)) {
ff43da86 355 ebdp->cbd_esc = (BD_ENET_TX_TS | BD_ENET_TX_INT);
6605b730 356 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
ff43da86 357 } else {
ff43da86 358 ebdp->cbd_esc = BD_ENET_TX_INT;
4c09eed9
JB
359
360 /* Enable protocol checksum flags
361 * We do not bother with the IP Checksum bits as they
362 * are done by the kernel
363 */
364 if (skb->ip_summed == CHECKSUM_PARTIAL)
365 ebdp->cbd_esc |= BD_ENET_TX_PINS;
ff43da86 366 }
6605b730 367 }
22f6b860
SH
368 /* If this was the last BD in the ring, start at the beginning again. */
369 if (status & BD_ENET_TX_WRAP)
1da177e4 370 bdp = fep->tx_bd_base;
22f6b860 371 else
ff43da86 372 bdp = fec_enet_get_nextdesc(bdp, fep->bufdesc_ex);
1da177e4 373
de5fb0a0
FL
374 fep->cur_tx = bdp;
375
376 if (fep->cur_tx == fep->dirty_tx)
c556167f 377 netif_stop_queue(ndev);
1da177e4 378
de5fb0a0
FL
379 /* Trigger transmission start */
380 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
1da177e4 381
18a03b97
RC
382 skb_tx_timestamp(skb);
383
6ed10654 384 return NETDEV_TX_OK;
1da177e4
LT
385}
386
14109a59
FL
387/* Init RX & TX buffer descriptors
388 */
389static void fec_enet_bd_init(struct net_device *dev)
390{
391 struct fec_enet_private *fep = netdev_priv(dev);
392 struct bufdesc *bdp;
393 unsigned int i;
394
395 /* Initialize the receive buffer descriptors. */
396 bdp = fep->rx_bd_base;
397 for (i = 0; i < RX_RING_SIZE; i++) {
398
399 /* Initialize the BD for every fragment in the page. */
400 if (bdp->cbd_bufaddr)
401 bdp->cbd_sc = BD_ENET_RX_EMPTY;
402 else
403 bdp->cbd_sc = 0;
404 bdp = fec_enet_get_nextdesc(bdp, fep->bufdesc_ex);
405 }
406
407 /* Set the last buffer to wrap */
408 bdp = fec_enet_get_prevdesc(bdp, fep->bufdesc_ex);
409 bdp->cbd_sc |= BD_SC_WRAP;
410
411 fep->cur_rx = fep->rx_bd_base;
412
413 /* ...and the same for transmit */
414 bdp = fep->tx_bd_base;
415 fep->cur_tx = bdp;
416 for (i = 0; i < TX_RING_SIZE; i++) {
417
418 /* Initialize the BD for every fragment in the page. */
419 bdp->cbd_sc = 0;
420 if (bdp->cbd_bufaddr && fep->tx_skbuff[i]) {
421 dev_kfree_skb_any(fep->tx_skbuff[i]);
422 fep->tx_skbuff[i] = NULL;
423 }
424 bdp->cbd_bufaddr = 0;
425 bdp = fec_enet_get_nextdesc(bdp, fep->bufdesc_ex);
426 }
427
428 /* Set the last buffer to wrap */
429 bdp = fec_enet_get_prevdesc(bdp, fep->bufdesc_ex);
430 bdp->cbd_sc |= BD_SC_WRAP;
431 fep->dirty_tx = bdp;
432}
433
45993653
UKK
434/* This function is called to start or restart the FEC during a link
435 * change. This only happens when switching between half and full
436 * duplex.
437 */
1da177e4 438static void
45993653 439fec_restart(struct net_device *ndev, int duplex)
1da177e4 440{
c556167f 441 struct fec_enet_private *fep = netdev_priv(ndev);
45993653
UKK
442 const struct platform_device_id *id_entry =
443 platform_get_device_id(fep->pdev);
444 int i;
4c09eed9 445 u32 val;
cd1f402c
UKK
446 u32 temp_mac[2];
447 u32 rcntl = OPT_FRAME_SIZE | 0x04;
230dec61 448 u32 ecntl = 0x2; /* ETHEREN */
1da177e4 449
54309fa6
FL
450 if (netif_running(ndev)) {
451 netif_device_detach(ndev);
452 napi_disable(&fep->napi);
453 netif_stop_queue(ndev);
454 netif_tx_lock(ndev);
455 }
456
45993653
UKK
457 /* Whack a reset. We should wait for this. */
458 writel(1, fep->hwp + FEC_ECNTRL);
459 udelay(10);
1da177e4 460
45993653
UKK
461 /*
462 * enet-mac reset will reset mac address registers too,
463 * so need to reconfigure it.
464 */
465 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
466 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
467 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
468 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
469 }
1da177e4 470
45993653
UKK
471 /* Clear any outstanding interrupt. */
472 writel(0xffc00000, fep->hwp + FEC_IEVENT);
1da177e4 473
45993653
UKK
474 /* Reset all multicast. */
475 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
476 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
477#ifndef CONFIG_M5272
478 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
479 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
480#endif
1da177e4 481
45993653
UKK
482 /* Set maximum receive buffer size. */
483 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
1da177e4 484
14109a59
FL
485 fec_enet_bd_init(ndev);
486
45993653
UKK
487 /* Set receive and transmit descriptor base. */
488 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
ff43da86
FL
489 if (fep->bufdesc_ex)
490 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc_ex)
491 * RX_RING_SIZE, fep->hwp + FEC_X_DES_START);
492 else
493 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc)
494 * RX_RING_SIZE, fep->hwp + FEC_X_DES_START);
45993653 495
45993653 496
45993653
UKK
497 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
498 if (fep->tx_skbuff[i]) {
499 dev_kfree_skb_any(fep->tx_skbuff[i]);
500 fep->tx_skbuff[i] = NULL;
1da177e4 501 }
45993653 502 }
97b72e43 503
45993653
UKK
504 /* Enable MII mode */
505 if (duplex) {
cd1f402c 506 /* FD enable */
45993653
UKK
507 writel(0x04, fep->hwp + FEC_X_CNTRL);
508 } else {
cd1f402c
UKK
509 /* No Rcv on Xmit */
510 rcntl |= 0x02;
45993653
UKK
511 writel(0x0, fep->hwp + FEC_X_CNTRL);
512 }
cd1f402c 513
45993653
UKK
514 fep->full_duplex = duplex;
515
516 /* Set MII speed */
517 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
518
4c09eed9
JB
519 /* set RX checksum */
520 val = readl(fep->hwp + FEC_RACC);
521 if (fep->csum_flags & FLAG_RX_CSUM_ENABLED)
522 val |= FEC_RACC_OPTIONS;
523 else
524 val &= ~FEC_RACC_OPTIONS;
525 writel(val, fep->hwp + FEC_RACC);
526
45993653
UKK
527 /*
528 * The phy interface and speed need to get configured
529 * differently on enet-mac.
530 */
531 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
cd1f402c
UKK
532 /* Enable flow control and length check */
533 rcntl |= 0x40000000 | 0x00000020;
45993653 534
230dec61
SG
535 /* RGMII, RMII or MII */
536 if (fep->phy_interface == PHY_INTERFACE_MODE_RGMII)
537 rcntl |= (1 << 6);
538 else if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
cd1f402c 539 rcntl |= (1 << 8);
45993653 540 else
cd1f402c 541 rcntl &= ~(1 << 8);
45993653 542
230dec61
SG
543 /* 1G, 100M or 10M */
544 if (fep->phy_dev) {
545 if (fep->phy_dev->speed == SPEED_1000)
546 ecntl |= (1 << 5);
547 else if (fep->phy_dev->speed == SPEED_100)
548 rcntl &= ~(1 << 9);
549 else
550 rcntl |= (1 << 9);
551 }
45993653
UKK
552 } else {
553#ifdef FEC_MIIGSK_ENR
0ca1e290 554 if (id_entry->driver_data & FEC_QUIRK_USE_GASKET) {
8d82f219 555 u32 cfgr;
45993653
UKK
556 /* disable the gasket and wait */
557 writel(0, fep->hwp + FEC_MIIGSK_ENR);
558 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
559 udelay(1);
560
561 /*
562 * configure the gasket:
563 * RMII, 50 MHz, no loopback, no echo
0ca1e290 564 * MII, 25 MHz, no loopback, no echo
45993653 565 */
8d82f219
EB
566 cfgr = (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
567 ? BM_MIIGSK_CFGR_RMII : BM_MIIGSK_CFGR_MII;
568 if (fep->phy_dev && fep->phy_dev->speed == SPEED_10)
569 cfgr |= BM_MIIGSK_CFGR_FRCONT_10M;
570 writel(cfgr, fep->hwp + FEC_MIIGSK_CFGR);
45993653
UKK
571
572 /* re-enable the gasket */
573 writel(2, fep->hwp + FEC_MIIGSK_ENR);
97b72e43 574 }
45993653
UKK
575#endif
576 }
baa70a5c
FL
577
578 /* enable pause frame*/
579 if ((fep->pause_flag & FEC_PAUSE_FLAG_ENABLE) ||
580 ((fep->pause_flag & FEC_PAUSE_FLAG_AUTONEG) &&
581 fep->phy_dev && fep->phy_dev->pause)) {
582 rcntl |= FEC_ENET_FCE;
583
4c09eed9 584 /* set FIFO threshold parameter to reduce overrun */
baa70a5c
FL
585 writel(FEC_ENET_RSEM_V, fep->hwp + FEC_R_FIFO_RSEM);
586 writel(FEC_ENET_RSFL_V, fep->hwp + FEC_R_FIFO_RSFL);
587 writel(FEC_ENET_RAEM_V, fep->hwp + FEC_R_FIFO_RAEM);
588 writel(FEC_ENET_RAFL_V, fep->hwp + FEC_R_FIFO_RAFL);
589
590 /* OPD */
591 writel(FEC_ENET_OPD_V, fep->hwp + FEC_OPD);
592 } else {
593 rcntl &= ~FEC_ENET_FCE;
594 }
595
cd1f402c 596 writel(rcntl, fep->hwp + FEC_R_CNTRL);
3b2b74ca 597
230dec61
SG
598 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
599 /* enable ENET endian swap */
600 ecntl |= (1 << 8);
601 /* enable ENET store and forward mode */
602 writel(1 << 8, fep->hwp + FEC_X_WMRK);
603 }
604
ff43da86
FL
605 if (fep->bufdesc_ex)
606 ecntl |= (1 << 4);
6605b730 607
45993653 608 /* And last, enable the transmit and receive processing */
230dec61 609 writel(ecntl, fep->hwp + FEC_ECNTRL);
45993653
UKK
610 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
611
ff43da86
FL
612 if (fep->bufdesc_ex)
613 fec_ptp_start_cyclecounter(ndev);
614
45993653
UKK
615 /* Enable interrupts we wish to service */
616 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
54309fa6
FL
617
618 if (netif_running(ndev)) {
619 netif_device_attach(ndev);
620 napi_enable(&fep->napi);
621 netif_wake_queue(ndev);
622 netif_tx_unlock(ndev);
623 }
45993653
UKK
624}
625
626static void
627fec_stop(struct net_device *ndev)
628{
629 struct fec_enet_private *fep = netdev_priv(ndev);
230dec61
SG
630 const struct platform_device_id *id_entry =
631 platform_get_device_id(fep->pdev);
42431dc2 632 u32 rmii_mode = readl(fep->hwp + FEC_R_CNTRL) & (1 << 8);
45993653
UKK
633
634 /* We cannot expect a graceful transmit stop without link !!! */
635 if (fep->link) {
636 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
637 udelay(10);
638 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
31b7720c 639 netdev_err(ndev, "Graceful transmit stop did not complete!\n");
45993653
UKK
640 }
641
642 /* Whack a reset. We should wait for this. */
643 writel(1, fep->hwp + FEC_ECNTRL);
644 udelay(10);
645 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
646 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
230dec61
SG
647
648 /* We have to keep ENET enabled to have MII interrupt stay working */
42431dc2 649 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
230dec61 650 writel(2, fep->hwp + FEC_ECNTRL);
42431dc2
LW
651 writel(rmii_mode, fep->hwp + FEC_R_CNTRL);
652 }
1da177e4
LT
653}
654
655
45993653
UKK
656static void
657fec_timeout(struct net_device *ndev)
658{
659 struct fec_enet_private *fep = netdev_priv(ndev);
660
661 ndev->stats.tx_errors++;
662
54309fa6
FL
663 fep->delay_work.timeout = true;
664 schedule_delayed_work(&(fep->delay_work.delay_work), 0);
665}
666
667static void fec_enet_work(struct work_struct *work)
668{
669 struct fec_enet_private *fep =
670 container_of(work,
671 struct fec_enet_private,
672 delay_work.delay_work.work);
673
674 if (fep->delay_work.timeout) {
675 fep->delay_work.timeout = false;
676 fec_restart(fep->netdev, fep->full_duplex);
677 netif_wake_queue(fep->netdev);
678 }
45993653
UKK
679}
680
1da177e4 681static void
c556167f 682fec_enet_tx(struct net_device *ndev)
1da177e4
LT
683{
684 struct fec_enet_private *fep;
2e28532f 685 struct bufdesc *bdp;
0e702ab3 686 unsigned short status;
1da177e4 687 struct sk_buff *skb;
de5fb0a0 688 int index = 0;
1da177e4 689
c556167f 690 fep = netdev_priv(ndev);
1da177e4
LT
691 bdp = fep->dirty_tx;
692
de5fb0a0
FL
693 /* get next bdp of dirty_tx */
694 if (bdp->cbd_sc & BD_ENET_TX_WRAP)
695 bdp = fep->tx_bd_base;
696 else
697 bdp = fec_enet_get_nextdesc(bdp, fep->bufdesc_ex);
698
0e702ab3 699 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
de5fb0a0
FL
700
701 /* current queue is empty */
702 if (bdp == fep->cur_tx)
f0b3fbea
SH
703 break;
704
de5fb0a0
FL
705 if (fep->bufdesc_ex)
706 index = (struct bufdesc_ex *)bdp -
707 (struct bufdesc_ex *)fep->tx_bd_base;
708 else
709 index = bdp - fep->tx_bd_base;
710
d1ab1f54
UKK
711 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
712 FEC_ENET_TX_FRSIZE, DMA_TO_DEVICE);
f0b3fbea 713 bdp->cbd_bufaddr = 0;
1da177e4 714
de5fb0a0
FL
715 skb = fep->tx_skbuff[index];
716
1da177e4 717 /* Check for errors. */
0e702ab3 718 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
1da177e4
LT
719 BD_ENET_TX_RL | BD_ENET_TX_UN |
720 BD_ENET_TX_CSL)) {
c556167f 721 ndev->stats.tx_errors++;
0e702ab3 722 if (status & BD_ENET_TX_HB) /* No heartbeat */
c556167f 723 ndev->stats.tx_heartbeat_errors++;
0e702ab3 724 if (status & BD_ENET_TX_LC) /* Late collision */
c556167f 725 ndev->stats.tx_window_errors++;
0e702ab3 726 if (status & BD_ENET_TX_RL) /* Retrans limit */
c556167f 727 ndev->stats.tx_aborted_errors++;
0e702ab3 728 if (status & BD_ENET_TX_UN) /* Underrun */
c556167f 729 ndev->stats.tx_fifo_errors++;
0e702ab3 730 if (status & BD_ENET_TX_CSL) /* Carrier lost */
c556167f 731 ndev->stats.tx_carrier_errors++;
1da177e4 732 } else {
c556167f 733 ndev->stats.tx_packets++;
1da177e4
LT
734 }
735
ff43da86
FL
736 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) &&
737 fep->bufdesc_ex) {
6605b730
FL
738 struct skb_shared_hwtstamps shhwtstamps;
739 unsigned long flags;
ff43da86 740 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
6605b730
FL
741
742 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
743 spin_lock_irqsave(&fep->tmreg_lock, flags);
744 shhwtstamps.hwtstamp = ns_to_ktime(
ff43da86 745 timecounter_cyc2time(&fep->tc, ebdp->ts));
6605b730
FL
746 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
747 skb_tstamp_tx(skb, &shhwtstamps);
748 }
ff43da86 749
0e702ab3 750 if (status & BD_ENET_TX_READY)
31b7720c 751 netdev_err(ndev, "HEY! Enet xmit interrupt and TX_READY\n");
22f6b860 752
1da177e4
LT
753 /* Deferred means some collisions occurred during transmit,
754 * but we eventually sent the packet OK.
755 */
0e702ab3 756 if (status & BD_ENET_TX_DEF)
c556167f 757 ndev->stats.collisions++;
6aa20a22 758
22f6b860 759 /* Free the sk buffer associated with this last transmit */
1da177e4 760 dev_kfree_skb_any(skb);
de5fb0a0
FL
761 fep->tx_skbuff[index] = NULL;
762
763 fep->dirty_tx = bdp;
6aa20a22 764
22f6b860 765 /* Update pointer to next buffer descriptor to be transmitted */
0e702ab3 766 if (status & BD_ENET_TX_WRAP)
1da177e4
LT
767 bdp = fep->tx_bd_base;
768 else
ff43da86 769 bdp = fec_enet_get_nextdesc(bdp, fep->bufdesc_ex);
6aa20a22 770
22f6b860 771 /* Since we have freed up a buffer, the ring is no longer full
1da177e4 772 */
de5fb0a0 773 if (fep->dirty_tx != fep->cur_tx) {
c556167f
UKK
774 if (netif_queue_stopped(ndev))
775 netif_wake_queue(ndev);
1da177e4
LT
776 }
777 }
de5fb0a0 778 return;
1da177e4
LT
779}
780
781
782/* During a receive, the cur_rx points to the current incoming buffer.
783 * When we update through the ring, if the next incoming buffer has
784 * not been given to the system, we just set the empty indicator,
785 * effectively tossing the packet.
786 */
dc975382
FL
787static int
788fec_enet_rx(struct net_device *ndev, int budget)
1da177e4 789{
c556167f 790 struct fec_enet_private *fep = netdev_priv(ndev);
b5680e0b
SG
791 const struct platform_device_id *id_entry =
792 platform_get_device_id(fep->pdev);
2e28532f 793 struct bufdesc *bdp;
0e702ab3 794 unsigned short status;
1da177e4
LT
795 struct sk_buff *skb;
796 ushort pkt_len;
797 __u8 *data;
dc975382 798 int pkt_received = 0;
6aa20a22 799
0e702ab3
GU
800#ifdef CONFIG_M532x
801 flush_cache_all();
6aa20a22 802#endif
1da177e4 803
1da177e4
LT
804 /* First, grab all of the stats for the incoming packet.
805 * These get messed up if we get called due to a busy condition.
806 */
807 bdp = fep->cur_rx;
808
22f6b860 809 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
1da177e4 810
dc975382
FL
811 if (pkt_received >= budget)
812 break;
813 pkt_received++;
814
22f6b860
SH
815 /* Since we have allocated space to hold a complete frame,
816 * the last indicator should be set.
817 */
818 if ((status & BD_ENET_RX_LAST) == 0)
31b7720c 819 netdev_err(ndev, "rcv is not +last\n");
1da177e4 820
22f6b860
SH
821 if (!fep->opened)
822 goto rx_processing_done;
1da177e4 823
22f6b860
SH
824 /* Check for errors. */
825 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
1da177e4 826 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
c556167f 827 ndev->stats.rx_errors++;
22f6b860
SH
828 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
829 /* Frame too long or too short. */
c556167f 830 ndev->stats.rx_length_errors++;
22f6b860
SH
831 }
832 if (status & BD_ENET_RX_NO) /* Frame alignment */
c556167f 833 ndev->stats.rx_frame_errors++;
22f6b860 834 if (status & BD_ENET_RX_CR) /* CRC Error */
c556167f 835 ndev->stats.rx_crc_errors++;
22f6b860 836 if (status & BD_ENET_RX_OV) /* FIFO overrun */
c556167f 837 ndev->stats.rx_fifo_errors++;
1da177e4 838 }
1da177e4 839
22f6b860
SH
840 /* Report late collisions as a frame error.
841 * On this error, the BD is closed, but we don't know what we
842 * have in the buffer. So, just drop this frame on the floor.
843 */
844 if (status & BD_ENET_RX_CL) {
c556167f
UKK
845 ndev->stats.rx_errors++;
846 ndev->stats.rx_frame_errors++;
22f6b860
SH
847 goto rx_processing_done;
848 }
1da177e4 849
22f6b860 850 /* Process the incoming frame. */
c556167f 851 ndev->stats.rx_packets++;
22f6b860 852 pkt_len = bdp->cbd_datlen;
c556167f 853 ndev->stats.rx_bytes += pkt_len;
22f6b860 854 data = (__u8*)__va(bdp->cbd_bufaddr);
1da177e4 855
d1ab1f54
UKK
856 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
857 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
ccdc4f19 858
b5680e0b
SG
859 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
860 swap_buffer(data, pkt_len);
861
22f6b860
SH
862 /* This does 16 byte alignment, exactly what we need.
863 * The packet length includes FCS, but we don't want to
864 * include that when passing upstream as it messes up
865 * bridging applications.
866 */
b72061a3 867 skb = netdev_alloc_skb(ndev, pkt_len - 4 + NET_IP_ALIGN);
1da177e4 868
8549889c 869 if (unlikely(!skb)) {
c556167f 870 ndev->stats.rx_dropped++;
22f6b860 871 } else {
8549889c 872 skb_reserve(skb, NET_IP_ALIGN);
22f6b860
SH
873 skb_put(skb, pkt_len - 4); /* Make room */
874 skb_copy_to_linear_data(skb, data, pkt_len - 4);
c556167f 875 skb->protocol = eth_type_trans(skb, ndev);
ff43da86 876
6605b730 877 /* Get receive timestamp from the skb */
ff43da86 878 if (fep->hwts_rx_en && fep->bufdesc_ex) {
6605b730
FL
879 struct skb_shared_hwtstamps *shhwtstamps =
880 skb_hwtstamps(skb);
881 unsigned long flags;
ff43da86
FL
882 struct bufdesc_ex *ebdp =
883 (struct bufdesc_ex *)bdp;
6605b730
FL
884
885 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
886
887 spin_lock_irqsave(&fep->tmreg_lock, flags);
888 shhwtstamps->hwtstamp = ns_to_ktime(
ff43da86 889 timecounter_cyc2time(&fep->tc, ebdp->ts));
6605b730
FL
890 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
891 }
ff43da86 892
4c09eed9
JB
893 if (fep->bufdesc_ex &&
894 (fep->csum_flags & FLAG_RX_CSUM_ENABLED)) {
895 struct bufdesc_ex *ebdp =
896 (struct bufdesc_ex *)bdp;
897 if (!(ebdp->cbd_esc & FLAG_RX_CSUM_ERROR)) {
898 /* don't check it */
899 skb->ip_summed = CHECKSUM_UNNECESSARY;
900 } else {
901 skb_checksum_none_assert(skb);
902 }
903 }
904
18a03b97 905 if (!skb_defer_rx_timestamp(skb))
dc975382 906 napi_gro_receive(&fep->napi, skb);
22f6b860 907 }
f0b3fbea 908
d1ab1f54
UKK
909 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, data,
910 FEC_ENET_TX_FRSIZE, DMA_FROM_DEVICE);
22f6b860
SH
911rx_processing_done:
912 /* Clear the status flags for this buffer */
913 status &= ~BD_ENET_RX_STATS;
1da177e4 914
22f6b860
SH
915 /* Mark the buffer empty */
916 status |= BD_ENET_RX_EMPTY;
917 bdp->cbd_sc = status;
6aa20a22 918
ff43da86
FL
919 if (fep->bufdesc_ex) {
920 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
921
922 ebdp->cbd_esc = BD_ENET_RX_INT;
923 ebdp->cbd_prot = 0;
924 ebdp->cbd_bdu = 0;
925 }
6605b730 926
22f6b860
SH
927 /* Update BD pointer to next entry */
928 if (status & BD_ENET_RX_WRAP)
929 bdp = fep->rx_bd_base;
930 else
ff43da86 931 bdp = fec_enet_get_nextdesc(bdp, fep->bufdesc_ex);
22f6b860
SH
932 /* Doing this here will keep the FEC running while we process
933 * incoming frames. On a heavily loaded network, we should be
934 * able to keep up at the expense of system resources.
935 */
936 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
937 }
2e28532f 938 fep->cur_rx = bdp;
1da177e4 939
dc975382 940 return pkt_received;
1da177e4
LT
941}
942
45993653
UKK
943static irqreturn_t
944fec_enet_interrupt(int irq, void *dev_id)
945{
946 struct net_device *ndev = dev_id;
947 struct fec_enet_private *fep = netdev_priv(ndev);
948 uint int_events;
949 irqreturn_t ret = IRQ_NONE;
950
951 do {
952 int_events = readl(fep->hwp + FEC_IEVENT);
953 writel(int_events, fep->hwp + FEC_IEVENT);
954
de5fb0a0 955 if (int_events & (FEC_ENET_RXF | FEC_ENET_TXF)) {
45993653 956 ret = IRQ_HANDLED;
dc975382
FL
957
958 /* Disable the RX interrupt */
959 if (napi_schedule_prep(&fep->napi)) {
960 writel(FEC_RX_DISABLED_IMASK,
961 fep->hwp + FEC_IMASK);
962 __napi_schedule(&fep->napi);
963 }
45993653
UKK
964 }
965
45993653
UKK
966 if (int_events & FEC_ENET_MII) {
967 ret = IRQ_HANDLED;
968 complete(&fep->mdio_done);
969 }
970 } while (int_events);
971
972 return ret;
973}
974
dc975382
FL
975static int fec_enet_rx_napi(struct napi_struct *napi, int budget)
976{
977 struct net_device *ndev = napi->dev;
978 int pkts = fec_enet_rx(ndev, budget);
979 struct fec_enet_private *fep = netdev_priv(ndev);
45993653 980
de5fb0a0
FL
981 fec_enet_tx(ndev);
982
dc975382
FL
983 if (pkts < budget) {
984 napi_complete(napi);
985 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
986 }
987 return pkts;
988}
45993653 989
e6b043d5 990/* ------------------------------------------------------------------------- */
0c7768a0 991static void fec_get_mac(struct net_device *ndev)
1da177e4 992{
c556167f 993 struct fec_enet_private *fep = netdev_priv(ndev);
49da97dc 994 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
e6b043d5 995 unsigned char *iap, tmpaddr[ETH_ALEN];
1da177e4 996
49da97dc
SG
997 /*
998 * try to get mac address in following order:
999 *
1000 * 1) module parameter via kernel command line in form
1001 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
1002 */
1003 iap = macaddr;
1004
ca2cc333
SG
1005 /*
1006 * 2) from device tree data
1007 */
1008 if (!is_valid_ether_addr(iap)) {
1009 struct device_node *np = fep->pdev->dev.of_node;
1010 if (np) {
1011 const char *mac = of_get_mac_address(np);
1012 if (mac)
1013 iap = (unsigned char *) mac;
1014 }
1015 }
ca2cc333 1016
49da97dc 1017 /*
ca2cc333 1018 * 3) from flash or fuse (via platform data)
49da97dc
SG
1019 */
1020 if (!is_valid_ether_addr(iap)) {
1021#ifdef CONFIG_M5272
1022 if (FEC_FLASHMAC)
1023 iap = (unsigned char *)FEC_FLASHMAC;
1024#else
1025 if (pdata)
589efdc7 1026 iap = (unsigned char *)&pdata->mac;
49da97dc
SG
1027#endif
1028 }
1029
1030 /*
ca2cc333 1031 * 4) FEC mac registers set by bootloader
49da97dc
SG
1032 */
1033 if (!is_valid_ether_addr(iap)) {
1034 *((unsigned long *) &tmpaddr[0]) =
1035 be32_to_cpu(readl(fep->hwp + FEC_ADDR_LOW));
1036 *((unsigned short *) &tmpaddr[4]) =
1037 be16_to_cpu(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
e6b043d5 1038 iap = &tmpaddr[0];
1da177e4
LT
1039 }
1040
c556167f 1041 memcpy(ndev->dev_addr, iap, ETH_ALEN);
1da177e4 1042
49da97dc
SG
1043 /* Adjust MAC if using macaddr */
1044 if (iap == macaddr)
43af940c 1045 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->dev_id;
1da177e4
LT
1046}
1047
e6b043d5 1048/* ------------------------------------------------------------------------- */
1da177e4 1049
e6b043d5
BW
1050/*
1051 * Phy section
1052 */
c556167f 1053static void fec_enet_adjust_link(struct net_device *ndev)
1da177e4 1054{
c556167f 1055 struct fec_enet_private *fep = netdev_priv(ndev);
e6b043d5 1056 struct phy_device *phy_dev = fep->phy_dev;
e6b043d5 1057 int status_change = 0;
1da177e4 1058
e6b043d5
BW
1059 /* Prevent a state halted on mii error */
1060 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
1061 phy_dev->state = PHY_RESUMING;
54309fa6 1062 return;
e6b043d5 1063 }
1da177e4 1064
e6b043d5 1065 if (phy_dev->link) {
d97e7497 1066 if (!fep->link) {
6ea0722f 1067 fep->link = phy_dev->link;
e6b043d5
BW
1068 status_change = 1;
1069 }
1da177e4 1070
d97e7497
LS
1071 if (fep->full_duplex != phy_dev->duplex)
1072 status_change = 1;
1073
1074 if (phy_dev->speed != fep->speed) {
1075 fep->speed = phy_dev->speed;
1076 status_change = 1;
1077 }
1078
1079 /* if any of the above changed restart the FEC */
1080 if (status_change)
c556167f 1081 fec_restart(ndev, phy_dev->duplex);
d97e7497
LS
1082 } else {
1083 if (fep->link) {
c556167f 1084 fec_stop(ndev);
8d7ed0f0 1085 fep->link = phy_dev->link;
d97e7497
LS
1086 status_change = 1;
1087 }
1da177e4 1088 }
6aa20a22 1089
e6b043d5
BW
1090 if (status_change)
1091 phy_print_status(phy_dev);
1092}
1da177e4 1093
e6b043d5 1094static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
1da177e4 1095{
e6b043d5 1096 struct fec_enet_private *fep = bus->priv;
97b72e43 1097 unsigned long time_left;
1da177e4 1098
e6b043d5 1099 fep->mii_timeout = 0;
97b72e43 1100 init_completion(&fep->mdio_done);
e6b043d5
BW
1101
1102 /* start a read op */
1103 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
1104 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
1105 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
1106
1107 /* wait for end of transfer */
97b72e43
BS
1108 time_left = wait_for_completion_timeout(&fep->mdio_done,
1109 usecs_to_jiffies(FEC_MII_TIMEOUT));
1110 if (time_left == 0) {
1111 fep->mii_timeout = 1;
31b7720c 1112 netdev_err(fep->netdev, "MDIO read timeout\n");
97b72e43 1113 return -ETIMEDOUT;
1da177e4 1114 }
1da177e4 1115
e6b043d5
BW
1116 /* return value */
1117 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
7dd6a2aa 1118}
6aa20a22 1119
e6b043d5
BW
1120static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
1121 u16 value)
1da177e4 1122{
e6b043d5 1123 struct fec_enet_private *fep = bus->priv;
97b72e43 1124 unsigned long time_left;
1da177e4 1125
e6b043d5 1126 fep->mii_timeout = 0;
97b72e43 1127 init_completion(&fep->mdio_done);
1da177e4 1128
862f0982
SG
1129 /* start a write op */
1130 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
e6b043d5
BW
1131 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
1132 FEC_MMFR_TA | FEC_MMFR_DATA(value),
1133 fep->hwp + FEC_MII_DATA);
1134
1135 /* wait for end of transfer */
97b72e43
BS
1136 time_left = wait_for_completion_timeout(&fep->mdio_done,
1137 usecs_to_jiffies(FEC_MII_TIMEOUT));
1138 if (time_left == 0) {
1139 fep->mii_timeout = 1;
31b7720c 1140 netdev_err(fep->netdev, "MDIO write timeout\n");
97b72e43 1141 return -ETIMEDOUT;
e6b043d5 1142 }
1da177e4 1143
e6b043d5
BW
1144 return 0;
1145}
1da177e4 1146
e6b043d5 1147static int fec_enet_mdio_reset(struct mii_bus *bus)
1da177e4 1148{
e6b043d5 1149 return 0;
1da177e4
LT
1150}
1151
c556167f 1152static int fec_enet_mii_probe(struct net_device *ndev)
562d2f8c 1153{
c556167f 1154 struct fec_enet_private *fep = netdev_priv(ndev);
230dec61
SG
1155 const struct platform_device_id *id_entry =
1156 platform_get_device_id(fep->pdev);
e6b043d5 1157 struct phy_device *phy_dev = NULL;
6fcc040f
GU
1158 char mdio_bus_id[MII_BUS_ID_SIZE];
1159 char phy_name[MII_BUS_ID_SIZE + 3];
1160 int phy_id;
43af940c 1161 int dev_id = fep->dev_id;
562d2f8c 1162
418bd0d4
BW
1163 fep->phy_dev = NULL;
1164
6fcc040f
GU
1165 /* check for attached phy */
1166 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
1167 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
1168 continue;
1169 if (fep->mii_bus->phy_map[phy_id] == NULL)
1170 continue;
1171 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
1172 continue;
b5680e0b
SG
1173 if (dev_id--)
1174 continue;
6fcc040f
GU
1175 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
1176 break;
e6b043d5 1177 }
1da177e4 1178
6fcc040f 1179 if (phy_id >= PHY_MAX_ADDR) {
31b7720c 1180 netdev_info(ndev, "no PHY, assuming direct connection to switch\n");
ea51ade9 1181 strncpy(mdio_bus_id, "fixed-0", MII_BUS_ID_SIZE);
6fcc040f
GU
1182 phy_id = 0;
1183 }
1184
a7ed07d5 1185 snprintf(phy_name, sizeof(phy_name), PHY_ID_FMT, mdio_bus_id, phy_id);
f9a8f83b 1186 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link,
230dec61 1187 fep->phy_interface);
6fcc040f 1188 if (IS_ERR(phy_dev)) {
31b7720c 1189 netdev_err(ndev, "could not attach to PHY\n");
6fcc040f 1190 return PTR_ERR(phy_dev);
e6b043d5 1191 }
1da177e4 1192
e6b043d5 1193 /* mask with MAC supported features */
baa70a5c 1194 if (id_entry->driver_data & FEC_QUIRK_HAS_GBIT) {
230dec61 1195 phy_dev->supported &= PHY_GBIT_FEATURES;
baa70a5c
FL
1196 phy_dev->supported |= SUPPORTED_Pause;
1197 }
230dec61
SG
1198 else
1199 phy_dev->supported &= PHY_BASIC_FEATURES;
1200
e6b043d5 1201 phy_dev->advertising = phy_dev->supported;
1da177e4 1202
e6b043d5
BW
1203 fep->phy_dev = phy_dev;
1204 fep->link = 0;
1205 fep->full_duplex = 0;
1da177e4 1206
31b7720c
JP
1207 netdev_info(ndev, "Freescale FEC PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
1208 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
1209 fep->phy_dev->irq);
418bd0d4 1210
e6b043d5 1211 return 0;
1da177e4
LT
1212}
1213
e6b043d5 1214static int fec_enet_mii_init(struct platform_device *pdev)
562d2f8c 1215{
b5680e0b 1216 static struct mii_bus *fec0_mii_bus;
c556167f
UKK
1217 struct net_device *ndev = platform_get_drvdata(pdev);
1218 struct fec_enet_private *fep = netdev_priv(ndev);
b5680e0b
SG
1219 const struct platform_device_id *id_entry =
1220 platform_get_device_id(fep->pdev);
e6b043d5 1221 int err = -ENXIO, i;
6b265293 1222
b5680e0b
SG
1223 /*
1224 * The dual fec interfaces are not equivalent with enet-mac.
1225 * Here are the differences:
1226 *
1227 * - fec0 supports MII & RMII modes while fec1 only supports RMII
1228 * - fec0 acts as the 1588 time master while fec1 is slave
1229 * - external phys can only be configured by fec0
1230 *
1231 * That is to say fec1 can not work independently. It only works
1232 * when fec0 is working. The reason behind this design is that the
1233 * second interface is added primarily for Switch mode.
1234 *
1235 * Because of the last point above, both phys are attached on fec0
1236 * mdio interface in board design, and need to be configured by
1237 * fec0 mii_bus.
1238 */
43af940c 1239 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && fep->dev_id > 0) {
b5680e0b 1240 /* fec1 uses fec0 mii_bus */
e163cc97
LW
1241 if (mii_cnt && fec0_mii_bus) {
1242 fep->mii_bus = fec0_mii_bus;
1243 mii_cnt++;
1244 return 0;
1245 }
1246 return -ENOENT;
b5680e0b
SG
1247 }
1248
e6b043d5 1249 fep->mii_timeout = 0;
1da177e4 1250
e6b043d5
BW
1251 /*
1252 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
230dec61
SG
1253 *
1254 * The formula for FEC MDC is 'ref_freq / (MII_SPEED x 2)' while
1255 * for ENET-MAC is 'ref_freq / ((MII_SPEED + 1) x 2)'. The i.MX28
1256 * Reference Manual has an error on this, and gets fixed on i.MX6Q
1257 * document.
e6b043d5 1258 */
f4d40de3 1259 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk_ahb), 5000000);
230dec61
SG
1260 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1261 fep->phy_speed--;
1262 fep->phy_speed <<= 1;
e6b043d5 1263 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1da177e4 1264
e6b043d5
BW
1265 fep->mii_bus = mdiobus_alloc();
1266 if (fep->mii_bus == NULL) {
1267 err = -ENOMEM;
1268 goto err_out;
1da177e4
LT
1269 }
1270
e6b043d5
BW
1271 fep->mii_bus->name = "fec_enet_mii_bus";
1272 fep->mii_bus->read = fec_enet_mdio_read;
1273 fep->mii_bus->write = fec_enet_mdio_write;
1274 fep->mii_bus->reset = fec_enet_mdio_reset;
391420f7
FF
1275 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
1276 pdev->name, fep->dev_id + 1);
e6b043d5
BW
1277 fep->mii_bus->priv = fep;
1278 fep->mii_bus->parent = &pdev->dev;
1279
1280 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
1281 if (!fep->mii_bus->irq) {
1282 err = -ENOMEM;
1283 goto err_out_free_mdiobus;
1da177e4
LT
1284 }
1285
e6b043d5
BW
1286 for (i = 0; i < PHY_MAX_ADDR; i++)
1287 fep->mii_bus->irq[i] = PHY_POLL;
1da177e4 1288
e6b043d5
BW
1289 if (mdiobus_register(fep->mii_bus))
1290 goto err_out_free_mdio_irq;
1da177e4 1291
e163cc97
LW
1292 mii_cnt++;
1293
b5680e0b
SG
1294 /* save fec0 mii_bus */
1295 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1296 fec0_mii_bus = fep->mii_bus;
1297
e6b043d5 1298 return 0;
1da177e4 1299
e6b043d5
BW
1300err_out_free_mdio_irq:
1301 kfree(fep->mii_bus->irq);
1302err_out_free_mdiobus:
1303 mdiobus_free(fep->mii_bus);
1304err_out:
1305 return err;
1da177e4
LT
1306}
1307
e6b043d5 1308static void fec_enet_mii_remove(struct fec_enet_private *fep)
1da177e4 1309{
e163cc97
LW
1310 if (--mii_cnt == 0) {
1311 mdiobus_unregister(fep->mii_bus);
1312 kfree(fep->mii_bus->irq);
1313 mdiobus_free(fep->mii_bus);
1314 }
1da177e4
LT
1315}
1316
c556167f 1317static int fec_enet_get_settings(struct net_device *ndev,
e6b043d5 1318 struct ethtool_cmd *cmd)
1da177e4 1319{
c556167f 1320 struct fec_enet_private *fep = netdev_priv(ndev);
e6b043d5 1321 struct phy_device *phydev = fep->phy_dev;
1da177e4 1322
e6b043d5
BW
1323 if (!phydev)
1324 return -ENODEV;
1da177e4 1325
e6b043d5 1326 return phy_ethtool_gset(phydev, cmd);
1da177e4
LT
1327}
1328
c556167f 1329static int fec_enet_set_settings(struct net_device *ndev,
e6b043d5 1330 struct ethtool_cmd *cmd)
1da177e4 1331{
c556167f 1332 struct fec_enet_private *fep = netdev_priv(ndev);
e6b043d5 1333 struct phy_device *phydev = fep->phy_dev;
1da177e4 1334
e6b043d5
BW
1335 if (!phydev)
1336 return -ENODEV;
1da177e4 1337
e6b043d5 1338 return phy_ethtool_sset(phydev, cmd);
1da177e4
LT
1339}
1340
c556167f 1341static void fec_enet_get_drvinfo(struct net_device *ndev,
e6b043d5 1342 struct ethtool_drvinfo *info)
1da177e4 1343{
c556167f 1344 struct fec_enet_private *fep = netdev_priv(ndev);
6aa20a22 1345
7826d43f
JP
1346 strlcpy(info->driver, fep->pdev->dev.driver->name,
1347 sizeof(info->driver));
1348 strlcpy(info->version, "Revision: 1.0", sizeof(info->version));
1349 strlcpy(info->bus_info, dev_name(&ndev->dev), sizeof(info->bus_info));
1da177e4
LT
1350}
1351
5ebae489
FL
1352static int fec_enet_get_ts_info(struct net_device *ndev,
1353 struct ethtool_ts_info *info)
1354{
1355 struct fec_enet_private *fep = netdev_priv(ndev);
1356
1357 if (fep->bufdesc_ex) {
1358
1359 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
1360 SOF_TIMESTAMPING_RX_SOFTWARE |
1361 SOF_TIMESTAMPING_SOFTWARE |
1362 SOF_TIMESTAMPING_TX_HARDWARE |
1363 SOF_TIMESTAMPING_RX_HARDWARE |
1364 SOF_TIMESTAMPING_RAW_HARDWARE;
1365 if (fep->ptp_clock)
1366 info->phc_index = ptp_clock_index(fep->ptp_clock);
1367 else
1368 info->phc_index = -1;
1369
1370 info->tx_types = (1 << HWTSTAMP_TX_OFF) |
1371 (1 << HWTSTAMP_TX_ON);
1372
1373 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
1374 (1 << HWTSTAMP_FILTER_ALL);
1375 return 0;
1376 } else {
1377 return ethtool_op_get_ts_info(ndev, info);
1378 }
1379}
1380
baa70a5c
FL
1381static void fec_enet_get_pauseparam(struct net_device *ndev,
1382 struct ethtool_pauseparam *pause)
1383{
1384 struct fec_enet_private *fep = netdev_priv(ndev);
1385
1386 pause->autoneg = (fep->pause_flag & FEC_PAUSE_FLAG_AUTONEG) != 0;
1387 pause->tx_pause = (fep->pause_flag & FEC_PAUSE_FLAG_ENABLE) != 0;
1388 pause->rx_pause = pause->tx_pause;
1389}
1390
1391static int fec_enet_set_pauseparam(struct net_device *ndev,
1392 struct ethtool_pauseparam *pause)
1393{
1394 struct fec_enet_private *fep = netdev_priv(ndev);
1395
1396 if (pause->tx_pause != pause->rx_pause) {
1397 netdev_info(ndev,
1398 "hardware only support enable/disable both tx and rx");
1399 return -EINVAL;
1400 }
1401
1402 fep->pause_flag = 0;
1403
1404 /* tx pause must be same as rx pause */
1405 fep->pause_flag |= pause->rx_pause ? FEC_PAUSE_FLAG_ENABLE : 0;
1406 fep->pause_flag |= pause->autoneg ? FEC_PAUSE_FLAG_AUTONEG : 0;
1407
1408 if (pause->rx_pause || pause->autoneg) {
1409 fep->phy_dev->supported |= ADVERTISED_Pause;
1410 fep->phy_dev->advertising |= ADVERTISED_Pause;
1411 } else {
1412 fep->phy_dev->supported &= ~ADVERTISED_Pause;
1413 fep->phy_dev->advertising &= ~ADVERTISED_Pause;
1414 }
1415
1416 if (pause->autoneg) {
1417 if (netif_running(ndev))
1418 fec_stop(ndev);
1419 phy_start_aneg(fep->phy_dev);
1420 }
1421 if (netif_running(ndev))
1422 fec_restart(ndev, 0);
1423
1424 return 0;
1425}
1426
9b07be4b 1427static const struct ethtool_ops fec_enet_ethtool_ops = {
baa70a5c
FL
1428 .get_pauseparam = fec_enet_get_pauseparam,
1429 .set_pauseparam = fec_enet_set_pauseparam,
e6b043d5
BW
1430 .get_settings = fec_enet_get_settings,
1431 .set_settings = fec_enet_set_settings,
1432 .get_drvinfo = fec_enet_get_drvinfo,
1433 .get_link = ethtool_op_get_link,
5ebae489 1434 .get_ts_info = fec_enet_get_ts_info,
e6b043d5 1435};
1da177e4 1436
c556167f 1437static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
1da177e4 1438{
c556167f 1439 struct fec_enet_private *fep = netdev_priv(ndev);
e6b043d5 1440 struct phy_device *phydev = fep->phy_dev;
1da177e4 1441
c556167f 1442 if (!netif_running(ndev))
e6b043d5 1443 return -EINVAL;
1da177e4 1444
e6b043d5
BW
1445 if (!phydev)
1446 return -ENODEV;
1447
ff43da86 1448 if (cmd == SIOCSHWTSTAMP && fep->bufdesc_ex)
6605b730 1449 return fec_ptp_ioctl(ndev, rq, cmd);
ff43da86 1450
28b04113 1451 return phy_mii_ioctl(phydev, rq, cmd);
1da177e4
LT
1452}
1453
c556167f 1454static void fec_enet_free_buffers(struct net_device *ndev)
f0b3fbea 1455{
c556167f 1456 struct fec_enet_private *fep = netdev_priv(ndev);
da2191e3 1457 unsigned int i;
f0b3fbea
SH
1458 struct sk_buff *skb;
1459 struct bufdesc *bdp;
1460
1461 bdp = fep->rx_bd_base;
1462 for (i = 0; i < RX_RING_SIZE; i++) {
1463 skb = fep->rx_skbuff[i];
1464
1465 if (bdp->cbd_bufaddr)
d1ab1f54 1466 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
f0b3fbea
SH
1467 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1468 if (skb)
1469 dev_kfree_skb(skb);
ff43da86 1470 bdp = fec_enet_get_nextdesc(bdp, fep->bufdesc_ex);
f0b3fbea
SH
1471 }
1472
1473 bdp = fep->tx_bd_base;
1474 for (i = 0; i < TX_RING_SIZE; i++)
1475 kfree(fep->tx_bounce[i]);
1476}
1477
c556167f 1478static int fec_enet_alloc_buffers(struct net_device *ndev)
f0b3fbea 1479{
c556167f 1480 struct fec_enet_private *fep = netdev_priv(ndev);
da2191e3 1481 unsigned int i;
f0b3fbea
SH
1482 struct sk_buff *skb;
1483 struct bufdesc *bdp;
1484
1485 bdp = fep->rx_bd_base;
1486 for (i = 0; i < RX_RING_SIZE; i++) {
b72061a3 1487 skb = netdev_alloc_skb(ndev, FEC_ENET_RX_FRSIZE);
f0b3fbea 1488 if (!skb) {
c556167f 1489 fec_enet_free_buffers(ndev);
f0b3fbea
SH
1490 return -ENOMEM;
1491 }
1492 fep->rx_skbuff[i] = skb;
1493
d1ab1f54 1494 bdp->cbd_bufaddr = dma_map_single(&fep->pdev->dev, skb->data,
f0b3fbea
SH
1495 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
1496 bdp->cbd_sc = BD_ENET_RX_EMPTY;
ff43da86
FL
1497
1498 if (fep->bufdesc_ex) {
1499 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
1500 ebdp->cbd_esc = BD_ENET_RX_INT;
1501 }
1502
1503 bdp = fec_enet_get_nextdesc(bdp, fep->bufdesc_ex);
f0b3fbea
SH
1504 }
1505
1506 /* Set the last buffer to wrap. */
ff43da86 1507 bdp = fec_enet_get_prevdesc(bdp, fep->bufdesc_ex);
f0b3fbea
SH
1508 bdp->cbd_sc |= BD_SC_WRAP;
1509
1510 bdp = fep->tx_bd_base;
1511 for (i = 0; i < TX_RING_SIZE; i++) {
1512 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
1513
1514 bdp->cbd_sc = 0;
1515 bdp->cbd_bufaddr = 0;
6605b730 1516
ff43da86
FL
1517 if (fep->bufdesc_ex) {
1518 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
96d2222b 1519 ebdp->cbd_esc = BD_ENET_TX_INT;
ff43da86
FL
1520 }
1521
1522 bdp = fec_enet_get_nextdesc(bdp, fep->bufdesc_ex);
f0b3fbea
SH
1523 }
1524
1525 /* Set the last buffer to wrap. */
ff43da86 1526 bdp = fec_enet_get_prevdesc(bdp, fep->bufdesc_ex);
f0b3fbea
SH
1527 bdp->cbd_sc |= BD_SC_WRAP;
1528
1529 return 0;
1530}
1531
1da177e4 1532static int
c556167f 1533fec_enet_open(struct net_device *ndev)
1da177e4 1534{
c556167f 1535 struct fec_enet_private *fep = netdev_priv(ndev);
f0b3fbea 1536 int ret;
1da177e4 1537
dc975382
FL
1538 napi_enable(&fep->napi);
1539
1da177e4
LT
1540 /* I should reset the ring buffers here, but I don't yet know
1541 * a simple way to do that.
1542 */
1da177e4 1543
c556167f 1544 ret = fec_enet_alloc_buffers(ndev);
f0b3fbea
SH
1545 if (ret)
1546 return ret;
1547
418bd0d4 1548 /* Probe and connect to PHY when open the interface */
c556167f 1549 ret = fec_enet_mii_probe(ndev);
418bd0d4 1550 if (ret) {
c556167f 1551 fec_enet_free_buffers(ndev);
418bd0d4
BW
1552 return ret;
1553 }
e6b043d5 1554 phy_start(fep->phy_dev);
c556167f 1555 netif_start_queue(ndev);
1da177e4 1556 fep->opened = 1;
22f6b860 1557 return 0;
1da177e4
LT
1558}
1559
1560static int
c556167f 1561fec_enet_close(struct net_device *ndev)
1da177e4 1562{
c556167f 1563 struct fec_enet_private *fep = netdev_priv(ndev);
1da177e4 1564
22f6b860 1565 /* Don't know what to do yet. */
3f104c38 1566 napi_disable(&fep->napi);
1da177e4 1567 fep->opened = 0;
c556167f
UKK
1568 netif_stop_queue(ndev);
1569 fec_stop(ndev);
1da177e4 1570
e497ba82
UKK
1571 if (fep->phy_dev) {
1572 phy_stop(fep->phy_dev);
418bd0d4 1573 phy_disconnect(fep->phy_dev);
e497ba82 1574 }
418bd0d4 1575
db8880bc 1576 fec_enet_free_buffers(ndev);
f0b3fbea 1577
1da177e4
LT
1578 return 0;
1579}
1580
1da177e4
LT
1581/* Set or clear the multicast filter for this adaptor.
1582 * Skeleton taken from sunlance driver.
1583 * The CPM Ethernet implementation allows Multicast as well as individual
1584 * MAC address filtering. Some of the drivers check to make sure it is
1585 * a group multicast address, and discard those that are not. I guess I
1586 * will do the same for now, but just remove the test if you want
1587 * individual filtering as well (do the upper net layers want or support
1588 * this kind of feature?).
1589 */
1590
1591#define HASH_BITS 6 /* #bits in hash */
1592#define CRC32_POLY 0xEDB88320
1593
c556167f 1594static void set_multicast_list(struct net_device *ndev)
1da177e4 1595{
c556167f 1596 struct fec_enet_private *fep = netdev_priv(ndev);
22bedad3 1597 struct netdev_hw_addr *ha;
48e2f183 1598 unsigned int i, bit, data, crc, tmp;
1da177e4
LT
1599 unsigned char hash;
1600
c556167f 1601 if (ndev->flags & IFF_PROMISC) {
f44d6305
SH
1602 tmp = readl(fep->hwp + FEC_R_CNTRL);
1603 tmp |= 0x8;
1604 writel(tmp, fep->hwp + FEC_R_CNTRL);
4e831836
SH
1605 return;
1606 }
1da177e4 1607
4e831836
SH
1608 tmp = readl(fep->hwp + FEC_R_CNTRL);
1609 tmp &= ~0x8;
1610 writel(tmp, fep->hwp + FEC_R_CNTRL);
1611
c556167f 1612 if (ndev->flags & IFF_ALLMULTI) {
4e831836
SH
1613 /* Catch all multicast addresses, so set the
1614 * filter to all 1's
1615 */
1616 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1617 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1618
1619 return;
1620 }
1621
1622 /* Clear filter and add the addresses in hash register
1623 */
1624 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1625 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1626
c556167f 1627 netdev_for_each_mc_addr(ha, ndev) {
4e831836
SH
1628 /* calculate crc32 value of mac address */
1629 crc = 0xffffffff;
1630
c556167f 1631 for (i = 0; i < ndev->addr_len; i++) {
22bedad3 1632 data = ha->addr[i];
4e831836
SH
1633 for (bit = 0; bit < 8; bit++, data >>= 1) {
1634 crc = (crc >> 1) ^
1635 (((crc ^ data) & 1) ? CRC32_POLY : 0);
1da177e4
LT
1636 }
1637 }
4e831836
SH
1638
1639 /* only upper 6 bits (HASH_BITS) are used
1640 * which point to specific bit in he hash registers
1641 */
1642 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
1643
1644 if (hash > 31) {
1645 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1646 tmp |= 1 << (hash - 32);
1647 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
1648 } else {
1649 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1650 tmp |= 1 << hash;
1651 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
1652 }
1da177e4
LT
1653 }
1654}
1655
22f6b860 1656/* Set a MAC change in hardware. */
009fda83 1657static int
c556167f 1658fec_set_mac_address(struct net_device *ndev, void *p)
1da177e4 1659{
c556167f 1660 struct fec_enet_private *fep = netdev_priv(ndev);
009fda83
SH
1661 struct sockaddr *addr = p;
1662
1663 if (!is_valid_ether_addr(addr->sa_data))
1664 return -EADDRNOTAVAIL;
1665
c556167f 1666 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
1da177e4 1667
c556167f
UKK
1668 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
1669 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
f44d6305 1670 fep->hwp + FEC_ADDR_LOW);
c556167f 1671 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
7cff0943 1672 fep->hwp + FEC_ADDR_HIGH);
009fda83 1673 return 0;
1da177e4
LT
1674}
1675
7f5c6add 1676#ifdef CONFIG_NET_POLL_CONTROLLER
49ce9c2c
BH
1677/**
1678 * fec_poll_controller - FEC Poll controller function
7f5c6add
XJ
1679 * @dev: The FEC network adapter
1680 *
1681 * Polled functionality used by netconsole and others in non interrupt mode
1682 *
1683 */
47a5247f 1684static void fec_poll_controller(struct net_device *dev)
7f5c6add
XJ
1685{
1686 int i;
1687 struct fec_enet_private *fep = netdev_priv(dev);
1688
1689 for (i = 0; i < FEC_IRQ_NUM; i++) {
1690 if (fep->irq[i] > 0) {
1691 disable_irq(fep->irq[i]);
1692 fec_enet_interrupt(fep->irq[i], dev);
1693 enable_irq(fep->irq[i]);
1694 }
1695 }
1696}
1697#endif
1698
4c09eed9
JB
1699static int fec_set_features(struct net_device *netdev,
1700 netdev_features_t features)
1701{
1702 struct fec_enet_private *fep = netdev_priv(netdev);
1703 netdev_features_t changed = features ^ netdev->features;
1704
1705 netdev->features = features;
1706
1707 /* Receive checksum has been changed */
1708 if (changed & NETIF_F_RXCSUM) {
1709 if (features & NETIF_F_RXCSUM)
1710 fep->csum_flags |= FLAG_RX_CSUM_ENABLED;
1711 else
1712 fep->csum_flags &= ~FLAG_RX_CSUM_ENABLED;
1713
1714 if (netif_running(netdev)) {
1715 fec_stop(netdev);
1716 fec_restart(netdev, fep->phy_dev->duplex);
1717 netif_wake_queue(netdev);
1718 } else {
1719 fec_restart(netdev, fep->phy_dev->duplex);
1720 }
1721 }
1722
1723 return 0;
1724}
1725
009fda83
SH
1726static const struct net_device_ops fec_netdev_ops = {
1727 .ndo_open = fec_enet_open,
1728 .ndo_stop = fec_enet_close,
1729 .ndo_start_xmit = fec_enet_start_xmit,
afc4b13d 1730 .ndo_set_rx_mode = set_multicast_list,
635ecaa7 1731 .ndo_change_mtu = eth_change_mtu,
009fda83
SH
1732 .ndo_validate_addr = eth_validate_addr,
1733 .ndo_tx_timeout = fec_timeout,
1734 .ndo_set_mac_address = fec_set_mac_address,
db8880bc 1735 .ndo_do_ioctl = fec_enet_ioctl,
7f5c6add
XJ
1736#ifdef CONFIG_NET_POLL_CONTROLLER
1737 .ndo_poll_controller = fec_poll_controller,
1738#endif
4c09eed9 1739 .ndo_set_features = fec_set_features,
009fda83
SH
1740};
1741
1da177e4
LT
1742 /*
1743 * XXX: We need to clean up on failure exits here.
ead73183 1744 *
1da177e4 1745 */
c556167f 1746static int fec_enet_init(struct net_device *ndev)
1da177e4 1747{
c556167f 1748 struct fec_enet_private *fep = netdev_priv(ndev);
48496255
SG
1749 const struct platform_device_id *id_entry =
1750 platform_get_device_id(fep->pdev);
f0b3fbea 1751 struct bufdesc *cbd_base;
1da177e4 1752
8d4dd5cf
SH
1753 /* Allocate memory for buffer descriptors. */
1754 cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
d0320f75
JP
1755 GFP_KERNEL);
1756 if (!cbd_base)
562d2f8c 1757 return -ENOMEM;
562d2f8c 1758
14109a59 1759 memset(cbd_base, 0, PAGE_SIZE);
3b2b74ca 1760
c556167f 1761 fep->netdev = ndev;
1da177e4 1762
49da97dc 1763 /* Get the Ethernet address */
c556167f 1764 fec_get_mac(ndev);
1da177e4 1765
8d4dd5cf 1766 /* Set receive and transmit descriptor base. */
1da177e4 1767 fep->rx_bd_base = cbd_base;
ff43da86
FL
1768 if (fep->bufdesc_ex)
1769 fep->tx_bd_base = (struct bufdesc *)
1770 (((struct bufdesc_ex *)cbd_base) + RX_RING_SIZE);
1771 else
1772 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
1da177e4 1773
22f6b860 1774 /* The FEC Ethernet specific entries in the device structure */
c556167f
UKK
1775 ndev->watchdog_timeo = TX_TIMEOUT;
1776 ndev->netdev_ops = &fec_netdev_ops;
1777 ndev->ethtool_ops = &fec_enet_ethtool_ops;
633e7533 1778
dc975382
FL
1779 writel(FEC_RX_DISABLED_IMASK, fep->hwp + FEC_IMASK);
1780 netif_napi_add(ndev, &fep->napi, fec_enet_rx_napi, FEC_NAPI_WEIGHT);
1781
48496255
SG
1782 if (id_entry->driver_data & FEC_QUIRK_HAS_CSUM) {
1783 /* enable hw accelerator */
1784 ndev->features |= (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM
1785 | NETIF_F_RXCSUM);
1786 ndev->hw_features |= (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM
1787 | NETIF_F_RXCSUM);
1788 fep->csum_flags |= FLAG_RX_CSUM_ENABLED;
1789 }
4c09eed9 1790
c556167f 1791 fec_restart(ndev, 0);
1da177e4 1792
1da177e4
LT
1793 return 0;
1794}
1795
ca2cc333 1796#ifdef CONFIG_OF
33897cc8 1797static void fec_reset_phy(struct platform_device *pdev)
ca2cc333
SG
1798{
1799 int err, phy_reset;
a3caad0a 1800 int msec = 1;
ca2cc333
SG
1801 struct device_node *np = pdev->dev.of_node;
1802
1803 if (!np)
a9b2c8ef 1804 return;
ca2cc333 1805
a3caad0a
SG
1806 of_property_read_u32(np, "phy-reset-duration", &msec);
1807 /* A sane reset duration should not be longer than 1s */
1808 if (msec > 1000)
1809 msec = 1;
1810
ca2cc333 1811 phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
07dcf8e9
FE
1812 if (!gpio_is_valid(phy_reset))
1813 return;
1814
119fc007
SG
1815 err = devm_gpio_request_one(&pdev->dev, phy_reset,
1816 GPIOF_OUT_INIT_LOW, "phy-reset");
ca2cc333 1817 if (err) {
07dcf8e9 1818 dev_err(&pdev->dev, "failed to get phy-reset-gpios: %d\n", err);
a9b2c8ef 1819 return;
ca2cc333 1820 }
a3caad0a 1821 msleep(msec);
ca2cc333 1822 gpio_set_value(phy_reset, 1);
ca2cc333
SG
1823}
1824#else /* CONFIG_OF */
0c7768a0 1825static void fec_reset_phy(struct platform_device *pdev)
ca2cc333
SG
1826{
1827 /*
1828 * In case of platform probe, the reset has been done
1829 * by machine code.
1830 */
ca2cc333
SG
1831}
1832#endif /* CONFIG_OF */
1833
33897cc8 1834static int
ead73183
SH
1835fec_probe(struct platform_device *pdev)
1836{
1837 struct fec_enet_private *fep;
5eb32bd0 1838 struct fec_platform_data *pdata;
ead73183
SH
1839 struct net_device *ndev;
1840 int i, irq, ret = 0;
1841 struct resource *r;
ca2cc333 1842 const struct of_device_id *of_id;
43af940c 1843 static int dev_id;
b2bccee1 1844 struct pinctrl *pinctrl;
5fa9c0fe 1845 struct regulator *reg_phy;
ca2cc333
SG
1846
1847 of_id = of_match_device(fec_dt_ids, &pdev->dev);
1848 if (of_id)
1849 pdev->id_entry = of_id->data;
ead73183
SH
1850
1851 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1852 if (!r)
1853 return -ENXIO;
1854
ead73183
SH
1855 /* Init network device */
1856 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
83e519b6
FE
1857 if (!ndev)
1858 return -ENOMEM;
ead73183
SH
1859
1860 SET_NETDEV_DEV(ndev, &pdev->dev);
1861
1862 /* setup board info structure */
1863 fep = netdev_priv(ndev);
ead73183 1864
baa70a5c
FL
1865 /* default enable pause frame auto negotiation */
1866 if (pdev->id_entry &&
1867 (pdev->id_entry->driver_data & FEC_QUIRK_HAS_GBIT))
1868 fep->pause_flag |= FEC_PAUSE_FLAG_AUTONEG;
1869
83e519b6 1870 fep->hwp = devm_request_and_ioremap(&pdev->dev, r);
e6b043d5 1871 fep->pdev = pdev;
43af940c 1872 fep->dev_id = dev_id++;
ead73183 1873
ff43da86
FL
1874 fep->bufdesc_ex = 0;
1875
24e531b4 1876 if (!fep->hwp) {
ead73183
SH
1877 ret = -ENOMEM;
1878 goto failed_ioremap;
1879 }
1880
1881 platform_set_drvdata(pdev, ndev);
1882
6c5f7808 1883 ret = of_get_phy_mode(pdev->dev.of_node);
ca2cc333
SG
1884 if (ret < 0) {
1885 pdata = pdev->dev.platform_data;
1886 if (pdata)
1887 fep->phy_interface = pdata->phy;
1888 else
1889 fep->phy_interface = PHY_INTERFACE_MODE_MII;
1890 } else {
1891 fep->phy_interface = ret;
1892 }
1893
b2bccee1
SG
1894 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
1895 if (IS_ERR(pinctrl)) {
1896 ret = PTR_ERR(pinctrl);
1897 goto failed_pin;
1898 }
1899
f4d40de3
SH
1900 fep->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1901 if (IS_ERR(fep->clk_ipg)) {
1902 ret = PTR_ERR(fep->clk_ipg);
ead73183
SH
1903 goto failed_clk;
1904 }
f4d40de3
SH
1905
1906 fep->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
1907 if (IS_ERR(fep->clk_ahb)) {
1908 ret = PTR_ERR(fep->clk_ahb);
1909 goto failed_clk;
1910 }
1911
daa7d392
WS
1912 /* enet_out is optional, depends on board */
1913 fep->clk_enet_out = devm_clk_get(&pdev->dev, "enet_out");
1914 if (IS_ERR(fep->clk_enet_out))
1915 fep->clk_enet_out = NULL;
1916
6605b730 1917 fep->clk_ptp = devm_clk_get(&pdev->dev, "ptp");
e2f8d555
FE
1918 fep->bufdesc_ex =
1919 pdev->id_entry->driver_data & FEC_QUIRK_HAS_BUFDESC_EX;
6605b730 1920 if (IS_ERR(fep->clk_ptp)) {
c29dc2d7 1921 fep->clk_ptp = NULL;
ff43da86 1922 fep->bufdesc_ex = 0;
6605b730 1923 }
6605b730 1924
f4d40de3
SH
1925 clk_prepare_enable(fep->clk_ahb);
1926 clk_prepare_enable(fep->clk_ipg);
daa7d392 1927 clk_prepare_enable(fep->clk_enet_out);
c29dc2d7 1928 clk_prepare_enable(fep->clk_ptp);
ff43da86 1929
5fa9c0fe
SG
1930 reg_phy = devm_regulator_get(&pdev->dev, "phy");
1931 if (!IS_ERR(reg_phy)) {
1932 ret = regulator_enable(reg_phy);
1933 if (ret) {
1934 dev_err(&pdev->dev,
1935 "Failed to enable phy regulator: %d\n", ret);
1936 goto failed_regulator;
1937 }
1938 }
1939
2ca9b2aa
SG
1940 fec_reset_phy(pdev);
1941
e2f8d555
FE
1942 if (fep->bufdesc_ex)
1943 fec_ptp_init(ndev, pdev);
1944
1945 ret = fec_enet_init(ndev);
1946 if (ret)
1947 goto failed_init;
1948
1949 for (i = 0; i < FEC_IRQ_NUM; i++) {
1950 irq = platform_get_irq(pdev, i);
1951 if (irq < 0) {
1952 if (i)
1953 break;
1954 ret = irq;
1955 goto failed_irq;
1956 }
1957 ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
1958 if (ret) {
1959 while (--i >= 0) {
1960 irq = platform_get_irq(pdev, i);
1961 free_irq(irq, ndev);
1962 }
1963 goto failed_irq;
1964 }
1965 }
1966
e6b043d5
BW
1967 ret = fec_enet_mii_init(pdev);
1968 if (ret)
1969 goto failed_mii_init;
1970
03c698c9
OS
1971 /* Carrier starts down, phylib will bring it up */
1972 netif_carrier_off(ndev);
1973
ead73183
SH
1974 ret = register_netdev(ndev);
1975 if (ret)
1976 goto failed_register;
1977
eb1d0640
FE
1978 if (fep->bufdesc_ex && fep->ptp_clock)
1979 netdev_info(ndev, "registered PHC device %d\n", fep->dev_id);
1980
54309fa6 1981 INIT_DELAYED_WORK(&(fep->delay_work.delay_work), fec_enet_work);
ead73183
SH
1982 return 0;
1983
1984failed_register:
e6b043d5
BW
1985 fec_enet_mii_remove(fep);
1986failed_mii_init:
e2f8d555
FE
1987failed_init:
1988 for (i = 0; i < FEC_IRQ_NUM; i++) {
1989 irq = platform_get_irq(pdev, i);
1990 if (irq > 0)
1991 free_irq(irq, ndev);
1992 }
1993failed_irq:
5fa9c0fe 1994failed_regulator:
f4d40de3
SH
1995 clk_disable_unprepare(fep->clk_ahb);
1996 clk_disable_unprepare(fep->clk_ipg);
daa7d392 1997 clk_disable_unprepare(fep->clk_enet_out);
c29dc2d7 1998 clk_disable_unprepare(fep->clk_ptp);
b2bccee1 1999failed_pin:
ead73183 2000failed_clk:
ead73183
SH
2001failed_ioremap:
2002 free_netdev(ndev);
2003
2004 return ret;
2005}
2006
33897cc8 2007static int
ead73183
SH
2008fec_drv_remove(struct platform_device *pdev)
2009{
2010 struct net_device *ndev = platform_get_drvdata(pdev);
2011 struct fec_enet_private *fep = netdev_priv(ndev);
e163cc97 2012 int i;
ead73183 2013
54309fa6 2014 cancel_delayed_work_sync(&(fep->delay_work.delay_work));
e163cc97 2015 unregister_netdev(ndev);
e6b043d5 2016 fec_enet_mii_remove(fep);
6605b730
FL
2017 del_timer_sync(&fep->time_keep);
2018 clk_disable_unprepare(fep->clk_ptp);
2019 if (fep->ptp_clock)
2020 ptp_clock_unregister(fep->ptp_clock);
daa7d392 2021 clk_disable_unprepare(fep->clk_enet_out);
f4d40de3
SH
2022 clk_disable_unprepare(fep->clk_ahb);
2023 clk_disable_unprepare(fep->clk_ipg);
7f7d6c28
FE
2024 for (i = 0; i < FEC_IRQ_NUM; i++) {
2025 int irq = platform_get_irq(pdev, i);
2026 if (irq > 0)
2027 free_irq(irq, ndev);
2028 }
ead73183 2029 free_netdev(ndev);
28e2188e 2030
b3cde36c
UKK
2031 platform_set_drvdata(pdev, NULL);
2032
ead73183
SH
2033 return 0;
2034}
2035
bf7bfd7f 2036#ifdef CONFIG_PM_SLEEP
ead73183 2037static int
87cad5c3 2038fec_suspend(struct device *dev)
ead73183 2039{
87cad5c3 2040 struct net_device *ndev = dev_get_drvdata(dev);
04e5216d 2041 struct fec_enet_private *fep = netdev_priv(ndev);
ead73183 2042
04e5216d
UKK
2043 if (netif_running(ndev)) {
2044 fec_stop(ndev);
2045 netif_device_detach(ndev);
ead73183 2046 }
daa7d392 2047 clk_disable_unprepare(fep->clk_enet_out);
f4d40de3
SH
2048 clk_disable_unprepare(fep->clk_ahb);
2049 clk_disable_unprepare(fep->clk_ipg);
04e5216d 2050
ead73183
SH
2051 return 0;
2052}
2053
2054static int
87cad5c3 2055fec_resume(struct device *dev)
ead73183 2056{
87cad5c3 2057 struct net_device *ndev = dev_get_drvdata(dev);
04e5216d 2058 struct fec_enet_private *fep = netdev_priv(ndev);
ead73183 2059
daa7d392 2060 clk_prepare_enable(fep->clk_enet_out);
f4d40de3
SH
2061 clk_prepare_enable(fep->clk_ahb);
2062 clk_prepare_enable(fep->clk_ipg);
04e5216d
UKK
2063 if (netif_running(ndev)) {
2064 fec_restart(ndev, fep->full_duplex);
2065 netif_device_attach(ndev);
ead73183 2066 }
04e5216d 2067
ead73183
SH
2068 return 0;
2069}
bf7bfd7f 2070#endif /* CONFIG_PM_SLEEP */
ead73183 2071
bf7bfd7f 2072static SIMPLE_DEV_PM_OPS(fec_pm_ops, fec_suspend, fec_resume);
59d4289b 2073
ead73183
SH
2074static struct platform_driver fec_driver = {
2075 .driver = {
b5680e0b 2076 .name = DRIVER_NAME,
87cad5c3 2077 .owner = THIS_MODULE,
87cad5c3 2078 .pm = &fec_pm_ops,
ca2cc333 2079 .of_match_table = fec_dt_ids,
ead73183 2080 },
b5680e0b 2081 .id_table = fec_devtype,
87cad5c3 2082 .probe = fec_probe,
33897cc8 2083 .remove = fec_drv_remove,
ead73183
SH
2084};
2085
aaca2377 2086module_platform_driver(fec_driver);
1da177e4
LT
2087
2088MODULE_LICENSE("GPL");
This page took 1.62444 seconds and 5 git commands to generate.