blob: b2ae7e706d5e359e232086a0c81bdb545ca753b5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Fast Ethernet Controller (FEC) driver for Motorola MPC8xx.
3 * Copyright (c) 1997 Dan Malek (dmalek@jlc.net)
4 *
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10005 * Right now, I am very wasteful with the buffers. I allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * pages and then divide them into 2K frame buffers. This way I know I
7 * have buffers large enough to hold one frame within one buffer descriptor.
8 * Once I get this working, I will use 64 or 128 byte CPM buffers, which
9 * will be much more memory efficient and will easily handle lots of
10 * small packets.
11 *
12 * Much better multiple PHY support by Magnus Damm.
13 * Copyright (c) 2000 Ericsson Radio Systems AB.
14 *
Greg Ungerer562d2f82005-11-07 14:09:50 +100015 * Support for FEC controller of ColdFire processors.
16 * Copyright (c) 2001-2005 Greg Ungerer (gerg@snapgear.com)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +100017 *
18 * Bug fixes and cleanup by Philippe De Muyter (phdm@macqel.be)
Philippe De Muyter677177c2006-06-27 13:05:33 +100019 * Copyright (c) 2004-2006 Macq Electronique SA.
Shawn Guob5680e02011-01-05 21:13:13 +000020 *
Shawn Guo230dec62011-09-23 02:12:48 +000021 * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25#include <linux/kernel.h>
26#include <linux/string.h>
27#include <linux/ptrace.h>
28#include <linux/errno.h>
29#include <linux/ioport.h>
30#include <linux/slab.h>
31#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/delay.h>
33#include <linux/netdevice.h>
34#include <linux/etherdevice.h>
35#include <linux/skbuff.h>
Jim Baxter4c09eed2013-04-19 08:10:49 +000036#include <linux/in.h>
37#include <linux/ip.h>
38#include <net/ip.h>
Nimrod Andy79f33912014-06-12 08:16:23 +080039#include <net/tso.h>
Jim Baxter4c09eed2013-04-19 08:10:49 +000040#include <linux/tcp.h>
41#include <linux/udp.h>
42#include <linux/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/spinlock.h>
44#include <linux/workqueue.h>
45#include <linux/bitops.h>
Sascha Hauer6f501b12009-01-28 23:03:05 +000046#include <linux/io.h>
47#include <linux/irq.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000048#include <linux/clk.h>
Sascha Haueread73182009-01-28 23:03:11 +000049#include <linux/platform_device.h>
Bryan Wue6b043d2010-03-31 02:10:44 +000050#include <linux/phy.h>
Baruch Siach5eb32bd2010-05-24 00:36:13 -070051#include <linux/fec.h>
Shawn Guoca2cc332011-06-25 02:04:35 +080052#include <linux/of.h>
53#include <linux/of_device.h>
54#include <linux/of_gpio.h>
55#include <linux/of_net.h>
Shawn Guo5fa9c0f2012-06-27 03:45:21 +000056#include <linux/regulator/consumer.h>
Jim Baxtercdffcf12013-07-02 22:52:56 +010057#include <linux/if_vlan.h>
Fabio Estevama68ab982014-06-02 15:44:30 -030058#include <linux/pinctrl/consumer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Greg Ungerer080853a2007-07-30 16:28:46 +100060#include <asm/cacheflush.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include "fec.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Christoph Müllner772e42b2013-06-27 21:18:23 +020064static void set_multicast_list(struct net_device *ndev);
65
Uwe Kleine-König085e79e2011-01-17 09:52:18 +010066#if defined(CONFIG_ARM)
Sascha Hauer196719e2009-01-28 23:03:10 +000067#define FEC_ALIGNMENT 0xf
68#else
69#define FEC_ALIGNMENT 0x3
70#endif
71
Shawn Guob5680e02011-01-05 21:13:13 +000072#define DRIVER_NAME "fec"
73
Frank Libaa70a52013-01-16 16:55:58 +000074/* Pause frame feild and FIFO threshold */
75#define FEC_ENET_FCE (1 << 5)
76#define FEC_ENET_RSEM_V 0x84
77#define FEC_ENET_RSFL_V 16
78#define FEC_ENET_RAEM_V 0x8
79#define FEC_ENET_RAFL_V 0x8
80#define FEC_ENET_OPD_V 0xFFF0
81
Shawn Guob5680e02011-01-05 21:13:13 +000082/* Controller is ENET-MAC */
83#define FEC_QUIRK_ENET_MAC (1 << 0)
84/* Controller needs driver to swap frame */
85#define FEC_QUIRK_SWAP_FRAME (1 << 1)
Shawn Guo0ca1e292011-07-01 18:11:22 +080086/* Controller uses gasket */
87#define FEC_QUIRK_USE_GASKET (1 << 2)
Shawn Guo230dec62011-09-23 02:12:48 +000088/* Controller has GBIT support */
89#define FEC_QUIRK_HAS_GBIT (1 << 3)
Frank Liff43da82013-01-03 16:04:23 +000090/* Controller has extend desc buffer */
91#define FEC_QUIRK_HAS_BUFDESC_EX (1 << 4)
Shawn Guo48496252013-05-08 21:08:22 +000092/* Controller has hardware checksum support */
93#define FEC_QUIRK_HAS_CSUM (1 << 5)
Jim Baxtercdffcf12013-07-02 22:52:56 +010094/* Controller has hardware vlan support */
95#define FEC_QUIRK_HAS_VLAN (1 << 6)
Frank Li03191652013-07-25 14:05:53 +080096/* ENET IP errata ERR006358
97 *
98 * If the ready bit in the transmit buffer descriptor (TxBD[R]) is previously
99 * detected as not set during a prior frame transmission, then the
100 * ENET_TDAR[TDAR] bit is cleared at a later time, even if additional TxBDs
101 * were added to the ring and the ENET_TDAR[TDAR] bit is set. This results in
Frank Li03191652013-07-25 14:05:53 +0800102 * frames not being transmitted until there is a 0-to-1 transition on
103 * ENET_TDAR[TDAR].
104 */
105#define FEC_QUIRK_ERR006358 (1 << 7)
Shawn Guob5680e02011-01-05 21:13:13 +0000106
107static struct platform_device_id fec_devtype[] = {
108 {
Shawn Guo0ca1e292011-07-01 18:11:22 +0800109 /* keep it for coldfire */
Shawn Guob5680e02011-01-05 21:13:13 +0000110 .name = DRIVER_NAME,
111 .driver_data = 0,
112 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +0800113 .name = "imx25-fec",
114 .driver_data = FEC_QUIRK_USE_GASKET,
115 }, {
116 .name = "imx27-fec",
117 .driver_data = 0,
118 }, {
Shawn Guob5680e02011-01-05 21:13:13 +0000119 .name = "imx28-fec",
120 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME,
Shawn Guo0ca1e292011-07-01 18:11:22 +0800121 }, {
Shawn Guo230dec62011-09-23 02:12:48 +0000122 .name = "imx6q-fec",
Frank Liff43da82013-01-03 16:04:23 +0000123 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT |
Jim Baxtercdffcf12013-07-02 22:52:56 +0100124 FEC_QUIRK_HAS_BUFDESC_EX | FEC_QUIRK_HAS_CSUM |
Frank Li03191652013-07-25 14:05:53 +0800125 FEC_QUIRK_HAS_VLAN | FEC_QUIRK_ERR006358,
Shawn Guo230dec62011-09-23 02:12:48 +0000126 }, {
Shawn Guo36803542013-05-19 04:38:46 +0000127 .name = "mvf600-fec",
Jingchang Luca7c4a42013-04-11 21:12:45 +0000128 .driver_data = FEC_QUIRK_ENET_MAC,
129 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +0800130 /* sentinel */
131 }
Shawn Guob5680e02011-01-05 21:13:13 +0000132};
Shawn Guo0ca1e292011-07-01 18:11:22 +0800133MODULE_DEVICE_TABLE(platform, fec_devtype);
Shawn Guob5680e02011-01-05 21:13:13 +0000134
Shawn Guoca2cc332011-06-25 02:04:35 +0800135enum imx_fec_type {
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000136 IMX25_FEC = 1, /* runs on i.mx25/50/53 */
Shawn Guoca2cc332011-06-25 02:04:35 +0800137 IMX27_FEC, /* runs on i.mx27/35/51 */
138 IMX28_FEC,
Shawn Guo230dec62011-09-23 02:12:48 +0000139 IMX6Q_FEC,
Shawn Guo36803542013-05-19 04:38:46 +0000140 MVF600_FEC,
Shawn Guoca2cc332011-06-25 02:04:35 +0800141};
142
143static const struct of_device_id fec_dt_ids[] = {
144 { .compatible = "fsl,imx25-fec", .data = &fec_devtype[IMX25_FEC], },
145 { .compatible = "fsl,imx27-fec", .data = &fec_devtype[IMX27_FEC], },
146 { .compatible = "fsl,imx28-fec", .data = &fec_devtype[IMX28_FEC], },
Shawn Guo230dec62011-09-23 02:12:48 +0000147 { .compatible = "fsl,imx6q-fec", .data = &fec_devtype[IMX6Q_FEC], },
Shawn Guo36803542013-05-19 04:38:46 +0000148 { .compatible = "fsl,mvf600-fec", .data = &fec_devtype[MVF600_FEC], },
Shawn Guoca2cc332011-06-25 02:04:35 +0800149 { /* sentinel */ }
150};
151MODULE_DEVICE_TABLE(of, fec_dt_ids);
152
Shawn Guo49da97d2011-01-05 21:13:11 +0000153static unsigned char macaddr[ETH_ALEN];
154module_param_array(macaddr, byte, NULL, 0);
155MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
156
Greg Ungerer87f4abb2008-06-06 15:55:36 +1000157#if defined(CONFIG_M5272)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/*
159 * Some hardware gets it MAC address out of local flash memory.
160 * if this is non-zero then assume it is the address to get MAC from.
161 */
162#if defined(CONFIG_NETtel)
163#define FEC_FLASHMAC 0xf0006006
164#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
165#define FEC_FLASHMAC 0xf0006000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#elif defined(CONFIG_CANCam)
167#define FEC_FLASHMAC 0xf0020000
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000168#elif defined (CONFIG_M5272C3)
169#define FEC_FLASHMAC (0xffe04000 + 4)
170#elif defined(CONFIG_MOD5272)
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000171#define FEC_FLASHMAC 0xffc0406b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#else
173#define FEC_FLASHMAC 0
174#endif
Greg Ungerer43be6362009-02-26 22:42:51 -0800175#endif /* CONFIG_M5272 */
Sascha Haueread73182009-01-28 23:03:11 +0000176
Sascha Hauer22f6b862009-04-15 01:32:18 +0000177/* Interrupt events/masks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
179#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
180#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */
181#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */
182#define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */
183#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */
184#define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */
185#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */
186#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */
187#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */
188
Wolfram Sang4bee1f92010-07-21 02:51:13 +0000189#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII)
Frank Lidc975382013-01-28 18:31:42 +0000190#define FEC_RX_DISABLED_IMASK (FEC_DEFAULT_IMASK & (~FEC_ENET_RXF))
Wolfram Sang4bee1f92010-07-21 02:51:13 +0000191
Jim Baxtercdffcf12013-07-02 22:52:56 +0100192/* The FEC stores dest/src/type/vlan, data, and checksum for receive packets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 */
Jim Baxtercdffcf12013-07-02 22:52:56 +0100194#define PKT_MAXBUF_SIZE 1522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195#define PKT_MINBUF_SIZE 64
Jim Baxtercdffcf12013-07-02 22:52:56 +0100196#define PKT_MAXBLR_SIZE 1536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Jim Baxter4c09eed2013-04-19 08:10:49 +0000198/* FEC receive acceleration */
199#define FEC_RACC_IPDIS (1 << 1)
200#define FEC_RACC_PRODIS (1 << 2)
201#define FEC_RACC_OPTIONS (FEC_RACC_IPDIS | FEC_RACC_PRODIS)
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203/*
Matt Waddel6b265292006-06-27 13:10:56 +1000204 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * size bits. Other FEC hardware does not, so we need to take that into
206 * account when setting it.
207 */
Greg Ungerer562d2f82005-11-07 14:09:50 +1000208#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Uwe Kleine-König085e79e2011-01-17 09:52:18 +0100209 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
211#else
212#define OPT_FRAME_SIZE 0
213#endif
214
Bryan Wue6b043d2010-03-31 02:10:44 +0000215/* FEC MII MMFR bits definition */
216#define FEC_MMFR_ST (1 << 30)
217#define FEC_MMFR_OP_READ (2 << 28)
218#define FEC_MMFR_OP_WRITE (1 << 28)
219#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
220#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
221#define FEC_MMFR_TA (2 << 16)
222#define FEC_MMFR_DATA(v) (v & 0xffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Rogerio Pimentelc3b084c2011-12-27 14:07:37 -0500224#define FEC_MII_TIMEOUT 30000 /* us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Sascha Hauer22f6b862009-04-15 01:32:18 +0000226/* Transmitter timeout */
227#define TX_TIMEOUT (2 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Frank Libaa70a52013-01-16 16:55:58 +0000229#define FEC_PAUSE_FLAG_AUTONEG 0x1
230#define FEC_PAUSE_FLAG_ENABLE 0x2
231
Nimrod Andy79f33912014-06-12 08:16:23 +0800232#define TSO_HEADER_SIZE 128
233/* Max number of allowed TCP segments for software TSO */
234#define FEC_MAX_TSO_SEGS 100
235#define FEC_MAX_SKB_DESCS (FEC_MAX_TSO_SEGS * 2 + MAX_SKB_FRAGS)
236
237#define IS_TSO_HEADER(txq, addr) \
238 ((addr >= txq->tso_hdrs_dma) && \
239 (addr < txq->tso_hdrs_dma + txq->tx_ring_size * TSO_HEADER_SIZE))
240
Lothar Waßmanne163cc92011-12-07 21:59:31 +0000241static int mii_cnt;
242
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800243static inline
244struct bufdesc *fec_enet_get_nextdesc(struct bufdesc *bdp, struct fec_enet_private *fep)
Frank Liff43da82013-01-03 16:04:23 +0000245{
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800246 struct bufdesc *new_bd = bdp + 1;
247 struct bufdesc_ex *ex_new_bd = (struct bufdesc_ex *)bdp + 1;
248 struct bufdesc_ex *ex_base;
249 struct bufdesc *base;
250 int ring_size;
251
252 if (bdp >= fep->tx_bd_base) {
253 base = fep->tx_bd_base;
254 ring_size = fep->tx_ring_size;
255 ex_base = (struct bufdesc_ex *)fep->tx_bd_base;
256 } else {
257 base = fep->rx_bd_base;
258 ring_size = fep->rx_ring_size;
259 ex_base = (struct bufdesc_ex *)fep->rx_bd_base;
260 }
261
262 if (fep->bufdesc_ex)
263 return (struct bufdesc *)((ex_new_bd >= (ex_base + ring_size)) ?
264 ex_base : ex_new_bd);
Frank Liff43da82013-01-03 16:04:23 +0000265 else
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800266 return (new_bd >= (base + ring_size)) ?
267 base : new_bd;
Frank Liff43da82013-01-03 16:04:23 +0000268}
269
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800270static inline
271struct bufdesc *fec_enet_get_prevdesc(struct bufdesc *bdp, struct fec_enet_private *fep)
Frank Liff43da82013-01-03 16:04:23 +0000272{
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800273 struct bufdesc *new_bd = bdp - 1;
274 struct bufdesc_ex *ex_new_bd = (struct bufdesc_ex *)bdp - 1;
275 struct bufdesc_ex *ex_base;
276 struct bufdesc *base;
277 int ring_size;
278
279 if (bdp >= fep->tx_bd_base) {
280 base = fep->tx_bd_base;
281 ring_size = fep->tx_ring_size;
282 ex_base = (struct bufdesc_ex *)fep->tx_bd_base;
283 } else {
284 base = fep->rx_bd_base;
285 ring_size = fep->rx_ring_size;
286 ex_base = (struct bufdesc_ex *)fep->rx_bd_base;
287 }
288
289 if (fep->bufdesc_ex)
290 return (struct bufdesc *)((ex_new_bd < ex_base) ?
291 (ex_new_bd + ring_size) : ex_new_bd);
Frank Liff43da82013-01-03 16:04:23 +0000292 else
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800293 return (new_bd < base) ? (new_bd + ring_size) : new_bd;
Frank Liff43da82013-01-03 16:04:23 +0000294}
295
Nimrod Andy61a44272014-06-12 08:16:18 +0800296static int fec_enet_get_bd_index(struct bufdesc *base, struct bufdesc *bdp,
297 struct fec_enet_private *fep)
298{
299 return ((const char *)bdp - (const char *)base) / fep->bufdesc_size;
300}
301
Nimrod Andy6e909282014-06-12 08:16:22 +0800302static int fec_enet_get_free_txdesc_num(struct fec_enet_private *fep)
303{
304 int entries;
305
306 entries = ((const char *)fep->dirty_tx -
307 (const char *)fep->cur_tx) / fep->bufdesc_size - 1;
308
309 return entries > 0 ? entries : entries + fep->tx_ring_size;
310}
311
Shawn Guob5680e02011-01-05 21:13:13 +0000312static void *swap_buffer(void *bufaddr, int len)
313{
314 int i;
315 unsigned int *buf = bufaddr;
316
Fabio Estevamffed61e2013-05-21 05:44:26 +0000317 for (i = 0; i < DIV_ROUND_UP(len, 4); i++, buf++)
Shawn Guob5680e02011-01-05 21:13:13 +0000318 *buf = cpu_to_be32(*buf);
319
320 return bufaddr;
321}
322
Fugang Duan62a02c92014-06-18 08:33:52 +0800323static inline bool is_ipv4_pkt(struct sk_buff *skb)
324{
325 return skb->protocol == htons(ETH_P_IP) && ip_hdr(skb)->version == 4;
326}
327
Jim Baxter4c09eed2013-04-19 08:10:49 +0000328static int
329fec_enet_clear_csum(struct sk_buff *skb, struct net_device *ndev)
330{
331 /* Only run for packets requiring a checksum. */
332 if (skb->ip_summed != CHECKSUM_PARTIAL)
333 return 0;
334
335 if (unlikely(skb_cow_head(skb, 0)))
336 return -1;
337
Fugang Duan62a02c92014-06-18 08:33:52 +0800338 if (is_ipv4_pkt(skb))
339 ip_hdr(skb)->check = 0;
Jim Baxter4c09eed2013-04-19 08:10:49 +0000340 *(__sum16 *)(skb->head + skb->csum_start + skb->csum_offset) = 0;
341
342 return 0;
343}
344
Nimrod Andy6e909282014-06-12 08:16:22 +0800345static int
346fec_enet_txq_submit_frag_skb(struct sk_buff *skb, struct net_device *ndev)
347{
348 struct fec_enet_private *fep = netdev_priv(ndev);
349 const struct platform_device_id *id_entry =
350 platform_get_device_id(fep->pdev);
351 struct bufdesc *bdp = fep->cur_tx;
352 struct bufdesc_ex *ebdp;
353 int nr_frags = skb_shinfo(skb)->nr_frags;
354 int frag, frag_len;
355 unsigned short status;
356 unsigned int estatus = 0;
357 skb_frag_t *this_frag;
358 unsigned int index;
359 void *bufaddr;
Russell Kingd6bf3142014-07-08 00:23:19 +0100360 dma_addr_t addr;
Nimrod Andy6e909282014-06-12 08:16:22 +0800361 int i;
362
363 for (frag = 0; frag < nr_frags; frag++) {
364 this_frag = &skb_shinfo(skb)->frags[frag];
365 bdp = fec_enet_get_nextdesc(bdp, fep);
366 ebdp = (struct bufdesc_ex *)bdp;
367
368 status = bdp->cbd_sc;
369 status &= ~BD_ENET_TX_STATS;
370 status |= (BD_ENET_TX_TC | BD_ENET_TX_READY);
371 frag_len = skb_shinfo(skb)->frags[frag].size;
372
373 /* Handle the last BD specially */
374 if (frag == nr_frags - 1) {
375 status |= (BD_ENET_TX_INTR | BD_ENET_TX_LAST);
376 if (fep->bufdesc_ex) {
377 estatus |= BD_ENET_TX_INT;
378 if (unlikely(skb_shinfo(skb)->tx_flags &
379 SKBTX_HW_TSTAMP && fep->hwts_tx_en))
380 estatus |= BD_ENET_TX_TS;
381 }
382 }
383
384 if (fep->bufdesc_ex) {
385 if (skb->ip_summed == CHECKSUM_PARTIAL)
386 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
387 ebdp->cbd_bdu = 0;
388 ebdp->cbd_esc = estatus;
389 }
390
391 bufaddr = page_address(this_frag->page.p) + this_frag->page_offset;
392
393 index = fec_enet_get_bd_index(fep->tx_bd_base, bdp, fep);
394 if (((unsigned long) bufaddr) & FEC_ALIGNMENT ||
395 id_entry->driver_data & FEC_QUIRK_SWAP_FRAME) {
396 memcpy(fep->tx_bounce[index], bufaddr, frag_len);
397 bufaddr = fep->tx_bounce[index];
398
399 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
400 swap_buffer(bufaddr, frag_len);
401 }
402
Russell Kingd6bf3142014-07-08 00:23:19 +0100403 addr = dma_map_single(&fep->pdev->dev, bufaddr, frag_len,
404 DMA_TO_DEVICE);
405 if (dma_mapping_error(&fep->pdev->dev, addr)) {
Nimrod Andy6e909282014-06-12 08:16:22 +0800406 dev_kfree_skb_any(skb);
407 if (net_ratelimit())
408 netdev_err(ndev, "Tx DMA memory map failed\n");
409 goto dma_mapping_error;
410 }
411
Russell Kingd6bf3142014-07-08 00:23:19 +0100412 bdp->cbd_bufaddr = addr;
Nimrod Andy6e909282014-06-12 08:16:22 +0800413 bdp->cbd_datlen = frag_len;
414 bdp->cbd_sc = status;
415 }
416
417 fep->cur_tx = bdp;
418
419 return 0;
420
421dma_mapping_error:
422 bdp = fep->cur_tx;
423 for (i = 0; i < frag; i++) {
424 bdp = fec_enet_get_nextdesc(bdp, fep);
425 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
426 bdp->cbd_datlen, DMA_TO_DEVICE);
427 }
428 return NETDEV_TX_OK;
429}
430
431static int fec_enet_txq_submit_skb(struct sk_buff *skb, struct net_device *ndev)
432{
433 struct fec_enet_private *fep = netdev_priv(ndev);
434 const struct platform_device_id *id_entry =
435 platform_get_device_id(fep->pdev);
436 int nr_frags = skb_shinfo(skb)->nr_frags;
437 struct bufdesc *bdp, *last_bdp;
438 void *bufaddr;
Russell Kingd6bf3142014-07-08 00:23:19 +0100439 dma_addr_t addr;
Nimrod Andy6e909282014-06-12 08:16:22 +0800440 unsigned short status;
441 unsigned short buflen;
442 unsigned int estatus = 0;
443 unsigned int index;
Nimrod Andy79f33912014-06-12 08:16:23 +0800444 int entries_free;
Nimrod Andy6e909282014-06-12 08:16:22 +0800445 int ret;
446
Nimrod Andy79f33912014-06-12 08:16:23 +0800447 entries_free = fec_enet_get_free_txdesc_num(fep);
448 if (entries_free < MAX_SKB_FRAGS + 1) {
449 dev_kfree_skb_any(skb);
450 if (net_ratelimit())
451 netdev_err(ndev, "NOT enough BD for SG!\n");
452 return NETDEV_TX_OK;
453 }
454
Nimrod Andy6e909282014-06-12 08:16:22 +0800455 /* Protocol checksum off-load for TCP and UDP. */
456 if (fec_enet_clear_csum(skb, ndev)) {
457 dev_kfree_skb_any(skb);
458 return NETDEV_TX_OK;
459 }
460
461 /* Fill in a Tx ring entry */
462 bdp = fep->cur_tx;
463 status = bdp->cbd_sc;
464 status &= ~BD_ENET_TX_STATS;
465
466 /* Set buffer length and buffer pointer */
467 bufaddr = skb->data;
468 buflen = skb_headlen(skb);
469
470 index = fec_enet_get_bd_index(fep->tx_bd_base, bdp, fep);
471 if (((unsigned long) bufaddr) & FEC_ALIGNMENT ||
472 id_entry->driver_data & FEC_QUIRK_SWAP_FRAME) {
473 memcpy(fep->tx_bounce[index], skb->data, buflen);
474 bufaddr = fep->tx_bounce[index];
475
476 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
477 swap_buffer(bufaddr, buflen);
478 }
479
Russell Kingd6bf3142014-07-08 00:23:19 +0100480 /* Push the data cache so the CPM does not get stale memory data. */
481 addr = dma_map_single(&fep->pdev->dev, bufaddr, buflen, DMA_TO_DEVICE);
482 if (dma_mapping_error(&fep->pdev->dev, addr)) {
Nimrod Andy6e909282014-06-12 08:16:22 +0800483 dev_kfree_skb_any(skb);
484 if (net_ratelimit())
485 netdev_err(ndev, "Tx DMA memory map failed\n");
486 return NETDEV_TX_OK;
487 }
488
489 if (nr_frags) {
490 ret = fec_enet_txq_submit_frag_skb(skb, ndev);
491 if (ret)
492 return ret;
493 } else {
494 status |= (BD_ENET_TX_INTR | BD_ENET_TX_LAST);
495 if (fep->bufdesc_ex) {
496 estatus = BD_ENET_TX_INT;
497 if (unlikely(skb_shinfo(skb)->tx_flags &
498 SKBTX_HW_TSTAMP && fep->hwts_tx_en))
499 estatus |= BD_ENET_TX_TS;
500 }
501 }
502
503 if (fep->bufdesc_ex) {
504
505 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
506
507 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
508 fep->hwts_tx_en))
509 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
510
511 if (skb->ip_summed == CHECKSUM_PARTIAL)
512 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
513
514 ebdp->cbd_bdu = 0;
515 ebdp->cbd_esc = estatus;
516 }
517
518 last_bdp = fep->cur_tx;
519 index = fec_enet_get_bd_index(fep->tx_bd_base, last_bdp, fep);
520 /* Save skb pointer */
521 fep->tx_skbuff[index] = skb;
522
523 bdp->cbd_datlen = buflen;
Russell Kingd6bf3142014-07-08 00:23:19 +0100524 bdp->cbd_bufaddr = addr;
Nimrod Andy6e909282014-06-12 08:16:22 +0800525
526 /* Send it on its way. Tell FEC it's ready, interrupt when done,
527 * it's the last BD of the frame, and to put the CRC on the end.
528 */
529 status |= (BD_ENET_TX_READY | BD_ENET_TX_TC);
530 bdp->cbd_sc = status;
531
Sascha Hauer22f6b862009-04-15 01:32:18 +0000532 /* If this was the last BD in the ring, start at the beginning again. */
Nimrod Andy6e909282014-06-12 08:16:22 +0800533 bdp = fec_enet_get_nextdesc(last_bdp, fep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Eric Dumazet7a2a8452013-12-19 10:53:02 -0800535 skb_tx_timestamp(skb);
536
Sascha Hauer2e285322009-04-15 01:32:16 +0000537 fep->cur_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Frank Lide5fb0a2013-03-03 17:34:25 +0000539 /* Trigger transmission start */
540 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
541
Nimrod Andy6e909282014-06-12 08:16:22 +0800542 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Nimrod Andy79f33912014-06-12 08:16:23 +0800545static int
546fec_enet_txq_put_data_tso(struct sk_buff *skb, struct net_device *ndev,
547 struct bufdesc *bdp, int index, char *data,
548 int size, bool last_tcp, bool is_last)
549{
550 struct fec_enet_private *fep = netdev_priv(ndev);
551 const struct platform_device_id *id_entry =
552 platform_get_device_id(fep->pdev);
553 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
554 unsigned short status;
555 unsigned int estatus = 0;
Russell Kingd6bf3142014-07-08 00:23:19 +0100556 dma_addr_t addr;
Nimrod Andy79f33912014-06-12 08:16:23 +0800557
558 status = bdp->cbd_sc;
559 status &= ~BD_ENET_TX_STATS;
560
561 status |= (BD_ENET_TX_TC | BD_ENET_TX_READY);
Nimrod Andy79f33912014-06-12 08:16:23 +0800562
563 if (((unsigned long) data) & FEC_ALIGNMENT ||
564 id_entry->driver_data & FEC_QUIRK_SWAP_FRAME) {
565 memcpy(fep->tx_bounce[index], data, size);
566 data = fep->tx_bounce[index];
567
568 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
569 swap_buffer(data, size);
570 }
571
Russell Kingd6bf3142014-07-08 00:23:19 +0100572 addr = dma_map_single(&fep->pdev->dev, data, size, DMA_TO_DEVICE);
573 if (dma_mapping_error(&fep->pdev->dev, addr)) {
Nimrod Andy79f33912014-06-12 08:16:23 +0800574 dev_kfree_skb_any(skb);
575 if (net_ratelimit())
576 netdev_err(ndev, "Tx DMA memory map failed\n");
577 return NETDEV_TX_BUSY;
578 }
579
Russell Kingd6bf3142014-07-08 00:23:19 +0100580 bdp->cbd_datlen = size;
581 bdp->cbd_bufaddr = addr;
582
Nimrod Andy79f33912014-06-12 08:16:23 +0800583 if (fep->bufdesc_ex) {
584 if (skb->ip_summed == CHECKSUM_PARTIAL)
585 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
586 ebdp->cbd_bdu = 0;
587 ebdp->cbd_esc = estatus;
588 }
589
590 /* Handle the last BD specially */
591 if (last_tcp)
592 status |= (BD_ENET_TX_LAST | BD_ENET_TX_TC);
593 if (is_last) {
594 status |= BD_ENET_TX_INTR;
595 if (fep->bufdesc_ex)
596 ebdp->cbd_esc |= BD_ENET_TX_INT;
597 }
598
599 bdp->cbd_sc = status;
600
601 return 0;
602}
603
604static int
605fec_enet_txq_put_hdr_tso(struct sk_buff *skb, struct net_device *ndev,
606 struct bufdesc *bdp, int index)
607{
608 struct fec_enet_private *fep = netdev_priv(ndev);
609 const struct platform_device_id *id_entry =
610 platform_get_device_id(fep->pdev);
611 int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
612 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
613 void *bufaddr;
614 unsigned long dmabuf;
615 unsigned short status;
616 unsigned int estatus = 0;
617
618 status = bdp->cbd_sc;
619 status &= ~BD_ENET_TX_STATS;
620 status |= (BD_ENET_TX_TC | BD_ENET_TX_READY);
621
622 bufaddr = fep->tso_hdrs + index * TSO_HEADER_SIZE;
623 dmabuf = fep->tso_hdrs_dma + index * TSO_HEADER_SIZE;
624 if (((unsigned long) bufaddr) & FEC_ALIGNMENT ||
625 id_entry->driver_data & FEC_QUIRK_SWAP_FRAME) {
626 memcpy(fep->tx_bounce[index], skb->data, hdr_len);
627 bufaddr = fep->tx_bounce[index];
628
629 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
630 swap_buffer(bufaddr, hdr_len);
631
632 dmabuf = dma_map_single(&fep->pdev->dev, bufaddr,
633 hdr_len, DMA_TO_DEVICE);
634 if (dma_mapping_error(&fep->pdev->dev, dmabuf)) {
635 dev_kfree_skb_any(skb);
636 if (net_ratelimit())
637 netdev_err(ndev, "Tx DMA memory map failed\n");
638 return NETDEV_TX_BUSY;
639 }
640 }
641
642 bdp->cbd_bufaddr = dmabuf;
643 bdp->cbd_datlen = hdr_len;
644
645 if (fep->bufdesc_ex) {
646 if (skb->ip_summed == CHECKSUM_PARTIAL)
647 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
648 ebdp->cbd_bdu = 0;
649 ebdp->cbd_esc = estatus;
650 }
651
652 bdp->cbd_sc = status;
653
654 return 0;
655}
656
657static int fec_enet_txq_submit_tso(struct sk_buff *skb, struct net_device *ndev)
658{
659 struct fec_enet_private *fep = netdev_priv(ndev);
660 int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
661 int total_len, data_left;
662 struct bufdesc *bdp = fep->cur_tx;
663 struct tso_t tso;
664 unsigned int index = 0;
665 int ret;
666
667 if (tso_count_descs(skb) >= fec_enet_get_free_txdesc_num(fep)) {
668 dev_kfree_skb_any(skb);
669 if (net_ratelimit())
670 netdev_err(ndev, "NOT enough BD for TSO!\n");
671 return NETDEV_TX_OK;
672 }
673
674 /* Protocol checksum off-load for TCP and UDP. */
675 if (fec_enet_clear_csum(skb, ndev)) {
676 dev_kfree_skb_any(skb);
677 return NETDEV_TX_OK;
678 }
679
680 /* Initialize the TSO handler, and prepare the first payload */
681 tso_start(skb, &tso);
682
683 total_len = skb->len - hdr_len;
684 while (total_len > 0) {
685 char *hdr;
686
687 index = fec_enet_get_bd_index(fep->tx_bd_base, bdp, fep);
688 data_left = min_t(int, skb_shinfo(skb)->gso_size, total_len);
689 total_len -= data_left;
690
691 /* prepare packet headers: MAC + IP + TCP */
692 hdr = fep->tso_hdrs + index * TSO_HEADER_SIZE;
693 tso_build_hdr(skb, hdr, &tso, data_left, total_len == 0);
694 ret = fec_enet_txq_put_hdr_tso(skb, ndev, bdp, index);
695 if (ret)
696 goto err_release;
697
698 while (data_left > 0) {
699 int size;
700
701 size = min_t(int, tso.size, data_left);
702 bdp = fec_enet_get_nextdesc(bdp, fep);
703 index = fec_enet_get_bd_index(fep->tx_bd_base, bdp, fep);
704 ret = fec_enet_txq_put_data_tso(skb, ndev, bdp, index, tso.data,
705 size, size == data_left,
706 total_len == 0);
707 if (ret)
708 goto err_release;
709
710 data_left -= size;
711 tso_build_data(skb, &tso, size);
712 }
713
714 bdp = fec_enet_get_nextdesc(bdp, fep);
715 }
716
717 /* Save skb pointer */
718 fep->tx_skbuff[index] = skb;
719
Nimrod Andy79f33912014-06-12 08:16:23 +0800720 skb_tx_timestamp(skb);
721 fep->cur_tx = bdp;
722
723 /* Trigger transmission start */
724 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
725
726 return 0;
727
728err_release:
729 /* TODO: Release all used data descriptors for TSO */
730 return ret;
731}
732
Nimrod Andy61a44272014-06-12 08:16:18 +0800733static netdev_tx_t
734fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
735{
736 struct fec_enet_private *fep = netdev_priv(ndev);
Nimrod Andy6e909282014-06-12 08:16:22 +0800737 int entries_free;
Nimrod Andy61a44272014-06-12 08:16:18 +0800738 int ret;
739
Nimrod Andy79f33912014-06-12 08:16:23 +0800740 if (skb_is_gso(skb))
741 ret = fec_enet_txq_submit_tso(skb, ndev);
742 else
743 ret = fec_enet_txq_submit_skb(skb, ndev);
Nimrod Andy6e909282014-06-12 08:16:22 +0800744 if (ret)
745 return ret;
Nimrod Andy61a44272014-06-12 08:16:18 +0800746
Nimrod Andy6e909282014-06-12 08:16:22 +0800747 entries_free = fec_enet_get_free_txdesc_num(fep);
Nimrod Andy79f33912014-06-12 08:16:23 +0800748 if (entries_free <= fep->tx_stop_threshold)
Nimrod Andy61a44272014-06-12 08:16:18 +0800749 netif_stop_queue(ndev);
750
751 return NETDEV_TX_OK;
752}
753
Frank Li14109a52013-03-26 16:12:03 +0000754/* Init RX & TX buffer descriptors
755 */
756static void fec_enet_bd_init(struct net_device *dev)
757{
758 struct fec_enet_private *fep = netdev_priv(dev);
759 struct bufdesc *bdp;
760 unsigned int i;
761
762 /* Initialize the receive buffer descriptors. */
763 bdp = fep->rx_bd_base;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800764 for (i = 0; i < fep->rx_ring_size; i++) {
Frank Li14109a52013-03-26 16:12:03 +0000765
766 /* Initialize the BD for every fragment in the page. */
767 if (bdp->cbd_bufaddr)
768 bdp->cbd_sc = BD_ENET_RX_EMPTY;
769 else
770 bdp->cbd_sc = 0;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800771 bdp = fec_enet_get_nextdesc(bdp, fep);
Frank Li14109a52013-03-26 16:12:03 +0000772 }
773
774 /* Set the last buffer to wrap */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800775 bdp = fec_enet_get_prevdesc(bdp, fep);
Frank Li14109a52013-03-26 16:12:03 +0000776 bdp->cbd_sc |= BD_SC_WRAP;
777
778 fep->cur_rx = fep->rx_bd_base;
779
780 /* ...and the same for transmit */
781 bdp = fep->tx_bd_base;
782 fep->cur_tx = bdp;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800783 for (i = 0; i < fep->tx_ring_size; i++) {
Frank Li14109a52013-03-26 16:12:03 +0000784
785 /* Initialize the BD for every fragment in the page. */
786 bdp->cbd_sc = 0;
Russell Kingd6bf3142014-07-08 00:23:19 +0100787 if (fep->tx_skbuff[i]) {
Frank Li14109a52013-03-26 16:12:03 +0000788 dev_kfree_skb_any(fep->tx_skbuff[i]);
789 fep->tx_skbuff[i] = NULL;
790 }
791 bdp->cbd_bufaddr = 0;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800792 bdp = fec_enet_get_nextdesc(bdp, fep);
Frank Li14109a52013-03-26 16:12:03 +0000793 }
794
795 /* Set the last buffer to wrap */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800796 bdp = fec_enet_get_prevdesc(bdp, fep);
Frank Li14109a52013-03-26 16:12:03 +0000797 bdp->cbd_sc |= BD_SC_WRAP;
798 fep->dirty_tx = bdp;
799}
800
Russell Kingdbc64a82014-07-08 12:40:12 +0100801/*
802 * This function is called to start or restart the FEC during a link
803 * change, transmit timeout, or to reconfigure the FEC. The network
804 * packet processing for this device must be stopped before this call.
Uwe Kleine-König45993652011-01-19 20:47:04 +0100805 */
806static void
Russell Kingef833372014-07-08 12:40:43 +0100807fec_restart(struct net_device *ndev)
Uwe Kleine-König45993652011-01-19 20:47:04 +0100808{
809 struct fec_enet_private *fep = netdev_priv(ndev);
810 const struct platform_device_id *id_entry =
811 platform_get_device_id(fep->pdev);
812 int i;
Jim Baxter4c09eed2013-04-19 08:10:49 +0000813 u32 val;
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100814 u32 temp_mac[2];
815 u32 rcntl = OPT_FRAME_SIZE | 0x04;
Shawn Guo230dec62011-09-23 02:12:48 +0000816 u32 ecntl = 0x2; /* ETHEREN */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100817
818 /* Whack a reset. We should wait for this. */
819 writel(1, fep->hwp + FEC_ECNTRL);
820 udelay(10);
821
822 /*
823 * enet-mac reset will reset mac address registers too,
824 * so need to reconfigure it.
825 */
826 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
827 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
828 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
829 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
830 }
831
832 /* Clear any outstanding interrupt. */
833 writel(0xffc00000, fep->hwp + FEC_IEVENT);
834
Uwe Kleine-König45993652011-01-19 20:47:04 +0100835 /* Set maximum receive buffer size. */
836 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
837
Frank Li14109a52013-03-26 16:12:03 +0000838 fec_enet_bd_init(ndev);
839
Uwe Kleine-König45993652011-01-19 20:47:04 +0100840 /* Set receive and transmit descriptor base. */
841 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
Frank Liff43da82013-01-03 16:04:23 +0000842 if (fep->bufdesc_ex)
843 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc_ex)
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800844 * fep->rx_ring_size, fep->hwp + FEC_X_DES_START);
Frank Liff43da82013-01-03 16:04:23 +0000845 else
846 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc)
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800847 * fep->rx_ring_size, fep->hwp + FEC_X_DES_START);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100848
Uwe Kleine-König45993652011-01-19 20:47:04 +0100849
Uwe Kleine-König45993652011-01-19 20:47:04 +0100850 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
851 if (fep->tx_skbuff[i]) {
852 dev_kfree_skb_any(fep->tx_skbuff[i]);
853 fep->tx_skbuff[i] = NULL;
854 }
855 }
856
857 /* Enable MII mode */
Russell Kingef833372014-07-08 12:40:43 +0100858 if (fep->full_duplex == DUPLEX_FULL) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100859 /* FD enable */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100860 writel(0x04, fep->hwp + FEC_X_CNTRL);
861 } else {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100862 /* No Rcv on Xmit */
863 rcntl |= 0x02;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100864 writel(0x0, fep->hwp + FEC_X_CNTRL);
865 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100866
Uwe Kleine-König45993652011-01-19 20:47:04 +0100867 /* Set MII speed */
868 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
869
Guenter Roeckd1391932013-06-18 10:04:59 -0700870#if !defined(CONFIG_M5272)
Jim Baxter4c09eed2013-04-19 08:10:49 +0000871 /* set RX checksum */
872 val = readl(fep->hwp + FEC_RACC);
873 if (fep->csum_flags & FLAG_RX_CSUM_ENABLED)
874 val |= FEC_RACC_OPTIONS;
875 else
876 val &= ~FEC_RACC_OPTIONS;
877 writel(val, fep->hwp + FEC_RACC);
Guenter Roeckd1391932013-06-18 10:04:59 -0700878#endif
Jim Baxter4c09eed2013-04-19 08:10:49 +0000879
Uwe Kleine-König45993652011-01-19 20:47:04 +0100880 /*
881 * The phy interface and speed need to get configured
882 * differently on enet-mac.
883 */
884 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100885 /* Enable flow control and length check */
886 rcntl |= 0x40000000 | 0x00000020;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100887
Shawn Guo230dec62011-09-23 02:12:48 +0000888 /* RGMII, RMII or MII */
889 if (fep->phy_interface == PHY_INTERFACE_MODE_RGMII)
890 rcntl |= (1 << 6);
891 else if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100892 rcntl |= (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100893 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100894 rcntl &= ~(1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100895
Shawn Guo230dec62011-09-23 02:12:48 +0000896 /* 1G, 100M or 10M */
897 if (fep->phy_dev) {
898 if (fep->phy_dev->speed == SPEED_1000)
899 ecntl |= (1 << 5);
900 else if (fep->phy_dev->speed == SPEED_100)
901 rcntl &= ~(1 << 9);
902 else
903 rcntl |= (1 << 9);
904 }
Uwe Kleine-König45993652011-01-19 20:47:04 +0100905 } else {
906#ifdef FEC_MIIGSK_ENR
Shawn Guo0ca1e292011-07-01 18:11:22 +0800907 if (id_entry->driver_data & FEC_QUIRK_USE_GASKET) {
Eric Benard8d82f212012-01-12 06:10:28 +0000908 u32 cfgr;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100909 /* disable the gasket and wait */
910 writel(0, fep->hwp + FEC_MIIGSK_ENR);
911 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
912 udelay(1);
913
914 /*
915 * configure the gasket:
916 * RMII, 50 MHz, no loopback, no echo
Shawn Guo0ca1e292011-07-01 18:11:22 +0800917 * MII, 25 MHz, no loopback, no echo
Uwe Kleine-König45993652011-01-19 20:47:04 +0100918 */
Eric Benard8d82f212012-01-12 06:10:28 +0000919 cfgr = (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
920 ? BM_MIIGSK_CFGR_RMII : BM_MIIGSK_CFGR_MII;
921 if (fep->phy_dev && fep->phy_dev->speed == SPEED_10)
922 cfgr |= BM_MIIGSK_CFGR_FRCONT_10M;
923 writel(cfgr, fep->hwp + FEC_MIIGSK_CFGR);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100924
925 /* re-enable the gasket */
926 writel(2, fep->hwp + FEC_MIIGSK_ENR);
927 }
928#endif
929 }
Frank Libaa70a52013-01-16 16:55:58 +0000930
Guenter Roeckd1391932013-06-18 10:04:59 -0700931#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +0000932 /* enable pause frame*/
933 if ((fep->pause_flag & FEC_PAUSE_FLAG_ENABLE) ||
934 ((fep->pause_flag & FEC_PAUSE_FLAG_AUTONEG) &&
935 fep->phy_dev && fep->phy_dev->pause)) {
936 rcntl |= FEC_ENET_FCE;
937
Jim Baxter4c09eed2013-04-19 08:10:49 +0000938 /* set FIFO threshold parameter to reduce overrun */
Frank Libaa70a52013-01-16 16:55:58 +0000939 writel(FEC_ENET_RSEM_V, fep->hwp + FEC_R_FIFO_RSEM);
940 writel(FEC_ENET_RSFL_V, fep->hwp + FEC_R_FIFO_RSFL);
941 writel(FEC_ENET_RAEM_V, fep->hwp + FEC_R_FIFO_RAEM);
942 writel(FEC_ENET_RAFL_V, fep->hwp + FEC_R_FIFO_RAFL);
943
944 /* OPD */
945 writel(FEC_ENET_OPD_V, fep->hwp + FEC_OPD);
946 } else {
947 rcntl &= ~FEC_ENET_FCE;
948 }
Guenter Roeckd1391932013-06-18 10:04:59 -0700949#endif /* !defined(CONFIG_M5272) */
Frank Libaa70a52013-01-16 16:55:58 +0000950
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100951 writel(rcntl, fep->hwp + FEC_R_CNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100952
Stefan Wahren84fe6182014-03-12 11:28:19 +0100953 /* Setup multicast filter. */
954 set_multicast_list(ndev);
955#ifndef CONFIG_M5272
956 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
957 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
958#endif
959
Shawn Guo230dec62011-09-23 02:12:48 +0000960 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
961 /* enable ENET endian swap */
962 ecntl |= (1 << 8);
963 /* enable ENET store and forward mode */
964 writel(1 << 8, fep->hwp + FEC_X_WMRK);
965 }
966
Frank Liff43da82013-01-03 16:04:23 +0000967 if (fep->bufdesc_ex)
968 ecntl |= (1 << 4);
Frank Li6605b732012-10-30 18:25:31 +0000969
Chris Healy38ae92d2013-06-25 23:18:52 -0700970#ifndef CONFIG_M5272
Jim Baxterb9eef552013-07-01 14:57:54 +0100971 /* Enable the MIB statistic event counters */
972 writel(0 << 31, fep->hwp + FEC_MIB_CTRLSTAT);
Chris Healy38ae92d2013-06-25 23:18:52 -0700973#endif
974
Uwe Kleine-König45993652011-01-19 20:47:04 +0100975 /* And last, enable the transmit and receive processing */
Shawn Guo230dec62011-09-23 02:12:48 +0000976 writel(ecntl, fep->hwp + FEC_ECNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100977 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
978
Frank Liff43da82013-01-03 16:04:23 +0000979 if (fep->bufdesc_ex)
980 fec_ptp_start_cyclecounter(ndev);
981
Uwe Kleine-König45993652011-01-19 20:47:04 +0100982 /* Enable interrupts we wish to service */
983 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
984}
985
986static void
987fec_stop(struct net_device *ndev)
988{
989 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +0000990 const struct platform_device_id *id_entry =
991 platform_get_device_id(fep->pdev);
Lothar Waßmann42431dc2011-12-07 21:59:30 +0000992 u32 rmii_mode = readl(fep->hwp + FEC_R_CNTRL) & (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100993
994 /* We cannot expect a graceful transmit stop without link !!! */
995 if (fep->link) {
996 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
997 udelay(10);
998 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
Joe Perches31b77202013-04-13 19:03:17 +0000999 netdev_err(ndev, "Graceful transmit stop did not complete!\n");
Uwe Kleine-König45993652011-01-19 20:47:04 +01001000 }
1001
1002 /* Whack a reset. We should wait for this. */
1003 writel(1, fep->hwp + FEC_ECNTRL);
1004 udelay(10);
1005 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1006 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
Shawn Guo230dec62011-09-23 02:12:48 +00001007
1008 /* We have to keep ENET enabled to have MII interrupt stay working */
Lothar Waßmann42431dc2011-12-07 21:59:30 +00001009 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Shawn Guo230dec62011-09-23 02:12:48 +00001010 writel(2, fep->hwp + FEC_ECNTRL);
Lothar Waßmann42431dc2011-12-07 21:59:30 +00001011 writel(rmii_mode, fep->hwp + FEC_R_CNTRL);
1012 }
Uwe Kleine-König45993652011-01-19 20:47:04 +01001013}
1014
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001017fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001019 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001021 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Russell King36cdc742014-07-08 13:01:44 +01001023 schedule_work(&fep->tx_timeout_work);
Frank Li54309fa2013-05-07 14:08:44 +00001024}
1025
Russell King36cdc742014-07-08 13:01:44 +01001026static void fec_enet_timeout_work(struct work_struct *work)
Frank Li54309fa2013-05-07 14:08:44 +00001027{
1028 struct fec_enet_private *fep =
Russell King36cdc742014-07-08 13:01:44 +01001029 container_of(work, struct fec_enet_private, tx_timeout_work);
Russell King8ce56242014-07-08 12:40:07 +01001030 struct net_device *ndev = fep->netdev;
Frank Li54309fa2013-05-07 14:08:44 +00001031
Russell King36cdc742014-07-08 13:01:44 +01001032 rtnl_lock();
1033 if (netif_device_present(ndev) || netif_running(ndev)) {
1034 napi_disable(&fep->napi);
1035 netif_tx_lock_bh(ndev);
1036 fec_restart(ndev);
1037 netif_wake_queue(ndev);
1038 netif_tx_unlock_bh(ndev);
1039 napi_enable(&fep->napi);
Frank Li54309fa2013-05-07 14:08:44 +00001040 }
Russell King36cdc742014-07-08 13:01:44 +01001041 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001045fec_enet_tx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
1047 struct fec_enet_private *fep;
Sascha Hauer2e285322009-04-15 01:32:16 +00001048 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001049 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 struct sk_buff *skb;
Frank Lide5fb0a2013-03-03 17:34:25 +00001051 int index = 0;
Nimrod Andy79f33912014-06-12 08:16:23 +08001052 int entries_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001054 fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 bdp = fep->dirty_tx;
1056
Frank Lide5fb0a2013-03-03 17:34:25 +00001057 /* get next bdp of dirty_tx */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08001058 bdp = fec_enet_get_nextdesc(bdp, fep);
Frank Lide5fb0a2013-03-03 17:34:25 +00001059
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001060 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Frank Lide5fb0a2013-03-03 17:34:25 +00001061
1062 /* current queue is empty */
1063 if (bdp == fep->cur_tx)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001064 break;
1065
Nimrod Andy61a44272014-06-12 08:16:18 +08001066 index = fec_enet_get_bd_index(fep->tx_bd_base, bdp, fep);
Frank Lide5fb0a2013-03-03 17:34:25 +00001067
Frank Lide5fb0a2013-03-03 17:34:25 +00001068 skb = fep->tx_skbuff[index];
Russell Kingd6bf3142014-07-08 00:23:19 +01001069 fep->tx_skbuff[index] = NULL;
Nimrod Andy79f33912014-06-12 08:16:23 +08001070 if (!IS_TSO_HEADER(fep, bdp->cbd_bufaddr))
1071 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
1072 bdp->cbd_datlen, DMA_TO_DEVICE);
Sebastian Siewior2488a542013-12-02 10:52:55 +01001073 bdp->cbd_bufaddr = 0;
Nimrod Andy6e909282014-06-12 08:16:22 +08001074 if (!skb) {
1075 bdp = fec_enet_get_nextdesc(bdp, fep);
1076 continue;
1077 }
Frank Lide5fb0a2013-03-03 17:34:25 +00001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001080 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 BD_ENET_TX_RL | BD_ENET_TX_UN |
1082 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001083 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001084 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001085 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001086 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001087 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001088 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001089 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001090 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001091 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001092 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001093 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001095 ndev->stats.tx_packets++;
Nimrod Andy6e909282014-06-12 08:16:22 +08001096 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098
Frank Liff43da82013-01-03 16:04:23 +00001099 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) &&
1100 fep->bufdesc_ex) {
Frank Li6605b732012-10-30 18:25:31 +00001101 struct skb_shared_hwtstamps shhwtstamps;
1102 unsigned long flags;
Frank Liff43da82013-01-03 16:04:23 +00001103 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
Frank Li6605b732012-10-30 18:25:31 +00001104
1105 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
1106 spin_lock_irqsave(&fep->tmreg_lock, flags);
1107 shhwtstamps.hwtstamp = ns_to_ktime(
Frank Liff43da82013-01-03 16:04:23 +00001108 timecounter_cyc2time(&fep->tc, ebdp->ts));
Frank Li6605b732012-10-30 18:25:31 +00001109 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
1110 skb_tstamp_tx(skb, &shhwtstamps);
1111 }
Frank Liff43da82013-01-03 16:04:23 +00001112
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001113 if (status & BD_ENET_TX_READY)
Joe Perches31b77202013-04-13 19:03:17 +00001114 netdev_err(ndev, "HEY! Enet xmit interrupt and TX_READY\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +00001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 /* Deferred means some collisions occurred during transmit,
1117 * but we eventually sent the packet OK.
1118 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001119 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001120 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001121
Sascha Hauer22f6b862009-04-15 01:32:18 +00001122 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 dev_kfree_skb_any(skb);
Frank Lide5fb0a2013-03-03 17:34:25 +00001124
1125 fep->dirty_tx = bdp;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001126
Sascha Hauer22f6b862009-04-15 01:32:18 +00001127 /* Update pointer to next buffer descriptor to be transmitted */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08001128 bdp = fec_enet_get_nextdesc(bdp, fep);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001129
Sascha Hauer22f6b862009-04-15 01:32:18 +00001130 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 */
Nimrod Andy79f33912014-06-12 08:16:23 +08001132 if (netif_queue_stopped(ndev)) {
1133 entries_free = fec_enet_get_free_txdesc_num(fep);
1134 if (entries_free >= fep->tx_wake_threshold)
1135 netif_wake_queue(ndev);
1136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 }
Russell Kingccea2962014-07-08 13:01:38 +01001138
1139 /* ERR006538: Keep the transmitter going */
1140 if (bdp != fep->cur_tx && readl(fep->hwp + FEC_X_DES_ACTIVE) == 0)
1141 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144/* During a receive, the cur_rx points to the current incoming buffer.
1145 * When we update through the ring, if the next incoming buffer has
1146 * not been given to the system, we just set the empty indicator,
1147 * effectively tossing the packet.
1148 */
Frank Lidc975382013-01-28 18:31:42 +00001149static int
1150fec_enet_rx(struct net_device *ndev, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001152 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +00001153 const struct platform_device_id *id_entry =
1154 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +00001155 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001156 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 struct sk_buff *skb;
1158 ushort pkt_len;
1159 __u8 *data;
Frank Lidc975382013-01-28 18:31:42 +00001160 int pkt_received = 0;
Jim Baxtercdffcf12013-07-02 22:52:56 +01001161 struct bufdesc_ex *ebdp = NULL;
1162 bool vlan_packet_rcvd = false;
1163 u16 vlan_tag;
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08001164 int index = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001165
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001166#ifdef CONFIG_M532x
1167 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001168#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 /* First, grab all of the stats for the incoming packet.
1171 * These get messed up if we get called due to a busy condition.
1172 */
1173 bdp = fep->cur_rx;
1174
Sascha Hauer22f6b862009-04-15 01:32:18 +00001175 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Frank Lidc975382013-01-28 18:31:42 +00001177 if (pkt_received >= budget)
1178 break;
1179 pkt_received++;
1180
Sascha Hauer22f6b862009-04-15 01:32:18 +00001181 /* Since we have allocated space to hold a complete frame,
1182 * the last indicator should be set.
1183 */
1184 if ((status & BD_ENET_RX_LAST) == 0)
Joe Perches31b77202013-04-13 19:03:17 +00001185 netdev_err(ndev, "rcv is not +last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Sascha Hauer22f6b862009-04-15 01:32:18 +00001187 /* Check for errors. */
1188 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001190 ndev->stats.rx_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001191 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
1192 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001193 ndev->stats.rx_length_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001194 }
1195 if (status & BD_ENET_RX_NO) /* Frame alignment */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001196 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001197 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001198 ndev->stats.rx_crc_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001199 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001200 ndev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
Sascha Hauer22f6b862009-04-15 01:32:18 +00001202
1203 /* Report late collisions as a frame error.
1204 * On this error, the BD is closed, but we don't know what we
1205 * have in the buffer. So, just drop this frame on the floor.
1206 */
1207 if (status & BD_ENET_RX_CL) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001208 ndev->stats.rx_errors++;
1209 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001210 goto rx_processing_done;
1211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Sascha Hauer22f6b862009-04-15 01:32:18 +00001213 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001214 ndev->stats.rx_packets++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001215 pkt_len = bdp->cbd_datlen;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001216 ndev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Nimrod Andy61a44272014-06-12 08:16:18 +08001218 index = fec_enet_get_bd_index(fep->rx_bd_base, bdp, fep);
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08001219 data = fep->rx_skbuff[index]->data;
1220 dma_sync_single_for_cpu(&fep->pdev->dev, bdp->cbd_bufaddr,
1221 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerccdc4f12009-01-28 23:03:09 +00001222
Shawn Guob5680e02011-01-05 21:13:13 +00001223 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
1224 swap_buffer(data, pkt_len);
1225
Jim Baxtercdffcf12013-07-02 22:52:56 +01001226 /* Extract the enhanced buffer descriptor */
1227 ebdp = NULL;
1228 if (fep->bufdesc_ex)
1229 ebdp = (struct bufdesc_ex *)bdp;
1230
1231 /* If this is a VLAN packet remove the VLAN Tag */
1232 vlan_packet_rcvd = false;
1233 if ((ndev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
1234 fep->bufdesc_ex && (ebdp->cbd_esc & BD_ENET_RX_VLAN)) {
1235 /* Push and remove the vlan tag */
1236 struct vlan_hdr *vlan_header =
1237 (struct vlan_hdr *) (data + ETH_HLEN);
1238 vlan_tag = ntohs(vlan_header->h_vlan_TCI);
1239 pkt_len -= VLAN_HLEN;
1240
1241 vlan_packet_rcvd = true;
1242 }
1243
Sascha Hauer22f6b862009-04-15 01:32:18 +00001244 /* This does 16 byte alignment, exactly what we need.
1245 * The packet length includes FCS, but we don't want to
1246 * include that when passing upstream as it messes up
1247 * bridging applications.
1248 */
Fabio Estevamb72061a2012-02-07 08:27:31 +00001249 skb = netdev_alloc_skb(ndev, pkt_len - 4 + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Sascha Hauer85498892009-04-15 01:32:21 +00001251 if (unlikely(!skb)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001252 ndev->stats.rx_dropped++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001253 } else {
Jim Baxtercdffcf12013-07-02 22:52:56 +01001254 int payload_offset = (2 * ETH_ALEN);
Sascha Hauer85498892009-04-15 01:32:21 +00001255 skb_reserve(skb, NET_IP_ALIGN);
Sascha Hauer22f6b862009-04-15 01:32:18 +00001256 skb_put(skb, pkt_len - 4); /* Make room */
Jim Baxtercdffcf12013-07-02 22:52:56 +01001257
1258 /* Extract the frame data without the VLAN header. */
1259 skb_copy_to_linear_data(skb, data, (2 * ETH_ALEN));
1260 if (vlan_packet_rcvd)
1261 payload_offset = (2 * ETH_ALEN) + VLAN_HLEN;
1262 skb_copy_to_linear_data_offset(skb, (2 * ETH_ALEN),
1263 data + payload_offset,
1264 pkt_len - 4 - (2 * ETH_ALEN));
1265
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001266 skb->protocol = eth_type_trans(skb, ndev);
Frank Liff43da82013-01-03 16:04:23 +00001267
Frank Li6605b732012-10-30 18:25:31 +00001268 /* Get receive timestamp from the skb */
Frank Liff43da82013-01-03 16:04:23 +00001269 if (fep->hwts_rx_en && fep->bufdesc_ex) {
Frank Li6605b732012-10-30 18:25:31 +00001270 struct skb_shared_hwtstamps *shhwtstamps =
1271 skb_hwtstamps(skb);
1272 unsigned long flags;
1273
1274 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
1275
1276 spin_lock_irqsave(&fep->tmreg_lock, flags);
1277 shhwtstamps->hwtstamp = ns_to_ktime(
Frank Liff43da82013-01-03 16:04:23 +00001278 timecounter_cyc2time(&fep->tc, ebdp->ts));
Frank Li6605b732012-10-30 18:25:31 +00001279 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
1280 }
Frank Liff43da82013-01-03 16:04:23 +00001281
Jim Baxter4c09eed2013-04-19 08:10:49 +00001282 if (fep->bufdesc_ex &&
Jim Baxtercdffcf12013-07-02 22:52:56 +01001283 (fep->csum_flags & FLAG_RX_CSUM_ENABLED)) {
Jim Baxter4c09eed2013-04-19 08:10:49 +00001284 if (!(ebdp->cbd_esc & FLAG_RX_CSUM_ERROR)) {
1285 /* don't check it */
1286 skb->ip_summed = CHECKSUM_UNNECESSARY;
1287 } else {
1288 skb_checksum_none_assert(skb);
1289 }
1290 }
1291
Jim Baxtercdffcf12013-07-02 22:52:56 +01001292 /* Handle received VLAN packets */
1293 if (vlan_packet_rcvd)
1294 __vlan_hwaccel_put_tag(skb,
1295 htons(ETH_P_8021Q),
1296 vlan_tag);
1297
Richard Cochran0affdf32013-08-30 20:28:10 +02001298 napi_gro_receive(&fep->napi, skb);
Sascha Hauer22f6b862009-04-15 01:32:18 +00001299 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001300
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08001301 dma_sync_single_for_device(&fep->pdev->dev, bdp->cbd_bufaddr,
1302 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauer22f6b862009-04-15 01:32:18 +00001303rx_processing_done:
1304 /* Clear the status flags for this buffer */
1305 status &= ~BD_ENET_RX_STATS;
1306
1307 /* Mark the buffer empty */
1308 status |= BD_ENET_RX_EMPTY;
1309 bdp->cbd_sc = status;
1310
Frank Liff43da82013-01-03 16:04:23 +00001311 if (fep->bufdesc_ex) {
1312 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
1313
1314 ebdp->cbd_esc = BD_ENET_RX_INT;
1315 ebdp->cbd_prot = 0;
1316 ebdp->cbd_bdu = 0;
1317 }
Frank Li6605b732012-10-30 18:25:31 +00001318
Sascha Hauer22f6b862009-04-15 01:32:18 +00001319 /* Update BD pointer to next entry */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08001320 bdp = fec_enet_get_nextdesc(bdp, fep);
1321
Sascha Hauer22f6b862009-04-15 01:32:18 +00001322 /* Doing this here will keep the FEC running while we process
1323 * incoming frames. On a heavily loaded network, we should be
1324 * able to keep up at the expense of system resources.
1325 */
1326 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
Sascha Hauer2e285322009-04-15 01:32:16 +00001328 fep->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Frank Lidc975382013-01-28 18:31:42 +00001330 return pkt_received;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
Uwe Kleine-König45993652011-01-19 20:47:04 +01001333static irqreturn_t
1334fec_enet_interrupt(int irq, void *dev_id)
1335{
1336 struct net_device *ndev = dev_id;
1337 struct fec_enet_private *fep = netdev_priv(ndev);
Russell King7a168072014-07-08 00:22:44 +01001338 const unsigned napi_mask = FEC_ENET_RXF | FEC_ENET_TXF;
Uwe Kleine-König45993652011-01-19 20:47:04 +01001339 uint int_events;
1340 irqreturn_t ret = IRQ_NONE;
1341
Russell King7a168072014-07-08 00:22:44 +01001342 int_events = readl(fep->hwp + FEC_IEVENT);
1343 writel(int_events & ~napi_mask, fep->hwp + FEC_IEVENT);
Uwe Kleine-König45993652011-01-19 20:47:04 +01001344
Russell King7a168072014-07-08 00:22:44 +01001345 if (int_events & napi_mask) {
1346 ret = IRQ_HANDLED;
Frank Lidc975382013-01-28 18:31:42 +00001347
Russell King7a168072014-07-08 00:22:44 +01001348 /* Disable the NAPI interrupts */
1349 writel(FEC_ENET_MII, fep->hwp + FEC_IMASK);
1350 napi_schedule(&fep->napi);
1351 }
Uwe Kleine-König45993652011-01-19 20:47:04 +01001352
Russell King7a168072014-07-08 00:22:44 +01001353 if (int_events & FEC_ENET_MII) {
1354 ret = IRQ_HANDLED;
1355 complete(&fep->mdio_done);
1356 }
Uwe Kleine-König45993652011-01-19 20:47:04 +01001357
1358 return ret;
1359}
1360
Frank Lidc975382013-01-28 18:31:42 +00001361static int fec_enet_rx_napi(struct napi_struct *napi, int budget)
1362{
1363 struct net_device *ndev = napi->dev;
Frank Lidc975382013-01-28 18:31:42 +00001364 struct fec_enet_private *fep = netdev_priv(ndev);
Russell King7a168072014-07-08 00:22:44 +01001365 int pkts;
1366
1367 /*
1368 * Clear any pending transmit or receive interrupts before
1369 * processing the rings to avoid racing with the hardware.
1370 */
1371 writel(FEC_ENET_RXF | FEC_ENET_TXF, fep->hwp + FEC_IEVENT);
1372
1373 pkts = fec_enet_rx(ndev, budget);
Uwe Kleine-König45993652011-01-19 20:47:04 +01001374
Frank Lide5fb0a2013-03-03 17:34:25 +00001375 fec_enet_tx(ndev);
1376
Frank Lidc975382013-01-28 18:31:42 +00001377 if (pkts < budget) {
1378 napi_complete(napi);
1379 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
1380 }
1381 return pkts;
1382}
Uwe Kleine-König45993652011-01-19 20:47:04 +01001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384/* ------------------------------------------------------------------------- */
Fabio Estevam0c7768a2013-01-07 17:42:56 +00001385static void fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001387 struct fec_enet_private *fep = netdev_priv(ndev);
Jingoo Han94660ba2013-08-30 13:56:26 +09001388 struct fec_platform_data *pdata = dev_get_platdata(&fep->pdev->dev);
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001389 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Shawn Guo49da97d2011-01-05 21:13:11 +00001391 /*
1392 * try to get mac address in following order:
1393 *
1394 * 1) module parameter via kernel command line in form
1395 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
1396 */
1397 iap = macaddr;
1398
1399 /*
Shawn Guoca2cc332011-06-25 02:04:35 +08001400 * 2) from device tree data
1401 */
1402 if (!is_valid_ether_addr(iap)) {
1403 struct device_node *np = fep->pdev->dev.of_node;
1404 if (np) {
1405 const char *mac = of_get_mac_address(np);
1406 if (mac)
1407 iap = (unsigned char *) mac;
1408 }
1409 }
Shawn Guoca2cc332011-06-25 02:04:35 +08001410
1411 /*
1412 * 3) from flash or fuse (via platform data)
Shawn Guo49da97d2011-01-05 21:13:11 +00001413 */
1414 if (!is_valid_ether_addr(iap)) {
1415#ifdef CONFIG_M5272
1416 if (FEC_FLASHMAC)
1417 iap = (unsigned char *)FEC_FLASHMAC;
1418#else
1419 if (pdata)
Lothar Waßmann589efdc2011-12-07 21:59:29 +00001420 iap = (unsigned char *)&pdata->mac;
Shawn Guo49da97d2011-01-05 21:13:11 +00001421#endif
1422 }
1423
1424 /*
Shawn Guoca2cc332011-06-25 02:04:35 +08001425 * 4) FEC mac registers set by bootloader
Shawn Guo49da97d2011-01-05 21:13:11 +00001426 */
1427 if (!is_valid_ether_addr(iap)) {
Dan Carpenter7d7628f2013-08-29 11:25:14 +03001428 *((__be32 *) &tmpaddr[0]) =
1429 cpu_to_be32(readl(fep->hwp + FEC_ADDR_LOW));
1430 *((__be16 *) &tmpaddr[4]) =
1431 cpu_to_be16(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 iap = &tmpaddr[0];
1433 }
1434
Lucas Stachff5b2fa2013-06-03 00:38:39 +00001435 /*
1436 * 5) random mac address
1437 */
1438 if (!is_valid_ether_addr(iap)) {
1439 /* Report it and use a random ethernet address instead */
1440 netdev_err(ndev, "Invalid MAC address: %pM\n", iap);
1441 eth_hw_addr_random(ndev);
1442 netdev_info(ndev, "Using random MAC address: %pM\n",
1443 ndev->dev_addr);
1444 return;
1445 }
1446
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001447 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Shawn Guo49da97d2011-01-05 21:13:11 +00001449 /* Adjust MAC if using macaddr */
1450 if (iap == macaddr)
Shawn Guo43af9402011-12-05 05:01:15 +00001451 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454/* ------------------------------------------------------------------------- */
1455
Bryan Wue6b043d2010-03-31 02:10:44 +00001456/*
1457 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001459static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001461 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001462 struct phy_device *phy_dev = fep->phy_dev;
Bryan Wue6b043d2010-03-31 02:10:44 +00001463 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Bryan Wue6b043d2010-03-31 02:10:44 +00001465 /* Prevent a state halted on mii error */
1466 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
1467 phy_dev->state = PHY_RESUMING;
Frank Li54309fa2013-05-07 14:08:44 +00001468 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001470
Russell King8ce56242014-07-08 12:40:07 +01001471 /*
1472 * If the netdev is down, or is going down, we're not interested
1473 * in link state events, so just mark our idea of the link as down
1474 * and ignore the event.
1475 */
1476 if (!netif_running(ndev) || !netif_device_present(ndev)) {
1477 fep->link = 0;
1478 } else if (phy_dev->link) {
Lucas Stachd97e7492013-03-14 05:12:01 +00001479 if (!fep->link) {
Lothar Waßmann6ea07222011-12-07 21:59:27 +00001480 fep->link = phy_dev->link;
Bryan Wue6b043d2010-03-31 02:10:44 +00001481 status_change = 1;
1482 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001483
Russell Kingef833372014-07-08 12:40:43 +01001484 if (fep->full_duplex != phy_dev->duplex) {
1485 fep->full_duplex = phy_dev->duplex;
Lucas Stachd97e7492013-03-14 05:12:01 +00001486 status_change = 1;
Russell Kingef833372014-07-08 12:40:43 +01001487 }
Lucas Stachd97e7492013-03-14 05:12:01 +00001488
1489 if (phy_dev->speed != fep->speed) {
1490 fep->speed = phy_dev->speed;
1491 status_change = 1;
1492 }
1493
1494 /* if any of the above changed restart the FEC */
Russell Kingdbc64a82014-07-08 12:40:12 +01001495 if (status_change) {
Russell Kingdbc64a82014-07-08 12:40:12 +01001496 napi_disable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001497 netif_tx_lock_bh(ndev);
Russell Kingef833372014-07-08 12:40:43 +01001498 fec_restart(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001499 netif_wake_queue(ndev);
Russell King6af42d42014-07-08 12:40:18 +01001500 netif_tx_unlock_bh(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001501 napi_enable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001502 }
Lucas Stachd97e7492013-03-14 05:12:01 +00001503 } else {
1504 if (fep->link) {
Russell Kingf208ce12014-07-08 12:40:38 +01001505 napi_disable(&fep->napi);
1506 netif_tx_lock_bh(ndev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001507 fec_stop(ndev);
Russell Kingf208ce12014-07-08 12:40:38 +01001508 netif_tx_unlock_bh(ndev);
1509 napi_enable(&fep->napi);
Lucas Stach8d7ed0f2013-04-16 00:42:42 +00001510 fep->link = phy_dev->link;
Lucas Stachd97e7492013-03-14 05:12:01 +00001511 status_change = 1;
1512 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001513 }
1514
Bryan Wue6b043d2010-03-31 02:10:44 +00001515 if (status_change)
1516 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518
Bryan Wue6b043d2010-03-31 02:10:44 +00001519static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Bryan Wue6b043d2010-03-31 02:10:44 +00001521 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +00001522 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +00001523
1524 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +00001525 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +00001526
1527 /* start a read op */
1528 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
1529 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
1530 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
1531
1532 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +00001533 time_left = wait_for_completion_timeout(&fep->mdio_done,
1534 usecs_to_jiffies(FEC_MII_TIMEOUT));
1535 if (time_left == 0) {
1536 fep->mii_timeout = 1;
Joe Perches31b77202013-04-13 19:03:17 +00001537 netdev_err(fep->netdev, "MDIO read timeout\n");
Baruch Siach97b72e42010-07-11 21:12:51 +00001538 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +00001539 }
1540
1541 /* return value */
1542 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
1543}
1544
1545static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
1546 u16 value)
1547{
1548 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +00001549 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +00001550
1551 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +00001552 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +00001553
Shawn Guo862f0982011-01-05 21:13:09 +00001554 /* start a write op */
1555 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +00001556 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
1557 FEC_MMFR_TA | FEC_MMFR_DATA(value),
1558 fep->hwp + FEC_MII_DATA);
1559
1560 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +00001561 time_left = wait_for_completion_timeout(&fep->mdio_done,
1562 usecs_to_jiffies(FEC_MII_TIMEOUT));
1563 if (time_left == 0) {
1564 fep->mii_timeout = 1;
Joe Perches31b77202013-04-13 19:03:17 +00001565 netdev_err(fep->netdev, "MDIO write timeout\n");
Baruch Siach97b72e42010-07-11 21:12:51 +00001566 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +00001567 }
1568
1569 return 0;
1570}
1571
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001572static int fec_enet_clk_enable(struct net_device *ndev, bool enable)
1573{
1574 struct fec_enet_private *fep = netdev_priv(ndev);
1575 int ret;
1576
1577 if (enable) {
1578 ret = clk_prepare_enable(fep->clk_ahb);
1579 if (ret)
1580 return ret;
1581 ret = clk_prepare_enable(fep->clk_ipg);
1582 if (ret)
1583 goto failed_clk_ipg;
1584 if (fep->clk_enet_out) {
1585 ret = clk_prepare_enable(fep->clk_enet_out);
1586 if (ret)
1587 goto failed_clk_enet_out;
1588 }
1589 if (fep->clk_ptp) {
1590 ret = clk_prepare_enable(fep->clk_ptp);
1591 if (ret)
1592 goto failed_clk_ptp;
1593 }
1594 } else {
1595 clk_disable_unprepare(fep->clk_ahb);
1596 clk_disable_unprepare(fep->clk_ipg);
1597 if (fep->clk_enet_out)
1598 clk_disable_unprepare(fep->clk_enet_out);
1599 if (fep->clk_ptp)
1600 clk_disable_unprepare(fep->clk_ptp);
1601 }
1602
1603 return 0;
1604failed_clk_ptp:
1605 if (fep->clk_enet_out)
1606 clk_disable_unprepare(fep->clk_enet_out);
1607failed_clk_enet_out:
1608 clk_disable_unprepare(fep->clk_ipg);
1609failed_clk_ipg:
1610 clk_disable_unprepare(fep->clk_ahb);
1611
1612 return ret;
1613}
1614
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001615static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +00001616{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001617 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +00001618 const struct platform_device_id *id_entry =
1619 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001620 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001621 char mdio_bus_id[MII_BUS_ID_SIZE];
1622 char phy_name[MII_BUS_ID_SIZE + 3];
1623 int phy_id;
Shawn Guo43af9402011-12-05 05:01:15 +00001624 int dev_id = fep->dev_id;
Bryan Wue6b043d2010-03-31 02:10:44 +00001625
Bryan Wu418bd0d2010-05-28 03:40:39 -07001626 fep->phy_dev = NULL;
1627
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001628 /* check for attached phy */
1629 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
1630 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
1631 continue;
1632 if (fep->mii_bus->phy_map[phy_id] == NULL)
1633 continue;
1634 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
1635 continue;
Shawn Guob5680e02011-01-05 21:13:13 +00001636 if (dev_id--)
1637 continue;
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001638 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
1639 break;
Bryan Wue6b043d2010-03-31 02:10:44 +00001640 }
1641
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001642 if (phy_id >= PHY_MAX_ADDR) {
Joe Perches31b77202013-04-13 19:03:17 +00001643 netdev_info(ndev, "no PHY, assuming direct connection to switch\n");
Florian Fainelliea51ade92012-02-13 01:23:22 +00001644 strncpy(mdio_bus_id, "fixed-0", MII_BUS_ID_SIZE);
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001645 phy_id = 0;
1646 }
1647
Richard Zhaoa7ed07d2012-01-29 22:08:12 +00001648 snprintf(phy_name, sizeof(phy_name), PHY_ID_FMT, mdio_bus_id, phy_id);
Florian Fainellif9a8f832013-01-14 00:52:52 +00001649 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link,
Shawn Guo230dec62011-09-23 02:12:48 +00001650 fep->phy_interface);
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001651 if (IS_ERR(phy_dev)) {
Joe Perches31b77202013-04-13 19:03:17 +00001652 netdev_err(ndev, "could not attach to PHY\n");
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001653 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001654 }
1655
1656 /* mask with MAC supported features */
Frank Libaa70a52013-01-16 16:55:58 +00001657 if (id_entry->driver_data & FEC_QUIRK_HAS_GBIT) {
Shawn Guo230dec62011-09-23 02:12:48 +00001658 phy_dev->supported &= PHY_GBIT_FEATURES;
Russell Kingb44592f2014-07-08 00:22:34 +01001659 phy_dev->supported &= ~SUPPORTED_1000baseT_Half;
Guenter Roeckd1391932013-06-18 10:04:59 -07001660#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +00001661 phy_dev->supported |= SUPPORTED_Pause;
Guenter Roeckd1391932013-06-18 10:04:59 -07001662#endif
Frank Libaa70a52013-01-16 16:55:58 +00001663 }
Shawn Guo230dec62011-09-23 02:12:48 +00001664 else
1665 phy_dev->supported &= PHY_BASIC_FEATURES;
1666
Bryan Wue6b043d2010-03-31 02:10:44 +00001667 phy_dev->advertising = phy_dev->supported;
1668
1669 fep->phy_dev = phy_dev;
1670 fep->link = 0;
1671 fep->full_duplex = 0;
1672
Joe Perches31b77202013-04-13 19:03:17 +00001673 netdev_info(ndev, "Freescale FEC PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
1674 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
1675 fep->phy_dev->irq);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001676
Bryan Wue6b043d2010-03-31 02:10:44 +00001677 return 0;
1678}
1679
1680static int fec_enet_mii_init(struct platform_device *pdev)
1681{
Shawn Guob5680e02011-01-05 21:13:13 +00001682 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001683 struct net_device *ndev = platform_get_drvdata(pdev);
1684 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +00001685 const struct platform_device_id *id_entry =
1686 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001687 int err = -ENXIO, i;
1688
Shawn Guob5680e02011-01-05 21:13:13 +00001689 /*
1690 * The dual fec interfaces are not equivalent with enet-mac.
1691 * Here are the differences:
1692 *
1693 * - fec0 supports MII & RMII modes while fec1 only supports RMII
1694 * - fec0 acts as the 1588 time master while fec1 is slave
1695 * - external phys can only be configured by fec0
1696 *
1697 * That is to say fec1 can not work independently. It only works
1698 * when fec0 is working. The reason behind this design is that the
1699 * second interface is added primarily for Switch mode.
1700 *
1701 * Because of the last point above, both phys are attached on fec0
1702 * mdio interface in board design, and need to be configured by
1703 * fec0 mii_bus.
1704 */
Shawn Guo43af9402011-12-05 05:01:15 +00001705 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && fep->dev_id > 0) {
Shawn Guob5680e02011-01-05 21:13:13 +00001706 /* fec1 uses fec0 mii_bus */
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001707 if (mii_cnt && fec0_mii_bus) {
1708 fep->mii_bus = fec0_mii_bus;
1709 mii_cnt++;
1710 return 0;
1711 }
1712 return -ENOENT;
Shawn Guob5680e02011-01-05 21:13:13 +00001713 }
1714
Bryan Wue6b043d2010-03-31 02:10:44 +00001715 fep->mii_timeout = 0;
1716
1717 /*
1718 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
Shawn Guo230dec62011-09-23 02:12:48 +00001719 *
1720 * The formula for FEC MDC is 'ref_freq / (MII_SPEED x 2)' while
1721 * for ENET-MAC is 'ref_freq / ((MII_SPEED + 1) x 2)'. The i.MX28
1722 * Reference Manual has an error on this, and gets fixed on i.MX6Q
1723 * document.
Bryan Wue6b043d2010-03-31 02:10:44 +00001724 */
Nimrod Andy98a6eeb2014-05-20 13:23:09 +08001725 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk_ipg), 5000000);
Shawn Guo230dec62011-09-23 02:12:48 +00001726 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1727 fep->phy_speed--;
1728 fep->phy_speed <<= 1;
Bryan Wue6b043d2010-03-31 02:10:44 +00001729 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1730
1731 fep->mii_bus = mdiobus_alloc();
1732 if (fep->mii_bus == NULL) {
1733 err = -ENOMEM;
1734 goto err_out;
1735 }
1736
1737 fep->mii_bus->name = "fec_enet_mii_bus";
1738 fep->mii_bus->read = fec_enet_mdio_read;
1739 fep->mii_bus->write = fec_enet_mdio_write;
Florian Fainelli391420f2012-01-09 23:59:13 +00001740 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
1741 pdev->name, fep->dev_id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +00001742 fep->mii_bus->priv = fep;
1743 fep->mii_bus->parent = &pdev->dev;
1744
1745 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
1746 if (!fep->mii_bus->irq) {
1747 err = -ENOMEM;
1748 goto err_out_free_mdiobus;
1749 }
1750
1751 for (i = 0; i < PHY_MAX_ADDR; i++)
1752 fep->mii_bus->irq[i] = PHY_POLL;
1753
Bryan Wue6b043d2010-03-31 02:10:44 +00001754 if (mdiobus_register(fep->mii_bus))
1755 goto err_out_free_mdio_irq;
1756
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001757 mii_cnt++;
1758
Shawn Guob5680e02011-01-05 21:13:13 +00001759 /* save fec0 mii_bus */
1760 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1761 fec0_mii_bus = fep->mii_bus;
1762
Bryan Wue6b043d2010-03-31 02:10:44 +00001763 return 0;
1764
Bryan Wue6b043d2010-03-31 02:10:44 +00001765err_out_free_mdio_irq:
1766 kfree(fep->mii_bus->irq);
1767err_out_free_mdiobus:
1768 mdiobus_free(fep->mii_bus);
1769err_out:
1770 return err;
1771}
1772
1773static void fec_enet_mii_remove(struct fec_enet_private *fep)
1774{
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001775 if (--mii_cnt == 0) {
1776 mdiobus_unregister(fep->mii_bus);
1777 kfree(fep->mii_bus->irq);
1778 mdiobus_free(fep->mii_bus);
1779 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001780}
1781
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001782static int fec_enet_get_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001783 struct ethtool_cmd *cmd)
1784{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001785 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001786 struct phy_device *phydev = fep->phy_dev;
1787
1788 if (!phydev)
1789 return -ENODEV;
1790
1791 return phy_ethtool_gset(phydev, cmd);
1792}
1793
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001794static int fec_enet_set_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001795 struct ethtool_cmd *cmd)
1796{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001797 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001798 struct phy_device *phydev = fep->phy_dev;
1799
1800 if (!phydev)
1801 return -ENODEV;
1802
1803 return phy_ethtool_sset(phydev, cmd);
1804}
1805
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001806static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001807 struct ethtool_drvinfo *info)
1808{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001809 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Jiri Pirko7826d432013-01-06 00:44:26 +00001811 strlcpy(info->driver, fep->pdev->dev.driver->name,
1812 sizeof(info->driver));
1813 strlcpy(info->version, "Revision: 1.0", sizeof(info->version));
1814 strlcpy(info->bus_info, dev_name(&ndev->dev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
Bryan Wue6b043d2010-03-31 02:10:44 +00001816
Frank Li5ebae4892013-01-06 16:25:07 +00001817static int fec_enet_get_ts_info(struct net_device *ndev,
1818 struct ethtool_ts_info *info)
1819{
1820 struct fec_enet_private *fep = netdev_priv(ndev);
1821
1822 if (fep->bufdesc_ex) {
1823
1824 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
1825 SOF_TIMESTAMPING_RX_SOFTWARE |
1826 SOF_TIMESTAMPING_SOFTWARE |
1827 SOF_TIMESTAMPING_TX_HARDWARE |
1828 SOF_TIMESTAMPING_RX_HARDWARE |
1829 SOF_TIMESTAMPING_RAW_HARDWARE;
1830 if (fep->ptp_clock)
1831 info->phc_index = ptp_clock_index(fep->ptp_clock);
1832 else
1833 info->phc_index = -1;
1834
1835 info->tx_types = (1 << HWTSTAMP_TX_OFF) |
1836 (1 << HWTSTAMP_TX_ON);
1837
1838 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
1839 (1 << HWTSTAMP_FILTER_ALL);
1840 return 0;
1841 } else {
1842 return ethtool_op_get_ts_info(ndev, info);
1843 }
1844}
1845
Guenter Roeckd1391932013-06-18 10:04:59 -07001846#if !defined(CONFIG_M5272)
1847
Frank Libaa70a52013-01-16 16:55:58 +00001848static void fec_enet_get_pauseparam(struct net_device *ndev,
1849 struct ethtool_pauseparam *pause)
1850{
1851 struct fec_enet_private *fep = netdev_priv(ndev);
1852
1853 pause->autoneg = (fep->pause_flag & FEC_PAUSE_FLAG_AUTONEG) != 0;
1854 pause->tx_pause = (fep->pause_flag & FEC_PAUSE_FLAG_ENABLE) != 0;
1855 pause->rx_pause = pause->tx_pause;
1856}
1857
1858static int fec_enet_set_pauseparam(struct net_device *ndev,
1859 struct ethtool_pauseparam *pause)
1860{
1861 struct fec_enet_private *fep = netdev_priv(ndev);
1862
Russell King0b146ca2014-07-08 00:22:59 +01001863 if (!fep->phy_dev)
1864 return -ENODEV;
1865
Frank Libaa70a52013-01-16 16:55:58 +00001866 if (pause->tx_pause != pause->rx_pause) {
1867 netdev_info(ndev,
1868 "hardware only support enable/disable both tx and rx");
1869 return -EINVAL;
1870 }
1871
1872 fep->pause_flag = 0;
1873
1874 /* tx pause must be same as rx pause */
1875 fep->pause_flag |= pause->rx_pause ? FEC_PAUSE_FLAG_ENABLE : 0;
1876 fep->pause_flag |= pause->autoneg ? FEC_PAUSE_FLAG_AUTONEG : 0;
1877
1878 if (pause->rx_pause || pause->autoneg) {
1879 fep->phy_dev->supported |= ADVERTISED_Pause;
1880 fep->phy_dev->advertising |= ADVERTISED_Pause;
1881 } else {
1882 fep->phy_dev->supported &= ~ADVERTISED_Pause;
1883 fep->phy_dev->advertising &= ~ADVERTISED_Pause;
1884 }
1885
1886 if (pause->autoneg) {
1887 if (netif_running(ndev))
1888 fec_stop(ndev);
1889 phy_start_aneg(fep->phy_dev);
1890 }
Russell Kingdbc64a82014-07-08 12:40:12 +01001891 if (netif_running(ndev)) {
Russell Kingdbc64a82014-07-08 12:40:12 +01001892 napi_disable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001893 netif_tx_lock_bh(ndev);
Russell Kingef833372014-07-08 12:40:43 +01001894 fec_restart(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001895 netif_wake_queue(ndev);
Russell King6af42d42014-07-08 12:40:18 +01001896 netif_tx_unlock_bh(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001897 napi_enable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001898 }
Frank Libaa70a52013-01-16 16:55:58 +00001899
1900 return 0;
1901}
1902
Chris Healy38ae92d2013-06-25 23:18:52 -07001903static const struct fec_stat {
1904 char name[ETH_GSTRING_LEN];
1905 u16 offset;
1906} fec_stats[] = {
1907 /* RMON TX */
1908 { "tx_dropped", RMON_T_DROP },
1909 { "tx_packets", RMON_T_PACKETS },
1910 { "tx_broadcast", RMON_T_BC_PKT },
1911 { "tx_multicast", RMON_T_MC_PKT },
1912 { "tx_crc_errors", RMON_T_CRC_ALIGN },
1913 { "tx_undersize", RMON_T_UNDERSIZE },
1914 { "tx_oversize", RMON_T_OVERSIZE },
1915 { "tx_fragment", RMON_T_FRAG },
1916 { "tx_jabber", RMON_T_JAB },
1917 { "tx_collision", RMON_T_COL },
1918 { "tx_64byte", RMON_T_P64 },
1919 { "tx_65to127byte", RMON_T_P65TO127 },
1920 { "tx_128to255byte", RMON_T_P128TO255 },
1921 { "tx_256to511byte", RMON_T_P256TO511 },
1922 { "tx_512to1023byte", RMON_T_P512TO1023 },
1923 { "tx_1024to2047byte", RMON_T_P1024TO2047 },
1924 { "tx_GTE2048byte", RMON_T_P_GTE2048 },
1925 { "tx_octets", RMON_T_OCTETS },
1926
1927 /* IEEE TX */
1928 { "IEEE_tx_drop", IEEE_T_DROP },
1929 { "IEEE_tx_frame_ok", IEEE_T_FRAME_OK },
1930 { "IEEE_tx_1col", IEEE_T_1COL },
1931 { "IEEE_tx_mcol", IEEE_T_MCOL },
1932 { "IEEE_tx_def", IEEE_T_DEF },
1933 { "IEEE_tx_lcol", IEEE_T_LCOL },
1934 { "IEEE_tx_excol", IEEE_T_EXCOL },
1935 { "IEEE_tx_macerr", IEEE_T_MACERR },
1936 { "IEEE_tx_cserr", IEEE_T_CSERR },
1937 { "IEEE_tx_sqe", IEEE_T_SQE },
1938 { "IEEE_tx_fdxfc", IEEE_T_FDXFC },
1939 { "IEEE_tx_octets_ok", IEEE_T_OCTETS_OK },
1940
1941 /* RMON RX */
1942 { "rx_packets", RMON_R_PACKETS },
1943 { "rx_broadcast", RMON_R_BC_PKT },
1944 { "rx_multicast", RMON_R_MC_PKT },
1945 { "rx_crc_errors", RMON_R_CRC_ALIGN },
1946 { "rx_undersize", RMON_R_UNDERSIZE },
1947 { "rx_oversize", RMON_R_OVERSIZE },
1948 { "rx_fragment", RMON_R_FRAG },
1949 { "rx_jabber", RMON_R_JAB },
1950 { "rx_64byte", RMON_R_P64 },
1951 { "rx_65to127byte", RMON_R_P65TO127 },
1952 { "rx_128to255byte", RMON_R_P128TO255 },
1953 { "rx_256to511byte", RMON_R_P256TO511 },
1954 { "rx_512to1023byte", RMON_R_P512TO1023 },
1955 { "rx_1024to2047byte", RMON_R_P1024TO2047 },
1956 { "rx_GTE2048byte", RMON_R_P_GTE2048 },
1957 { "rx_octets", RMON_R_OCTETS },
1958
1959 /* IEEE RX */
1960 { "IEEE_rx_drop", IEEE_R_DROP },
1961 { "IEEE_rx_frame_ok", IEEE_R_FRAME_OK },
1962 { "IEEE_rx_crc", IEEE_R_CRC },
1963 { "IEEE_rx_align", IEEE_R_ALIGN },
1964 { "IEEE_rx_macerr", IEEE_R_MACERR },
1965 { "IEEE_rx_fdxfc", IEEE_R_FDXFC },
1966 { "IEEE_rx_octets_ok", IEEE_R_OCTETS_OK },
1967};
1968
1969static void fec_enet_get_ethtool_stats(struct net_device *dev,
1970 struct ethtool_stats *stats, u64 *data)
1971{
1972 struct fec_enet_private *fep = netdev_priv(dev);
1973 int i;
1974
1975 for (i = 0; i < ARRAY_SIZE(fec_stats); i++)
1976 data[i] = readl(fep->hwp + fec_stats[i].offset);
1977}
1978
1979static void fec_enet_get_strings(struct net_device *netdev,
1980 u32 stringset, u8 *data)
1981{
1982 int i;
1983 switch (stringset) {
1984 case ETH_SS_STATS:
1985 for (i = 0; i < ARRAY_SIZE(fec_stats); i++)
1986 memcpy(data + i * ETH_GSTRING_LEN,
1987 fec_stats[i].name, ETH_GSTRING_LEN);
1988 break;
1989 }
1990}
1991
1992static int fec_enet_get_sset_count(struct net_device *dev, int sset)
1993{
1994 switch (sset) {
1995 case ETH_SS_STATS:
1996 return ARRAY_SIZE(fec_stats);
1997 default:
1998 return -EOPNOTSUPP;
1999 }
2000}
Guenter Roeckd1391932013-06-18 10:04:59 -07002001#endif /* !defined(CONFIG_M5272) */
Chris Healy38ae92d2013-06-25 23:18:52 -07002002
Chris Healy32bc9b42013-06-17 07:25:06 -07002003static int fec_enet_nway_reset(struct net_device *dev)
2004{
2005 struct fec_enet_private *fep = netdev_priv(dev);
2006 struct phy_device *phydev = fep->phy_dev;
2007
2008 if (!phydev)
2009 return -ENODEV;
2010
2011 return genphy_restart_aneg(phydev);
2012}
2013
stephen hemminger9b07be42012-01-04 12:59:49 +00002014static const struct ethtool_ops fec_enet_ethtool_ops = {
Guenter Roeckd1391932013-06-18 10:04:59 -07002015#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +00002016 .get_pauseparam = fec_enet_get_pauseparam,
2017 .set_pauseparam = fec_enet_set_pauseparam,
Guenter Roeckd1391932013-06-18 10:04:59 -07002018#endif
Bryan Wue6b043d2010-03-31 02:10:44 +00002019 .get_settings = fec_enet_get_settings,
2020 .set_settings = fec_enet_set_settings,
2021 .get_drvinfo = fec_enet_get_drvinfo,
2022 .get_link = ethtool_op_get_link,
Frank Li5ebae4892013-01-06 16:25:07 +00002023 .get_ts_info = fec_enet_get_ts_info,
Chris Healy32bc9b42013-06-17 07:25:06 -07002024 .nway_reset = fec_enet_nway_reset,
Chris Healy38ae92d2013-06-25 23:18:52 -07002025#ifndef CONFIG_M5272
2026 .get_ethtool_stats = fec_enet_get_ethtool_stats,
2027 .get_strings = fec_enet_get_strings,
2028 .get_sset_count = fec_enet_get_sset_count,
2029#endif
Bryan Wue6b043d2010-03-31 02:10:44 +00002030};
2031
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002032static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00002033{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002034 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00002035 struct phy_device *phydev = fep->phy_dev;
2036
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002037 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00002038 return -EINVAL;
2039
2040 if (!phydev)
2041 return -ENODEV;
2042
Ben Hutchings1d5244d2013-11-18 23:02:44 +00002043 if (fep->bufdesc_ex) {
2044 if (cmd == SIOCSHWTSTAMP)
2045 return fec_ptp_set(ndev, rq);
2046 if (cmd == SIOCGHWTSTAMP)
2047 return fec_ptp_get(ndev, rq);
2048 }
Frank Liff43da82013-01-03 16:04:23 +00002049
Richard Cochran28b04112010-07-17 08:48:55 +00002050 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00002051}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002053static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002054{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002055 struct fec_enet_private *fep = netdev_priv(ndev);
Fabio Estevamda2191e2013-03-20 12:31:07 -03002056 unsigned int i;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002057 struct sk_buff *skb;
2058 struct bufdesc *bdp;
2059
2060 bdp = fep->rx_bd_base;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002061 for (i = 0; i < fep->rx_ring_size; i++) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002062 skb = fep->rx_skbuff[i];
Russell King730ee362014-07-08 00:23:14 +01002063 fep->rx_skbuff[i] = NULL;
2064 if (skb) {
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01002065 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002066 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002067 dev_kfree_skb(skb);
Russell King730ee362014-07-08 00:23:14 +01002068 }
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002069 bdp = fec_enet_get_nextdesc(bdp, fep);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002070 }
2071
2072 bdp = fep->tx_bd_base;
Russell King8b7c9ef2014-07-08 00:23:25 +01002073 for (i = 0; i < fep->tx_ring_size; i++) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002074 kfree(fep->tx_bounce[i]);
Russell King8b7c9ef2014-07-08 00:23:25 +01002075 fep->tx_bounce[i] = NULL;
2076 skb = fep->tx_skbuff[i];
2077 fep->tx_skbuff[i] = NULL;
2078 dev_kfree_skb(skb);
2079 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002080}
2081
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002082static int fec_enet_alloc_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002083{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002084 struct fec_enet_private *fep = netdev_priv(ndev);
Fabio Estevamda2191e2013-03-20 12:31:07 -03002085 unsigned int i;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002086 struct sk_buff *skb;
2087 struct bufdesc *bdp;
2088
2089 bdp = fep->rx_bd_base;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002090 for (i = 0; i < fep->rx_ring_size; i++) {
Russell King730ee362014-07-08 00:23:14 +01002091 dma_addr_t addr;
2092
Fabio Estevamb72061a2012-02-07 08:27:31 +00002093 skb = netdev_alloc_skb(ndev, FEC_ENET_RX_FRSIZE);
Russell Kingffdce2c2014-07-08 00:23:30 +01002094 if (!skb)
2095 goto err_alloc;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002096
Russell King730ee362014-07-08 00:23:14 +01002097 addr = dma_map_single(&fep->pdev->dev, skb->data,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002098 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
Russell King730ee362014-07-08 00:23:14 +01002099 if (dma_mapping_error(&fep->pdev->dev, addr)) {
2100 dev_kfree_skb(skb);
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08002101 if (net_ratelimit())
2102 netdev_err(ndev, "Rx DMA memory map failed\n");
Russell Kingffdce2c2014-07-08 00:23:30 +01002103 goto err_alloc;
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08002104 }
Russell King730ee362014-07-08 00:23:14 +01002105
2106 fep->rx_skbuff[i] = skb;
2107 bdp->cbd_bufaddr = addr;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002108 bdp->cbd_sc = BD_ENET_RX_EMPTY;
Frank Liff43da82013-01-03 16:04:23 +00002109
2110 if (fep->bufdesc_ex) {
2111 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
2112 ebdp->cbd_esc = BD_ENET_RX_INT;
2113 }
2114
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002115 bdp = fec_enet_get_nextdesc(bdp, fep);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002116 }
2117
2118 /* Set the last buffer to wrap. */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002119 bdp = fec_enet_get_prevdesc(bdp, fep);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002120 bdp->cbd_sc |= BD_SC_WRAP;
2121
2122 bdp = fep->tx_bd_base;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002123 for (i = 0; i < fep->tx_ring_size; i++) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002124 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
Russell Kingffdce2c2014-07-08 00:23:30 +01002125 if (!fep->tx_bounce[i])
2126 goto err_alloc;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002127
2128 bdp->cbd_sc = 0;
2129 bdp->cbd_bufaddr = 0;
Frank Li6605b732012-10-30 18:25:31 +00002130
Frank Liff43da82013-01-03 16:04:23 +00002131 if (fep->bufdesc_ex) {
2132 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
Jim Baxter96d22222013-03-26 05:25:07 +00002133 ebdp->cbd_esc = BD_ENET_TX_INT;
Frank Liff43da82013-01-03 16:04:23 +00002134 }
2135
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002136 bdp = fec_enet_get_nextdesc(bdp, fep);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002137 }
2138
2139 /* Set the last buffer to wrap. */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002140 bdp = fec_enet_get_prevdesc(bdp, fep);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002141 bdp->cbd_sc |= BD_SC_WRAP;
2142
2143 return 0;
Russell Kingffdce2c2014-07-08 00:23:30 +01002144
2145 err_alloc:
2146 fec_enet_free_buffers(ndev);
2147 return -ENOMEM;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002148}
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002151fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002153 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002154 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002156 pinctrl_pm_select_default_state(&fep->pdev->dev);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002157 ret = fec_enet_clk_enable(ndev, true);
2158 if (ret)
2159 return ret;
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 /* I should reset the ring buffers here, but I don't yet know
2162 * a simple way to do that.
2163 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002165 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002166 if (ret)
2167 return ret;
2168
Bryan Wu418bd0d2010-05-28 03:40:39 -07002169 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002170 ret = fec_enet_mii_probe(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07002171 if (ret) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002172 fec_enet_free_buffers(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07002173 return ret;
2174 }
Russell Kingce5eaf02014-02-18 12:55:42 +00002175
Russell Kingef833372014-07-08 12:40:43 +01002176 fec_restart(ndev);
Russell Kingce5eaf02014-02-18 12:55:42 +00002177 napi_enable(&fep->napi);
Bryan Wue6b043d2010-03-31 02:10:44 +00002178 phy_start(fep->phy_dev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002179 netif_start_queue(ndev);
Sascha Hauer22f6b862009-04-15 01:32:18 +00002180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
2182
2183static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002184fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002186 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Russell Kingd76cfae2014-07-08 00:23:04 +01002188 phy_stop(fep->phy_dev);
2189
Russell King31a6de32014-07-08 12:40:23 +01002190 if (netif_device_present(ndev)) {
2191 napi_disable(&fep->napi);
2192 netif_tx_disable(ndev);
Russell King8bbbd3c2014-07-08 12:40:02 +01002193 fec_stop(ndev);
Russell King31a6de32014-07-08 12:40:23 +01002194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Russell King635cf172014-07-08 00:22:54 +01002196 phy_disconnect(fep->phy_dev);
Russell King0b146ca2014-07-08 00:22:59 +01002197 fep->phy_dev = NULL;
Bryan Wu418bd0d2010-05-28 03:40:39 -07002198
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002199 fec_enet_clk_enable(ndev, false);
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002200 pinctrl_pm_select_sleep_state(&fep->pdev->dev);
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01002201 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 return 0;
2204}
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206/* Set or clear the multicast filter for this adaptor.
2207 * Skeleton taken from sunlance driver.
2208 * The CPM Ethernet implementation allows Multicast as well as individual
2209 * MAC address filtering. Some of the drivers check to make sure it is
2210 * a group multicast address, and discard those that are not. I guess I
2211 * will do the same for now, but just remove the test if you want
2212 * individual filtering as well (do the upper net layers want or support
2213 * this kind of feature?).
2214 */
2215
2216#define HASH_BITS 6 /* #bits in hash */
2217#define CRC32_POLY 0xEDB88320
2218
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002219static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002221 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00002222 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00002223 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 unsigned char hash;
2225
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002226 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00002227 tmp = readl(fep->hwp + FEC_R_CNTRL);
2228 tmp |= 0x8;
2229 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00002230 return;
2231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
Sascha Hauer4e831832009-04-15 01:32:19 +00002233 tmp = readl(fep->hwp + FEC_R_CNTRL);
2234 tmp &= ~0x8;
2235 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002236
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002237 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00002238 /* Catch all multicast addresses, so set the
2239 * filter to all 1's
2240 */
2241 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
2242 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Sascha Hauer4e831832009-04-15 01:32:19 +00002244 return;
2245 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002246
Sascha Hauer4e831832009-04-15 01:32:19 +00002247 /* Clear filter and add the addresses in hash register
2248 */
2249 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
2250 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002252 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00002253 /* calculate crc32 value of mac address */
2254 crc = 0xffffffff;
2255
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002256 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002257 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00002258 for (bit = 0; bit < 8; bit++, data >>= 1) {
2259 crc = (crc >> 1) ^
2260 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 }
2262 }
Sascha Hauer4e831832009-04-15 01:32:19 +00002263
2264 /* only upper 6 bits (HASH_BITS) are used
2265 * which point to specific bit in he hash registers
2266 */
2267 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
2268
2269 if (hash > 31) {
2270 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
2271 tmp |= 1 << (hash - 32);
2272 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
2273 } else {
2274 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
2275 tmp |= 1 << hash;
2276 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
2277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 }
2279}
2280
Sascha Hauer22f6b862009-04-15 01:32:18 +00002281/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00002282static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002283fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002285 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00002286 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Lucas Stach44934fa2014-03-30 21:32:08 +02002288 if (addr) {
2289 if (!is_valid_ether_addr(addr->sa_data))
2290 return -EADDRNOTAVAIL;
2291 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
2292 }
Sascha Hauer009fda82009-04-15 01:32:23 +00002293
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002294 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
2295 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00002296 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002297 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07002298 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00002299 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300}
2301
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00002302#ifdef CONFIG_NET_POLL_CONTROLLER
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002303/**
2304 * fec_poll_controller - FEC Poll controller function
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00002305 * @dev: The FEC network adapter
2306 *
2307 * Polled functionality used by netconsole and others in non interrupt mode
2308 *
2309 */
Wei Yongjun47a52472013-03-20 05:06:11 +00002310static void fec_poll_controller(struct net_device *dev)
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00002311{
2312 int i;
2313 struct fec_enet_private *fep = netdev_priv(dev);
2314
2315 for (i = 0; i < FEC_IRQ_NUM; i++) {
2316 if (fep->irq[i] > 0) {
2317 disable_irq(fep->irq[i]);
2318 fec_enet_interrupt(fep->irq[i], dev);
2319 enable_irq(fep->irq[i]);
2320 }
2321 }
2322}
2323#endif
2324
Russell King8506fa12014-07-08 12:40:33 +01002325#define FEATURES_NEED_QUIESCE NETIF_F_RXCSUM
2326
Jim Baxter4c09eed2013-04-19 08:10:49 +00002327static int fec_set_features(struct net_device *netdev,
2328 netdev_features_t features)
2329{
2330 struct fec_enet_private *fep = netdev_priv(netdev);
2331 netdev_features_t changed = features ^ netdev->features;
2332
Russell King8506fa12014-07-08 12:40:33 +01002333 /* Quiesce the device if necessary */
2334 if (netif_running(netdev) && changed & FEATURES_NEED_QUIESCE) {
2335 napi_disable(&fep->napi);
2336 netif_tx_lock_bh(netdev);
2337 fec_stop(netdev);
2338 }
2339
Jim Baxter4c09eed2013-04-19 08:10:49 +00002340 netdev->features = features;
2341
2342 /* Receive checksum has been changed */
2343 if (changed & NETIF_F_RXCSUM) {
2344 if (features & NETIF_F_RXCSUM)
2345 fep->csum_flags |= FLAG_RX_CSUM_ENABLED;
2346 else
2347 fep->csum_flags &= ~FLAG_RX_CSUM_ENABLED;
Russell King8506fa12014-07-08 12:40:33 +01002348 }
Jim Baxter4c09eed2013-04-19 08:10:49 +00002349
Russell King8506fa12014-07-08 12:40:33 +01002350 /* Resume the device after updates */
2351 if (netif_running(netdev) && changed & FEATURES_NEED_QUIESCE) {
Russell Kingef833372014-07-08 12:40:43 +01002352 fec_restart(netdev);
Russell King8506fa12014-07-08 12:40:33 +01002353 netif_wake_queue(netdev);
2354 netif_tx_unlock_bh(netdev);
2355 napi_enable(&fep->napi);
Jim Baxter4c09eed2013-04-19 08:10:49 +00002356 }
2357
2358 return 0;
2359}
2360
Sascha Hauer009fda82009-04-15 01:32:23 +00002361static const struct net_device_ops fec_netdev_ops = {
2362 .ndo_open = fec_enet_open,
2363 .ndo_stop = fec_enet_close,
2364 .ndo_start_xmit = fec_enet_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002365 .ndo_set_rx_mode = set_multicast_list,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00002366 .ndo_change_mtu = eth_change_mtu,
Sascha Hauer009fda82009-04-15 01:32:23 +00002367 .ndo_validate_addr = eth_validate_addr,
2368 .ndo_tx_timeout = fec_timeout,
2369 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01002370 .ndo_do_ioctl = fec_enet_ioctl,
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00002371#ifdef CONFIG_NET_POLL_CONTROLLER
2372 .ndo_poll_controller = fec_poll_controller,
2373#endif
Jim Baxter4c09eed2013-04-19 08:10:49 +00002374 .ndo_set_features = fec_set_features,
Sascha Hauer009fda82009-04-15 01:32:23 +00002375};
2376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 /*
2378 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00002379 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002381static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002383 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo48496252013-05-08 21:08:22 +00002384 const struct platform_device_id *id_entry =
2385 platform_get_device_id(fep->pdev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002386 struct bufdesc *cbd_base;
Nimrod Andy55d02182014-06-12 08:16:21 +08002387 int bd_size;
2388
2389 /* init the tx & rx ring size */
2390 fep->tx_ring_size = TX_RING_SIZE;
2391 fep->rx_ring_size = RX_RING_SIZE;
2392
Nimrod Andy79f33912014-06-12 08:16:23 +08002393 fep->tx_stop_threshold = FEC_MAX_SKB_DESCS;
2394 fep->tx_wake_threshold = (fep->tx_ring_size - fep->tx_stop_threshold) / 2;
2395
Nimrod Andy55d02182014-06-12 08:16:21 +08002396 if (fep->bufdesc_ex)
2397 fep->bufdesc_size = sizeof(struct bufdesc_ex);
2398 else
2399 fep->bufdesc_size = sizeof(struct bufdesc);
2400 bd_size = (fep->tx_ring_size + fep->rx_ring_size) *
2401 fep->bufdesc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00002403 /* Allocate memory for buffer descriptors. */
Nimrod Andy55d02182014-06-12 08:16:21 +08002404 cbd_base = dma_alloc_coherent(NULL, bd_size, &fep->bd_dma,
Joe Perchesd0320f72013-03-14 13:07:21 +00002405 GFP_KERNEL);
2406 if (!cbd_base)
Greg Ungerer562d2f82005-11-07 14:09:50 +10002407 return -ENOMEM;
Greg Ungerer562d2f82005-11-07 14:09:50 +10002408
Nimrod Andy79f33912014-06-12 08:16:23 +08002409 fep->tso_hdrs = dma_alloc_coherent(NULL, fep->tx_ring_size * TSO_HEADER_SIZE,
2410 &fep->tso_hdrs_dma, GFP_KERNEL);
2411 if (!fep->tso_hdrs) {
2412 dma_free_coherent(NULL, bd_size, cbd_base, fep->bd_dma);
2413 return -ENOMEM;
2414 }
2415
Frank Li14109a52013-03-26 16:12:03 +00002416 memset(cbd_base, 0, PAGE_SIZE);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10002417
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002418 fep->netdev = ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Shawn Guo49da97d2011-01-05 21:13:11 +00002420 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002421 fec_get_mac(ndev);
Lucas Stach44934fa2014-03-30 21:32:08 +02002422 /* make sure MAC we just acquired is programmed into the hw */
2423 fec_set_mac_address(ndev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00002425 /* Set receive and transmit descriptor base. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 fep->rx_bd_base = cbd_base;
Nimrod Andy55d02182014-06-12 08:16:21 +08002427 if (fep->bufdesc_ex)
Frank Liff43da82013-01-03 16:04:23 +00002428 fep->tx_bd_base = (struct bufdesc *)
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002429 (((struct bufdesc_ex *)cbd_base) + fep->rx_ring_size);
Nimrod Andy55d02182014-06-12 08:16:21 +08002430 else
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002431 fep->tx_bd_base = cbd_base + fep->rx_ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
Sascha Hauer22f6b862009-04-15 01:32:18 +00002433 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002434 ndev->watchdog_timeo = TX_TIMEOUT;
2435 ndev->netdev_ops = &fec_netdev_ops;
2436 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00002437
Frank Lidc975382013-01-28 18:31:42 +00002438 writel(FEC_RX_DISABLED_IMASK, fep->hwp + FEC_IMASK);
Fabio Estevam322555f2013-08-27 17:35:08 -03002439 netif_napi_add(ndev, &fep->napi, fec_enet_rx_napi, NAPI_POLL_WEIGHT);
Frank Lidc975382013-01-28 18:31:42 +00002440
Nimrod Andy09d1e542014-06-12 08:16:20 +08002441 if (id_entry->driver_data & FEC_QUIRK_HAS_VLAN)
Jim Baxtercdffcf12013-07-02 22:52:56 +01002442 /* enable hw VLAN support */
2443 ndev->features |= NETIF_F_HW_VLAN_CTAG_RX;
Jim Baxtercdffcf12013-07-02 22:52:56 +01002444
Shawn Guo48496252013-05-08 21:08:22 +00002445 if (id_entry->driver_data & FEC_QUIRK_HAS_CSUM) {
Nimrod Andy79f33912014-06-12 08:16:23 +08002446 ndev->gso_max_segs = FEC_MAX_TSO_SEGS;
2447
Shawn Guo48496252013-05-08 21:08:22 +00002448 /* enable hw accelerator */
2449 ndev->features |= (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM
Nimrod Andy79f33912014-06-12 08:16:23 +08002450 | NETIF_F_RXCSUM | NETIF_F_SG | NETIF_F_TSO);
Shawn Guo48496252013-05-08 21:08:22 +00002451 fep->csum_flags |= FLAG_RX_CSUM_ENABLED;
2452 }
Jim Baxter4c09eed2013-04-19 08:10:49 +00002453
Nimrod Andy09d1e542014-06-12 08:16:20 +08002454 ndev->hw_features = ndev->features;
2455
Russell Kingef833372014-07-08 12:40:43 +01002456 fec_restart(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 return 0;
2459}
2460
Shawn Guoca2cc332011-06-25 02:04:35 +08002461#ifdef CONFIG_OF
Bill Pemberton33897cc2012-12-03 09:23:58 -05002462static void fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08002463{
2464 int err, phy_reset;
Shawn Guoa3caad02012-06-27 03:45:24 +00002465 int msec = 1;
Shawn Guoca2cc332011-06-25 02:04:35 +08002466 struct device_node *np = pdev->dev.of_node;
2467
2468 if (!np)
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00002469 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08002470
Shawn Guoa3caad02012-06-27 03:45:24 +00002471 of_property_read_u32(np, "phy-reset-duration", &msec);
2472 /* A sane reset duration should not be longer than 1s */
2473 if (msec > 1000)
2474 msec = 1;
2475
Shawn Guoca2cc332011-06-25 02:04:35 +08002476 phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
Fabio Estevam07dcf8e2013-02-18 10:20:31 +00002477 if (!gpio_is_valid(phy_reset))
2478 return;
2479
Shawn Guo119fc002012-06-27 03:45:22 +00002480 err = devm_gpio_request_one(&pdev->dev, phy_reset,
2481 GPIOF_OUT_INIT_LOW, "phy-reset");
Shawn Guoca2cc332011-06-25 02:04:35 +08002482 if (err) {
Fabio Estevam07dcf8e2013-02-18 10:20:31 +00002483 dev_err(&pdev->dev, "failed to get phy-reset-gpios: %d\n", err);
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00002484 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08002485 }
Shawn Guoa3caad02012-06-27 03:45:24 +00002486 msleep(msec);
Shawn Guoca2cc332011-06-25 02:04:35 +08002487 gpio_set_value(phy_reset, 1);
Shawn Guoca2cc332011-06-25 02:04:35 +08002488}
2489#else /* CONFIG_OF */
Fabio Estevam0c7768a2013-01-07 17:42:56 +00002490static void fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08002491{
2492 /*
2493 * In case of platform probe, the reset has been done
2494 * by machine code.
2495 */
Shawn Guoca2cc332011-06-25 02:04:35 +08002496}
2497#endif /* CONFIG_OF */
2498
Bill Pemberton33897cc2012-12-03 09:23:58 -05002499static int
Sascha Haueread73182009-01-28 23:03:11 +00002500fec_probe(struct platform_device *pdev)
2501{
2502 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07002503 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00002504 struct net_device *ndev;
2505 int i, irq, ret = 0;
2506 struct resource *r;
Shawn Guoca2cc332011-06-25 02:04:35 +08002507 const struct of_device_id *of_id;
Shawn Guo43af9402011-12-05 05:01:15 +00002508 static int dev_id;
Shawn Guoca2cc332011-06-25 02:04:35 +08002509
2510 of_id = of_match_device(fec_dt_ids, &pdev->dev);
2511 if (of_id)
2512 pdev->id_entry = of_id->data;
Sascha Haueread73182009-01-28 23:03:11 +00002513
Sascha Haueread73182009-01-28 23:03:11 +00002514 /* Init network device */
2515 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
Fabio Estevam83e519b2013-03-11 07:32:55 +00002516 if (!ndev)
2517 return -ENOMEM;
Sascha Haueread73182009-01-28 23:03:11 +00002518
2519 SET_NETDEV_DEV(ndev, &pdev->dev);
2520
2521 /* setup board info structure */
2522 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00002523
Guenter Roeckd1391932013-06-18 10:04:59 -07002524#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +00002525 /* default enable pause frame auto negotiation */
2526 if (pdev->id_entry &&
2527 (pdev->id_entry->driver_data & FEC_QUIRK_HAS_GBIT))
2528 fep->pause_flag |= FEC_PAUSE_FLAG_AUTONEG;
Guenter Roeckd1391932013-06-18 10:04:59 -07002529#endif
Frank Libaa70a52013-01-16 16:55:58 +00002530
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002531 /* Select default pin state */
2532 pinctrl_pm_select_default_state(&pdev->dev);
2533
Fabio Estevam399db752013-07-21 13:25:03 -03002534 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Tushar Behera941e1732013-06-10 17:05:05 +05302535 fep->hwp = devm_ioremap_resource(&pdev->dev, r);
2536 if (IS_ERR(fep->hwp)) {
2537 ret = PTR_ERR(fep->hwp);
2538 goto failed_ioremap;
2539 }
2540
Bryan Wue6b043d2010-03-31 02:10:44 +00002541 fep->pdev = pdev;
Shawn Guo43af9402011-12-05 05:01:15 +00002542 fep->dev_id = dev_id++;
Sascha Haueread73182009-01-28 23:03:11 +00002543
Frank Liff43da82013-01-03 16:04:23 +00002544 fep->bufdesc_ex = 0;
2545
Sascha Haueread73182009-01-28 23:03:11 +00002546 platform_set_drvdata(pdev, ndev);
2547
Guenter Roeck6c5f7802013-04-02 09:35:10 +00002548 ret = of_get_phy_mode(pdev->dev.of_node);
Shawn Guoca2cc332011-06-25 02:04:35 +08002549 if (ret < 0) {
Jingoo Han94660ba2013-08-30 13:56:26 +09002550 pdata = dev_get_platdata(&pdev->dev);
Shawn Guoca2cc332011-06-25 02:04:35 +08002551 if (pdata)
2552 fep->phy_interface = pdata->phy;
2553 else
2554 fep->phy_interface = PHY_INTERFACE_MODE_MII;
2555 } else {
2556 fep->phy_interface = ret;
2557 }
2558
Fabio Estevame2f8d552013-02-22 06:40:45 +00002559 fep->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
2560 if (IS_ERR(fep->clk_ipg)) {
2561 ret = PTR_ERR(fep->clk_ipg);
2562 goto failed_clk;
2563 }
2564
2565 fep->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
2566 if (IS_ERR(fep->clk_ahb)) {
2567 ret = PTR_ERR(fep->clk_ahb);
2568 goto failed_clk;
2569 }
2570
Linus Torvalds38f56f32013-05-07 11:06:17 -07002571 /* enet_out is optional, depends on board */
2572 fep->clk_enet_out = devm_clk_get(&pdev->dev, "enet_out");
2573 if (IS_ERR(fep->clk_enet_out))
2574 fep->clk_enet_out = NULL;
2575
Fabio Estevame2f8d552013-02-22 06:40:45 +00002576 fep->clk_ptp = devm_clk_get(&pdev->dev, "ptp");
Fabio Estevam7f7d6c22013-02-21 09:21:50 +00002577 fep->bufdesc_ex =
2578 pdev->id_entry->driver_data & FEC_QUIRK_HAS_BUFDESC_EX;
Fabio Estevame2f8d552013-02-22 06:40:45 +00002579 if (IS_ERR(fep->clk_ptp)) {
Linus Torvalds38f56f32013-05-07 11:06:17 -07002580 fep->clk_ptp = NULL;
Fabio Estevame2f8d552013-02-22 06:40:45 +00002581 fep->bufdesc_ex = 0;
2582 }
2583
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002584 ret = fec_enet_clk_enable(ndev, true);
Fabio Estevam13a097b2013-07-21 13:25:02 -03002585 if (ret)
2586 goto failed_clk;
2587
Fabio Estevamf4e9f3d2013-05-27 03:48:29 +00002588 fep->reg_phy = devm_regulator_get(&pdev->dev, "phy");
2589 if (!IS_ERR(fep->reg_phy)) {
2590 ret = regulator_enable(fep->reg_phy);
Fabio Estevame2f8d552013-02-22 06:40:45 +00002591 if (ret) {
2592 dev_err(&pdev->dev,
2593 "Failed to enable phy regulator: %d\n", ret);
2594 goto failed_regulator;
2595 }
Fabio Estevamf6a4d602013-05-27 03:48:31 +00002596 } else {
2597 fep->reg_phy = NULL;
Fabio Estevame2f8d552013-02-22 06:40:45 +00002598 }
2599
2600 fec_reset_phy(pdev);
2601
Fabio Estevam7f7d6c22013-02-21 09:21:50 +00002602 if (fep->bufdesc_ex)
Fabio Estevamca162a82013-06-07 10:48:00 +00002603 fec_ptp_init(pdev);
Fabio Estevam7f7d6c22013-02-21 09:21:50 +00002604
2605 ret = fec_enet_init(ndev);
2606 if (ret)
2607 goto failed_init;
2608
Xiao Jiangc7c83d12011-09-29 02:15:56 +00002609 for (i = 0; i < FEC_IRQ_NUM; i++) {
Sascha Haueread73182009-01-28 23:03:11 +00002610 irq = platform_get_irq(pdev, i);
Lothar Waßmann86f9f2c2011-12-07 21:59:28 +00002611 if (irq < 0) {
2612 if (i)
2613 break;
2614 ret = irq;
2615 goto failed_irq;
2616 }
Fabio Estevam0d9b2ab2013-07-21 13:25:04 -03002617 ret = devm_request_irq(&pdev->dev, irq, fec_enet_interrupt,
Michael Opdenacker44a272d2013-09-13 05:44:38 +02002618 0, pdev->name, ndev);
Fabio Estevam0d9b2ab2013-07-21 13:25:04 -03002619 if (ret)
Sascha Haueread73182009-01-28 23:03:11 +00002620 goto failed_irq;
Sascha Haueread73182009-01-28 23:03:11 +00002621 }
2622
Bryan Wue6b043d2010-03-31 02:10:44 +00002623 ret = fec_enet_mii_init(pdev);
2624 if (ret)
2625 goto failed_mii_init;
2626
Oskar Schirmer03c698c2010-10-07 02:30:30 +00002627 /* Carrier starts down, phylib will bring it up */
2628 netif_carrier_off(ndev);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002629 fec_enet_clk_enable(ndev, false);
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002630 pinctrl_pm_select_sleep_state(&pdev->dev);
Oskar Schirmer03c698c2010-10-07 02:30:30 +00002631
Sascha Haueread73182009-01-28 23:03:11 +00002632 ret = register_netdev(ndev);
2633 if (ret)
2634 goto failed_register;
2635
Fabio Estevameb1d0642013-04-13 07:25:36 +00002636 if (fep->bufdesc_ex && fep->ptp_clock)
2637 netdev_info(ndev, "registered PHC device %d\n", fep->dev_id);
2638
Russell King36cdc742014-07-08 13:01:44 +01002639 INIT_WORK(&fep->tx_timeout_work, fec_enet_timeout_work);
Sascha Haueread73182009-01-28 23:03:11 +00002640 return 0;
2641
2642failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00002643 fec_enet_mii_remove(fep);
2644failed_mii_init:
Fabio Estevam7a2bbd82013-05-27 03:48:30 +00002645failed_irq:
Fabio Estevam7a2bbd82013-05-27 03:48:30 +00002646failed_init:
Fabio Estevamf6a4d602013-05-27 03:48:31 +00002647 if (fep->reg_phy)
2648 regulator_disable(fep->reg_phy);
Shawn Guo5fa9c0f2012-06-27 03:45:21 +00002649failed_regulator:
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002650 fec_enet_clk_enable(ndev, false);
Sascha Haueread73182009-01-28 23:03:11 +00002651failed_clk:
Sascha Haueread73182009-01-28 23:03:11 +00002652failed_ioremap:
2653 free_netdev(ndev);
2654
2655 return ret;
2656}
2657
Bill Pemberton33897cc2012-12-03 09:23:58 -05002658static int
Sascha Haueread73182009-01-28 23:03:11 +00002659fec_drv_remove(struct platform_device *pdev)
2660{
2661 struct net_device *ndev = platform_get_drvdata(pdev);
2662 struct fec_enet_private *fep = netdev_priv(ndev);
2663
Russell King36cdc742014-07-08 13:01:44 +01002664 cancel_work_sync(&fep->tx_timeout_work);
Lothar Waßmanne163cc92011-12-07 21:59:31 +00002665 unregister_netdev(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00002666 fec_enet_mii_remove(fep);
Frank Li6605b732012-10-30 18:25:31 +00002667 del_timer_sync(&fep->time_keep);
Fabio Estevamf6a4d602013-05-27 03:48:31 +00002668 if (fep->reg_phy)
2669 regulator_disable(fep->reg_phy);
Frank Li6605b732012-10-30 18:25:31 +00002670 if (fep->ptp_clock)
2671 ptp_clock_unregister(fep->ptp_clock);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002672 fec_enet_clk_enable(ndev, false);
Sascha Haueread73182009-01-28 23:03:11 +00002673 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01002674
Sascha Haueread73182009-01-28 23:03:11 +00002675 return 0;
2676}
2677
Fabio Estevambf7bfd72013-04-16 08:17:46 +00002678#ifdef CONFIG_PM_SLEEP
Sascha Haueread73182009-01-28 23:03:11 +00002679static int
Eric Benard87cad5c2010-06-18 04:19:54 +00002680fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00002681{
Eric Benard87cad5c2010-06-18 04:19:54 +00002682 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002683 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00002684
Russell Kingda1774e2014-07-08 12:39:57 +01002685 rtnl_lock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002686 if (netif_running(ndev)) {
Russell Kingd76cfae2014-07-08 00:23:04 +01002687 phy_stop(fep->phy_dev);
Russell King31a6de32014-07-08 12:40:23 +01002688 napi_disable(&fep->napi);
2689 netif_tx_lock_bh(ndev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002690 netif_device_detach(ndev);
Russell King31a6de32014-07-08 12:40:23 +01002691 netif_tx_unlock_bh(ndev);
2692 fec_stop(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00002693 }
Russell Kingda1774e2014-07-08 12:39:57 +01002694 rtnl_unlock();
2695
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002696 fec_enet_clk_enable(ndev, false);
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002697 pinctrl_pm_select_sleep_state(&fep->pdev->dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002698
Fabio Estevam238f7bc2013-05-27 03:48:33 +00002699 if (fep->reg_phy)
2700 regulator_disable(fep->reg_phy);
2701
Sascha Haueread73182009-01-28 23:03:11 +00002702 return 0;
2703}
2704
2705static int
Eric Benard87cad5c2010-06-18 04:19:54 +00002706fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00002707{
Eric Benard87cad5c2010-06-18 04:19:54 +00002708 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002709 struct fec_enet_private *fep = netdev_priv(ndev);
Fabio Estevam238f7bc2013-05-27 03:48:33 +00002710 int ret;
2711
2712 if (fep->reg_phy) {
2713 ret = regulator_enable(fep->reg_phy);
2714 if (ret)
2715 return ret;
2716 }
Sascha Haueread73182009-01-28 23:03:11 +00002717
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002718 pinctrl_pm_select_default_state(&fep->pdev->dev);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002719 ret = fec_enet_clk_enable(ndev, true);
Fabio Estevam13a097b2013-07-21 13:25:02 -03002720 if (ret)
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002721 goto failed_clk;
Fabio Estevam13a097b2013-07-21 13:25:02 -03002722
Russell Kingda1774e2014-07-08 12:39:57 +01002723 rtnl_lock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002724 if (netif_running(ndev)) {
Russell Kingef833372014-07-08 12:40:43 +01002725 fec_restart(ndev);
Russell King31a6de32014-07-08 12:40:23 +01002726 netif_tx_lock_bh(ndev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002727 netif_device_attach(ndev);
Russell King6af42d42014-07-08 12:40:18 +01002728 netif_tx_unlock_bh(ndev);
Russell King6af42d42014-07-08 12:40:18 +01002729 napi_enable(&fep->napi);
Russell Kingd76cfae2014-07-08 00:23:04 +01002730 phy_start(fep->phy_dev);
Sascha Haueread73182009-01-28 23:03:11 +00002731 }
Russell Kingda1774e2014-07-08 12:39:57 +01002732 rtnl_unlock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002733
Sascha Haueread73182009-01-28 23:03:11 +00002734 return 0;
Fabio Estevam13a097b2013-07-21 13:25:02 -03002735
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002736failed_clk:
Fabio Estevam13a097b2013-07-21 13:25:02 -03002737 if (fep->reg_phy)
2738 regulator_disable(fep->reg_phy);
2739 return ret;
Sascha Haueread73182009-01-28 23:03:11 +00002740}
Fabio Estevambf7bfd72013-04-16 08:17:46 +00002741#endif /* CONFIG_PM_SLEEP */
Sascha Haueread73182009-01-28 23:03:11 +00002742
Fabio Estevambf7bfd72013-04-16 08:17:46 +00002743static SIMPLE_DEV_PM_OPS(fec_pm_ops, fec_suspend, fec_resume);
Denis Kirjanov59d42892010-06-02 09:27:04 +00002744
Sascha Haueread73182009-01-28 23:03:11 +00002745static struct platform_driver fec_driver = {
2746 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00002747 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00002748 .owner = THIS_MODULE,
Eric Benard87cad5c2010-06-18 04:19:54 +00002749 .pm = &fec_pm_ops,
Shawn Guoca2cc332011-06-25 02:04:35 +08002750 .of_match_table = fec_dt_ids,
Sascha Haueread73182009-01-28 23:03:11 +00002751 },
Shawn Guob5680e02011-01-05 21:13:13 +00002752 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00002753 .probe = fec_probe,
Bill Pemberton33897cc2012-12-03 09:23:58 -05002754 .remove = fec_drv_remove,
Sascha Haueread73182009-01-28 23:03:11 +00002755};
2756
Fabio Estevamaaca2372012-01-23 16:44:50 +00002757module_platform_driver(fec_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Fabio Estevamf8c0aca2013-07-20 16:20:36 -03002759MODULE_ALIAS("platform:"DRIVER_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760MODULE_LICENSE("GPL");