blob: 9d82d915b06d136845f6c0ee3be652dad6755585 [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 void
346fec_enet_submit_work(struct bufdesc *bdp, struct fec_enet_private *fep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Shawn Guob5680e02011-01-05 21:13:13 +0000348 const struct platform_device_id *id_entry =
349 platform_get_device_id(fep->pdev);
Nimrod Andy6e909282014-06-12 08:16:22 +0800350 struct bufdesc *bdp_pre;
Duan Fugang-B38611fb8ef782014-02-20 18:14:39 +0800351
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800352 bdp_pre = fec_enet_get_prevdesc(bdp, fep);
Frank Li03191652013-07-25 14:05:53 +0800353 if ((id_entry->driver_data & FEC_QUIRK_ERR006358) &&
354 !(bdp_pre->cbd_sc & BD_ENET_TX_READY)) {
355 fep->delay_work.trig_tx = true;
356 schedule_delayed_work(&(fep->delay_work.delay_work),
357 msecs_to_jiffies(1));
358 }
Nimrod Andy6e909282014-06-12 08:16:22 +0800359}
360
361static int
362fec_enet_txq_submit_frag_skb(struct sk_buff *skb, struct net_device *ndev)
363{
364 struct fec_enet_private *fep = netdev_priv(ndev);
365 const struct platform_device_id *id_entry =
366 platform_get_device_id(fep->pdev);
367 struct bufdesc *bdp = fep->cur_tx;
368 struct bufdesc_ex *ebdp;
369 int nr_frags = skb_shinfo(skb)->nr_frags;
370 int frag, frag_len;
371 unsigned short status;
372 unsigned int estatus = 0;
373 skb_frag_t *this_frag;
374 unsigned int index;
375 void *bufaddr;
Russell Kingd6bf3142014-07-08 00:23:19 +0100376 dma_addr_t addr;
Nimrod Andy6e909282014-06-12 08:16:22 +0800377 int i;
378
379 for (frag = 0; frag < nr_frags; frag++) {
380 this_frag = &skb_shinfo(skb)->frags[frag];
381 bdp = fec_enet_get_nextdesc(bdp, fep);
382 ebdp = (struct bufdesc_ex *)bdp;
383
384 status = bdp->cbd_sc;
385 status &= ~BD_ENET_TX_STATS;
386 status |= (BD_ENET_TX_TC | BD_ENET_TX_READY);
387 frag_len = skb_shinfo(skb)->frags[frag].size;
388
389 /* Handle the last BD specially */
390 if (frag == nr_frags - 1) {
391 status |= (BD_ENET_TX_INTR | BD_ENET_TX_LAST);
392 if (fep->bufdesc_ex) {
393 estatus |= BD_ENET_TX_INT;
394 if (unlikely(skb_shinfo(skb)->tx_flags &
395 SKBTX_HW_TSTAMP && fep->hwts_tx_en))
396 estatus |= BD_ENET_TX_TS;
397 }
398 }
399
400 if (fep->bufdesc_ex) {
401 if (skb->ip_summed == CHECKSUM_PARTIAL)
402 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
403 ebdp->cbd_bdu = 0;
404 ebdp->cbd_esc = estatus;
405 }
406
407 bufaddr = page_address(this_frag->page.p) + this_frag->page_offset;
408
409 index = fec_enet_get_bd_index(fep->tx_bd_base, bdp, fep);
410 if (((unsigned long) bufaddr) & FEC_ALIGNMENT ||
411 id_entry->driver_data & FEC_QUIRK_SWAP_FRAME) {
412 memcpy(fep->tx_bounce[index], bufaddr, frag_len);
413 bufaddr = fep->tx_bounce[index];
414
415 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
416 swap_buffer(bufaddr, frag_len);
417 }
418
Russell Kingd6bf3142014-07-08 00:23:19 +0100419 addr = dma_map_single(&fep->pdev->dev, bufaddr, frag_len,
420 DMA_TO_DEVICE);
421 if (dma_mapping_error(&fep->pdev->dev, addr)) {
Nimrod Andy6e909282014-06-12 08:16:22 +0800422 dev_kfree_skb_any(skb);
423 if (net_ratelimit())
424 netdev_err(ndev, "Tx DMA memory map failed\n");
425 goto dma_mapping_error;
426 }
427
Russell Kingd6bf3142014-07-08 00:23:19 +0100428 bdp->cbd_bufaddr = addr;
Nimrod Andy6e909282014-06-12 08:16:22 +0800429 bdp->cbd_datlen = frag_len;
430 bdp->cbd_sc = status;
431 }
432
433 fep->cur_tx = bdp;
434
435 return 0;
436
437dma_mapping_error:
438 bdp = fep->cur_tx;
439 for (i = 0; i < frag; i++) {
440 bdp = fec_enet_get_nextdesc(bdp, fep);
441 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
442 bdp->cbd_datlen, DMA_TO_DEVICE);
443 }
444 return NETDEV_TX_OK;
445}
446
447static int fec_enet_txq_submit_skb(struct sk_buff *skb, struct net_device *ndev)
448{
449 struct fec_enet_private *fep = netdev_priv(ndev);
450 const struct platform_device_id *id_entry =
451 platform_get_device_id(fep->pdev);
452 int nr_frags = skb_shinfo(skb)->nr_frags;
453 struct bufdesc *bdp, *last_bdp;
454 void *bufaddr;
Russell Kingd6bf3142014-07-08 00:23:19 +0100455 dma_addr_t addr;
Nimrod Andy6e909282014-06-12 08:16:22 +0800456 unsigned short status;
457 unsigned short buflen;
458 unsigned int estatus = 0;
459 unsigned int index;
Nimrod Andy79f33912014-06-12 08:16:23 +0800460 int entries_free;
Nimrod Andy6e909282014-06-12 08:16:22 +0800461 int ret;
462
Nimrod Andy79f33912014-06-12 08:16:23 +0800463 entries_free = fec_enet_get_free_txdesc_num(fep);
464 if (entries_free < MAX_SKB_FRAGS + 1) {
465 dev_kfree_skb_any(skb);
466 if (net_ratelimit())
467 netdev_err(ndev, "NOT enough BD for SG!\n");
468 return NETDEV_TX_OK;
469 }
470
Nimrod Andy6e909282014-06-12 08:16:22 +0800471 /* Protocol checksum off-load for TCP and UDP. */
472 if (fec_enet_clear_csum(skb, ndev)) {
473 dev_kfree_skb_any(skb);
474 return NETDEV_TX_OK;
475 }
476
477 /* Fill in a Tx ring entry */
478 bdp = fep->cur_tx;
479 status = bdp->cbd_sc;
480 status &= ~BD_ENET_TX_STATS;
481
482 /* Set buffer length and buffer pointer */
483 bufaddr = skb->data;
484 buflen = skb_headlen(skb);
485
486 index = fec_enet_get_bd_index(fep->tx_bd_base, bdp, fep);
487 if (((unsigned long) bufaddr) & FEC_ALIGNMENT ||
488 id_entry->driver_data & FEC_QUIRK_SWAP_FRAME) {
489 memcpy(fep->tx_bounce[index], skb->data, buflen);
490 bufaddr = fep->tx_bounce[index];
491
492 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
493 swap_buffer(bufaddr, buflen);
494 }
495
Russell Kingd6bf3142014-07-08 00:23:19 +0100496 /* Push the data cache so the CPM does not get stale memory data. */
497 addr = dma_map_single(&fep->pdev->dev, bufaddr, buflen, DMA_TO_DEVICE);
498 if (dma_mapping_error(&fep->pdev->dev, addr)) {
Nimrod Andy6e909282014-06-12 08:16:22 +0800499 dev_kfree_skb_any(skb);
500 if (net_ratelimit())
501 netdev_err(ndev, "Tx DMA memory map failed\n");
502 return NETDEV_TX_OK;
503 }
504
505 if (nr_frags) {
506 ret = fec_enet_txq_submit_frag_skb(skb, ndev);
507 if (ret)
508 return ret;
509 } else {
510 status |= (BD_ENET_TX_INTR | BD_ENET_TX_LAST);
511 if (fep->bufdesc_ex) {
512 estatus = BD_ENET_TX_INT;
513 if (unlikely(skb_shinfo(skb)->tx_flags &
514 SKBTX_HW_TSTAMP && fep->hwts_tx_en))
515 estatus |= BD_ENET_TX_TS;
516 }
517 }
518
519 if (fep->bufdesc_ex) {
520
521 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
522
523 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
524 fep->hwts_tx_en))
525 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
526
527 if (skb->ip_summed == CHECKSUM_PARTIAL)
528 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
529
530 ebdp->cbd_bdu = 0;
531 ebdp->cbd_esc = estatus;
532 }
533
534 last_bdp = fep->cur_tx;
535 index = fec_enet_get_bd_index(fep->tx_bd_base, last_bdp, fep);
536 /* Save skb pointer */
537 fep->tx_skbuff[index] = skb;
538
539 bdp->cbd_datlen = buflen;
Russell Kingd6bf3142014-07-08 00:23:19 +0100540 bdp->cbd_bufaddr = addr;
Nimrod Andy6e909282014-06-12 08:16:22 +0800541
542 /* Send it on its way. Tell FEC it's ready, interrupt when done,
543 * it's the last BD of the frame, and to put the CRC on the end.
544 */
545 status |= (BD_ENET_TX_READY | BD_ENET_TX_TC);
546 bdp->cbd_sc = status;
547
548 fec_enet_submit_work(bdp, fep);
Frank Li03191652013-07-25 14:05:53 +0800549
Sascha Hauer22f6b862009-04-15 01:32:18 +0000550 /* If this was the last BD in the ring, start at the beginning again. */
Nimrod Andy6e909282014-06-12 08:16:22 +0800551 bdp = fec_enet_get_nextdesc(last_bdp, fep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Eric Dumazet7a2a8452013-12-19 10:53:02 -0800553 skb_tx_timestamp(skb);
554
Sascha Hauer2e285322009-04-15 01:32:16 +0000555 fep->cur_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Frank Lide5fb0a2013-03-03 17:34:25 +0000557 /* Trigger transmission start */
558 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
559
Nimrod Andy6e909282014-06-12 08:16:22 +0800560 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Nimrod Andy79f33912014-06-12 08:16:23 +0800563static int
564fec_enet_txq_put_data_tso(struct sk_buff *skb, struct net_device *ndev,
565 struct bufdesc *bdp, int index, char *data,
566 int size, bool last_tcp, bool is_last)
567{
568 struct fec_enet_private *fep = netdev_priv(ndev);
569 const struct platform_device_id *id_entry =
570 platform_get_device_id(fep->pdev);
571 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
572 unsigned short status;
573 unsigned int estatus = 0;
Russell Kingd6bf3142014-07-08 00:23:19 +0100574 dma_addr_t addr;
Nimrod Andy79f33912014-06-12 08:16:23 +0800575
576 status = bdp->cbd_sc;
577 status &= ~BD_ENET_TX_STATS;
578
579 status |= (BD_ENET_TX_TC | BD_ENET_TX_READY);
Nimrod Andy79f33912014-06-12 08:16:23 +0800580
581 if (((unsigned long) data) & FEC_ALIGNMENT ||
582 id_entry->driver_data & FEC_QUIRK_SWAP_FRAME) {
583 memcpy(fep->tx_bounce[index], data, size);
584 data = fep->tx_bounce[index];
585
586 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
587 swap_buffer(data, size);
588 }
589
Russell Kingd6bf3142014-07-08 00:23:19 +0100590 addr = dma_map_single(&fep->pdev->dev, data, size, DMA_TO_DEVICE);
591 if (dma_mapping_error(&fep->pdev->dev, addr)) {
Nimrod Andy79f33912014-06-12 08:16:23 +0800592 dev_kfree_skb_any(skb);
593 if (net_ratelimit())
594 netdev_err(ndev, "Tx DMA memory map failed\n");
595 return NETDEV_TX_BUSY;
596 }
597
Russell Kingd6bf3142014-07-08 00:23:19 +0100598 bdp->cbd_datlen = size;
599 bdp->cbd_bufaddr = addr;
600
Nimrod Andy79f33912014-06-12 08:16:23 +0800601 if (fep->bufdesc_ex) {
602 if (skb->ip_summed == CHECKSUM_PARTIAL)
603 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
604 ebdp->cbd_bdu = 0;
605 ebdp->cbd_esc = estatus;
606 }
607
608 /* Handle the last BD specially */
609 if (last_tcp)
610 status |= (BD_ENET_TX_LAST | BD_ENET_TX_TC);
611 if (is_last) {
612 status |= BD_ENET_TX_INTR;
613 if (fep->bufdesc_ex)
614 ebdp->cbd_esc |= BD_ENET_TX_INT;
615 }
616
617 bdp->cbd_sc = status;
618
619 return 0;
620}
621
622static int
623fec_enet_txq_put_hdr_tso(struct sk_buff *skb, struct net_device *ndev,
624 struct bufdesc *bdp, int index)
625{
626 struct fec_enet_private *fep = netdev_priv(ndev);
627 const struct platform_device_id *id_entry =
628 platform_get_device_id(fep->pdev);
629 int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
630 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
631 void *bufaddr;
632 unsigned long dmabuf;
633 unsigned short status;
634 unsigned int estatus = 0;
635
636 status = bdp->cbd_sc;
637 status &= ~BD_ENET_TX_STATS;
638 status |= (BD_ENET_TX_TC | BD_ENET_TX_READY);
639
640 bufaddr = fep->tso_hdrs + index * TSO_HEADER_SIZE;
641 dmabuf = fep->tso_hdrs_dma + index * TSO_HEADER_SIZE;
642 if (((unsigned long) bufaddr) & FEC_ALIGNMENT ||
643 id_entry->driver_data & FEC_QUIRK_SWAP_FRAME) {
644 memcpy(fep->tx_bounce[index], skb->data, hdr_len);
645 bufaddr = fep->tx_bounce[index];
646
647 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
648 swap_buffer(bufaddr, hdr_len);
649
650 dmabuf = dma_map_single(&fep->pdev->dev, bufaddr,
651 hdr_len, DMA_TO_DEVICE);
652 if (dma_mapping_error(&fep->pdev->dev, dmabuf)) {
653 dev_kfree_skb_any(skb);
654 if (net_ratelimit())
655 netdev_err(ndev, "Tx DMA memory map failed\n");
656 return NETDEV_TX_BUSY;
657 }
658 }
659
660 bdp->cbd_bufaddr = dmabuf;
661 bdp->cbd_datlen = hdr_len;
662
663 if (fep->bufdesc_ex) {
664 if (skb->ip_summed == CHECKSUM_PARTIAL)
665 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
666 ebdp->cbd_bdu = 0;
667 ebdp->cbd_esc = estatus;
668 }
669
670 bdp->cbd_sc = status;
671
672 return 0;
673}
674
675static int fec_enet_txq_submit_tso(struct sk_buff *skb, struct net_device *ndev)
676{
677 struct fec_enet_private *fep = netdev_priv(ndev);
678 int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
679 int total_len, data_left;
680 struct bufdesc *bdp = fep->cur_tx;
681 struct tso_t tso;
682 unsigned int index = 0;
683 int ret;
684
685 if (tso_count_descs(skb) >= fec_enet_get_free_txdesc_num(fep)) {
686 dev_kfree_skb_any(skb);
687 if (net_ratelimit())
688 netdev_err(ndev, "NOT enough BD for TSO!\n");
689 return NETDEV_TX_OK;
690 }
691
692 /* Protocol checksum off-load for TCP and UDP. */
693 if (fec_enet_clear_csum(skb, ndev)) {
694 dev_kfree_skb_any(skb);
695 return NETDEV_TX_OK;
696 }
697
698 /* Initialize the TSO handler, and prepare the first payload */
699 tso_start(skb, &tso);
700
701 total_len = skb->len - hdr_len;
702 while (total_len > 0) {
703 char *hdr;
704
705 index = fec_enet_get_bd_index(fep->tx_bd_base, bdp, fep);
706 data_left = min_t(int, skb_shinfo(skb)->gso_size, total_len);
707 total_len -= data_left;
708
709 /* prepare packet headers: MAC + IP + TCP */
710 hdr = fep->tso_hdrs + index * TSO_HEADER_SIZE;
711 tso_build_hdr(skb, hdr, &tso, data_left, total_len == 0);
712 ret = fec_enet_txq_put_hdr_tso(skb, ndev, bdp, index);
713 if (ret)
714 goto err_release;
715
716 while (data_left > 0) {
717 int size;
718
719 size = min_t(int, tso.size, data_left);
720 bdp = fec_enet_get_nextdesc(bdp, fep);
721 index = fec_enet_get_bd_index(fep->tx_bd_base, bdp, fep);
722 ret = fec_enet_txq_put_data_tso(skb, ndev, bdp, index, tso.data,
723 size, size == data_left,
724 total_len == 0);
725 if (ret)
726 goto err_release;
727
728 data_left -= size;
729 tso_build_data(skb, &tso, size);
730 }
731
732 bdp = fec_enet_get_nextdesc(bdp, fep);
733 }
734
735 /* Save skb pointer */
736 fep->tx_skbuff[index] = skb;
737
738 fec_enet_submit_work(bdp, fep);
739
740 skb_tx_timestamp(skb);
741 fep->cur_tx = bdp;
742
743 /* Trigger transmission start */
744 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
745
746 return 0;
747
748err_release:
749 /* TODO: Release all used data descriptors for TSO */
750 return ret;
751}
752
Nimrod Andy61a44272014-06-12 08:16:18 +0800753static netdev_tx_t
754fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
755{
756 struct fec_enet_private *fep = netdev_priv(ndev);
Nimrod Andy6e909282014-06-12 08:16:22 +0800757 int entries_free;
Nimrod Andy61a44272014-06-12 08:16:18 +0800758 int ret;
759
Nimrod Andy79f33912014-06-12 08:16:23 +0800760 if (skb_is_gso(skb))
761 ret = fec_enet_txq_submit_tso(skb, ndev);
762 else
763 ret = fec_enet_txq_submit_skb(skb, ndev);
Nimrod Andy6e909282014-06-12 08:16:22 +0800764 if (ret)
765 return ret;
Nimrod Andy61a44272014-06-12 08:16:18 +0800766
Nimrod Andy6e909282014-06-12 08:16:22 +0800767 entries_free = fec_enet_get_free_txdesc_num(fep);
Nimrod Andy79f33912014-06-12 08:16:23 +0800768 if (entries_free <= fep->tx_stop_threshold)
Nimrod Andy61a44272014-06-12 08:16:18 +0800769 netif_stop_queue(ndev);
770
771 return NETDEV_TX_OK;
772}
773
Frank Li14109a52013-03-26 16:12:03 +0000774/* Init RX & TX buffer descriptors
775 */
776static void fec_enet_bd_init(struct net_device *dev)
777{
778 struct fec_enet_private *fep = netdev_priv(dev);
779 struct bufdesc *bdp;
780 unsigned int i;
781
782 /* Initialize the receive buffer descriptors. */
783 bdp = fep->rx_bd_base;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800784 for (i = 0; i < fep->rx_ring_size; i++) {
Frank Li14109a52013-03-26 16:12:03 +0000785
786 /* Initialize the BD for every fragment in the page. */
787 if (bdp->cbd_bufaddr)
788 bdp->cbd_sc = BD_ENET_RX_EMPTY;
789 else
790 bdp->cbd_sc = 0;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800791 bdp = fec_enet_get_nextdesc(bdp, fep);
Frank Li14109a52013-03-26 16:12:03 +0000792 }
793
794 /* Set the last buffer to wrap */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800795 bdp = fec_enet_get_prevdesc(bdp, fep);
Frank Li14109a52013-03-26 16:12:03 +0000796 bdp->cbd_sc |= BD_SC_WRAP;
797
798 fep->cur_rx = fep->rx_bd_base;
799
800 /* ...and the same for transmit */
801 bdp = fep->tx_bd_base;
802 fep->cur_tx = bdp;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800803 for (i = 0; i < fep->tx_ring_size; i++) {
Frank Li14109a52013-03-26 16:12:03 +0000804
805 /* Initialize the BD for every fragment in the page. */
806 bdp->cbd_sc = 0;
Russell Kingd6bf3142014-07-08 00:23:19 +0100807 if (fep->tx_skbuff[i]) {
Frank Li14109a52013-03-26 16:12:03 +0000808 dev_kfree_skb_any(fep->tx_skbuff[i]);
809 fep->tx_skbuff[i] = NULL;
810 }
811 bdp->cbd_bufaddr = 0;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800812 bdp = fec_enet_get_nextdesc(bdp, fep);
Frank Li14109a52013-03-26 16:12:03 +0000813 }
814
815 /* Set the last buffer to wrap */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800816 bdp = fec_enet_get_prevdesc(bdp, fep);
Frank Li14109a52013-03-26 16:12:03 +0000817 bdp->cbd_sc |= BD_SC_WRAP;
818 fep->dirty_tx = bdp;
819}
820
Russell Kingdbc64a82014-07-08 12:40:12 +0100821/*
822 * This function is called to start or restart the FEC during a link
823 * change, transmit timeout, or to reconfigure the FEC. The network
824 * packet processing for this device must be stopped before this call.
Uwe Kleine-König45993652011-01-19 20:47:04 +0100825 */
826static void
Russell Kingef833372014-07-08 12:40:43 +0100827fec_restart(struct net_device *ndev)
Uwe Kleine-König45993652011-01-19 20:47:04 +0100828{
829 struct fec_enet_private *fep = netdev_priv(ndev);
830 const struct platform_device_id *id_entry =
831 platform_get_device_id(fep->pdev);
832 int i;
Jim Baxter4c09eed2013-04-19 08:10:49 +0000833 u32 val;
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100834 u32 temp_mac[2];
835 u32 rcntl = OPT_FRAME_SIZE | 0x04;
Shawn Guo230dec62011-09-23 02:12:48 +0000836 u32 ecntl = 0x2; /* ETHEREN */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100837
838 /* Whack a reset. We should wait for this. */
839 writel(1, fep->hwp + FEC_ECNTRL);
840 udelay(10);
841
842 /*
843 * enet-mac reset will reset mac address registers too,
844 * so need to reconfigure it.
845 */
846 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
847 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
848 writel(cpu_to_be32(temp_mac[0]), fep->hwp + FEC_ADDR_LOW);
849 writel(cpu_to_be32(temp_mac[1]), fep->hwp + FEC_ADDR_HIGH);
850 }
851
852 /* Clear any outstanding interrupt. */
853 writel(0xffc00000, fep->hwp + FEC_IEVENT);
854
Uwe Kleine-König45993652011-01-19 20:47:04 +0100855 /* Set maximum receive buffer size. */
856 writel(PKT_MAXBLR_SIZE, fep->hwp + FEC_R_BUFF_SIZE);
857
Frank Li14109a52013-03-26 16:12:03 +0000858 fec_enet_bd_init(ndev);
859
Uwe Kleine-König45993652011-01-19 20:47:04 +0100860 /* Set receive and transmit descriptor base. */
861 writel(fep->bd_dma, fep->hwp + FEC_R_DES_START);
Frank Liff43da82013-01-03 16:04:23 +0000862 if (fep->bufdesc_ex)
863 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc_ex)
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800864 * fep->rx_ring_size, fep->hwp + FEC_X_DES_START);
Frank Liff43da82013-01-03 16:04:23 +0000865 else
866 writel((unsigned long)fep->bd_dma + sizeof(struct bufdesc)
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +0800867 * fep->rx_ring_size, fep->hwp + FEC_X_DES_START);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100868
Uwe Kleine-König45993652011-01-19 20:47:04 +0100869
Uwe Kleine-König45993652011-01-19 20:47:04 +0100870 for (i = 0; i <= TX_RING_MOD_MASK; i++) {
871 if (fep->tx_skbuff[i]) {
872 dev_kfree_skb_any(fep->tx_skbuff[i]);
873 fep->tx_skbuff[i] = NULL;
874 }
875 }
876
877 /* Enable MII mode */
Russell Kingef833372014-07-08 12:40:43 +0100878 if (fep->full_duplex == DUPLEX_FULL) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100879 /* FD enable */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100880 writel(0x04, fep->hwp + FEC_X_CNTRL);
881 } else {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100882 /* No Rcv on Xmit */
883 rcntl |= 0x02;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100884 writel(0x0, fep->hwp + FEC_X_CNTRL);
885 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100886
Uwe Kleine-König45993652011-01-19 20:47:04 +0100887 /* Set MII speed */
888 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
889
Guenter Roeckd1391932013-06-18 10:04:59 -0700890#if !defined(CONFIG_M5272)
Jim Baxter4c09eed2013-04-19 08:10:49 +0000891 /* set RX checksum */
892 val = readl(fep->hwp + FEC_RACC);
893 if (fep->csum_flags & FLAG_RX_CSUM_ENABLED)
894 val |= FEC_RACC_OPTIONS;
895 else
896 val &= ~FEC_RACC_OPTIONS;
897 writel(val, fep->hwp + FEC_RACC);
Guenter Roeckd1391932013-06-18 10:04:59 -0700898#endif
Jim Baxter4c09eed2013-04-19 08:10:49 +0000899
Uwe Kleine-König45993652011-01-19 20:47:04 +0100900 /*
901 * The phy interface and speed need to get configured
902 * differently on enet-mac.
903 */
904 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100905 /* Enable flow control and length check */
906 rcntl |= 0x40000000 | 0x00000020;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100907
Shawn Guo230dec62011-09-23 02:12:48 +0000908 /* RGMII, RMII or MII */
909 if (fep->phy_interface == PHY_INTERFACE_MODE_RGMII)
910 rcntl |= (1 << 6);
911 else if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100912 rcntl |= (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100913 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100914 rcntl &= ~(1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100915
Shawn Guo230dec62011-09-23 02:12:48 +0000916 /* 1G, 100M or 10M */
917 if (fep->phy_dev) {
918 if (fep->phy_dev->speed == SPEED_1000)
919 ecntl |= (1 << 5);
920 else if (fep->phy_dev->speed == SPEED_100)
921 rcntl &= ~(1 << 9);
922 else
923 rcntl |= (1 << 9);
924 }
Uwe Kleine-König45993652011-01-19 20:47:04 +0100925 } else {
926#ifdef FEC_MIIGSK_ENR
Shawn Guo0ca1e292011-07-01 18:11:22 +0800927 if (id_entry->driver_data & FEC_QUIRK_USE_GASKET) {
Eric Benard8d82f212012-01-12 06:10:28 +0000928 u32 cfgr;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100929 /* disable the gasket and wait */
930 writel(0, fep->hwp + FEC_MIIGSK_ENR);
931 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
932 udelay(1);
933
934 /*
935 * configure the gasket:
936 * RMII, 50 MHz, no loopback, no echo
Shawn Guo0ca1e292011-07-01 18:11:22 +0800937 * MII, 25 MHz, no loopback, no echo
Uwe Kleine-König45993652011-01-19 20:47:04 +0100938 */
Eric Benard8d82f212012-01-12 06:10:28 +0000939 cfgr = (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
940 ? BM_MIIGSK_CFGR_RMII : BM_MIIGSK_CFGR_MII;
941 if (fep->phy_dev && fep->phy_dev->speed == SPEED_10)
942 cfgr |= BM_MIIGSK_CFGR_FRCONT_10M;
943 writel(cfgr, fep->hwp + FEC_MIIGSK_CFGR);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100944
945 /* re-enable the gasket */
946 writel(2, fep->hwp + FEC_MIIGSK_ENR);
947 }
948#endif
949 }
Frank Libaa70a52013-01-16 16:55:58 +0000950
Guenter Roeckd1391932013-06-18 10:04:59 -0700951#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +0000952 /* enable pause frame*/
953 if ((fep->pause_flag & FEC_PAUSE_FLAG_ENABLE) ||
954 ((fep->pause_flag & FEC_PAUSE_FLAG_AUTONEG) &&
955 fep->phy_dev && fep->phy_dev->pause)) {
956 rcntl |= FEC_ENET_FCE;
957
Jim Baxter4c09eed2013-04-19 08:10:49 +0000958 /* set FIFO threshold parameter to reduce overrun */
Frank Libaa70a52013-01-16 16:55:58 +0000959 writel(FEC_ENET_RSEM_V, fep->hwp + FEC_R_FIFO_RSEM);
960 writel(FEC_ENET_RSFL_V, fep->hwp + FEC_R_FIFO_RSFL);
961 writel(FEC_ENET_RAEM_V, fep->hwp + FEC_R_FIFO_RAEM);
962 writel(FEC_ENET_RAFL_V, fep->hwp + FEC_R_FIFO_RAFL);
963
964 /* OPD */
965 writel(FEC_ENET_OPD_V, fep->hwp + FEC_OPD);
966 } else {
967 rcntl &= ~FEC_ENET_FCE;
968 }
Guenter Roeckd1391932013-06-18 10:04:59 -0700969#endif /* !defined(CONFIG_M5272) */
Frank Libaa70a52013-01-16 16:55:58 +0000970
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100971 writel(rcntl, fep->hwp + FEC_R_CNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100972
Stefan Wahren84fe6182014-03-12 11:28:19 +0100973 /* Setup multicast filter. */
974 set_multicast_list(ndev);
975#ifndef CONFIG_M5272
976 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
977 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
978#endif
979
Shawn Guo230dec62011-09-23 02:12:48 +0000980 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
981 /* enable ENET endian swap */
982 ecntl |= (1 << 8);
983 /* enable ENET store and forward mode */
984 writel(1 << 8, fep->hwp + FEC_X_WMRK);
985 }
986
Frank Liff43da82013-01-03 16:04:23 +0000987 if (fep->bufdesc_ex)
988 ecntl |= (1 << 4);
Frank Li6605b732012-10-30 18:25:31 +0000989
Chris Healy38ae92d2013-06-25 23:18:52 -0700990#ifndef CONFIG_M5272
Jim Baxterb9eef552013-07-01 14:57:54 +0100991 /* Enable the MIB statistic event counters */
992 writel(0 << 31, fep->hwp + FEC_MIB_CTRLSTAT);
Chris Healy38ae92d2013-06-25 23:18:52 -0700993#endif
994
Uwe Kleine-König45993652011-01-19 20:47:04 +0100995 /* And last, enable the transmit and receive processing */
Shawn Guo230dec62011-09-23 02:12:48 +0000996 writel(ecntl, fep->hwp + FEC_ECNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100997 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
998
Frank Liff43da82013-01-03 16:04:23 +0000999 if (fep->bufdesc_ex)
1000 fec_ptp_start_cyclecounter(ndev);
1001
Uwe Kleine-König45993652011-01-19 20:47:04 +01001002 /* Enable interrupts we wish to service */
1003 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
1004}
1005
1006static void
1007fec_stop(struct net_device *ndev)
1008{
1009 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +00001010 const struct platform_device_id *id_entry =
1011 platform_get_device_id(fep->pdev);
Lothar Waßmann42431dc2011-12-07 21:59:30 +00001012 u32 rmii_mode = readl(fep->hwp + FEC_R_CNTRL) & (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +01001013
1014 /* We cannot expect a graceful transmit stop without link !!! */
1015 if (fep->link) {
1016 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
1017 udelay(10);
1018 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
Joe Perches31b77202013-04-13 19:03:17 +00001019 netdev_err(ndev, "Graceful transmit stop did not complete!\n");
Uwe Kleine-König45993652011-01-19 20:47:04 +01001020 }
1021
1022 /* Whack a reset. We should wait for this. */
1023 writel(1, fep->hwp + FEC_ECNTRL);
1024 udelay(10);
1025 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1026 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
Shawn Guo230dec62011-09-23 02:12:48 +00001027
1028 /* We have to keep ENET enabled to have MII interrupt stay working */
Lothar Waßmann42431dc2011-12-07 21:59:30 +00001029 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC) {
Shawn Guo230dec62011-09-23 02:12:48 +00001030 writel(2, fep->hwp + FEC_ECNTRL);
Lothar Waßmann42431dc2011-12-07 21:59:30 +00001031 writel(rmii_mode, fep->hwp + FEC_R_CNTRL);
1032 }
Uwe Kleine-König45993652011-01-19 20:47:04 +01001033}
1034
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001037fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001039 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001041 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Frank Li54309fa2013-05-07 14:08:44 +00001043 fep->delay_work.timeout = true;
1044 schedule_delayed_work(&(fep->delay_work.delay_work), 0);
1045}
1046
1047static void fec_enet_work(struct work_struct *work)
1048{
1049 struct fec_enet_private *fep =
1050 container_of(work,
1051 struct fec_enet_private,
1052 delay_work.delay_work.work);
Russell King8ce56242014-07-08 12:40:07 +01001053 struct net_device *ndev = fep->netdev;
Frank Li54309fa2013-05-07 14:08:44 +00001054
1055 if (fep->delay_work.timeout) {
1056 fep->delay_work.timeout = false;
Russell Kingda1774e2014-07-08 12:39:57 +01001057 rtnl_lock();
Russell King8ce56242014-07-08 12:40:07 +01001058 if (netif_device_present(ndev) || netif_running(ndev)) {
Russell Kingdbc64a82014-07-08 12:40:12 +01001059 napi_disable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001060 netif_tx_lock_bh(ndev);
Russell Kingef833372014-07-08 12:40:43 +01001061 fec_restart(ndev);
Russell King8ce56242014-07-08 12:40:07 +01001062 netif_wake_queue(ndev);
Russell King6af42d42014-07-08 12:40:18 +01001063 netif_tx_unlock_bh(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001064 napi_enable(&fep->napi);
Russell King8ce56242014-07-08 12:40:07 +01001065 }
Russell Kingda1774e2014-07-08 12:39:57 +01001066 rtnl_unlock();
Frank Li54309fa2013-05-07 14:08:44 +00001067 }
Frank Li03191652013-07-25 14:05:53 +08001068
1069 if (fep->delay_work.trig_tx) {
1070 fep->delay_work.trig_tx = false;
1071 writel(0, fep->hwp + FEC_X_DES_ACTIVE);
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001076fec_enet_tx(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
1078 struct fec_enet_private *fep;
Sascha Hauer2e285322009-04-15 01:32:16 +00001079 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001080 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 struct sk_buff *skb;
Frank Lide5fb0a2013-03-03 17:34:25 +00001082 int index = 0;
Nimrod Andy79f33912014-06-12 08:16:23 +08001083 int entries_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001085 fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 bdp = fep->dirty_tx;
1087
Frank Lide5fb0a2013-03-03 17:34:25 +00001088 /* get next bdp of dirty_tx */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08001089 bdp = fec_enet_get_nextdesc(bdp, fep);
Frank Lide5fb0a2013-03-03 17:34:25 +00001090
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001091 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Frank Lide5fb0a2013-03-03 17:34:25 +00001092
1093 /* current queue is empty */
1094 if (bdp == fep->cur_tx)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001095 break;
1096
Nimrod Andy61a44272014-06-12 08:16:18 +08001097 index = fec_enet_get_bd_index(fep->tx_bd_base, bdp, fep);
Frank Lide5fb0a2013-03-03 17:34:25 +00001098
Frank Lide5fb0a2013-03-03 17:34:25 +00001099 skb = fep->tx_skbuff[index];
Russell Kingd6bf3142014-07-08 00:23:19 +01001100 fep->tx_skbuff[index] = NULL;
Nimrod Andy79f33912014-06-12 08:16:23 +08001101 if (!IS_TSO_HEADER(fep, bdp->cbd_bufaddr))
1102 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
1103 bdp->cbd_datlen, DMA_TO_DEVICE);
Sebastian Siewior2488a542013-12-02 10:52:55 +01001104 bdp->cbd_bufaddr = 0;
Nimrod Andy6e909282014-06-12 08:16:22 +08001105 if (!skb) {
1106 bdp = fec_enet_get_nextdesc(bdp, fep);
1107 continue;
1108 }
Frank Lide5fb0a2013-03-03 17:34:25 +00001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001111 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 BD_ENET_TX_RL | BD_ENET_TX_UN |
1113 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001114 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001115 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001116 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001117 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001118 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001119 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001120 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001121 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001122 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001123 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001124 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001126 ndev->stats.tx_packets++;
Nimrod Andy6e909282014-06-12 08:16:22 +08001127 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129
Frank Liff43da82013-01-03 16:04:23 +00001130 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) &&
1131 fep->bufdesc_ex) {
Frank Li6605b732012-10-30 18:25:31 +00001132 struct skb_shared_hwtstamps shhwtstamps;
1133 unsigned long flags;
Frank Liff43da82013-01-03 16:04:23 +00001134 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
Frank Li6605b732012-10-30 18:25:31 +00001135
1136 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
1137 spin_lock_irqsave(&fep->tmreg_lock, flags);
1138 shhwtstamps.hwtstamp = ns_to_ktime(
Frank Liff43da82013-01-03 16:04:23 +00001139 timecounter_cyc2time(&fep->tc, ebdp->ts));
Frank Li6605b732012-10-30 18:25:31 +00001140 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
1141 skb_tstamp_tx(skb, &shhwtstamps);
1142 }
Frank Liff43da82013-01-03 16:04:23 +00001143
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001144 if (status & BD_ENET_TX_READY)
Joe Perches31b77202013-04-13 19:03:17 +00001145 netdev_err(ndev, "HEY! Enet xmit interrupt and TX_READY\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +00001146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 /* Deferred means some collisions occurred during transmit,
1148 * but we eventually sent the packet OK.
1149 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001150 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001151 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001152
Sascha Hauer22f6b862009-04-15 01:32:18 +00001153 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 dev_kfree_skb_any(skb);
Frank Lide5fb0a2013-03-03 17:34:25 +00001155
1156 fep->dirty_tx = bdp;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001157
Sascha Hauer22f6b862009-04-15 01:32:18 +00001158 /* Update pointer to next buffer descriptor to be transmitted */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08001159 bdp = fec_enet_get_nextdesc(bdp, fep);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001160
Sascha Hauer22f6b862009-04-15 01:32:18 +00001161 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 */
Nimrod Andy79f33912014-06-12 08:16:23 +08001163 if (netif_queue_stopped(ndev)) {
1164 entries_free = fec_enet_get_free_txdesc_num(fep);
1165 if (entries_free >= fep->tx_wake_threshold)
1166 netif_wake_queue(ndev);
1167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
Frank Lide5fb0a2013-03-03 17:34:25 +00001169 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172/* During a receive, the cur_rx points to the current incoming buffer.
1173 * When we update through the ring, if the next incoming buffer has
1174 * not been given to the system, we just set the empty indicator,
1175 * effectively tossing the packet.
1176 */
Frank Lidc975382013-01-28 18:31:42 +00001177static int
1178fec_enet_rx(struct net_device *ndev, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001180 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +00001181 const struct platform_device_id *id_entry =
1182 platform_get_device_id(fep->pdev);
Sascha Hauer2e285322009-04-15 01:32:16 +00001183 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001184 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 struct sk_buff *skb;
1186 ushort pkt_len;
1187 __u8 *data;
Frank Lidc975382013-01-28 18:31:42 +00001188 int pkt_received = 0;
Jim Baxtercdffcf12013-07-02 22:52:56 +01001189 struct bufdesc_ex *ebdp = NULL;
1190 bool vlan_packet_rcvd = false;
1191 u16 vlan_tag;
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08001192 int index = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001193
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001194#ifdef CONFIG_M532x
1195 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001196#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 /* First, grab all of the stats for the incoming packet.
1199 * These get messed up if we get called due to a busy condition.
1200 */
1201 bdp = fep->cur_rx;
1202
Sascha Hauer22f6b862009-04-15 01:32:18 +00001203 while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Frank Lidc975382013-01-28 18:31:42 +00001205 if (pkt_received >= budget)
1206 break;
1207 pkt_received++;
1208
Sascha Hauer22f6b862009-04-15 01:32:18 +00001209 /* Since we have allocated space to hold a complete frame,
1210 * the last indicator should be set.
1211 */
1212 if ((status & BD_ENET_RX_LAST) == 0)
Joe Perches31b77202013-04-13 19:03:17 +00001213 netdev_err(ndev, "rcv is not +last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Sascha Hauer22f6b862009-04-15 01:32:18 +00001215 /* Check for errors. */
1216 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001218 ndev->stats.rx_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001219 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
1220 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001221 ndev->stats.rx_length_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001222 }
1223 if (status & BD_ENET_RX_NO) /* Frame alignment */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001224 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001225 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001226 ndev->stats.rx_crc_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001227 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001228 ndev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
Sascha Hauer22f6b862009-04-15 01:32:18 +00001230
1231 /* Report late collisions as a frame error.
1232 * On this error, the BD is closed, but we don't know what we
1233 * have in the buffer. So, just drop this frame on the floor.
1234 */
1235 if (status & BD_ENET_RX_CL) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001236 ndev->stats.rx_errors++;
1237 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001238 goto rx_processing_done;
1239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Sascha Hauer22f6b862009-04-15 01:32:18 +00001241 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001242 ndev->stats.rx_packets++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001243 pkt_len = bdp->cbd_datlen;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001244 ndev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Nimrod Andy61a44272014-06-12 08:16:18 +08001246 index = fec_enet_get_bd_index(fep->rx_bd_base, bdp, fep);
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08001247 data = fep->rx_skbuff[index]->data;
1248 dma_sync_single_for_cpu(&fep->pdev->dev, bdp->cbd_bufaddr,
1249 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerccdc4f12009-01-28 23:03:09 +00001250
Shawn Guob5680e02011-01-05 21:13:13 +00001251 if (id_entry->driver_data & FEC_QUIRK_SWAP_FRAME)
1252 swap_buffer(data, pkt_len);
1253
Jim Baxtercdffcf12013-07-02 22:52:56 +01001254 /* Extract the enhanced buffer descriptor */
1255 ebdp = NULL;
1256 if (fep->bufdesc_ex)
1257 ebdp = (struct bufdesc_ex *)bdp;
1258
1259 /* If this is a VLAN packet remove the VLAN Tag */
1260 vlan_packet_rcvd = false;
1261 if ((ndev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
1262 fep->bufdesc_ex && (ebdp->cbd_esc & BD_ENET_RX_VLAN)) {
1263 /* Push and remove the vlan tag */
1264 struct vlan_hdr *vlan_header =
1265 (struct vlan_hdr *) (data + ETH_HLEN);
1266 vlan_tag = ntohs(vlan_header->h_vlan_TCI);
1267 pkt_len -= VLAN_HLEN;
1268
1269 vlan_packet_rcvd = true;
1270 }
1271
Sascha Hauer22f6b862009-04-15 01:32:18 +00001272 /* This does 16 byte alignment, exactly what we need.
1273 * The packet length includes FCS, but we don't want to
1274 * include that when passing upstream as it messes up
1275 * bridging applications.
1276 */
Fabio Estevamb72061a2012-02-07 08:27:31 +00001277 skb = netdev_alloc_skb(ndev, pkt_len - 4 + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Sascha Hauer85498892009-04-15 01:32:21 +00001279 if (unlikely(!skb)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001280 ndev->stats.rx_dropped++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001281 } else {
Jim Baxtercdffcf12013-07-02 22:52:56 +01001282 int payload_offset = (2 * ETH_ALEN);
Sascha Hauer85498892009-04-15 01:32:21 +00001283 skb_reserve(skb, NET_IP_ALIGN);
Sascha Hauer22f6b862009-04-15 01:32:18 +00001284 skb_put(skb, pkt_len - 4); /* Make room */
Jim Baxtercdffcf12013-07-02 22:52:56 +01001285
1286 /* Extract the frame data without the VLAN header. */
1287 skb_copy_to_linear_data(skb, data, (2 * ETH_ALEN));
1288 if (vlan_packet_rcvd)
1289 payload_offset = (2 * ETH_ALEN) + VLAN_HLEN;
1290 skb_copy_to_linear_data_offset(skb, (2 * ETH_ALEN),
1291 data + payload_offset,
1292 pkt_len - 4 - (2 * ETH_ALEN));
1293
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001294 skb->protocol = eth_type_trans(skb, ndev);
Frank Liff43da82013-01-03 16:04:23 +00001295
Frank Li6605b732012-10-30 18:25:31 +00001296 /* Get receive timestamp from the skb */
Frank Liff43da82013-01-03 16:04:23 +00001297 if (fep->hwts_rx_en && fep->bufdesc_ex) {
Frank Li6605b732012-10-30 18:25:31 +00001298 struct skb_shared_hwtstamps *shhwtstamps =
1299 skb_hwtstamps(skb);
1300 unsigned long flags;
1301
1302 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
1303
1304 spin_lock_irqsave(&fep->tmreg_lock, flags);
1305 shhwtstamps->hwtstamp = ns_to_ktime(
Frank Liff43da82013-01-03 16:04:23 +00001306 timecounter_cyc2time(&fep->tc, ebdp->ts));
Frank Li6605b732012-10-30 18:25:31 +00001307 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
1308 }
Frank Liff43da82013-01-03 16:04:23 +00001309
Jim Baxter4c09eed2013-04-19 08:10:49 +00001310 if (fep->bufdesc_ex &&
Jim Baxtercdffcf12013-07-02 22:52:56 +01001311 (fep->csum_flags & FLAG_RX_CSUM_ENABLED)) {
Jim Baxter4c09eed2013-04-19 08:10:49 +00001312 if (!(ebdp->cbd_esc & FLAG_RX_CSUM_ERROR)) {
1313 /* don't check it */
1314 skb->ip_summed = CHECKSUM_UNNECESSARY;
1315 } else {
1316 skb_checksum_none_assert(skb);
1317 }
1318 }
1319
Jim Baxtercdffcf12013-07-02 22:52:56 +01001320 /* Handle received VLAN packets */
1321 if (vlan_packet_rcvd)
1322 __vlan_hwaccel_put_tag(skb,
1323 htons(ETH_P_8021Q),
1324 vlan_tag);
1325
Richard Cochran0affdf32013-08-30 20:28:10 +02001326 napi_gro_receive(&fep->napi, skb);
Sascha Hauer22f6b862009-04-15 01:32:18 +00001327 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001328
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08001329 dma_sync_single_for_device(&fep->pdev->dev, bdp->cbd_bufaddr,
1330 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauer22f6b862009-04-15 01:32:18 +00001331rx_processing_done:
1332 /* Clear the status flags for this buffer */
1333 status &= ~BD_ENET_RX_STATS;
1334
1335 /* Mark the buffer empty */
1336 status |= BD_ENET_RX_EMPTY;
1337 bdp->cbd_sc = status;
1338
Frank Liff43da82013-01-03 16:04:23 +00001339 if (fep->bufdesc_ex) {
1340 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
1341
1342 ebdp->cbd_esc = BD_ENET_RX_INT;
1343 ebdp->cbd_prot = 0;
1344 ebdp->cbd_bdu = 0;
1345 }
Frank Li6605b732012-10-30 18:25:31 +00001346
Sascha Hauer22f6b862009-04-15 01:32:18 +00001347 /* Update BD pointer to next entry */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08001348 bdp = fec_enet_get_nextdesc(bdp, fep);
1349
Sascha Hauer22f6b862009-04-15 01:32:18 +00001350 /* Doing this here will keep the FEC running while we process
1351 * incoming frames. On a heavily loaded network, we should be
1352 * able to keep up at the expense of system resources.
1353 */
1354 writel(0, fep->hwp + FEC_R_DES_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
Sascha Hauer2e285322009-04-15 01:32:16 +00001356 fep->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Frank Lidc975382013-01-28 18:31:42 +00001358 return pkt_received;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359}
1360
Uwe Kleine-König45993652011-01-19 20:47:04 +01001361static irqreturn_t
1362fec_enet_interrupt(int irq, void *dev_id)
1363{
1364 struct net_device *ndev = dev_id;
1365 struct fec_enet_private *fep = netdev_priv(ndev);
Russell King7a168072014-07-08 00:22:44 +01001366 const unsigned napi_mask = FEC_ENET_RXF | FEC_ENET_TXF;
Uwe Kleine-König45993652011-01-19 20:47:04 +01001367 uint int_events;
1368 irqreturn_t ret = IRQ_NONE;
1369
Russell King7a168072014-07-08 00:22:44 +01001370 int_events = readl(fep->hwp + FEC_IEVENT);
1371 writel(int_events & ~napi_mask, fep->hwp + FEC_IEVENT);
Uwe Kleine-König45993652011-01-19 20:47:04 +01001372
Russell King7a168072014-07-08 00:22:44 +01001373 if (int_events & napi_mask) {
1374 ret = IRQ_HANDLED;
Frank Lidc975382013-01-28 18:31:42 +00001375
Russell King7a168072014-07-08 00:22:44 +01001376 /* Disable the NAPI interrupts */
1377 writel(FEC_ENET_MII, fep->hwp + FEC_IMASK);
1378 napi_schedule(&fep->napi);
1379 }
Uwe Kleine-König45993652011-01-19 20:47:04 +01001380
Russell King7a168072014-07-08 00:22:44 +01001381 if (int_events & FEC_ENET_MII) {
1382 ret = IRQ_HANDLED;
1383 complete(&fep->mdio_done);
1384 }
Uwe Kleine-König45993652011-01-19 20:47:04 +01001385
1386 return ret;
1387}
1388
Frank Lidc975382013-01-28 18:31:42 +00001389static int fec_enet_rx_napi(struct napi_struct *napi, int budget)
1390{
1391 struct net_device *ndev = napi->dev;
Frank Lidc975382013-01-28 18:31:42 +00001392 struct fec_enet_private *fep = netdev_priv(ndev);
Russell King7a168072014-07-08 00:22:44 +01001393 int pkts;
1394
1395 /*
1396 * Clear any pending transmit or receive interrupts before
1397 * processing the rings to avoid racing with the hardware.
1398 */
1399 writel(FEC_ENET_RXF | FEC_ENET_TXF, fep->hwp + FEC_IEVENT);
1400
1401 pkts = fec_enet_rx(ndev, budget);
Uwe Kleine-König45993652011-01-19 20:47:04 +01001402
Frank Lide5fb0a2013-03-03 17:34:25 +00001403 fec_enet_tx(ndev);
1404
Frank Lidc975382013-01-28 18:31:42 +00001405 if (pkts < budget) {
1406 napi_complete(napi);
1407 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
1408 }
1409 return pkts;
1410}
Uwe Kleine-König45993652011-01-19 20:47:04 +01001411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412/* ------------------------------------------------------------------------- */
Fabio Estevam0c7768a2013-01-07 17:42:56 +00001413static void fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001415 struct fec_enet_private *fep = netdev_priv(ndev);
Jingoo Han94660ba2013-08-30 13:56:26 +09001416 struct fec_platform_data *pdata = dev_get_platdata(&fep->pdev->dev);
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001417 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Shawn Guo49da97d2011-01-05 21:13:11 +00001419 /*
1420 * try to get mac address in following order:
1421 *
1422 * 1) module parameter via kernel command line in form
1423 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
1424 */
1425 iap = macaddr;
1426
1427 /*
Shawn Guoca2cc332011-06-25 02:04:35 +08001428 * 2) from device tree data
1429 */
1430 if (!is_valid_ether_addr(iap)) {
1431 struct device_node *np = fep->pdev->dev.of_node;
1432 if (np) {
1433 const char *mac = of_get_mac_address(np);
1434 if (mac)
1435 iap = (unsigned char *) mac;
1436 }
1437 }
Shawn Guoca2cc332011-06-25 02:04:35 +08001438
1439 /*
1440 * 3) from flash or fuse (via platform data)
Shawn Guo49da97d2011-01-05 21:13:11 +00001441 */
1442 if (!is_valid_ether_addr(iap)) {
1443#ifdef CONFIG_M5272
1444 if (FEC_FLASHMAC)
1445 iap = (unsigned char *)FEC_FLASHMAC;
1446#else
1447 if (pdata)
Lothar Waßmann589efdc2011-12-07 21:59:29 +00001448 iap = (unsigned char *)&pdata->mac;
Shawn Guo49da97d2011-01-05 21:13:11 +00001449#endif
1450 }
1451
1452 /*
Shawn Guoca2cc332011-06-25 02:04:35 +08001453 * 4) FEC mac registers set by bootloader
Shawn Guo49da97d2011-01-05 21:13:11 +00001454 */
1455 if (!is_valid_ether_addr(iap)) {
Dan Carpenter7d7628f2013-08-29 11:25:14 +03001456 *((__be32 *) &tmpaddr[0]) =
1457 cpu_to_be32(readl(fep->hwp + FEC_ADDR_LOW));
1458 *((__be16 *) &tmpaddr[4]) =
1459 cpu_to_be16(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 iap = &tmpaddr[0];
1461 }
1462
Lucas Stachff5b2fa2013-06-03 00:38:39 +00001463 /*
1464 * 5) random mac address
1465 */
1466 if (!is_valid_ether_addr(iap)) {
1467 /* Report it and use a random ethernet address instead */
1468 netdev_err(ndev, "Invalid MAC address: %pM\n", iap);
1469 eth_hw_addr_random(ndev);
1470 netdev_info(ndev, "Using random MAC address: %pM\n",
1471 ndev->dev_addr);
1472 return;
1473 }
1474
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001475 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Shawn Guo49da97d2011-01-05 21:13:11 +00001477 /* Adjust MAC if using macaddr */
1478 if (iap == macaddr)
Shawn Guo43af9402011-12-05 05:01:15 +00001479 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482/* ------------------------------------------------------------------------- */
1483
Bryan Wue6b043d2010-03-31 02:10:44 +00001484/*
1485 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001487static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001489 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001490 struct phy_device *phy_dev = fep->phy_dev;
Bryan Wue6b043d2010-03-31 02:10:44 +00001491 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Bryan Wue6b043d2010-03-31 02:10:44 +00001493 /* Prevent a state halted on mii error */
1494 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
1495 phy_dev->state = PHY_RESUMING;
Frank Li54309fa2013-05-07 14:08:44 +00001496 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001498
Russell King8ce56242014-07-08 12:40:07 +01001499 /*
1500 * If the netdev is down, or is going down, we're not interested
1501 * in link state events, so just mark our idea of the link as down
1502 * and ignore the event.
1503 */
1504 if (!netif_running(ndev) || !netif_device_present(ndev)) {
1505 fep->link = 0;
1506 } else if (phy_dev->link) {
Lucas Stachd97e7492013-03-14 05:12:01 +00001507 if (!fep->link) {
Lothar Waßmann6ea07222011-12-07 21:59:27 +00001508 fep->link = phy_dev->link;
Bryan Wue6b043d2010-03-31 02:10:44 +00001509 status_change = 1;
1510 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001511
Russell Kingef833372014-07-08 12:40:43 +01001512 if (fep->full_duplex != phy_dev->duplex) {
1513 fep->full_duplex = phy_dev->duplex;
Lucas Stachd97e7492013-03-14 05:12:01 +00001514 status_change = 1;
Russell Kingef833372014-07-08 12:40:43 +01001515 }
Lucas Stachd97e7492013-03-14 05:12:01 +00001516
1517 if (phy_dev->speed != fep->speed) {
1518 fep->speed = phy_dev->speed;
1519 status_change = 1;
1520 }
1521
1522 /* if any of the above changed restart the FEC */
Russell Kingdbc64a82014-07-08 12:40:12 +01001523 if (status_change) {
Russell Kingdbc64a82014-07-08 12:40:12 +01001524 napi_disable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001525 netif_tx_lock_bh(ndev);
Russell Kingef833372014-07-08 12:40:43 +01001526 fec_restart(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001527 netif_wake_queue(ndev);
Russell King6af42d42014-07-08 12:40:18 +01001528 netif_tx_unlock_bh(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001529 napi_enable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001530 }
Lucas Stachd97e7492013-03-14 05:12:01 +00001531 } else {
1532 if (fep->link) {
Russell Kingf208ce12014-07-08 12:40:38 +01001533 napi_disable(&fep->napi);
1534 netif_tx_lock_bh(ndev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001535 fec_stop(ndev);
Russell Kingf208ce12014-07-08 12:40:38 +01001536 netif_tx_unlock_bh(ndev);
1537 napi_enable(&fep->napi);
Lucas Stach8d7ed0f2013-04-16 00:42:42 +00001538 fep->link = phy_dev->link;
Lucas Stachd97e7492013-03-14 05:12:01 +00001539 status_change = 1;
1540 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001541 }
1542
Bryan Wue6b043d2010-03-31 02:10:44 +00001543 if (status_change)
1544 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
Bryan Wue6b043d2010-03-31 02:10:44 +00001547static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Bryan Wue6b043d2010-03-31 02:10:44 +00001549 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +00001550 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +00001551
1552 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +00001553 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +00001554
1555 /* start a read op */
1556 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
1557 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
1558 FEC_MMFR_TA, 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 read timeout\n");
Baruch Siach97b72e42010-07-11 21:12:51 +00001566 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +00001567 }
1568
1569 /* return value */
1570 return FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
1571}
1572
1573static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
1574 u16 value)
1575{
1576 struct fec_enet_private *fep = bus->priv;
Baruch Siach97b72e42010-07-11 21:12:51 +00001577 unsigned long time_left;
Bryan Wue6b043d2010-03-31 02:10:44 +00001578
1579 fep->mii_timeout = 0;
Baruch Siach97b72e42010-07-11 21:12:51 +00001580 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +00001581
Shawn Guo862f0982011-01-05 21:13:09 +00001582 /* start a write op */
1583 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +00001584 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
1585 FEC_MMFR_TA | FEC_MMFR_DATA(value),
1586 fep->hwp + FEC_MII_DATA);
1587
1588 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +00001589 time_left = wait_for_completion_timeout(&fep->mdio_done,
1590 usecs_to_jiffies(FEC_MII_TIMEOUT));
1591 if (time_left == 0) {
1592 fep->mii_timeout = 1;
Joe Perches31b77202013-04-13 19:03:17 +00001593 netdev_err(fep->netdev, "MDIO write timeout\n");
Baruch Siach97b72e42010-07-11 21:12:51 +00001594 return -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +00001595 }
1596
1597 return 0;
1598}
1599
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001600static int fec_enet_clk_enable(struct net_device *ndev, bool enable)
1601{
1602 struct fec_enet_private *fep = netdev_priv(ndev);
1603 int ret;
1604
1605 if (enable) {
1606 ret = clk_prepare_enable(fep->clk_ahb);
1607 if (ret)
1608 return ret;
1609 ret = clk_prepare_enable(fep->clk_ipg);
1610 if (ret)
1611 goto failed_clk_ipg;
1612 if (fep->clk_enet_out) {
1613 ret = clk_prepare_enable(fep->clk_enet_out);
1614 if (ret)
1615 goto failed_clk_enet_out;
1616 }
1617 if (fep->clk_ptp) {
1618 ret = clk_prepare_enable(fep->clk_ptp);
1619 if (ret)
1620 goto failed_clk_ptp;
1621 }
1622 } else {
1623 clk_disable_unprepare(fep->clk_ahb);
1624 clk_disable_unprepare(fep->clk_ipg);
1625 if (fep->clk_enet_out)
1626 clk_disable_unprepare(fep->clk_enet_out);
1627 if (fep->clk_ptp)
1628 clk_disable_unprepare(fep->clk_ptp);
1629 }
1630
1631 return 0;
1632failed_clk_ptp:
1633 if (fep->clk_enet_out)
1634 clk_disable_unprepare(fep->clk_enet_out);
1635failed_clk_enet_out:
1636 clk_disable_unprepare(fep->clk_ipg);
1637failed_clk_ipg:
1638 clk_disable_unprepare(fep->clk_ahb);
1639
1640 return ret;
1641}
1642
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001643static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +00001644{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001645 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo230dec62011-09-23 02:12:48 +00001646 const struct platform_device_id *id_entry =
1647 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001648 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001649 char mdio_bus_id[MII_BUS_ID_SIZE];
1650 char phy_name[MII_BUS_ID_SIZE + 3];
1651 int phy_id;
Shawn Guo43af9402011-12-05 05:01:15 +00001652 int dev_id = fep->dev_id;
Bryan Wue6b043d2010-03-31 02:10:44 +00001653
Bryan Wu418bd0d2010-05-28 03:40:39 -07001654 fep->phy_dev = NULL;
1655
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001656 /* check for attached phy */
1657 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
1658 if ((fep->mii_bus->phy_mask & (1 << phy_id)))
1659 continue;
1660 if (fep->mii_bus->phy_map[phy_id] == NULL)
1661 continue;
1662 if (fep->mii_bus->phy_map[phy_id]->phy_id == 0)
1663 continue;
Shawn Guob5680e02011-01-05 21:13:13 +00001664 if (dev_id--)
1665 continue;
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001666 strncpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
1667 break;
Bryan Wue6b043d2010-03-31 02:10:44 +00001668 }
1669
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001670 if (phy_id >= PHY_MAX_ADDR) {
Joe Perches31b77202013-04-13 19:03:17 +00001671 netdev_info(ndev, "no PHY, assuming direct connection to switch\n");
Florian Fainelliea51ade92012-02-13 01:23:22 +00001672 strncpy(mdio_bus_id, "fixed-0", MII_BUS_ID_SIZE);
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001673 phy_id = 0;
1674 }
1675
Richard Zhaoa7ed07d2012-01-29 22:08:12 +00001676 snprintf(phy_name, sizeof(phy_name), PHY_ID_FMT, mdio_bus_id, phy_id);
Florian Fainellif9a8f832013-01-14 00:52:52 +00001677 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link,
Shawn Guo230dec62011-09-23 02:12:48 +00001678 fep->phy_interface);
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001679 if (IS_ERR(phy_dev)) {
Joe Perches31b77202013-04-13 19:03:17 +00001680 netdev_err(ndev, "could not attach to PHY\n");
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001681 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001682 }
1683
1684 /* mask with MAC supported features */
Frank Libaa70a52013-01-16 16:55:58 +00001685 if (id_entry->driver_data & FEC_QUIRK_HAS_GBIT) {
Shawn Guo230dec62011-09-23 02:12:48 +00001686 phy_dev->supported &= PHY_GBIT_FEATURES;
Russell Kingb44592f2014-07-08 00:22:34 +01001687 phy_dev->supported &= ~SUPPORTED_1000baseT_Half;
Guenter Roeckd1391932013-06-18 10:04:59 -07001688#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +00001689 phy_dev->supported |= SUPPORTED_Pause;
Guenter Roeckd1391932013-06-18 10:04:59 -07001690#endif
Frank Libaa70a52013-01-16 16:55:58 +00001691 }
Shawn Guo230dec62011-09-23 02:12:48 +00001692 else
1693 phy_dev->supported &= PHY_BASIC_FEATURES;
1694
Bryan Wue6b043d2010-03-31 02:10:44 +00001695 phy_dev->advertising = phy_dev->supported;
1696
1697 fep->phy_dev = phy_dev;
1698 fep->link = 0;
1699 fep->full_duplex = 0;
1700
Joe Perches31b77202013-04-13 19:03:17 +00001701 netdev_info(ndev, "Freescale FEC PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
1702 fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
1703 fep->phy_dev->irq);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001704
Bryan Wue6b043d2010-03-31 02:10:44 +00001705 return 0;
1706}
1707
1708static int fec_enet_mii_init(struct platform_device *pdev)
1709{
Shawn Guob5680e02011-01-05 21:13:13 +00001710 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001711 struct net_device *ndev = platform_get_drvdata(pdev);
1712 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guob5680e02011-01-05 21:13:13 +00001713 const struct platform_device_id *id_entry =
1714 platform_get_device_id(fep->pdev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001715 int err = -ENXIO, i;
1716
Shawn Guob5680e02011-01-05 21:13:13 +00001717 /*
1718 * The dual fec interfaces are not equivalent with enet-mac.
1719 * Here are the differences:
1720 *
1721 * - fec0 supports MII & RMII modes while fec1 only supports RMII
1722 * - fec0 acts as the 1588 time master while fec1 is slave
1723 * - external phys can only be configured by fec0
1724 *
1725 * That is to say fec1 can not work independently. It only works
1726 * when fec0 is working. The reason behind this design is that the
1727 * second interface is added primarily for Switch mode.
1728 *
1729 * Because of the last point above, both phys are attached on fec0
1730 * mdio interface in board design, and need to be configured by
1731 * fec0 mii_bus.
1732 */
Shawn Guo43af9402011-12-05 05:01:15 +00001733 if ((id_entry->driver_data & FEC_QUIRK_ENET_MAC) && fep->dev_id > 0) {
Shawn Guob5680e02011-01-05 21:13:13 +00001734 /* fec1 uses fec0 mii_bus */
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001735 if (mii_cnt && fec0_mii_bus) {
1736 fep->mii_bus = fec0_mii_bus;
1737 mii_cnt++;
1738 return 0;
1739 }
1740 return -ENOENT;
Shawn Guob5680e02011-01-05 21:13:13 +00001741 }
1742
Bryan Wue6b043d2010-03-31 02:10:44 +00001743 fep->mii_timeout = 0;
1744
1745 /*
1746 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
Shawn Guo230dec62011-09-23 02:12:48 +00001747 *
1748 * The formula for FEC MDC is 'ref_freq / (MII_SPEED x 2)' while
1749 * for ENET-MAC is 'ref_freq / ((MII_SPEED + 1) x 2)'. The i.MX28
1750 * Reference Manual has an error on this, and gets fixed on i.MX6Q
1751 * document.
Bryan Wue6b043d2010-03-31 02:10:44 +00001752 */
Nimrod Andy98a6eeb2014-05-20 13:23:09 +08001753 fep->phy_speed = DIV_ROUND_UP(clk_get_rate(fep->clk_ipg), 5000000);
Shawn Guo230dec62011-09-23 02:12:48 +00001754 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1755 fep->phy_speed--;
1756 fep->phy_speed <<= 1;
Bryan Wue6b043d2010-03-31 02:10:44 +00001757 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
1758
1759 fep->mii_bus = mdiobus_alloc();
1760 if (fep->mii_bus == NULL) {
1761 err = -ENOMEM;
1762 goto err_out;
1763 }
1764
1765 fep->mii_bus->name = "fec_enet_mii_bus";
1766 fep->mii_bus->read = fec_enet_mdio_read;
1767 fep->mii_bus->write = fec_enet_mdio_write;
Florian Fainelli391420f2012-01-09 23:59:13 +00001768 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
1769 pdev->name, fep->dev_id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +00001770 fep->mii_bus->priv = fep;
1771 fep->mii_bus->parent = &pdev->dev;
1772
1773 fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
1774 if (!fep->mii_bus->irq) {
1775 err = -ENOMEM;
1776 goto err_out_free_mdiobus;
1777 }
1778
1779 for (i = 0; i < PHY_MAX_ADDR; i++)
1780 fep->mii_bus->irq[i] = PHY_POLL;
1781
Bryan Wue6b043d2010-03-31 02:10:44 +00001782 if (mdiobus_register(fep->mii_bus))
1783 goto err_out_free_mdio_irq;
1784
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001785 mii_cnt++;
1786
Shawn Guob5680e02011-01-05 21:13:13 +00001787 /* save fec0 mii_bus */
1788 if (id_entry->driver_data & FEC_QUIRK_ENET_MAC)
1789 fec0_mii_bus = fep->mii_bus;
1790
Bryan Wue6b043d2010-03-31 02:10:44 +00001791 return 0;
1792
Bryan Wue6b043d2010-03-31 02:10:44 +00001793err_out_free_mdio_irq:
1794 kfree(fep->mii_bus->irq);
1795err_out_free_mdiobus:
1796 mdiobus_free(fep->mii_bus);
1797err_out:
1798 return err;
1799}
1800
1801static void fec_enet_mii_remove(struct fec_enet_private *fep)
1802{
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001803 if (--mii_cnt == 0) {
1804 mdiobus_unregister(fep->mii_bus);
1805 kfree(fep->mii_bus->irq);
1806 mdiobus_free(fep->mii_bus);
1807 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001808}
1809
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001810static int fec_enet_get_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001811 struct ethtool_cmd *cmd)
1812{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001813 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001814 struct phy_device *phydev = fep->phy_dev;
1815
1816 if (!phydev)
1817 return -ENODEV;
1818
1819 return phy_ethtool_gset(phydev, cmd);
1820}
1821
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001822static int fec_enet_set_settings(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001823 struct ethtool_cmd *cmd)
1824{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001825 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001826 struct phy_device *phydev = fep->phy_dev;
1827
1828 if (!phydev)
1829 return -ENODEV;
1830
1831 return phy_ethtool_sset(phydev, cmd);
1832}
1833
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001834static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00001835 struct ethtool_drvinfo *info)
1836{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001837 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Jiri Pirko7826d432013-01-06 00:44:26 +00001839 strlcpy(info->driver, fep->pdev->dev.driver->name,
1840 sizeof(info->driver));
1841 strlcpy(info->version, "Revision: 1.0", sizeof(info->version));
1842 strlcpy(info->bus_info, dev_name(&ndev->dev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843}
Bryan Wue6b043d2010-03-31 02:10:44 +00001844
Frank Li5ebae4892013-01-06 16:25:07 +00001845static int fec_enet_get_ts_info(struct net_device *ndev,
1846 struct ethtool_ts_info *info)
1847{
1848 struct fec_enet_private *fep = netdev_priv(ndev);
1849
1850 if (fep->bufdesc_ex) {
1851
1852 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
1853 SOF_TIMESTAMPING_RX_SOFTWARE |
1854 SOF_TIMESTAMPING_SOFTWARE |
1855 SOF_TIMESTAMPING_TX_HARDWARE |
1856 SOF_TIMESTAMPING_RX_HARDWARE |
1857 SOF_TIMESTAMPING_RAW_HARDWARE;
1858 if (fep->ptp_clock)
1859 info->phc_index = ptp_clock_index(fep->ptp_clock);
1860 else
1861 info->phc_index = -1;
1862
1863 info->tx_types = (1 << HWTSTAMP_TX_OFF) |
1864 (1 << HWTSTAMP_TX_ON);
1865
1866 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
1867 (1 << HWTSTAMP_FILTER_ALL);
1868 return 0;
1869 } else {
1870 return ethtool_op_get_ts_info(ndev, info);
1871 }
1872}
1873
Guenter Roeckd1391932013-06-18 10:04:59 -07001874#if !defined(CONFIG_M5272)
1875
Frank Libaa70a52013-01-16 16:55:58 +00001876static void fec_enet_get_pauseparam(struct net_device *ndev,
1877 struct ethtool_pauseparam *pause)
1878{
1879 struct fec_enet_private *fep = netdev_priv(ndev);
1880
1881 pause->autoneg = (fep->pause_flag & FEC_PAUSE_FLAG_AUTONEG) != 0;
1882 pause->tx_pause = (fep->pause_flag & FEC_PAUSE_FLAG_ENABLE) != 0;
1883 pause->rx_pause = pause->tx_pause;
1884}
1885
1886static int fec_enet_set_pauseparam(struct net_device *ndev,
1887 struct ethtool_pauseparam *pause)
1888{
1889 struct fec_enet_private *fep = netdev_priv(ndev);
1890
Russell King0b146ca2014-07-08 00:22:59 +01001891 if (!fep->phy_dev)
1892 return -ENODEV;
1893
Frank Libaa70a52013-01-16 16:55:58 +00001894 if (pause->tx_pause != pause->rx_pause) {
1895 netdev_info(ndev,
1896 "hardware only support enable/disable both tx and rx");
1897 return -EINVAL;
1898 }
1899
1900 fep->pause_flag = 0;
1901
1902 /* tx pause must be same as rx pause */
1903 fep->pause_flag |= pause->rx_pause ? FEC_PAUSE_FLAG_ENABLE : 0;
1904 fep->pause_flag |= pause->autoneg ? FEC_PAUSE_FLAG_AUTONEG : 0;
1905
1906 if (pause->rx_pause || pause->autoneg) {
1907 fep->phy_dev->supported |= ADVERTISED_Pause;
1908 fep->phy_dev->advertising |= ADVERTISED_Pause;
1909 } else {
1910 fep->phy_dev->supported &= ~ADVERTISED_Pause;
1911 fep->phy_dev->advertising &= ~ADVERTISED_Pause;
1912 }
1913
1914 if (pause->autoneg) {
1915 if (netif_running(ndev))
1916 fec_stop(ndev);
1917 phy_start_aneg(fep->phy_dev);
1918 }
Russell Kingdbc64a82014-07-08 12:40:12 +01001919 if (netif_running(ndev)) {
Russell Kingdbc64a82014-07-08 12:40:12 +01001920 napi_disable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001921 netif_tx_lock_bh(ndev);
Russell Kingef833372014-07-08 12:40:43 +01001922 fec_restart(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001923 netif_wake_queue(ndev);
Russell King6af42d42014-07-08 12:40:18 +01001924 netif_tx_unlock_bh(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001925 napi_enable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001926 }
Frank Libaa70a52013-01-16 16:55:58 +00001927
1928 return 0;
1929}
1930
Chris Healy38ae92d2013-06-25 23:18:52 -07001931static const struct fec_stat {
1932 char name[ETH_GSTRING_LEN];
1933 u16 offset;
1934} fec_stats[] = {
1935 /* RMON TX */
1936 { "tx_dropped", RMON_T_DROP },
1937 { "tx_packets", RMON_T_PACKETS },
1938 { "tx_broadcast", RMON_T_BC_PKT },
1939 { "tx_multicast", RMON_T_MC_PKT },
1940 { "tx_crc_errors", RMON_T_CRC_ALIGN },
1941 { "tx_undersize", RMON_T_UNDERSIZE },
1942 { "tx_oversize", RMON_T_OVERSIZE },
1943 { "tx_fragment", RMON_T_FRAG },
1944 { "tx_jabber", RMON_T_JAB },
1945 { "tx_collision", RMON_T_COL },
1946 { "tx_64byte", RMON_T_P64 },
1947 { "tx_65to127byte", RMON_T_P65TO127 },
1948 { "tx_128to255byte", RMON_T_P128TO255 },
1949 { "tx_256to511byte", RMON_T_P256TO511 },
1950 { "tx_512to1023byte", RMON_T_P512TO1023 },
1951 { "tx_1024to2047byte", RMON_T_P1024TO2047 },
1952 { "tx_GTE2048byte", RMON_T_P_GTE2048 },
1953 { "tx_octets", RMON_T_OCTETS },
1954
1955 /* IEEE TX */
1956 { "IEEE_tx_drop", IEEE_T_DROP },
1957 { "IEEE_tx_frame_ok", IEEE_T_FRAME_OK },
1958 { "IEEE_tx_1col", IEEE_T_1COL },
1959 { "IEEE_tx_mcol", IEEE_T_MCOL },
1960 { "IEEE_tx_def", IEEE_T_DEF },
1961 { "IEEE_tx_lcol", IEEE_T_LCOL },
1962 { "IEEE_tx_excol", IEEE_T_EXCOL },
1963 { "IEEE_tx_macerr", IEEE_T_MACERR },
1964 { "IEEE_tx_cserr", IEEE_T_CSERR },
1965 { "IEEE_tx_sqe", IEEE_T_SQE },
1966 { "IEEE_tx_fdxfc", IEEE_T_FDXFC },
1967 { "IEEE_tx_octets_ok", IEEE_T_OCTETS_OK },
1968
1969 /* RMON RX */
1970 { "rx_packets", RMON_R_PACKETS },
1971 { "rx_broadcast", RMON_R_BC_PKT },
1972 { "rx_multicast", RMON_R_MC_PKT },
1973 { "rx_crc_errors", RMON_R_CRC_ALIGN },
1974 { "rx_undersize", RMON_R_UNDERSIZE },
1975 { "rx_oversize", RMON_R_OVERSIZE },
1976 { "rx_fragment", RMON_R_FRAG },
1977 { "rx_jabber", RMON_R_JAB },
1978 { "rx_64byte", RMON_R_P64 },
1979 { "rx_65to127byte", RMON_R_P65TO127 },
1980 { "rx_128to255byte", RMON_R_P128TO255 },
1981 { "rx_256to511byte", RMON_R_P256TO511 },
1982 { "rx_512to1023byte", RMON_R_P512TO1023 },
1983 { "rx_1024to2047byte", RMON_R_P1024TO2047 },
1984 { "rx_GTE2048byte", RMON_R_P_GTE2048 },
1985 { "rx_octets", RMON_R_OCTETS },
1986
1987 /* IEEE RX */
1988 { "IEEE_rx_drop", IEEE_R_DROP },
1989 { "IEEE_rx_frame_ok", IEEE_R_FRAME_OK },
1990 { "IEEE_rx_crc", IEEE_R_CRC },
1991 { "IEEE_rx_align", IEEE_R_ALIGN },
1992 { "IEEE_rx_macerr", IEEE_R_MACERR },
1993 { "IEEE_rx_fdxfc", IEEE_R_FDXFC },
1994 { "IEEE_rx_octets_ok", IEEE_R_OCTETS_OK },
1995};
1996
1997static void fec_enet_get_ethtool_stats(struct net_device *dev,
1998 struct ethtool_stats *stats, u64 *data)
1999{
2000 struct fec_enet_private *fep = netdev_priv(dev);
2001 int i;
2002
2003 for (i = 0; i < ARRAY_SIZE(fec_stats); i++)
2004 data[i] = readl(fep->hwp + fec_stats[i].offset);
2005}
2006
2007static void fec_enet_get_strings(struct net_device *netdev,
2008 u32 stringset, u8 *data)
2009{
2010 int i;
2011 switch (stringset) {
2012 case ETH_SS_STATS:
2013 for (i = 0; i < ARRAY_SIZE(fec_stats); i++)
2014 memcpy(data + i * ETH_GSTRING_LEN,
2015 fec_stats[i].name, ETH_GSTRING_LEN);
2016 break;
2017 }
2018}
2019
2020static int fec_enet_get_sset_count(struct net_device *dev, int sset)
2021{
2022 switch (sset) {
2023 case ETH_SS_STATS:
2024 return ARRAY_SIZE(fec_stats);
2025 default:
2026 return -EOPNOTSUPP;
2027 }
2028}
Guenter Roeckd1391932013-06-18 10:04:59 -07002029#endif /* !defined(CONFIG_M5272) */
Chris Healy38ae92d2013-06-25 23:18:52 -07002030
Chris Healy32bc9b42013-06-17 07:25:06 -07002031static int fec_enet_nway_reset(struct net_device *dev)
2032{
2033 struct fec_enet_private *fep = netdev_priv(dev);
2034 struct phy_device *phydev = fep->phy_dev;
2035
2036 if (!phydev)
2037 return -ENODEV;
2038
2039 return genphy_restart_aneg(phydev);
2040}
2041
stephen hemminger9b07be42012-01-04 12:59:49 +00002042static const struct ethtool_ops fec_enet_ethtool_ops = {
Guenter Roeckd1391932013-06-18 10:04:59 -07002043#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +00002044 .get_pauseparam = fec_enet_get_pauseparam,
2045 .set_pauseparam = fec_enet_set_pauseparam,
Guenter Roeckd1391932013-06-18 10:04:59 -07002046#endif
Bryan Wue6b043d2010-03-31 02:10:44 +00002047 .get_settings = fec_enet_get_settings,
2048 .set_settings = fec_enet_set_settings,
2049 .get_drvinfo = fec_enet_get_drvinfo,
2050 .get_link = ethtool_op_get_link,
Frank Li5ebae4892013-01-06 16:25:07 +00002051 .get_ts_info = fec_enet_get_ts_info,
Chris Healy32bc9b42013-06-17 07:25:06 -07002052 .nway_reset = fec_enet_nway_reset,
Chris Healy38ae92d2013-06-25 23:18:52 -07002053#ifndef CONFIG_M5272
2054 .get_ethtool_stats = fec_enet_get_ethtool_stats,
2055 .get_strings = fec_enet_get_strings,
2056 .get_sset_count = fec_enet_get_sset_count,
2057#endif
Bryan Wue6b043d2010-03-31 02:10:44 +00002058};
2059
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002060static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00002061{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002062 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00002063 struct phy_device *phydev = fep->phy_dev;
2064
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002065 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00002066 return -EINVAL;
2067
2068 if (!phydev)
2069 return -ENODEV;
2070
Ben Hutchings1d5244d2013-11-18 23:02:44 +00002071 if (fep->bufdesc_ex) {
2072 if (cmd == SIOCSHWTSTAMP)
2073 return fec_ptp_set(ndev, rq);
2074 if (cmd == SIOCGHWTSTAMP)
2075 return fec_ptp_get(ndev, rq);
2076 }
Frank Liff43da82013-01-03 16:04:23 +00002077
Richard Cochran28b04112010-07-17 08:48:55 +00002078 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00002079}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002081static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002082{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002083 struct fec_enet_private *fep = netdev_priv(ndev);
Fabio Estevamda2191e2013-03-20 12:31:07 -03002084 unsigned int i;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002085 struct sk_buff *skb;
2086 struct bufdesc *bdp;
2087
2088 bdp = fep->rx_bd_base;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002089 for (i = 0; i < fep->rx_ring_size; i++) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002090 skb = fep->rx_skbuff[i];
Russell King730ee362014-07-08 00:23:14 +01002091 fep->rx_skbuff[i] = NULL;
2092 if (skb) {
Uwe Kleine-Königd1ab1f52011-01-20 09:26:38 +01002093 dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002094 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002095 dev_kfree_skb(skb);
Russell King730ee362014-07-08 00:23:14 +01002096 }
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002097 bdp = fec_enet_get_nextdesc(bdp, fep);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002098 }
2099
2100 bdp = fep->tx_bd_base;
Russell King8b7c9ef2014-07-08 00:23:25 +01002101 for (i = 0; i < fep->tx_ring_size; i++) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002102 kfree(fep->tx_bounce[i]);
Russell King8b7c9ef2014-07-08 00:23:25 +01002103 fep->tx_bounce[i] = NULL;
2104 skb = fep->tx_skbuff[i];
2105 fep->tx_skbuff[i] = NULL;
2106 dev_kfree_skb(skb);
2107 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002108}
2109
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002110static int fec_enet_alloc_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002111{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002112 struct fec_enet_private *fep = netdev_priv(ndev);
Fabio Estevamda2191e2013-03-20 12:31:07 -03002113 unsigned int i;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002114 struct sk_buff *skb;
2115 struct bufdesc *bdp;
2116
2117 bdp = fep->rx_bd_base;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002118 for (i = 0; i < fep->rx_ring_size; i++) {
Russell King730ee362014-07-08 00:23:14 +01002119 dma_addr_t addr;
2120
Fabio Estevamb72061a2012-02-07 08:27:31 +00002121 skb = netdev_alloc_skb(ndev, FEC_ENET_RX_FRSIZE);
Russell Kingffdce2c2014-07-08 00:23:30 +01002122 if (!skb)
2123 goto err_alloc;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002124
Russell King730ee362014-07-08 00:23:14 +01002125 addr = dma_map_single(&fep->pdev->dev, skb->data,
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002126 FEC_ENET_RX_FRSIZE, DMA_FROM_DEVICE);
Russell King730ee362014-07-08 00:23:14 +01002127 if (dma_mapping_error(&fep->pdev->dev, addr)) {
2128 dev_kfree_skb(skb);
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08002129 if (net_ratelimit())
2130 netdev_err(ndev, "Rx DMA memory map failed\n");
Russell Kingffdce2c2014-07-08 00:23:30 +01002131 goto err_alloc;
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08002132 }
Russell King730ee362014-07-08 00:23:14 +01002133
2134 fep->rx_skbuff[i] = skb;
2135 bdp->cbd_bufaddr = addr;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002136 bdp->cbd_sc = BD_ENET_RX_EMPTY;
Frank Liff43da82013-01-03 16:04:23 +00002137
2138 if (fep->bufdesc_ex) {
2139 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
2140 ebdp->cbd_esc = BD_ENET_RX_INT;
2141 }
2142
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002143 bdp = fec_enet_get_nextdesc(bdp, fep);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002144 }
2145
2146 /* Set the last buffer to wrap. */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002147 bdp = fec_enet_get_prevdesc(bdp, fep);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002148 bdp->cbd_sc |= BD_SC_WRAP;
2149
2150 bdp = fep->tx_bd_base;
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002151 for (i = 0; i < fep->tx_ring_size; i++) {
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002152 fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
Russell Kingffdce2c2014-07-08 00:23:30 +01002153 if (!fep->tx_bounce[i])
2154 goto err_alloc;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002155
2156 bdp->cbd_sc = 0;
2157 bdp->cbd_bufaddr = 0;
Frank Li6605b732012-10-30 18:25:31 +00002158
Frank Liff43da82013-01-03 16:04:23 +00002159 if (fep->bufdesc_ex) {
2160 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
Jim Baxter96d22222013-03-26 05:25:07 +00002161 ebdp->cbd_esc = BD_ENET_TX_INT;
Frank Liff43da82013-01-03 16:04:23 +00002162 }
2163
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002164 bdp = fec_enet_get_nextdesc(bdp, fep);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002165 }
2166
2167 /* Set the last buffer to wrap. */
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002168 bdp = fec_enet_get_prevdesc(bdp, fep);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002169 bdp->cbd_sc |= BD_SC_WRAP;
2170
2171 return 0;
Russell Kingffdce2c2014-07-08 00:23:30 +01002172
2173 err_alloc:
2174 fec_enet_free_buffers(ndev);
2175 return -ENOMEM;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002176}
2177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002179fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002181 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002182 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002184 pinctrl_pm_select_default_state(&fep->pdev->dev);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002185 ret = fec_enet_clk_enable(ndev, true);
2186 if (ret)
2187 return ret;
2188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 /* I should reset the ring buffers here, but I don't yet know
2190 * a simple way to do that.
2191 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002193 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002194 if (ret)
2195 return ret;
2196
Bryan Wu418bd0d2010-05-28 03:40:39 -07002197 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002198 ret = fec_enet_mii_probe(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07002199 if (ret) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002200 fec_enet_free_buffers(ndev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07002201 return ret;
2202 }
Russell Kingce5eaf02014-02-18 12:55:42 +00002203
Russell Kingef833372014-07-08 12:40:43 +01002204 fec_restart(ndev);
Russell Kingce5eaf02014-02-18 12:55:42 +00002205 napi_enable(&fep->napi);
Bryan Wue6b043d2010-03-31 02:10:44 +00002206 phy_start(fep->phy_dev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002207 netif_start_queue(ndev);
Sascha Hauer22f6b862009-04-15 01:32:18 +00002208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209}
2210
2211static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002212fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002214 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Russell Kingd76cfae2014-07-08 00:23:04 +01002216 phy_stop(fep->phy_dev);
2217
Russell King31a6de32014-07-08 12:40:23 +01002218 if (netif_device_present(ndev)) {
2219 napi_disable(&fep->napi);
2220 netif_tx_disable(ndev);
Russell King8bbbd3c2014-07-08 12:40:02 +01002221 fec_stop(ndev);
Russell King31a6de32014-07-08 12:40:23 +01002222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Russell King635cf172014-07-08 00:22:54 +01002224 phy_disconnect(fep->phy_dev);
Russell King0b146ca2014-07-08 00:22:59 +01002225 fep->phy_dev = NULL;
Bryan Wu418bd0d2010-05-28 03:40:39 -07002226
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002227 fec_enet_clk_enable(ndev, false);
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002228 pinctrl_pm_select_sleep_state(&fep->pdev->dev);
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01002229 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 return 0;
2232}
2233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234/* Set or clear the multicast filter for this adaptor.
2235 * Skeleton taken from sunlance driver.
2236 * The CPM Ethernet implementation allows Multicast as well as individual
2237 * MAC address filtering. Some of the drivers check to make sure it is
2238 * a group multicast address, and discard those that are not. I guess I
2239 * will do the same for now, but just remove the test if you want
2240 * individual filtering as well (do the upper net layers want or support
2241 * this kind of feature?).
2242 */
2243
2244#define HASH_BITS 6 /* #bits in hash */
2245#define CRC32_POLY 0xEDB88320
2246
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002247static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002249 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00002250 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00002251 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 unsigned char hash;
2253
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002254 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00002255 tmp = readl(fep->hwp + FEC_R_CNTRL);
2256 tmp |= 0x8;
2257 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00002258 return;
2259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Sascha Hauer4e831832009-04-15 01:32:19 +00002261 tmp = readl(fep->hwp + FEC_R_CNTRL);
2262 tmp &= ~0x8;
2263 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002264
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002265 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00002266 /* Catch all multicast addresses, so set the
2267 * filter to all 1's
2268 */
2269 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
2270 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Sascha Hauer4e831832009-04-15 01:32:19 +00002272 return;
2273 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002274
Sascha Hauer4e831832009-04-15 01:32:19 +00002275 /* Clear filter and add the addresses in hash register
2276 */
2277 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
2278 writel(0, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002280 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00002281 /* calculate crc32 value of mac address */
2282 crc = 0xffffffff;
2283
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002284 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002285 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00002286 for (bit = 0; bit < 8; bit++, data >>= 1) {
2287 crc = (crc >> 1) ^
2288 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 }
2290 }
Sascha Hauer4e831832009-04-15 01:32:19 +00002291
2292 /* only upper 6 bits (HASH_BITS) are used
2293 * which point to specific bit in he hash registers
2294 */
2295 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
2296
2297 if (hash > 31) {
2298 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
2299 tmp |= 1 << (hash - 32);
2300 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
2301 } else {
2302 tmp = readl(fep->hwp + FEC_GRP_HASH_TABLE_LOW);
2303 tmp |= 1 << hash;
2304 writel(tmp, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
2305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307}
2308
Sascha Hauer22f6b862009-04-15 01:32:18 +00002309/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00002310static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002311fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002313 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00002314 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Lucas Stach44934fa2014-03-30 21:32:08 +02002316 if (addr) {
2317 if (!is_valid_ether_addr(addr->sa_data))
2318 return -EADDRNOTAVAIL;
2319 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
2320 }
Sascha Hauer009fda82009-04-15 01:32:23 +00002321
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002322 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
2323 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00002324 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002325 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07002326 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00002327 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328}
2329
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00002330#ifdef CONFIG_NET_POLL_CONTROLLER
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002331/**
2332 * fec_poll_controller - FEC Poll controller function
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00002333 * @dev: The FEC network adapter
2334 *
2335 * Polled functionality used by netconsole and others in non interrupt mode
2336 *
2337 */
Wei Yongjun47a52472013-03-20 05:06:11 +00002338static void fec_poll_controller(struct net_device *dev)
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00002339{
2340 int i;
2341 struct fec_enet_private *fep = netdev_priv(dev);
2342
2343 for (i = 0; i < FEC_IRQ_NUM; i++) {
2344 if (fep->irq[i] > 0) {
2345 disable_irq(fep->irq[i]);
2346 fec_enet_interrupt(fep->irq[i], dev);
2347 enable_irq(fep->irq[i]);
2348 }
2349 }
2350}
2351#endif
2352
Russell King8506fa12014-07-08 12:40:33 +01002353#define FEATURES_NEED_QUIESCE NETIF_F_RXCSUM
2354
Jim Baxter4c09eed2013-04-19 08:10:49 +00002355static int fec_set_features(struct net_device *netdev,
2356 netdev_features_t features)
2357{
2358 struct fec_enet_private *fep = netdev_priv(netdev);
2359 netdev_features_t changed = features ^ netdev->features;
2360
Russell King8506fa12014-07-08 12:40:33 +01002361 /* Quiesce the device if necessary */
2362 if (netif_running(netdev) && changed & FEATURES_NEED_QUIESCE) {
2363 napi_disable(&fep->napi);
2364 netif_tx_lock_bh(netdev);
2365 fec_stop(netdev);
2366 }
2367
Jim Baxter4c09eed2013-04-19 08:10:49 +00002368 netdev->features = features;
2369
2370 /* Receive checksum has been changed */
2371 if (changed & NETIF_F_RXCSUM) {
2372 if (features & NETIF_F_RXCSUM)
2373 fep->csum_flags |= FLAG_RX_CSUM_ENABLED;
2374 else
2375 fep->csum_flags &= ~FLAG_RX_CSUM_ENABLED;
Russell King8506fa12014-07-08 12:40:33 +01002376 }
Jim Baxter4c09eed2013-04-19 08:10:49 +00002377
Russell King8506fa12014-07-08 12:40:33 +01002378 /* Resume the device after updates */
2379 if (netif_running(netdev) && changed & FEATURES_NEED_QUIESCE) {
Russell Kingef833372014-07-08 12:40:43 +01002380 fec_restart(netdev);
Russell King8506fa12014-07-08 12:40:33 +01002381 netif_wake_queue(netdev);
2382 netif_tx_unlock_bh(netdev);
2383 napi_enable(&fep->napi);
Jim Baxter4c09eed2013-04-19 08:10:49 +00002384 }
2385
2386 return 0;
2387}
2388
Sascha Hauer009fda82009-04-15 01:32:23 +00002389static const struct net_device_ops fec_netdev_ops = {
2390 .ndo_open = fec_enet_open,
2391 .ndo_stop = fec_enet_close,
2392 .ndo_start_xmit = fec_enet_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002393 .ndo_set_rx_mode = set_multicast_list,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00002394 .ndo_change_mtu = eth_change_mtu,
Sascha Hauer009fda82009-04-15 01:32:23 +00002395 .ndo_validate_addr = eth_validate_addr,
2396 .ndo_tx_timeout = fec_timeout,
2397 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01002398 .ndo_do_ioctl = fec_enet_ioctl,
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00002399#ifdef CONFIG_NET_POLL_CONTROLLER
2400 .ndo_poll_controller = fec_poll_controller,
2401#endif
Jim Baxter4c09eed2013-04-19 08:10:49 +00002402 .ndo_set_features = fec_set_features,
Sascha Hauer009fda82009-04-15 01:32:23 +00002403};
2404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 /*
2406 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00002407 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002409static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002411 struct fec_enet_private *fep = netdev_priv(ndev);
Shawn Guo48496252013-05-08 21:08:22 +00002412 const struct platform_device_id *id_entry =
2413 platform_get_device_id(fep->pdev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002414 struct bufdesc *cbd_base;
Nimrod Andy55d02182014-06-12 08:16:21 +08002415 int bd_size;
2416
2417 /* init the tx & rx ring size */
2418 fep->tx_ring_size = TX_RING_SIZE;
2419 fep->rx_ring_size = RX_RING_SIZE;
2420
Nimrod Andy79f33912014-06-12 08:16:23 +08002421 fep->tx_stop_threshold = FEC_MAX_SKB_DESCS;
2422 fep->tx_wake_threshold = (fep->tx_ring_size - fep->tx_stop_threshold) / 2;
2423
Nimrod Andy55d02182014-06-12 08:16:21 +08002424 if (fep->bufdesc_ex)
2425 fep->bufdesc_size = sizeof(struct bufdesc_ex);
2426 else
2427 fep->bufdesc_size = sizeof(struct bufdesc);
2428 bd_size = (fep->tx_ring_size + fep->rx_ring_size) *
2429 fep->bufdesc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00002431 /* Allocate memory for buffer descriptors. */
Nimrod Andy55d02182014-06-12 08:16:21 +08002432 cbd_base = dma_alloc_coherent(NULL, bd_size, &fep->bd_dma,
Joe Perchesd0320f72013-03-14 13:07:21 +00002433 GFP_KERNEL);
2434 if (!cbd_base)
Greg Ungerer562d2f82005-11-07 14:09:50 +10002435 return -ENOMEM;
Greg Ungerer562d2f82005-11-07 14:09:50 +10002436
Nimrod Andy79f33912014-06-12 08:16:23 +08002437 fep->tso_hdrs = dma_alloc_coherent(NULL, fep->tx_ring_size * TSO_HEADER_SIZE,
2438 &fep->tso_hdrs_dma, GFP_KERNEL);
2439 if (!fep->tso_hdrs) {
2440 dma_free_coherent(NULL, bd_size, cbd_base, fep->bd_dma);
2441 return -ENOMEM;
2442 }
2443
Frank Li14109a52013-03-26 16:12:03 +00002444 memset(cbd_base, 0, PAGE_SIZE);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10002445
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002446 fep->netdev = ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Shawn Guo49da97d2011-01-05 21:13:11 +00002448 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002449 fec_get_mac(ndev);
Lucas Stach44934fa2014-03-30 21:32:08 +02002450 /* make sure MAC we just acquired is programmed into the hw */
2451 fec_set_mac_address(ndev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00002453 /* Set receive and transmit descriptor base. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 fep->rx_bd_base = cbd_base;
Nimrod Andy55d02182014-06-12 08:16:21 +08002455 if (fep->bufdesc_ex)
Frank Liff43da82013-01-03 16:04:23 +00002456 fep->tx_bd_base = (struct bufdesc *)
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002457 (((struct bufdesc_ex *)cbd_base) + fep->rx_ring_size);
Nimrod Andy55d02182014-06-12 08:16:21 +08002458 else
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08002459 fep->tx_bd_base = cbd_base + fep->rx_ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Sascha Hauer22f6b862009-04-15 01:32:18 +00002461 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002462 ndev->watchdog_timeo = TX_TIMEOUT;
2463 ndev->netdev_ops = &fec_netdev_ops;
2464 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00002465
Frank Lidc975382013-01-28 18:31:42 +00002466 writel(FEC_RX_DISABLED_IMASK, fep->hwp + FEC_IMASK);
Fabio Estevam322555f2013-08-27 17:35:08 -03002467 netif_napi_add(ndev, &fep->napi, fec_enet_rx_napi, NAPI_POLL_WEIGHT);
Frank Lidc975382013-01-28 18:31:42 +00002468
Nimrod Andy09d1e542014-06-12 08:16:20 +08002469 if (id_entry->driver_data & FEC_QUIRK_HAS_VLAN)
Jim Baxtercdffcf12013-07-02 22:52:56 +01002470 /* enable hw VLAN support */
2471 ndev->features |= NETIF_F_HW_VLAN_CTAG_RX;
Jim Baxtercdffcf12013-07-02 22:52:56 +01002472
Shawn Guo48496252013-05-08 21:08:22 +00002473 if (id_entry->driver_data & FEC_QUIRK_HAS_CSUM) {
Nimrod Andy79f33912014-06-12 08:16:23 +08002474 ndev->gso_max_segs = FEC_MAX_TSO_SEGS;
2475
Shawn Guo48496252013-05-08 21:08:22 +00002476 /* enable hw accelerator */
2477 ndev->features |= (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM
Nimrod Andy79f33912014-06-12 08:16:23 +08002478 | NETIF_F_RXCSUM | NETIF_F_SG | NETIF_F_TSO);
Shawn Guo48496252013-05-08 21:08:22 +00002479 fep->csum_flags |= FLAG_RX_CSUM_ENABLED;
2480 }
Jim Baxter4c09eed2013-04-19 08:10:49 +00002481
Nimrod Andy09d1e542014-06-12 08:16:20 +08002482 ndev->hw_features = ndev->features;
2483
Russell Kingef833372014-07-08 12:40:43 +01002484 fec_restart(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 return 0;
2487}
2488
Shawn Guoca2cc332011-06-25 02:04:35 +08002489#ifdef CONFIG_OF
Bill Pemberton33897cc2012-12-03 09:23:58 -05002490static void fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08002491{
2492 int err, phy_reset;
Shawn Guoa3caad02012-06-27 03:45:24 +00002493 int msec = 1;
Shawn Guoca2cc332011-06-25 02:04:35 +08002494 struct device_node *np = pdev->dev.of_node;
2495
2496 if (!np)
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00002497 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08002498
Shawn Guoa3caad02012-06-27 03:45:24 +00002499 of_property_read_u32(np, "phy-reset-duration", &msec);
2500 /* A sane reset duration should not be longer than 1s */
2501 if (msec > 1000)
2502 msec = 1;
2503
Shawn Guoca2cc332011-06-25 02:04:35 +08002504 phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
Fabio Estevam07dcf8e2013-02-18 10:20:31 +00002505 if (!gpio_is_valid(phy_reset))
2506 return;
2507
Shawn Guo119fc002012-06-27 03:45:22 +00002508 err = devm_gpio_request_one(&pdev->dev, phy_reset,
2509 GPIOF_OUT_INIT_LOW, "phy-reset");
Shawn Guoca2cc332011-06-25 02:04:35 +08002510 if (err) {
Fabio Estevam07dcf8e2013-02-18 10:20:31 +00002511 dev_err(&pdev->dev, "failed to get phy-reset-gpios: %d\n", err);
Shawn Guoa9b2c8e2011-09-23 02:12:46 +00002512 return;
Shawn Guoca2cc332011-06-25 02:04:35 +08002513 }
Shawn Guoa3caad02012-06-27 03:45:24 +00002514 msleep(msec);
Shawn Guoca2cc332011-06-25 02:04:35 +08002515 gpio_set_value(phy_reset, 1);
Shawn Guoca2cc332011-06-25 02:04:35 +08002516}
2517#else /* CONFIG_OF */
Fabio Estevam0c7768a2013-01-07 17:42:56 +00002518static void fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08002519{
2520 /*
2521 * In case of platform probe, the reset has been done
2522 * by machine code.
2523 */
Shawn Guoca2cc332011-06-25 02:04:35 +08002524}
2525#endif /* CONFIG_OF */
2526
Bill Pemberton33897cc2012-12-03 09:23:58 -05002527static int
Sascha Haueread73182009-01-28 23:03:11 +00002528fec_probe(struct platform_device *pdev)
2529{
2530 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07002531 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00002532 struct net_device *ndev;
2533 int i, irq, ret = 0;
2534 struct resource *r;
Shawn Guoca2cc332011-06-25 02:04:35 +08002535 const struct of_device_id *of_id;
Shawn Guo43af9402011-12-05 05:01:15 +00002536 static int dev_id;
Shawn Guoca2cc332011-06-25 02:04:35 +08002537
2538 of_id = of_match_device(fec_dt_ids, &pdev->dev);
2539 if (of_id)
2540 pdev->id_entry = of_id->data;
Sascha Haueread73182009-01-28 23:03:11 +00002541
Sascha Haueread73182009-01-28 23:03:11 +00002542 /* Init network device */
2543 ndev = alloc_etherdev(sizeof(struct fec_enet_private));
Fabio Estevam83e519b2013-03-11 07:32:55 +00002544 if (!ndev)
2545 return -ENOMEM;
Sascha Haueread73182009-01-28 23:03:11 +00002546
2547 SET_NETDEV_DEV(ndev, &pdev->dev);
2548
2549 /* setup board info structure */
2550 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00002551
Guenter Roeckd1391932013-06-18 10:04:59 -07002552#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +00002553 /* default enable pause frame auto negotiation */
2554 if (pdev->id_entry &&
2555 (pdev->id_entry->driver_data & FEC_QUIRK_HAS_GBIT))
2556 fep->pause_flag |= FEC_PAUSE_FLAG_AUTONEG;
Guenter Roeckd1391932013-06-18 10:04:59 -07002557#endif
Frank Libaa70a52013-01-16 16:55:58 +00002558
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002559 /* Select default pin state */
2560 pinctrl_pm_select_default_state(&pdev->dev);
2561
Fabio Estevam399db752013-07-21 13:25:03 -03002562 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Tushar Behera941e1732013-06-10 17:05:05 +05302563 fep->hwp = devm_ioremap_resource(&pdev->dev, r);
2564 if (IS_ERR(fep->hwp)) {
2565 ret = PTR_ERR(fep->hwp);
2566 goto failed_ioremap;
2567 }
2568
Bryan Wue6b043d2010-03-31 02:10:44 +00002569 fep->pdev = pdev;
Shawn Guo43af9402011-12-05 05:01:15 +00002570 fep->dev_id = dev_id++;
Sascha Haueread73182009-01-28 23:03:11 +00002571
Frank Liff43da82013-01-03 16:04:23 +00002572 fep->bufdesc_ex = 0;
2573
Sascha Haueread73182009-01-28 23:03:11 +00002574 platform_set_drvdata(pdev, ndev);
2575
Guenter Roeck6c5f7802013-04-02 09:35:10 +00002576 ret = of_get_phy_mode(pdev->dev.of_node);
Shawn Guoca2cc332011-06-25 02:04:35 +08002577 if (ret < 0) {
Jingoo Han94660ba2013-08-30 13:56:26 +09002578 pdata = dev_get_platdata(&pdev->dev);
Shawn Guoca2cc332011-06-25 02:04:35 +08002579 if (pdata)
2580 fep->phy_interface = pdata->phy;
2581 else
2582 fep->phy_interface = PHY_INTERFACE_MODE_MII;
2583 } else {
2584 fep->phy_interface = ret;
2585 }
2586
Fabio Estevame2f8d552013-02-22 06:40:45 +00002587 fep->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
2588 if (IS_ERR(fep->clk_ipg)) {
2589 ret = PTR_ERR(fep->clk_ipg);
2590 goto failed_clk;
2591 }
2592
2593 fep->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
2594 if (IS_ERR(fep->clk_ahb)) {
2595 ret = PTR_ERR(fep->clk_ahb);
2596 goto failed_clk;
2597 }
2598
Linus Torvalds38f56f32013-05-07 11:06:17 -07002599 /* enet_out is optional, depends on board */
2600 fep->clk_enet_out = devm_clk_get(&pdev->dev, "enet_out");
2601 if (IS_ERR(fep->clk_enet_out))
2602 fep->clk_enet_out = NULL;
2603
Fabio Estevame2f8d552013-02-22 06:40:45 +00002604 fep->clk_ptp = devm_clk_get(&pdev->dev, "ptp");
Fabio Estevam7f7d6c22013-02-21 09:21:50 +00002605 fep->bufdesc_ex =
2606 pdev->id_entry->driver_data & FEC_QUIRK_HAS_BUFDESC_EX;
Fabio Estevame2f8d552013-02-22 06:40:45 +00002607 if (IS_ERR(fep->clk_ptp)) {
Linus Torvalds38f56f32013-05-07 11:06:17 -07002608 fep->clk_ptp = NULL;
Fabio Estevame2f8d552013-02-22 06:40:45 +00002609 fep->bufdesc_ex = 0;
2610 }
2611
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002612 ret = fec_enet_clk_enable(ndev, true);
Fabio Estevam13a097b2013-07-21 13:25:02 -03002613 if (ret)
2614 goto failed_clk;
2615
Fabio Estevamf4e9f3d2013-05-27 03:48:29 +00002616 fep->reg_phy = devm_regulator_get(&pdev->dev, "phy");
2617 if (!IS_ERR(fep->reg_phy)) {
2618 ret = regulator_enable(fep->reg_phy);
Fabio Estevame2f8d552013-02-22 06:40:45 +00002619 if (ret) {
2620 dev_err(&pdev->dev,
2621 "Failed to enable phy regulator: %d\n", ret);
2622 goto failed_regulator;
2623 }
Fabio Estevamf6a4d602013-05-27 03:48:31 +00002624 } else {
2625 fep->reg_phy = NULL;
Fabio Estevame2f8d552013-02-22 06:40:45 +00002626 }
2627
2628 fec_reset_phy(pdev);
2629
Fabio Estevam7f7d6c22013-02-21 09:21:50 +00002630 if (fep->bufdesc_ex)
Fabio Estevamca162a82013-06-07 10:48:00 +00002631 fec_ptp_init(pdev);
Fabio Estevam7f7d6c22013-02-21 09:21:50 +00002632
2633 ret = fec_enet_init(ndev);
2634 if (ret)
2635 goto failed_init;
2636
Xiao Jiangc7c83d12011-09-29 02:15:56 +00002637 for (i = 0; i < FEC_IRQ_NUM; i++) {
Sascha Haueread73182009-01-28 23:03:11 +00002638 irq = platform_get_irq(pdev, i);
Lothar Waßmann86f9f2c2011-12-07 21:59:28 +00002639 if (irq < 0) {
2640 if (i)
2641 break;
2642 ret = irq;
2643 goto failed_irq;
2644 }
Fabio Estevam0d9b2ab2013-07-21 13:25:04 -03002645 ret = devm_request_irq(&pdev->dev, irq, fec_enet_interrupt,
Michael Opdenacker44a272d2013-09-13 05:44:38 +02002646 0, pdev->name, ndev);
Fabio Estevam0d9b2ab2013-07-21 13:25:04 -03002647 if (ret)
Sascha Haueread73182009-01-28 23:03:11 +00002648 goto failed_irq;
Sascha Haueread73182009-01-28 23:03:11 +00002649 }
2650
Bryan Wue6b043d2010-03-31 02:10:44 +00002651 ret = fec_enet_mii_init(pdev);
2652 if (ret)
2653 goto failed_mii_init;
2654
Oskar Schirmer03c698c2010-10-07 02:30:30 +00002655 /* Carrier starts down, phylib will bring it up */
2656 netif_carrier_off(ndev);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002657 fec_enet_clk_enable(ndev, false);
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002658 pinctrl_pm_select_sleep_state(&pdev->dev);
Oskar Schirmer03c698c2010-10-07 02:30:30 +00002659
Sascha Haueread73182009-01-28 23:03:11 +00002660 ret = register_netdev(ndev);
2661 if (ret)
2662 goto failed_register;
2663
Fabio Estevameb1d0642013-04-13 07:25:36 +00002664 if (fep->bufdesc_ex && fep->ptp_clock)
2665 netdev_info(ndev, "registered PHC device %d\n", fep->dev_id);
2666
Frank Li54309fa2013-05-07 14:08:44 +00002667 INIT_DELAYED_WORK(&(fep->delay_work.delay_work), fec_enet_work);
Sascha Haueread73182009-01-28 23:03:11 +00002668 return 0;
2669
2670failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00002671 fec_enet_mii_remove(fep);
2672failed_mii_init:
Fabio Estevam7a2bbd82013-05-27 03:48:30 +00002673failed_irq:
Fabio Estevam7a2bbd82013-05-27 03:48:30 +00002674failed_init:
Fabio Estevamf6a4d602013-05-27 03:48:31 +00002675 if (fep->reg_phy)
2676 regulator_disable(fep->reg_phy);
Shawn Guo5fa9c0f2012-06-27 03:45:21 +00002677failed_regulator:
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002678 fec_enet_clk_enable(ndev, false);
Sascha Haueread73182009-01-28 23:03:11 +00002679failed_clk:
Sascha Haueread73182009-01-28 23:03:11 +00002680failed_ioremap:
2681 free_netdev(ndev);
2682
2683 return ret;
2684}
2685
Bill Pemberton33897cc2012-12-03 09:23:58 -05002686static int
Sascha Haueread73182009-01-28 23:03:11 +00002687fec_drv_remove(struct platform_device *pdev)
2688{
2689 struct net_device *ndev = platform_get_drvdata(pdev);
2690 struct fec_enet_private *fep = netdev_priv(ndev);
2691
Frank Li54309fa2013-05-07 14:08:44 +00002692 cancel_delayed_work_sync(&(fep->delay_work.delay_work));
Lothar Waßmanne163cc92011-12-07 21:59:31 +00002693 unregister_netdev(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00002694 fec_enet_mii_remove(fep);
Frank Li6605b732012-10-30 18:25:31 +00002695 del_timer_sync(&fep->time_keep);
Fabio Estevamf6a4d602013-05-27 03:48:31 +00002696 if (fep->reg_phy)
2697 regulator_disable(fep->reg_phy);
Frank Li6605b732012-10-30 18:25:31 +00002698 if (fep->ptp_clock)
2699 ptp_clock_unregister(fep->ptp_clock);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002700 fec_enet_clk_enable(ndev, false);
Sascha Haueread73182009-01-28 23:03:11 +00002701 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01002702
Sascha Haueread73182009-01-28 23:03:11 +00002703 return 0;
2704}
2705
Fabio Estevambf7bfd72013-04-16 08:17:46 +00002706#ifdef CONFIG_PM_SLEEP
Sascha Haueread73182009-01-28 23:03:11 +00002707static int
Eric Benard87cad5c2010-06-18 04:19:54 +00002708fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00002709{
Eric Benard87cad5c2010-06-18 04:19:54 +00002710 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002711 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00002712
Russell Kingda1774e2014-07-08 12:39:57 +01002713 rtnl_lock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002714 if (netif_running(ndev)) {
Russell Kingd76cfae2014-07-08 00:23:04 +01002715 phy_stop(fep->phy_dev);
Russell King31a6de32014-07-08 12:40:23 +01002716 napi_disable(&fep->napi);
2717 netif_tx_lock_bh(ndev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002718 netif_device_detach(ndev);
Russell King31a6de32014-07-08 12:40:23 +01002719 netif_tx_unlock_bh(ndev);
2720 fec_stop(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00002721 }
Russell Kingda1774e2014-07-08 12:39:57 +01002722 rtnl_unlock();
2723
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002724 fec_enet_clk_enable(ndev, false);
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002725 pinctrl_pm_select_sleep_state(&fep->pdev->dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002726
Fabio Estevam238f7bc2013-05-27 03:48:33 +00002727 if (fep->reg_phy)
2728 regulator_disable(fep->reg_phy);
2729
Sascha Haueread73182009-01-28 23:03:11 +00002730 return 0;
2731}
2732
2733static int
Eric Benard87cad5c2010-06-18 04:19:54 +00002734fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00002735{
Eric Benard87cad5c2010-06-18 04:19:54 +00002736 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002737 struct fec_enet_private *fep = netdev_priv(ndev);
Fabio Estevam238f7bc2013-05-27 03:48:33 +00002738 int ret;
2739
2740 if (fep->reg_phy) {
2741 ret = regulator_enable(fep->reg_phy);
2742 if (ret)
2743 return ret;
2744 }
Sascha Haueread73182009-01-28 23:03:11 +00002745
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002746 pinctrl_pm_select_default_state(&fep->pdev->dev);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002747 ret = fec_enet_clk_enable(ndev, true);
Fabio Estevam13a097b2013-07-21 13:25:02 -03002748 if (ret)
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002749 goto failed_clk;
Fabio Estevam13a097b2013-07-21 13:25:02 -03002750
Russell Kingda1774e2014-07-08 12:39:57 +01002751 rtnl_lock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002752 if (netif_running(ndev)) {
Russell Kingef833372014-07-08 12:40:43 +01002753 fec_restart(ndev);
Russell King31a6de32014-07-08 12:40:23 +01002754 netif_tx_lock_bh(ndev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002755 netif_device_attach(ndev);
Russell King6af42d42014-07-08 12:40:18 +01002756 netif_tx_unlock_bh(ndev);
Russell King6af42d42014-07-08 12:40:18 +01002757 napi_enable(&fep->napi);
Russell Kingd76cfae2014-07-08 00:23:04 +01002758 phy_start(fep->phy_dev);
Sascha Haueread73182009-01-28 23:03:11 +00002759 }
Russell Kingda1774e2014-07-08 12:39:57 +01002760 rtnl_unlock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01002761
Sascha Haueread73182009-01-28 23:03:11 +00002762 return 0;
Fabio Estevam13a097b2013-07-21 13:25:02 -03002763
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002764failed_clk:
Fabio Estevam13a097b2013-07-21 13:25:02 -03002765 if (fep->reg_phy)
2766 regulator_disable(fep->reg_phy);
2767 return ret;
Sascha Haueread73182009-01-28 23:03:11 +00002768}
Fabio Estevambf7bfd72013-04-16 08:17:46 +00002769#endif /* CONFIG_PM_SLEEP */
Sascha Haueread73182009-01-28 23:03:11 +00002770
Fabio Estevambf7bfd72013-04-16 08:17:46 +00002771static SIMPLE_DEV_PM_OPS(fec_pm_ops, fec_suspend, fec_resume);
Denis Kirjanov59d42892010-06-02 09:27:04 +00002772
Sascha Haueread73182009-01-28 23:03:11 +00002773static struct platform_driver fec_driver = {
2774 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00002775 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00002776 .owner = THIS_MODULE,
Eric Benard87cad5c2010-06-18 04:19:54 +00002777 .pm = &fec_pm_ops,
Shawn Guoca2cc332011-06-25 02:04:35 +08002778 .of_match_table = fec_dt_ids,
Sascha Haueread73182009-01-28 23:03:11 +00002779 },
Shawn Guob5680e02011-01-05 21:13:13 +00002780 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00002781 .probe = fec_probe,
Bill Pemberton33897cc2012-12-03 09:23:58 -05002782 .remove = fec_drv_remove,
Sascha Haueread73182009-01-28 23:03:11 +00002783};
2784
Fabio Estevamaaca2372012-01-23 16:44:50 +00002785module_platform_driver(fec_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Fabio Estevamf8c0aca2013-07-20 16:20:36 -03002787MODULE_ALIAS("platform:"DRIVER_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788MODULE_LICENSE("GPL");