blob: 2d1b06579c1ad825f5962097efe42d053e95d218 [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>
Andrew Lunn8fff7552015-07-25 22:38:02 +020027#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/ptrace.h>
29#include <linux/errno.h>
30#include <linux/ioport.h>
31#include <linux/slab.h>
32#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/delay.h>
34#include <linux/netdevice.h>
35#include <linux/etherdevice.h>
36#include <linux/skbuff.h>
Jim Baxter4c09eed2013-04-19 08:10:49 +000037#include <linux/in.h>
38#include <linux/ip.h>
39#include <net/ip.h>
Nimrod Andy79f33912014-06-12 08:16:23 +080040#include <net/tso.h>
Jim Baxter4c09eed2013-04-19 08:10:49 +000041#include <linux/tcp.h>
42#include <linux/udp.h>
43#include <linux/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/spinlock.h>
45#include <linux/workqueue.h>
46#include <linux/bitops.h>
Sascha Hauer6f501b12009-01-28 23:03:05 +000047#include <linux/io.h>
48#include <linux/irq.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000049#include <linux/clk.h>
Sascha Haueread73182009-01-28 23:03:11 +000050#include <linux/platform_device.h>
Andrew Lunn7f854422016-01-06 20:11:18 +010051#include <linux/mdio.h>
Bryan Wue6b043d2010-03-31 02:10:44 +000052#include <linux/phy.h>
Baruch Siach5eb32bd2010-05-24 00:36:13 -070053#include <linux/fec.h>
Shawn Guoca2cc332011-06-25 02:04:35 +080054#include <linux/of.h>
55#include <linux/of_device.h>
56#include <linux/of_gpio.h>
Uwe Kleine-König407066f2014-08-11 17:35:33 +020057#include <linux/of_mdio.h>
Shawn Guoca2cc332011-06-25 02:04:35 +080058#include <linux/of_net.h>
Shawn Guo5fa9c0f2012-06-27 03:45:21 +000059#include <linux/regulator/consumer.h>
Jim Baxtercdffcf12013-07-02 22:52:56 +010060#include <linux/if_vlan.h>
Fabio Estevama68ab982014-06-02 15:44:30 -030061#include <linux/pinctrl/consumer.h>
Frank Lic259c132014-10-03 14:29:14 -070062#include <linux/prefetch.h>
Lucas Stach29380902016-06-03 18:31:19 +020063#include <soc/imx/cpuidle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Greg Ungerer080853a2007-07-30 16:28:46 +100065#include <asm/cacheflush.h>
Sascha Hauer196719e2009-01-28 23:03:10 +000066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include "fec.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Christoph Müllner772e42b2013-06-27 21:18:23 +020069static void set_multicast_list(struct net_device *ndev);
Fugang Duand851b472014-09-17 05:18:52 +080070static void fec_enet_itr_coal_init(struct net_device *ndev);
Christoph Müllner772e42b2013-06-27 21:18:23 +020071
Shawn Guob5680e02011-01-05 21:13:13 +000072#define DRIVER_NAME "fec"
73
Fugang Duan4d494cd2014-09-13 05:00:48 +080074#define FEC_ENET_GET_QUQUE(_x) ((_x == 0) ? 1 : ((_x == 1) ? 2 : 0))
75
Frank Libaa70a52013-01-16 16:55:58 +000076/* Pause frame feild and FIFO threshold */
77#define FEC_ENET_FCE (1 << 5)
78#define FEC_ENET_RSEM_V 0x84
79#define FEC_ENET_RSFL_V 16
80#define FEC_ENET_RAEM_V 0x8
81#define FEC_ENET_RAFL_V 0x8
82#define FEC_ENET_OPD_V 0xFFF0
Andrew Lunn8fff7552015-07-25 22:38:02 +020083#define FEC_MDIO_PM_TIMEOUT 100 /* ms */
Frank Libaa70a52013-01-16 16:55:58 +000084
Shawn Guob5680e02011-01-05 21:13:13 +000085static struct platform_device_id fec_devtype[] = {
86 {
Shawn Guo0ca1e292011-07-01 18:11:22 +080087 /* keep it for coldfire */
Shawn Guob5680e02011-01-05 21:13:13 +000088 .name = DRIVER_NAME,
89 .driver_data = 0,
90 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +080091 .name = "imx25-fec",
Andrew Lunn2b308422017-06-07 03:57:09 +020092 .driver_data = FEC_QUIRK_USE_GASKET | FEC_QUIRK_MIB_CLEAR,
Shawn Guo0ca1e292011-07-01 18:11:22 +080093 }, {
94 .name = "imx27-fec",
Andrew Lunn2b308422017-06-07 03:57:09 +020095 .driver_data = FEC_QUIRK_MIB_CLEAR,
Shawn Guo0ca1e292011-07-01 18:11:22 +080096 }, {
Shawn Guob5680e02011-01-05 21:13:13 +000097 .name = "imx28-fec",
Stefan Agner3d125f92015-01-14 00:20:21 +010098 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME |
Greg Ungerer18803492015-06-20 15:51:57 +100099 FEC_QUIRK_SINGLE_MDIO | FEC_QUIRK_HAS_RACC,
Shawn Guo0ca1e292011-07-01 18:11:22 +0800100 }, {
Shawn Guo230dec62011-09-23 02:12:48 +0000101 .name = "imx6q-fec",
Frank Liff43da82013-01-03 16:04:23 +0000102 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT |
Jim Baxtercdffcf12013-07-02 22:52:56 +0100103 FEC_QUIRK_HAS_BUFDESC_EX | FEC_QUIRK_HAS_CSUM |
Greg Ungerer18803492015-06-20 15:51:57 +1000104 FEC_QUIRK_HAS_VLAN | FEC_QUIRK_ERR006358 |
105 FEC_QUIRK_HAS_RACC,
Shawn Guo230dec62011-09-23 02:12:48 +0000106 }, {
Shawn Guo36803542013-05-19 04:38:46 +0000107 .name = "mvf600-fec",
Greg Ungerer18803492015-06-20 15:51:57 +1000108 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_RACC,
Jingchang Luca7c4a42013-04-11 21:12:45 +0000109 }, {
Fugang Duan95a77472014-09-13 05:00:47 +0800110 .name = "imx6sx-fec",
111 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT |
112 FEC_QUIRK_HAS_BUFDESC_EX | FEC_QUIRK_HAS_CSUM |
Nimrod Andyf88c7ed2014-09-23 15:40:56 +0800113 FEC_QUIRK_HAS_VLAN | FEC_QUIRK_HAS_AVB |
Greg Ungerer18803492015-06-20 15:51:57 +1000114 FEC_QUIRK_ERR007885 | FEC_QUIRK_BUG_CAPTURE |
Fugang Duanff7566b2016-06-22 18:52:35 +0800115 FEC_QUIRK_HAS_RACC | FEC_QUIRK_HAS_COALESCE,
Fugang Duan95a77472014-09-13 05:00:47 +0800116 }, {
Fugang Duana51d3ab2016-06-22 18:52:36 +0800117 .name = "imx6ul-fec",
118 .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT |
119 FEC_QUIRK_HAS_BUFDESC_EX | FEC_QUIRK_HAS_CSUM |
Fugang Duan99492ad2017-04-11 19:13:08 +0800120 FEC_QUIRK_HAS_VLAN | FEC_QUIRK_ERR007885 |
121 FEC_QUIRK_BUG_CAPTURE | FEC_QUIRK_HAS_RACC |
122 FEC_QUIRK_HAS_COALESCE,
Fugang Duana51d3ab2016-06-22 18:52:36 +0800123 }, {
Shawn Guo0ca1e292011-07-01 18:11:22 +0800124 /* sentinel */
125 }
Shawn Guob5680e02011-01-05 21:13:13 +0000126};
Shawn Guo0ca1e292011-07-01 18:11:22 +0800127MODULE_DEVICE_TABLE(platform, fec_devtype);
Shawn Guob5680e02011-01-05 21:13:13 +0000128
Shawn Guoca2cc332011-06-25 02:04:35 +0800129enum imx_fec_type {
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000130 IMX25_FEC = 1, /* runs on i.mx25/50/53 */
Shawn Guoca2cc332011-06-25 02:04:35 +0800131 IMX27_FEC, /* runs on i.mx27/35/51 */
132 IMX28_FEC,
Shawn Guo230dec62011-09-23 02:12:48 +0000133 IMX6Q_FEC,
Shawn Guo36803542013-05-19 04:38:46 +0000134 MVF600_FEC,
Fugang Duanba593e02014-09-13 05:00:53 +0800135 IMX6SX_FEC,
Fugang Duana51d3ab2016-06-22 18:52:36 +0800136 IMX6UL_FEC,
Shawn Guoca2cc332011-06-25 02:04:35 +0800137};
138
139static const struct of_device_id fec_dt_ids[] = {
140 { .compatible = "fsl,imx25-fec", .data = &fec_devtype[IMX25_FEC], },
141 { .compatible = "fsl,imx27-fec", .data = &fec_devtype[IMX27_FEC], },
142 { .compatible = "fsl,imx28-fec", .data = &fec_devtype[IMX28_FEC], },
Shawn Guo230dec62011-09-23 02:12:48 +0000143 { .compatible = "fsl,imx6q-fec", .data = &fec_devtype[IMX6Q_FEC], },
Shawn Guo36803542013-05-19 04:38:46 +0000144 { .compatible = "fsl,mvf600-fec", .data = &fec_devtype[MVF600_FEC], },
Fugang Duanba593e02014-09-13 05:00:53 +0800145 { .compatible = "fsl,imx6sx-fec", .data = &fec_devtype[IMX6SX_FEC], },
Fugang Duana51d3ab2016-06-22 18:52:36 +0800146 { .compatible = "fsl,imx6ul-fec", .data = &fec_devtype[IMX6UL_FEC], },
Shawn Guoca2cc332011-06-25 02:04:35 +0800147 { /* sentinel */ }
148};
149MODULE_DEVICE_TABLE(of, fec_dt_ids);
150
Shawn Guo49da97d2011-01-05 21:13:11 +0000151static unsigned char macaddr[ETH_ALEN];
152module_param_array(macaddr, byte, NULL, 0);
153MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
154
Greg Ungerer87f4abb2008-06-06 15:55:36 +1000155#if defined(CONFIG_M5272)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*
157 * Some hardware gets it MAC address out of local flash memory.
158 * if this is non-zero then assume it is the address to get MAC from.
159 */
160#if defined(CONFIG_NETtel)
161#define FEC_FLASHMAC 0xf0006006
162#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
163#define FEC_FLASHMAC 0xf0006000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#elif defined(CONFIG_CANCam)
165#define FEC_FLASHMAC 0xf0020000
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000166#elif defined (CONFIG_M5272C3)
167#define FEC_FLASHMAC (0xffe04000 + 4)
168#elif defined(CONFIG_MOD5272)
Lothar Waßmanna7dd3212011-12-07 21:59:25 +0000169#define FEC_FLASHMAC 0xffc0406b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#else
171#define FEC_FLASHMAC 0
172#endif
Greg Ungerer43be6362009-02-26 22:42:51 -0800173#endif /* CONFIG_M5272 */
Sascha Haueread73182009-01-28 23:03:11 +0000174
Jim Baxtercdffcf12013-07-02 22:52:56 +0100175/* The FEC stores dest/src/type/vlan, data, and checksum for receive packets.
Andrew Lunnfbbeefd2017-07-30 19:36:05 +0200176 *
177 * 2048 byte skbufs are allocated. However, alignment requirements
178 * varies between FEC variants. Worst case is 64, so round down by 64.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
Andrew Lunnfbbeefd2017-07-30 19:36:05 +0200180#define PKT_MAXBUF_SIZE (round_down(2048 - 64, 64))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#define PKT_MINBUF_SIZE 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Jim Baxter4c09eed2013-04-19 08:10:49 +0000183/* FEC receive acceleration */
184#define FEC_RACC_IPDIS (1 << 1)
185#define FEC_RACC_PRODIS (1 << 2)
Eric Nelson3ac72b72016-09-24 07:42:19 -0700186#define FEC_RACC_SHIFT16 BIT(7)
Jim Baxter4c09eed2013-04-19 08:10:49 +0000187#define FEC_RACC_OPTIONS (FEC_RACC_IPDIS | FEC_RACC_PRODIS)
188
Andrew Lunn2b308422017-06-07 03:57:09 +0200189/* MIB Control Register */
190#define FEC_MIB_CTRLSTAT_DISABLE BIT(31)
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/*
Matt Waddel6b265292006-06-27 13:10:56 +1000193 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * size bits. Other FEC hardware does not, so we need to take that into
195 * account when setting it.
196 */
Greg Ungerer562d2f82005-11-07 14:09:50 +1000197#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Uwe Kleine-König085e79e2011-01-17 09:52:18 +0100198 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
200#else
201#define OPT_FRAME_SIZE 0
202#endif
203
Bryan Wue6b043d2010-03-31 02:10:44 +0000204/* FEC MII MMFR bits definition */
205#define FEC_MMFR_ST (1 << 30)
206#define FEC_MMFR_OP_READ (2 << 28)
207#define FEC_MMFR_OP_WRITE (1 << 28)
208#define FEC_MMFR_PA(v) ((v & 0x1f) << 23)
209#define FEC_MMFR_RA(v) ((v & 0x1f) << 18)
210#define FEC_MMFR_TA (2 << 16)
211#define FEC_MMFR_DATA(v) (v & 0xffff)
Nimrod Andyde40ed32014-12-24 17:30:39 +0800212/* FEC ECR bits definition */
213#define FEC_ECR_MAGICEN (1 << 2)
214#define FEC_ECR_SLEEP (1 << 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Rogerio Pimentelc3b084c2011-12-27 14:07:37 -0500216#define FEC_MII_TIMEOUT 30000 /* us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Sascha Hauer22f6b862009-04-15 01:32:18 +0000218/* Transmitter timeout */
219#define TX_TIMEOUT (2 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Frank Libaa70a52013-01-16 16:55:58 +0000221#define FEC_PAUSE_FLAG_AUTONEG 0x1
222#define FEC_PAUSE_FLAG_ENABLE 0x2
Nimrod Andyde40ed32014-12-24 17:30:39 +0800223#define FEC_WOL_HAS_MAGIC_PACKET (0x1 << 0)
224#define FEC_WOL_FLAG_ENABLE (0x1 << 1)
225#define FEC_WOL_FLAG_SLEEP_ON (0x1 << 2)
Frank Libaa70a52013-01-16 16:55:58 +0000226
Nimrod Andy1b7bde62014-09-30 09:28:05 +0800227#define COPYBREAK_DEFAULT 256
228
Nimrod Andy79f33912014-06-12 08:16:23 +0800229/* Max number of allowed TCP segments for software TSO */
230#define FEC_MAX_TSO_SEGS 100
231#define FEC_MAX_SKB_DESCS (FEC_MAX_TSO_SEGS * 2 + MAX_SKB_FRAGS)
232
233#define IS_TSO_HEADER(txq, addr) \
234 ((addr >= txq->tso_hdrs_dma) && \
Troy Kisky7355f272016-02-05 14:52:46 -0700235 (addr < txq->tso_hdrs_dma + txq->bd.ring_size * TSO_HEADER_SIZE))
Nimrod Andy79f33912014-06-12 08:16:23 +0800236
Lothar Waßmanne163cc92011-12-07 21:59:31 +0000237static int mii_cnt;
238
Troy Kisky7355f272016-02-05 14:52:46 -0700239static struct bufdesc *fec_enet_get_nextdesc(struct bufdesc *bdp,
240 struct bufdesc_prop *bd)
Frank Liff43da82013-01-03 16:04:23 +0000241{
Troy Kisky7355f272016-02-05 14:52:46 -0700242 return (bdp >= bd->last) ? bd->base
Fugang Duan145d6e22017-04-11 19:13:04 +0800243 : (struct bufdesc *)(((void *)bdp) + bd->dsize);
Frank Liff43da82013-01-03 16:04:23 +0000244}
245
Troy Kisky7355f272016-02-05 14:52:46 -0700246static struct bufdesc *fec_enet_get_prevdesc(struct bufdesc *bdp,
247 struct bufdesc_prop *bd)
Frank Liff43da82013-01-03 16:04:23 +0000248{
Troy Kisky7355f272016-02-05 14:52:46 -0700249 return (bdp <= bd->base) ? bd->last
Fugang Duan145d6e22017-04-11 19:13:04 +0800250 : (struct bufdesc *)(((void *)bdp) - bd->dsize);
Frank Liff43da82013-01-03 16:04:23 +0000251}
252
Troy Kisky7355f272016-02-05 14:52:46 -0700253static int fec_enet_get_bd_index(struct bufdesc *bdp,
254 struct bufdesc_prop *bd)
Nimrod Andy61a44272014-06-12 08:16:18 +0800255{
Troy Kisky7355f272016-02-05 14:52:46 -0700256 return ((const char *)bdp - (const char *)bd->base) >> bd->dsize_log2;
Nimrod Andy61a44272014-06-12 08:16:18 +0800257}
258
Troy Kisky7355f272016-02-05 14:52:46 -0700259static int fec_enet_get_free_txdesc_num(struct fec_enet_priv_tx_q *txq)
Nimrod Andy6e909282014-06-12 08:16:22 +0800260{
261 int entries;
262
Troy Kisky7355f272016-02-05 14:52:46 -0700263 entries = (((const char *)txq->dirty_tx -
264 (const char *)txq->bd.cur) >> txq->bd.dsize_log2) - 1;
Nimrod Andy6e909282014-06-12 08:16:22 +0800265
Troy Kisky7355f272016-02-05 14:52:46 -0700266 return entries >= 0 ? entries : entries + txq->bd.ring_size;
Nimrod Andy6e909282014-06-12 08:16:22 +0800267}
268
Lothar Waßmannc20e5992014-11-17 10:51:24 +0100269static void swap_buffer(void *bufaddr, int len)
Shawn Guob5680e02011-01-05 21:13:13 +0000270{
271 int i;
272 unsigned int *buf = bufaddr;
273
Lothar Waßmann7b487d02014-11-17 10:51:23 +0100274 for (i = 0; i < len; i += 4, buf++)
Lothar Waßmanne4537892014-11-17 10:51:22 +0100275 swab32s(buf);
Shawn Guob5680e02011-01-05 21:13:13 +0000276}
277
Lothar Waßmann1310b542014-11-07 10:02:47 +0100278static void swap_buffer2(void *dst_buf, void *src_buf, int len)
279{
280 int i;
281 unsigned int *src = src_buf;
282 unsigned int *dst = dst_buf;
283
284 for (i = 0; i < len; i += 4, src++, dst++)
285 *dst = swab32p(src);
286}
287
Russell King344756f2014-07-08 13:01:59 +0100288static void fec_dump(struct net_device *ndev)
289{
290 struct fec_enet_private *fep = netdev_priv(ndev);
Fugang Duan4d494cd2014-09-13 05:00:48 +0800291 struct bufdesc *bdp;
292 struct fec_enet_priv_tx_q *txq;
293 int index = 0;
Russell King344756f2014-07-08 13:01:59 +0100294
295 netdev_info(ndev, "TX ring dump\n");
296 pr_info("Nr SC addr len SKB\n");
297
Fugang Duan4d494cd2014-09-13 05:00:48 +0800298 txq = fep->tx_queue[0];
Troy Kisky7355f272016-02-05 14:52:46 -0700299 bdp = txq->bd.base;
Fugang Duan4d494cd2014-09-13 05:00:48 +0800300
Russell King344756f2014-07-08 13:01:59 +0100301 do {
Johannes Berg5cfa3032016-01-24 16:52:37 +0100302 pr_info("%3u %c%c 0x%04x 0x%08x %4u %p\n",
Russell King344756f2014-07-08 13:01:59 +0100303 index,
Troy Kisky7355f272016-02-05 14:52:46 -0700304 bdp == txq->bd.cur ? 'S' : ' ',
Fugang Duan4d494cd2014-09-13 05:00:48 +0800305 bdp == txq->dirty_tx ? 'H' : ' ',
Johannes Berg5cfa3032016-01-24 16:52:37 +0100306 fec16_to_cpu(bdp->cbd_sc),
307 fec32_to_cpu(bdp->cbd_bufaddr),
308 fec16_to_cpu(bdp->cbd_datlen),
Fugang Duan4d494cd2014-09-13 05:00:48 +0800309 txq->tx_skbuff[index]);
Troy Kisky7355f272016-02-05 14:52:46 -0700310 bdp = fec_enet_get_nextdesc(bdp, &txq->bd);
Russell King344756f2014-07-08 13:01:59 +0100311 index++;
Troy Kisky7355f272016-02-05 14:52:46 -0700312 } while (bdp != txq->bd.base);
Russell King344756f2014-07-08 13:01:59 +0100313}
314
Fugang Duan62a02c92014-06-18 08:33:52 +0800315static inline bool is_ipv4_pkt(struct sk_buff *skb)
316{
317 return skb->protocol == htons(ETH_P_IP) && ip_hdr(skb)->version == 4;
318}
319
Jim Baxter4c09eed2013-04-19 08:10:49 +0000320static int
321fec_enet_clear_csum(struct sk_buff *skb, struct net_device *ndev)
322{
323 /* Only run for packets requiring a checksum. */
324 if (skb->ip_summed != CHECKSUM_PARTIAL)
325 return 0;
326
327 if (unlikely(skb_cow_head(skb, 0)))
328 return -1;
329
Fugang Duan62a02c92014-06-18 08:33:52 +0800330 if (is_ipv4_pkt(skb))
331 ip_hdr(skb)->check = 0;
Jim Baxter4c09eed2013-04-19 08:10:49 +0000332 *(__sum16 *)(skb->head + skb->csum_start + skb->csum_offset) = 0;
333
334 return 0;
335}
336
Kevin Haoc4bc44c2015-08-07 13:52:37 +0800337static struct bufdesc *
Fugang Duan4d494cd2014-09-13 05:00:48 +0800338fec_enet_txq_submit_frag_skb(struct fec_enet_priv_tx_q *txq,
339 struct sk_buff *skb,
340 struct net_device *ndev)
Nimrod Andy6e909282014-06-12 08:16:22 +0800341{
342 struct fec_enet_private *fep = netdev_priv(ndev);
Troy Kisky7355f272016-02-05 14:52:46 -0700343 struct bufdesc *bdp = txq->bd.cur;
Nimrod Andy6e909282014-06-12 08:16:22 +0800344 struct bufdesc_ex *ebdp;
345 int nr_frags = skb_shinfo(skb)->nr_frags;
346 int frag, frag_len;
347 unsigned short status;
348 unsigned int estatus = 0;
349 skb_frag_t *this_frag;
350 unsigned int index;
351 void *bufaddr;
Russell Kingd6bf3142014-07-08 00:23:19 +0100352 dma_addr_t addr;
Nimrod Andy6e909282014-06-12 08:16:22 +0800353 int i;
354
355 for (frag = 0; frag < nr_frags; frag++) {
356 this_frag = &skb_shinfo(skb)->frags[frag];
Troy Kisky7355f272016-02-05 14:52:46 -0700357 bdp = fec_enet_get_nextdesc(bdp, &txq->bd);
Nimrod Andy6e909282014-06-12 08:16:22 +0800358 ebdp = (struct bufdesc_ex *)bdp;
359
Johannes Berg5cfa3032016-01-24 16:52:37 +0100360 status = fec16_to_cpu(bdp->cbd_sc);
Nimrod Andy6e909282014-06-12 08:16:22 +0800361 status &= ~BD_ENET_TX_STATS;
362 status |= (BD_ENET_TX_TC | BD_ENET_TX_READY);
363 frag_len = skb_shinfo(skb)->frags[frag].size;
364
365 /* Handle the last BD specially */
366 if (frag == nr_frags - 1) {
367 status |= (BD_ENET_TX_INTR | BD_ENET_TX_LAST);
368 if (fep->bufdesc_ex) {
369 estatus |= BD_ENET_TX_INT;
370 if (unlikely(skb_shinfo(skb)->tx_flags &
371 SKBTX_HW_TSTAMP && fep->hwts_tx_en))
372 estatus |= BD_ENET_TX_TS;
373 }
374 }
375
376 if (fep->bufdesc_ex) {
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100377 if (fep->quirks & FEC_QUIRK_HAS_AVB)
Troy Kisky53bb20d2016-02-05 14:52:47 -0700378 estatus |= FEC_TX_BD_FTYPE(txq->bd.qid);
Nimrod Andy6e909282014-06-12 08:16:22 +0800379 if (skb->ip_summed == CHECKSUM_PARTIAL)
380 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
381 ebdp->cbd_bdu = 0;
Johannes Berg5cfa3032016-01-24 16:52:37 +0100382 ebdp->cbd_esc = cpu_to_fec32(estatus);
Nimrod Andy6e909282014-06-12 08:16:22 +0800383 }
384
385 bufaddr = page_address(this_frag->page.p) + this_frag->page_offset;
386
Troy Kisky7355f272016-02-05 14:52:46 -0700387 index = fec_enet_get_bd_index(bdp, &txq->bd);
Fugang Duan41ef84c2014-09-13 05:00:54 +0800388 if (((unsigned long) bufaddr) & fep->tx_align ||
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100389 fep->quirks & FEC_QUIRK_SWAP_FRAME) {
Fugang Duan4d494cd2014-09-13 05:00:48 +0800390 memcpy(txq->tx_bounce[index], bufaddr, frag_len);
391 bufaddr = txq->tx_bounce[index];
Nimrod Andy6e909282014-06-12 08:16:22 +0800392
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100393 if (fep->quirks & FEC_QUIRK_SWAP_FRAME)
Nimrod Andy6e909282014-06-12 08:16:22 +0800394 swap_buffer(bufaddr, frag_len);
395 }
396
Russell Kingd6bf3142014-07-08 00:23:19 +0100397 addr = dma_map_single(&fep->pdev->dev, bufaddr, frag_len,
398 DMA_TO_DEVICE);
399 if (dma_mapping_error(&fep->pdev->dev, addr)) {
Nimrod Andy6e909282014-06-12 08:16:22 +0800400 if (net_ratelimit())
401 netdev_err(ndev, "Tx DMA memory map failed\n");
402 goto dma_mapping_error;
403 }
404
Johannes Berg5cfa3032016-01-24 16:52:37 +0100405 bdp->cbd_bufaddr = cpu_to_fec32(addr);
406 bdp->cbd_datlen = cpu_to_fec16(frag_len);
Troy Kiskybe293462016-02-05 14:52:49 -0700407 /* Make sure the updates to rest of the descriptor are
408 * performed before transferring ownership.
409 */
410 wmb();
Johannes Berg5cfa3032016-01-24 16:52:37 +0100411 bdp->cbd_sc = cpu_to_fec16(status);
Nimrod Andy6e909282014-06-12 08:16:22 +0800412 }
413
Kevin Haoc4bc44c2015-08-07 13:52:37 +0800414 return bdp;
Nimrod Andy6e909282014-06-12 08:16:22 +0800415dma_mapping_error:
Troy Kisky7355f272016-02-05 14:52:46 -0700416 bdp = txq->bd.cur;
Nimrod Andy6e909282014-06-12 08:16:22 +0800417 for (i = 0; i < frag; i++) {
Troy Kisky7355f272016-02-05 14:52:46 -0700418 bdp = fec_enet_get_nextdesc(bdp, &txq->bd);
Johannes Berg5cfa3032016-01-24 16:52:37 +0100419 dma_unmap_single(&fep->pdev->dev, fec32_to_cpu(bdp->cbd_bufaddr),
420 fec16_to_cpu(bdp->cbd_datlen), DMA_TO_DEVICE);
Nimrod Andy6e909282014-06-12 08:16:22 +0800421 }
Kevin Haoc4bc44c2015-08-07 13:52:37 +0800422 return ERR_PTR(-ENOMEM);
Nimrod Andy6e909282014-06-12 08:16:22 +0800423}
424
Fugang Duan4d494cd2014-09-13 05:00:48 +0800425static int fec_enet_txq_submit_skb(struct fec_enet_priv_tx_q *txq,
426 struct sk_buff *skb, struct net_device *ndev)
Nimrod Andy6e909282014-06-12 08:16:22 +0800427{
428 struct fec_enet_private *fep = netdev_priv(ndev);
Nimrod Andy6e909282014-06-12 08:16:22 +0800429 int nr_frags = skb_shinfo(skb)->nr_frags;
430 struct bufdesc *bdp, *last_bdp;
431 void *bufaddr;
Russell Kingd6bf3142014-07-08 00:23:19 +0100432 dma_addr_t addr;
Nimrod Andy6e909282014-06-12 08:16:22 +0800433 unsigned short status;
434 unsigned short buflen;
435 unsigned int estatus = 0;
436 unsigned int index;
Nimrod Andy79f33912014-06-12 08:16:23 +0800437 int entries_free;
Nimrod Andy6e909282014-06-12 08:16:22 +0800438
Troy Kisky7355f272016-02-05 14:52:46 -0700439 entries_free = fec_enet_get_free_txdesc_num(txq);
Nimrod Andy79f33912014-06-12 08:16:23 +0800440 if (entries_free < MAX_SKB_FRAGS + 1) {
441 dev_kfree_skb_any(skb);
442 if (net_ratelimit())
443 netdev_err(ndev, "NOT enough BD for SG!\n");
444 return NETDEV_TX_OK;
445 }
446
Nimrod Andy6e909282014-06-12 08:16:22 +0800447 /* Protocol checksum off-load for TCP and UDP. */
448 if (fec_enet_clear_csum(skb, ndev)) {
449 dev_kfree_skb_any(skb);
450 return NETDEV_TX_OK;
451 }
452
453 /* Fill in a Tx ring entry */
Troy Kisky7355f272016-02-05 14:52:46 -0700454 bdp = txq->bd.cur;
Kevin Haoc4bc44c2015-08-07 13:52:37 +0800455 last_bdp = bdp;
Johannes Berg5cfa3032016-01-24 16:52:37 +0100456 status = fec16_to_cpu(bdp->cbd_sc);
Nimrod Andy6e909282014-06-12 08:16:22 +0800457 status &= ~BD_ENET_TX_STATS;
458
459 /* Set buffer length and buffer pointer */
460 bufaddr = skb->data;
461 buflen = skb_headlen(skb);
462
Troy Kisky7355f272016-02-05 14:52:46 -0700463 index = fec_enet_get_bd_index(bdp, &txq->bd);
Fugang Duan41ef84c2014-09-13 05:00:54 +0800464 if (((unsigned long) bufaddr) & fep->tx_align ||
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100465 fep->quirks & FEC_QUIRK_SWAP_FRAME) {
Fugang Duan4d494cd2014-09-13 05:00:48 +0800466 memcpy(txq->tx_bounce[index], skb->data, buflen);
467 bufaddr = txq->tx_bounce[index];
Nimrod Andy6e909282014-06-12 08:16:22 +0800468
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100469 if (fep->quirks & FEC_QUIRK_SWAP_FRAME)
Nimrod Andy6e909282014-06-12 08:16:22 +0800470 swap_buffer(bufaddr, buflen);
471 }
472
Russell Kingd6bf3142014-07-08 00:23:19 +0100473 /* Push the data cache so the CPM does not get stale memory data. */
474 addr = dma_map_single(&fep->pdev->dev, bufaddr, buflen, DMA_TO_DEVICE);
475 if (dma_mapping_error(&fep->pdev->dev, addr)) {
Nimrod Andy6e909282014-06-12 08:16:22 +0800476 dev_kfree_skb_any(skb);
477 if (net_ratelimit())
478 netdev_err(ndev, "Tx DMA memory map failed\n");
479 return NETDEV_TX_OK;
480 }
481
482 if (nr_frags) {
Kevin Haoc4bc44c2015-08-07 13:52:37 +0800483 last_bdp = fec_enet_txq_submit_frag_skb(txq, skb, ndev);
Troy Kiskyfc75ba52016-02-05 14:52:50 -0700484 if (IS_ERR(last_bdp)) {
485 dma_unmap_single(&fep->pdev->dev, addr,
486 buflen, DMA_TO_DEVICE);
487 dev_kfree_skb_any(skb);
Kevin Haoc4bc44c2015-08-07 13:52:37 +0800488 return NETDEV_TX_OK;
Troy Kiskyfc75ba52016-02-05 14:52:50 -0700489 }
Nimrod Andy6e909282014-06-12 08:16:22 +0800490 } else {
491 status |= (BD_ENET_TX_INTR | BD_ENET_TX_LAST);
492 if (fep->bufdesc_ex) {
493 estatus = BD_ENET_TX_INT;
494 if (unlikely(skb_shinfo(skb)->tx_flags &
495 SKBTX_HW_TSTAMP && fep->hwts_tx_en))
496 estatus |= BD_ENET_TX_TS;
497 }
498 }
Troy Kiskyfc75ba52016-02-05 14:52:50 -0700499 bdp->cbd_bufaddr = cpu_to_fec32(addr);
500 bdp->cbd_datlen = cpu_to_fec16(buflen);
Nimrod Andy6e909282014-06-12 08:16:22 +0800501
502 if (fep->bufdesc_ex) {
503
504 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
505
506 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
507 fep->hwts_tx_en))
508 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
509
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100510 if (fep->quirks & FEC_QUIRK_HAS_AVB)
Troy Kisky53bb20d2016-02-05 14:52:47 -0700511 estatus |= FEC_TX_BD_FTYPE(txq->bd.qid);
Nimrod Andybefe8212014-09-23 15:40:55 +0800512
Nimrod Andy6e909282014-06-12 08:16:22 +0800513 if (skb->ip_summed == CHECKSUM_PARTIAL)
514 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
515
516 ebdp->cbd_bdu = 0;
Johannes Berg5cfa3032016-01-24 16:52:37 +0100517 ebdp->cbd_esc = cpu_to_fec32(estatus);
Nimrod Andy6e909282014-06-12 08:16:22 +0800518 }
519
Troy Kisky7355f272016-02-05 14:52:46 -0700520 index = fec_enet_get_bd_index(last_bdp, &txq->bd);
Nimrod Andy6e909282014-06-12 08:16:22 +0800521 /* Save skb pointer */
Fugang Duan4d494cd2014-09-13 05:00:48 +0800522 txq->tx_skbuff[index] = skb;
Nimrod Andy6e909282014-06-12 08:16:22 +0800523
Troy Kiskybe293462016-02-05 14:52:49 -0700524 /* Make sure the updates to rest of the descriptor are performed before
525 * transferring ownership.
526 */
527 wmb();
Nimrod Andy6e909282014-06-12 08:16:22 +0800528
529 /* Send it on its way. Tell FEC it's ready, interrupt when done,
530 * it's the last BD of the frame, and to put the CRC on the end.
531 */
532 status |= (BD_ENET_TX_READY | BD_ENET_TX_TC);
Johannes Berg5cfa3032016-01-24 16:52:37 +0100533 bdp->cbd_sc = cpu_to_fec16(status);
Nimrod Andy6e909282014-06-12 08:16:22 +0800534
Sascha Hauer22f6b862009-04-15 01:32:18 +0000535 /* If this was the last BD in the ring, start at the beginning again. */
Troy Kisky7355f272016-02-05 14:52:46 -0700536 bdp = fec_enet_get_nextdesc(last_bdp, &txq->bd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Eric Dumazet7a2a8452013-12-19 10:53:02 -0800538 skb_tx_timestamp(skb);
539
Kevin Haoc4bc44c2015-08-07 13:52:37 +0800540 /* Make sure the update to bdp and tx_skbuff are performed before
Troy Kisky7355f272016-02-05 14:52:46 -0700541 * txq->bd.cur.
Kevin Haoc4bc44c2015-08-07 13:52:37 +0800542 */
543 wmb();
Troy Kisky7355f272016-02-05 14:52:46 -0700544 txq->bd.cur = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Frank Lide5fb0a2013-03-03 17:34:25 +0000546 /* Trigger transmission start */
Troy Kisky53bb20d2016-02-05 14:52:47 -0700547 writel(0, txq->bd.reg_desc_active);
Frank Lide5fb0a2013-03-03 17:34:25 +0000548
Nimrod Andy6e909282014-06-12 08:16:22 +0800549 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Nimrod Andy79f33912014-06-12 08:16:23 +0800552static int
Fugang Duan4d494cd2014-09-13 05:00:48 +0800553fec_enet_txq_put_data_tso(struct fec_enet_priv_tx_q *txq, struct sk_buff *skb,
554 struct net_device *ndev,
555 struct bufdesc *bdp, int index, char *data,
556 int size, bool last_tcp, bool is_last)
Nimrod Andy79f33912014-06-12 08:16:23 +0800557{
558 struct fec_enet_private *fep = netdev_priv(ndev);
Fabian Frederick61cd2eb2014-09-13 22:38:26 +0200559 struct bufdesc_ex *ebdp = container_of(bdp, struct bufdesc_ex, desc);
Nimrod Andy79f33912014-06-12 08:16:23 +0800560 unsigned short status;
561 unsigned int estatus = 0;
Russell Kingd6bf3142014-07-08 00:23:19 +0100562 dma_addr_t addr;
Nimrod Andy79f33912014-06-12 08:16:23 +0800563
Johannes Berg5cfa3032016-01-24 16:52:37 +0100564 status = fec16_to_cpu(bdp->cbd_sc);
Nimrod Andy79f33912014-06-12 08:16:23 +0800565 status &= ~BD_ENET_TX_STATS;
566
567 status |= (BD_ENET_TX_TC | BD_ENET_TX_READY);
Nimrod Andy79f33912014-06-12 08:16:23 +0800568
Fugang Duan41ef84c2014-09-13 05:00:54 +0800569 if (((unsigned long) data) & fep->tx_align ||
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100570 fep->quirks & FEC_QUIRK_SWAP_FRAME) {
Fugang Duan4d494cd2014-09-13 05:00:48 +0800571 memcpy(txq->tx_bounce[index], data, size);
572 data = txq->tx_bounce[index];
Nimrod Andy79f33912014-06-12 08:16:23 +0800573
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100574 if (fep->quirks & FEC_QUIRK_SWAP_FRAME)
Nimrod Andy79f33912014-06-12 08:16:23 +0800575 swap_buffer(data, size);
576 }
577
Russell Kingd6bf3142014-07-08 00:23:19 +0100578 addr = dma_map_single(&fep->pdev->dev, data, size, DMA_TO_DEVICE);
579 if (dma_mapping_error(&fep->pdev->dev, addr)) {
Nimrod Andy79f33912014-06-12 08:16:23 +0800580 dev_kfree_skb_any(skb);
581 if (net_ratelimit())
582 netdev_err(ndev, "Tx DMA memory map failed\n");
583 return NETDEV_TX_BUSY;
584 }
585
Johannes Berg5cfa3032016-01-24 16:52:37 +0100586 bdp->cbd_datlen = cpu_to_fec16(size);
587 bdp->cbd_bufaddr = cpu_to_fec32(addr);
Russell Kingd6bf3142014-07-08 00:23:19 +0100588
Nimrod Andy79f33912014-06-12 08:16:23 +0800589 if (fep->bufdesc_ex) {
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100590 if (fep->quirks & FEC_QUIRK_HAS_AVB)
Troy Kisky53bb20d2016-02-05 14:52:47 -0700591 estatus |= FEC_TX_BD_FTYPE(txq->bd.qid);
Nimrod Andy79f33912014-06-12 08:16:23 +0800592 if (skb->ip_summed == CHECKSUM_PARTIAL)
593 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
594 ebdp->cbd_bdu = 0;
Johannes Berg5cfa3032016-01-24 16:52:37 +0100595 ebdp->cbd_esc = cpu_to_fec32(estatus);
Nimrod Andy79f33912014-06-12 08:16:23 +0800596 }
597
598 /* Handle the last BD specially */
599 if (last_tcp)
600 status |= (BD_ENET_TX_LAST | BD_ENET_TX_TC);
601 if (is_last) {
602 status |= BD_ENET_TX_INTR;
603 if (fep->bufdesc_ex)
Johannes Berg5cfa3032016-01-24 16:52:37 +0100604 ebdp->cbd_esc |= cpu_to_fec32(BD_ENET_TX_INT);
Nimrod Andy79f33912014-06-12 08:16:23 +0800605 }
606
Johannes Berg5cfa3032016-01-24 16:52:37 +0100607 bdp->cbd_sc = cpu_to_fec16(status);
Nimrod Andy79f33912014-06-12 08:16:23 +0800608
609 return 0;
610}
611
612static int
Fugang Duan4d494cd2014-09-13 05:00:48 +0800613fec_enet_txq_put_hdr_tso(struct fec_enet_priv_tx_q *txq,
614 struct sk_buff *skb, struct net_device *ndev,
615 struct bufdesc *bdp, int index)
Nimrod Andy79f33912014-06-12 08:16:23 +0800616{
617 struct fec_enet_private *fep = netdev_priv(ndev);
Nimrod Andy79f33912014-06-12 08:16:23 +0800618 int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Fabian Frederick61cd2eb2014-09-13 22:38:26 +0200619 struct bufdesc_ex *ebdp = container_of(bdp, struct bufdesc_ex, desc);
Nimrod Andy79f33912014-06-12 08:16:23 +0800620 void *bufaddr;
621 unsigned long dmabuf;
622 unsigned short status;
623 unsigned int estatus = 0;
624
Johannes Berg5cfa3032016-01-24 16:52:37 +0100625 status = fec16_to_cpu(bdp->cbd_sc);
Nimrod Andy79f33912014-06-12 08:16:23 +0800626 status &= ~BD_ENET_TX_STATS;
627 status |= (BD_ENET_TX_TC | BD_ENET_TX_READY);
628
Fugang Duan4d494cd2014-09-13 05:00:48 +0800629 bufaddr = txq->tso_hdrs + index * TSO_HEADER_SIZE;
630 dmabuf = txq->tso_hdrs_dma + index * TSO_HEADER_SIZE;
Fugang Duan41ef84c2014-09-13 05:00:54 +0800631 if (((unsigned long)bufaddr) & fep->tx_align ||
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100632 fep->quirks & FEC_QUIRK_SWAP_FRAME) {
Fugang Duan4d494cd2014-09-13 05:00:48 +0800633 memcpy(txq->tx_bounce[index], skb->data, hdr_len);
634 bufaddr = txq->tx_bounce[index];
Nimrod Andy79f33912014-06-12 08:16:23 +0800635
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100636 if (fep->quirks & FEC_QUIRK_SWAP_FRAME)
Nimrod Andy79f33912014-06-12 08:16:23 +0800637 swap_buffer(bufaddr, hdr_len);
638
639 dmabuf = dma_map_single(&fep->pdev->dev, bufaddr,
640 hdr_len, DMA_TO_DEVICE);
641 if (dma_mapping_error(&fep->pdev->dev, dmabuf)) {
642 dev_kfree_skb_any(skb);
643 if (net_ratelimit())
644 netdev_err(ndev, "Tx DMA memory map failed\n");
645 return NETDEV_TX_BUSY;
646 }
647 }
648
Johannes Berg5cfa3032016-01-24 16:52:37 +0100649 bdp->cbd_bufaddr = cpu_to_fec32(dmabuf);
650 bdp->cbd_datlen = cpu_to_fec16(hdr_len);
Nimrod Andy79f33912014-06-12 08:16:23 +0800651
652 if (fep->bufdesc_ex) {
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100653 if (fep->quirks & FEC_QUIRK_HAS_AVB)
Troy Kisky53bb20d2016-02-05 14:52:47 -0700654 estatus |= FEC_TX_BD_FTYPE(txq->bd.qid);
Nimrod Andy79f33912014-06-12 08:16:23 +0800655 if (skb->ip_summed == CHECKSUM_PARTIAL)
656 estatus |= BD_ENET_TX_PINS | BD_ENET_TX_IINS;
657 ebdp->cbd_bdu = 0;
Johannes Berg5cfa3032016-01-24 16:52:37 +0100658 ebdp->cbd_esc = cpu_to_fec32(estatus);
Nimrod Andy79f33912014-06-12 08:16:23 +0800659 }
660
Johannes Berg5cfa3032016-01-24 16:52:37 +0100661 bdp->cbd_sc = cpu_to_fec16(status);
Nimrod Andy79f33912014-06-12 08:16:23 +0800662
663 return 0;
664}
665
Fugang Duan4d494cd2014-09-13 05:00:48 +0800666static int fec_enet_txq_submit_tso(struct fec_enet_priv_tx_q *txq,
667 struct sk_buff *skb,
668 struct net_device *ndev)
Nimrod Andy79f33912014-06-12 08:16:23 +0800669{
670 struct fec_enet_private *fep = netdev_priv(ndev);
671 int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
672 int total_len, data_left;
Troy Kisky7355f272016-02-05 14:52:46 -0700673 struct bufdesc *bdp = txq->bd.cur;
Nimrod Andy79f33912014-06-12 08:16:23 +0800674 struct tso_t tso;
675 unsigned int index = 0;
676 int ret;
677
Troy Kisky7355f272016-02-05 14:52:46 -0700678 if (tso_count_descs(skb) >= fec_enet_get_free_txdesc_num(txq)) {
Nimrod Andy79f33912014-06-12 08:16:23 +0800679 dev_kfree_skb_any(skb);
680 if (net_ratelimit())
681 netdev_err(ndev, "NOT enough BD for TSO!\n");
682 return NETDEV_TX_OK;
683 }
684
685 /* Protocol checksum off-load for TCP and UDP. */
686 if (fec_enet_clear_csum(skb, ndev)) {
687 dev_kfree_skb_any(skb);
688 return NETDEV_TX_OK;
689 }
690
691 /* Initialize the TSO handler, and prepare the first payload */
692 tso_start(skb, &tso);
693
694 total_len = skb->len - hdr_len;
695 while (total_len > 0) {
696 char *hdr;
697
Troy Kisky7355f272016-02-05 14:52:46 -0700698 index = fec_enet_get_bd_index(bdp, &txq->bd);
Nimrod Andy79f33912014-06-12 08:16:23 +0800699 data_left = min_t(int, skb_shinfo(skb)->gso_size, total_len);
700 total_len -= data_left;
701
702 /* prepare packet headers: MAC + IP + TCP */
Fugang Duan4d494cd2014-09-13 05:00:48 +0800703 hdr = txq->tso_hdrs + index * TSO_HEADER_SIZE;
Nimrod Andy79f33912014-06-12 08:16:23 +0800704 tso_build_hdr(skb, hdr, &tso, data_left, total_len == 0);
Fugang Duan4d494cd2014-09-13 05:00:48 +0800705 ret = fec_enet_txq_put_hdr_tso(txq, skb, ndev, bdp, index);
Nimrod Andy79f33912014-06-12 08:16:23 +0800706 if (ret)
707 goto err_release;
708
709 while (data_left > 0) {
710 int size;
711
712 size = min_t(int, tso.size, data_left);
Troy Kisky7355f272016-02-05 14:52:46 -0700713 bdp = fec_enet_get_nextdesc(bdp, &txq->bd);
714 index = fec_enet_get_bd_index(bdp, &txq->bd);
Fugang Duan4d494cd2014-09-13 05:00:48 +0800715 ret = fec_enet_txq_put_data_tso(txq, skb, ndev,
716 bdp, index,
717 tso.data, size,
718 size == data_left,
Nimrod Andy79f33912014-06-12 08:16:23 +0800719 total_len == 0);
720 if (ret)
721 goto err_release;
722
723 data_left -= size;
724 tso_build_data(skb, &tso, size);
725 }
726
Troy Kisky7355f272016-02-05 14:52:46 -0700727 bdp = fec_enet_get_nextdesc(bdp, &txq->bd);
Nimrod Andy79f33912014-06-12 08:16:23 +0800728 }
729
730 /* Save skb pointer */
Fugang Duan4d494cd2014-09-13 05:00:48 +0800731 txq->tx_skbuff[index] = skb;
Nimrod Andy79f33912014-06-12 08:16:23 +0800732
Nimrod Andy79f33912014-06-12 08:16:23 +0800733 skb_tx_timestamp(skb);
Troy Kisky7355f272016-02-05 14:52:46 -0700734 txq->bd.cur = bdp;
Nimrod Andy79f33912014-06-12 08:16:23 +0800735
736 /* Trigger transmission start */
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100737 if (!(fep->quirks & FEC_QUIRK_ERR007885) ||
Troy Kisky53bb20d2016-02-05 14:52:47 -0700738 !readl(txq->bd.reg_desc_active) ||
739 !readl(txq->bd.reg_desc_active) ||
740 !readl(txq->bd.reg_desc_active) ||
741 !readl(txq->bd.reg_desc_active))
742 writel(0, txq->bd.reg_desc_active);
Nimrod Andy79f33912014-06-12 08:16:23 +0800743
744 return 0;
745
746err_release:
747 /* TODO: Release all used data descriptors for TSO */
748 return ret;
749}
750
Nimrod Andy61a44272014-06-12 08:16:18 +0800751static netdev_tx_t
752fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
753{
754 struct fec_enet_private *fep = netdev_priv(ndev);
Nimrod Andy6e909282014-06-12 08:16:22 +0800755 int entries_free;
Fugang Duan4d494cd2014-09-13 05:00:48 +0800756 unsigned short queue;
757 struct fec_enet_priv_tx_q *txq;
758 struct netdev_queue *nq;
Nimrod Andy61a44272014-06-12 08:16:18 +0800759 int ret;
760
Fugang Duan4d494cd2014-09-13 05:00:48 +0800761 queue = skb_get_queue_mapping(skb);
762 txq = fep->tx_queue[queue];
763 nq = netdev_get_tx_queue(ndev, queue);
764
Nimrod Andy79f33912014-06-12 08:16:23 +0800765 if (skb_is_gso(skb))
Fugang Duan4d494cd2014-09-13 05:00:48 +0800766 ret = fec_enet_txq_submit_tso(txq, skb, ndev);
Nimrod Andy79f33912014-06-12 08:16:23 +0800767 else
Fugang Duan4d494cd2014-09-13 05:00:48 +0800768 ret = fec_enet_txq_submit_skb(txq, skb, ndev);
Nimrod Andy6e909282014-06-12 08:16:22 +0800769 if (ret)
770 return ret;
Nimrod Andy61a44272014-06-12 08:16:18 +0800771
Troy Kisky7355f272016-02-05 14:52:46 -0700772 entries_free = fec_enet_get_free_txdesc_num(txq);
Fugang Duan4d494cd2014-09-13 05:00:48 +0800773 if (entries_free <= txq->tx_stop_threshold)
774 netif_tx_stop_queue(nq);
Nimrod Andy61a44272014-06-12 08:16:18 +0800775
776 return NETDEV_TX_OK;
777}
778
Frank Li14109a52013-03-26 16:12:03 +0000779/* Init RX & TX buffer descriptors
780 */
781static void fec_enet_bd_init(struct net_device *dev)
782{
783 struct fec_enet_private *fep = netdev_priv(dev);
Fugang Duan4d494cd2014-09-13 05:00:48 +0800784 struct fec_enet_priv_tx_q *txq;
785 struct fec_enet_priv_rx_q *rxq;
Frank Li14109a52013-03-26 16:12:03 +0000786 struct bufdesc *bdp;
787 unsigned int i;
Frank Li59d0f7462014-09-13 05:00:50 +0800788 unsigned int q;
Frank Li14109a52013-03-26 16:12:03 +0000789
Frank Li59d0f7462014-09-13 05:00:50 +0800790 for (q = 0; q < fep->num_rx_queues; q++) {
791 /* Initialize the receive buffer descriptors. */
792 rxq = fep->rx_queue[q];
Troy Kisky7355f272016-02-05 14:52:46 -0700793 bdp = rxq->bd.base;
Fugang Duan4d494cd2014-09-13 05:00:48 +0800794
Troy Kisky7355f272016-02-05 14:52:46 -0700795 for (i = 0; i < rxq->bd.ring_size; i++) {
Frank Li14109a52013-03-26 16:12:03 +0000796
Frank Li59d0f7462014-09-13 05:00:50 +0800797 /* Initialize the BD for every fragment in the page. */
798 if (bdp->cbd_bufaddr)
Johannes Berg5cfa3032016-01-24 16:52:37 +0100799 bdp->cbd_sc = cpu_to_fec16(BD_ENET_RX_EMPTY);
Frank Li59d0f7462014-09-13 05:00:50 +0800800 else
Johannes Berg5cfa3032016-01-24 16:52:37 +0100801 bdp->cbd_sc = cpu_to_fec16(0);
Troy Kisky7355f272016-02-05 14:52:46 -0700802 bdp = fec_enet_get_nextdesc(bdp, &rxq->bd);
Frank Li14109a52013-03-26 16:12:03 +0000803 }
Frank Li59d0f7462014-09-13 05:00:50 +0800804
805 /* Set the last buffer to wrap */
Troy Kisky7355f272016-02-05 14:52:46 -0700806 bdp = fec_enet_get_prevdesc(bdp, &rxq->bd);
Johannes Berg5cfa3032016-01-24 16:52:37 +0100807 bdp->cbd_sc |= cpu_to_fec16(BD_SC_WRAP);
Frank Li59d0f7462014-09-13 05:00:50 +0800808
Troy Kisky7355f272016-02-05 14:52:46 -0700809 rxq->bd.cur = rxq->bd.base;
Frank Li14109a52013-03-26 16:12:03 +0000810 }
811
Frank Li59d0f7462014-09-13 05:00:50 +0800812 for (q = 0; q < fep->num_tx_queues; q++) {
813 /* ...and the same for transmit */
814 txq = fep->tx_queue[q];
Troy Kisky7355f272016-02-05 14:52:46 -0700815 bdp = txq->bd.base;
816 txq->bd.cur = bdp;
Frank Li59d0f7462014-09-13 05:00:50 +0800817
Troy Kisky7355f272016-02-05 14:52:46 -0700818 for (i = 0; i < txq->bd.ring_size; i++) {
Frank Li59d0f7462014-09-13 05:00:50 +0800819 /* Initialize the BD for every fragment in the page. */
Johannes Berg5cfa3032016-01-24 16:52:37 +0100820 bdp->cbd_sc = cpu_to_fec16(0);
Frank Li59d0f7462014-09-13 05:00:50 +0800821 if (txq->tx_skbuff[i]) {
822 dev_kfree_skb_any(txq->tx_skbuff[i]);
823 txq->tx_skbuff[i] = NULL;
824 }
Johannes Berg5cfa3032016-01-24 16:52:37 +0100825 bdp->cbd_bufaddr = cpu_to_fec32(0);
Troy Kisky7355f272016-02-05 14:52:46 -0700826 bdp = fec_enet_get_nextdesc(bdp, &txq->bd);
Frank Li59d0f7462014-09-13 05:00:50 +0800827 }
828
829 /* Set the last buffer to wrap */
Troy Kisky7355f272016-02-05 14:52:46 -0700830 bdp = fec_enet_get_prevdesc(bdp, &txq->bd);
Johannes Berg5cfa3032016-01-24 16:52:37 +0100831 bdp->cbd_sc |= cpu_to_fec16(BD_SC_WRAP);
Frank Li59d0f7462014-09-13 05:00:50 +0800832 txq->dirty_tx = bdp;
833 }
834}
835
Frank Lice99d0d2014-09-13 05:00:52 +0800836static void fec_enet_active_rxring(struct net_device *ndev)
837{
838 struct fec_enet_private *fep = netdev_priv(ndev);
839 int i;
840
841 for (i = 0; i < fep->num_rx_queues; i++)
Troy Kisky53bb20d2016-02-05 14:52:47 -0700842 writel(0, fep->rx_queue[i]->bd.reg_desc_active);
Frank Lice99d0d2014-09-13 05:00:52 +0800843}
844
Frank Li59d0f7462014-09-13 05:00:50 +0800845static void fec_enet_enable_ring(struct net_device *ndev)
846{
847 struct fec_enet_private *fep = netdev_priv(ndev);
848 struct fec_enet_priv_tx_q *txq;
849 struct fec_enet_priv_rx_q *rxq;
850 int i;
851
852 for (i = 0; i < fep->num_rx_queues; i++) {
853 rxq = fep->rx_queue[i];
Troy Kisky7355f272016-02-05 14:52:46 -0700854 writel(rxq->bd.dma, fep->hwp + FEC_R_DES_START(i));
Andrew Lunnfbbeefd2017-07-30 19:36:05 +0200855 writel(PKT_MAXBUF_SIZE, fep->hwp + FEC_R_BUFF_SIZE(i));
Frank Li59d0f7462014-09-13 05:00:50 +0800856
857 /* enable DMA1/2 */
858 if (i)
859 writel(RCMR_MATCHEN | RCMR_CMP(i),
860 fep->hwp + FEC_RCMR(i));
861 }
862
863 for (i = 0; i < fep->num_tx_queues; i++) {
864 txq = fep->tx_queue[i];
Troy Kisky7355f272016-02-05 14:52:46 -0700865 writel(txq->bd.dma, fep->hwp + FEC_X_DES_START(i));
Frank Li59d0f7462014-09-13 05:00:50 +0800866
867 /* enable DMA1/2 */
868 if (i)
869 writel(DMA_CLASS_EN | IDLE_SLOPE(i),
870 fep->hwp + FEC_DMA_CFG(i));
871 }
872}
873
874static void fec_enet_reset_skb(struct net_device *ndev)
875{
876 struct fec_enet_private *fep = netdev_priv(ndev);
877 struct fec_enet_priv_tx_q *txq;
878 int i, j;
879
880 for (i = 0; i < fep->num_tx_queues; i++) {
881 txq = fep->tx_queue[i];
882
Troy Kisky7355f272016-02-05 14:52:46 -0700883 for (j = 0; j < txq->bd.ring_size; j++) {
Frank Li59d0f7462014-09-13 05:00:50 +0800884 if (txq->tx_skbuff[j]) {
885 dev_kfree_skb_any(txq->tx_skbuff[j]);
886 txq->tx_skbuff[j] = NULL;
887 }
888 }
889 }
Frank Li14109a52013-03-26 16:12:03 +0000890}
891
Russell Kingdbc64a82014-07-08 12:40:12 +0100892/*
893 * This function is called to start or restart the FEC during a link
894 * change, transmit timeout, or to reconfigure the FEC. The network
895 * packet processing for this device must be stopped before this call.
Uwe Kleine-König45993652011-01-19 20:47:04 +0100896 */
897static void
Russell Kingef833372014-07-08 12:40:43 +0100898fec_restart(struct net_device *ndev)
Uwe Kleine-König45993652011-01-19 20:47:04 +0100899{
900 struct fec_enet_private *fep = netdev_priv(ndev);
Jim Baxter4c09eed2013-04-19 08:10:49 +0000901 u32 val;
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100902 u32 temp_mac[2];
903 u32 rcntl = OPT_FRAME_SIZE | 0x04;
Shawn Guo230dec62011-09-23 02:12:48 +0000904 u32 ecntl = 0x2; /* ETHEREN */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100905
Fugang Duan106c3142014-09-13 05:00:51 +0800906 /* Whack a reset. We should wait for this.
907 * For i.MX6SX SOC, enet use AXI bus, we use disable MAC
908 * instead of reset MAC itself.
909 */
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100910 if (fep->quirks & FEC_QUIRK_HAS_AVB) {
Fugang Duan106c3142014-09-13 05:00:51 +0800911 writel(0, fep->hwp + FEC_ECNTRL);
912 } else {
913 writel(1, fep->hwp + FEC_ECNTRL);
914 udelay(10);
915 }
Uwe Kleine-König45993652011-01-19 20:47:04 +0100916
917 /*
918 * enet-mac reset will reset mac address registers too,
919 * so need to reconfigure it.
920 */
Gavin Schenkb82d44d2016-09-30 11:46:10 +0200921 memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN);
922 writel((__force u32)cpu_to_be32(temp_mac[0]),
923 fep->hwp + FEC_ADDR_LOW);
924 writel((__force u32)cpu_to_be32(temp_mac[1]),
925 fep->hwp + FEC_ADDR_HIGH);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100926
927 /* Clear any outstanding interrupt. */
Nimrod Andye17f7fe2014-12-11 09:20:32 +0800928 writel(0xffffffff, fep->hwp + FEC_IEVENT);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100929
Frank Li14109a52013-03-26 16:12:03 +0000930 fec_enet_bd_init(ndev);
931
Frank Li59d0f7462014-09-13 05:00:50 +0800932 fec_enet_enable_ring(ndev);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100933
Frank Li59d0f7462014-09-13 05:00:50 +0800934 /* Reset tx SKB buffers. */
935 fec_enet_reset_skb(ndev);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100936
937 /* Enable MII mode */
Russell Kingef833372014-07-08 12:40:43 +0100938 if (fep->full_duplex == DUPLEX_FULL) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100939 /* FD enable */
Uwe Kleine-König45993652011-01-19 20:47:04 +0100940 writel(0x04, fep->hwp + FEC_X_CNTRL);
941 } else {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100942 /* No Rcv on Xmit */
943 rcntl |= 0x02;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100944 writel(0x0, fep->hwp + FEC_X_CNTRL);
945 }
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100946
Uwe Kleine-König45993652011-01-19 20:47:04 +0100947 /* Set MII speed */
948 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
949
Guenter Roeckd1391932013-06-18 10:04:59 -0700950#if !defined(CONFIG_M5272)
Greg Ungerer18803492015-06-20 15:51:57 +1000951 if (fep->quirks & FEC_QUIRK_HAS_RACC) {
Greg Ungerer18803492015-06-20 15:51:57 +1000952 val = readl(fep->hwp + FEC_RACC);
Eric Nelson3ac72b72016-09-24 07:42:19 -0700953 /* align IP header */
954 val |= FEC_RACC_SHIFT16;
Greg Ungerer18803492015-06-20 15:51:57 +1000955 if (fep->csum_flags & FLAG_RX_CSUM_ENABLED)
Eric Nelson3ac72b72016-09-24 07:42:19 -0700956 /* set RX checksum */
Greg Ungerer18803492015-06-20 15:51:57 +1000957 val |= FEC_RACC_OPTIONS;
958 else
959 val &= ~FEC_RACC_OPTIONS;
960 writel(val, fep->hwp + FEC_RACC);
Fabio Estevam32867fc2016-03-31 12:05:17 -0300961 writel(PKT_MAXBUF_SIZE, fep->hwp + FEC_FTRL);
Greg Ungerer18803492015-06-20 15:51:57 +1000962 }
Guenter Roeckd1391932013-06-18 10:04:59 -0700963#endif
Jim Baxter4c09eed2013-04-19 08:10:49 +0000964
Uwe Kleine-König45993652011-01-19 20:47:04 +0100965 /*
966 * The phy interface and speed need to get configured
967 * differently on enet-mac.
968 */
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100969 if (fep->quirks & FEC_QUIRK_ENET_MAC) {
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100970 /* Enable flow control and length check */
971 rcntl |= 0x40000000 | 0x00000020;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100972
Shawn Guo230dec62011-09-23 02:12:48 +0000973 /* RGMII, RMII or MII */
Markus Pargmanne813bb22015-04-30 17:07:50 +0200974 if (fep->phy_interface == PHY_INTERFACE_MODE_RGMII ||
975 fep->phy_interface == PHY_INTERFACE_MODE_RGMII_ID ||
976 fep->phy_interface == PHY_INTERFACE_MODE_RGMII_RXID ||
977 fep->phy_interface == PHY_INTERFACE_MODE_RGMII_TXID)
Shawn Guo230dec62011-09-23 02:12:48 +0000978 rcntl |= (1 << 6);
979 else if (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100980 rcntl |= (1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100981 else
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +0100982 rcntl &= ~(1 << 8);
Uwe Kleine-König45993652011-01-19 20:47:04 +0100983
Shawn Guo230dec62011-09-23 02:12:48 +0000984 /* 1G, 100M or 10M */
Philippe Reynes45f5c322016-05-10 00:19:42 +0200985 if (ndev->phydev) {
986 if (ndev->phydev->speed == SPEED_1000)
Shawn Guo230dec62011-09-23 02:12:48 +0000987 ecntl |= (1 << 5);
Philippe Reynes45f5c322016-05-10 00:19:42 +0200988 else if (ndev->phydev->speed == SPEED_100)
Shawn Guo230dec62011-09-23 02:12:48 +0000989 rcntl &= ~(1 << 9);
990 else
991 rcntl |= (1 << 9);
992 }
Uwe Kleine-König45993652011-01-19 20:47:04 +0100993 } else {
994#ifdef FEC_MIIGSK_ENR
Lothar Waßmann6b7e4002014-11-17 10:51:21 +0100995 if (fep->quirks & FEC_QUIRK_USE_GASKET) {
Eric Benard8d82f212012-01-12 06:10:28 +0000996 u32 cfgr;
Uwe Kleine-König45993652011-01-19 20:47:04 +0100997 /* disable the gasket and wait */
998 writel(0, fep->hwp + FEC_MIIGSK_ENR);
999 while (readl(fep->hwp + FEC_MIIGSK_ENR) & 4)
1000 udelay(1);
1001
1002 /*
1003 * configure the gasket:
1004 * RMII, 50 MHz, no loopback, no echo
Shawn Guo0ca1e292011-07-01 18:11:22 +08001005 * MII, 25 MHz, no loopback, no echo
Uwe Kleine-König45993652011-01-19 20:47:04 +01001006 */
Eric Benard8d82f212012-01-12 06:10:28 +00001007 cfgr = (fep->phy_interface == PHY_INTERFACE_MODE_RMII)
1008 ? BM_MIIGSK_CFGR_RMII : BM_MIIGSK_CFGR_MII;
Philippe Reynes45f5c322016-05-10 00:19:42 +02001009 if (ndev->phydev && ndev->phydev->speed == SPEED_10)
Eric Benard8d82f212012-01-12 06:10:28 +00001010 cfgr |= BM_MIIGSK_CFGR_FRCONT_10M;
1011 writel(cfgr, fep->hwp + FEC_MIIGSK_CFGR);
Uwe Kleine-König45993652011-01-19 20:47:04 +01001012
1013 /* re-enable the gasket */
1014 writel(2, fep->hwp + FEC_MIIGSK_ENR);
1015 }
1016#endif
1017 }
Frank Libaa70a52013-01-16 16:55:58 +00001018
Guenter Roeckd1391932013-06-18 10:04:59 -07001019#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +00001020 /* enable pause frame*/
1021 if ((fep->pause_flag & FEC_PAUSE_FLAG_ENABLE) ||
1022 ((fep->pause_flag & FEC_PAUSE_FLAG_AUTONEG) &&
Philippe Reynes45f5c322016-05-10 00:19:42 +02001023 ndev->phydev && ndev->phydev->pause)) {
Frank Libaa70a52013-01-16 16:55:58 +00001024 rcntl |= FEC_ENET_FCE;
1025
Jim Baxter4c09eed2013-04-19 08:10:49 +00001026 /* set FIFO threshold parameter to reduce overrun */
Frank Libaa70a52013-01-16 16:55:58 +00001027 writel(FEC_ENET_RSEM_V, fep->hwp + FEC_R_FIFO_RSEM);
1028 writel(FEC_ENET_RSFL_V, fep->hwp + FEC_R_FIFO_RSFL);
1029 writel(FEC_ENET_RAEM_V, fep->hwp + FEC_R_FIFO_RAEM);
1030 writel(FEC_ENET_RAFL_V, fep->hwp + FEC_R_FIFO_RAFL);
1031
1032 /* OPD */
1033 writel(FEC_ENET_OPD_V, fep->hwp + FEC_OPD);
1034 } else {
1035 rcntl &= ~FEC_ENET_FCE;
1036 }
Guenter Roeckd1391932013-06-18 10:04:59 -07001037#endif /* !defined(CONFIG_M5272) */
Frank Libaa70a52013-01-16 16:55:58 +00001038
Uwe Kleine-Königcd1f4022011-01-25 22:11:25 +01001039 writel(rcntl, fep->hwp + FEC_R_CNTRL);
Uwe Kleine-König45993652011-01-19 20:47:04 +01001040
Stefan Wahren84fe6182014-03-12 11:28:19 +01001041 /* Setup multicast filter. */
1042 set_multicast_list(ndev);
1043#ifndef CONFIG_M5272
1044 writel(0, fep->hwp + FEC_HASH_TABLE_HIGH);
1045 writel(0, fep->hwp + FEC_HASH_TABLE_LOW);
1046#endif
1047
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01001048 if (fep->quirks & FEC_QUIRK_ENET_MAC) {
Shawn Guo230dec62011-09-23 02:12:48 +00001049 /* enable ENET endian swap */
1050 ecntl |= (1 << 8);
1051 /* enable ENET store and forward mode */
1052 writel(1 << 8, fep->hwp + FEC_X_WMRK);
1053 }
1054
Frank Liff43da82013-01-03 16:04:23 +00001055 if (fep->bufdesc_ex)
1056 ecntl |= (1 << 4);
Frank Li6605b732012-10-30 18:25:31 +00001057
Chris Healy38ae92d2013-06-25 23:18:52 -07001058#ifndef CONFIG_M5272
Jim Baxterb9eef552013-07-01 14:57:54 +01001059 /* Enable the MIB statistic event counters */
1060 writel(0 << 31, fep->hwp + FEC_MIB_CTRLSTAT);
Chris Healy38ae92d2013-06-25 23:18:52 -07001061#endif
1062
Uwe Kleine-König45993652011-01-19 20:47:04 +01001063 /* And last, enable the transmit and receive processing */
Shawn Guo230dec62011-09-23 02:12:48 +00001064 writel(ecntl, fep->hwp + FEC_ECNTRL);
Frank Lice99d0d2014-09-13 05:00:52 +08001065 fec_enet_active_rxring(ndev);
Uwe Kleine-König45993652011-01-19 20:47:04 +01001066
Frank Liff43da82013-01-03 16:04:23 +00001067 if (fep->bufdesc_ex)
1068 fec_ptp_start_cyclecounter(ndev);
1069
Uwe Kleine-König45993652011-01-19 20:47:04 +01001070 /* Enable interrupts we wish to service */
Nimrod Andy0c5a3ae2014-12-11 09:20:33 +08001071 if (fep->link)
1072 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
1073 else
1074 writel(FEC_ENET_MII, fep->hwp + FEC_IMASK);
Fugang Duand851b472014-09-17 05:18:52 +08001075
1076 /* Init the interrupt coalescing */
1077 fec_enet_itr_coal_init(ndev);
1078
Uwe Kleine-König45993652011-01-19 20:47:04 +01001079}
1080
1081static void
1082fec_stop(struct net_device *ndev)
1083{
1084 struct fec_enet_private *fep = netdev_priv(ndev);
Nimrod Andyde40ed32014-12-24 17:30:39 +08001085 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Lothar Waßmann42431dc2011-12-07 21:59:30 +00001086 u32 rmii_mode = readl(fep->hwp + FEC_R_CNTRL) & (1 << 8);
Nimrod Andyde40ed32014-12-24 17:30:39 +08001087 u32 val;
Uwe Kleine-König45993652011-01-19 20:47:04 +01001088
1089 /* We cannot expect a graceful transmit stop without link !!! */
1090 if (fep->link) {
1091 writel(1, fep->hwp + FEC_X_CNTRL); /* Graceful transmit stop */
1092 udelay(10);
1093 if (!(readl(fep->hwp + FEC_IEVENT) & FEC_ENET_GRA))
Joe Perches31b77202013-04-13 19:03:17 +00001094 netdev_err(ndev, "Graceful transmit stop did not complete!\n");
Uwe Kleine-König45993652011-01-19 20:47:04 +01001095 }
1096
Fugang Duan106c3142014-09-13 05:00:51 +08001097 /* Whack a reset. We should wait for this.
1098 * For i.MX6SX SOC, enet use AXI bus, we use disable MAC
1099 * instead of reset MAC itself.
1100 */
Nimrod Andyde40ed32014-12-24 17:30:39 +08001101 if (!(fep->wol_flag & FEC_WOL_FLAG_SLEEP_ON)) {
1102 if (fep->quirks & FEC_QUIRK_HAS_AVB) {
1103 writel(0, fep->hwp + FEC_ECNTRL);
1104 } else {
1105 writel(1, fep->hwp + FEC_ECNTRL);
1106 udelay(10);
1107 }
1108 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
Fugang Duan106c3142014-09-13 05:00:51 +08001109 } else {
Nimrod Andyde40ed32014-12-24 17:30:39 +08001110 writel(FEC_DEFAULT_IMASK | FEC_ENET_WAKEUP, fep->hwp + FEC_IMASK);
1111 val = readl(fep->hwp + FEC_ECNTRL);
1112 val |= (FEC_ECR_MAGICEN | FEC_ECR_SLEEP);
1113 writel(val, fep->hwp + FEC_ECNTRL);
1114
1115 if (pdata && pdata->sleep_mode_enable)
1116 pdata->sleep_mode_enable(true);
Fugang Duan106c3142014-09-13 05:00:51 +08001117 }
Uwe Kleine-König45993652011-01-19 20:47:04 +01001118 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
Shawn Guo230dec62011-09-23 02:12:48 +00001119
1120 /* We have to keep ENET enabled to have MII interrupt stay working */
Nimrod Andyde40ed32014-12-24 17:30:39 +08001121 if (fep->quirks & FEC_QUIRK_ENET_MAC &&
1122 !(fep->wol_flag & FEC_WOL_FLAG_SLEEP_ON)) {
Shawn Guo230dec62011-09-23 02:12:48 +00001123 writel(2, fep->hwp + FEC_ECNTRL);
Lothar Waßmann42431dc2011-12-07 21:59:30 +00001124 writel(rmii_mode, fep->hwp + FEC_R_CNTRL);
1125 }
Uwe Kleine-König45993652011-01-19 20:47:04 +01001126}
1127
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129static void
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001130fec_timeout(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001132 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Russell King344756f2014-07-08 13:01:59 +01001134 fec_dump(ndev);
1135
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001136 ndev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Russell King36cdc742014-07-08 13:01:44 +01001138 schedule_work(&fep->tx_timeout_work);
Frank Li54309fa2013-05-07 14:08:44 +00001139}
1140
Russell King36cdc742014-07-08 13:01:44 +01001141static void fec_enet_timeout_work(struct work_struct *work)
Frank Li54309fa2013-05-07 14:08:44 +00001142{
1143 struct fec_enet_private *fep =
Russell King36cdc742014-07-08 13:01:44 +01001144 container_of(work, struct fec_enet_private, tx_timeout_work);
Russell King8ce56242014-07-08 12:40:07 +01001145 struct net_device *ndev = fep->netdev;
Frank Li54309fa2013-05-07 14:08:44 +00001146
Russell King36cdc742014-07-08 13:01:44 +01001147 rtnl_lock();
1148 if (netif_device_present(ndev) || netif_running(ndev)) {
1149 napi_disable(&fep->napi);
1150 netif_tx_lock_bh(ndev);
1151 fec_restart(ndev);
1152 netif_wake_queue(ndev);
1153 netif_tx_unlock_bh(ndev);
1154 napi_enable(&fep->napi);
Frank Li54309fa2013-05-07 14:08:44 +00001155 }
Russell King36cdc742014-07-08 13:01:44 +01001156 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159static void
Russell Kingbfd4ecd2014-07-08 13:02:09 +01001160fec_enet_hwtstamp(struct fec_enet_private *fep, unsigned ts,
1161 struct skb_shared_hwtstamps *hwtstamps)
1162{
1163 unsigned long flags;
1164 u64 ns;
1165
1166 spin_lock_irqsave(&fep->tmreg_lock, flags);
1167 ns = timecounter_cyc2time(&fep->tc, ts);
1168 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
1169
1170 memset(hwtstamps, 0, sizeof(*hwtstamps));
1171 hwtstamps->hwtstamp = ns_to_ktime(ns);
1172}
1173
1174static void
Fugang Duan4d494cd2014-09-13 05:00:48 +08001175fec_enet_tx_queue(struct net_device *ndev, u16 queue_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
1177 struct fec_enet_private *fep;
Fabio Estevama2fe37b2015-03-13 14:07:54 -03001178 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001179 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 struct sk_buff *skb;
Fugang Duan4d494cd2014-09-13 05:00:48 +08001181 struct fec_enet_priv_tx_q *txq;
1182 struct netdev_queue *nq;
Frank Lide5fb0a2013-03-03 17:34:25 +00001183 int index = 0;
Nimrod Andy79f33912014-06-12 08:16:23 +08001184 int entries_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001186 fep = netdev_priv(ndev);
Fugang Duan4d494cd2014-09-13 05:00:48 +08001187
1188 queue_id = FEC_ENET_GET_QUQUE(queue_id);
1189
1190 txq = fep->tx_queue[queue_id];
1191 /* get next bdp of dirty_tx */
1192 nq = netdev_get_tx_queue(ndev, queue_id);
1193 bdp = txq->dirty_tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Frank Lide5fb0a2013-03-03 17:34:25 +00001195 /* get next bdp of dirty_tx */
Troy Kisky7355f272016-02-05 14:52:46 -07001196 bdp = fec_enet_get_nextdesc(bdp, &txq->bd);
Frank Lide5fb0a2013-03-03 17:34:25 +00001197
Troy Kisky7355f272016-02-05 14:52:46 -07001198 while (bdp != READ_ONCE(txq->bd.cur)) {
1199 /* Order the load of bd.cur and cbd_sc */
Kevin Haoc4bc44c2015-08-07 13:52:37 +08001200 rmb();
Johannes Berg5cfa3032016-01-24 16:52:37 +01001201 status = fec16_to_cpu(READ_ONCE(bdp->cbd_sc));
Kevin Haoc4bc44c2015-08-07 13:52:37 +08001202 if (status & BD_ENET_TX_READY)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001203 break;
1204
Troy Kisky7355f272016-02-05 14:52:46 -07001205 index = fec_enet_get_bd_index(bdp, &txq->bd);
Nimrod Andy2b995f62015-01-20 14:10:35 +08001206
Fabio Estevama2fe37b2015-03-13 14:07:54 -03001207 skb = txq->tx_skbuff[index];
Nimrod Andy2b995f62015-01-20 14:10:35 +08001208 txq->tx_skbuff[index] = NULL;
Johannes Berg5cfa3032016-01-24 16:52:37 +01001209 if (!IS_TSO_HEADER(txq, fec32_to_cpu(bdp->cbd_bufaddr)))
1210 dma_unmap_single(&fep->pdev->dev,
1211 fec32_to_cpu(bdp->cbd_bufaddr),
1212 fec16_to_cpu(bdp->cbd_datlen),
1213 DMA_TO_DEVICE);
1214 bdp->cbd_bufaddr = cpu_to_fec32(0);
Troy Kisky7fafe802016-05-27 13:30:40 -07001215 if (!skb)
1216 goto skb_done;
Frank Lide5fb0a2013-03-03 17:34:25 +00001217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001219 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 BD_ENET_TX_RL | BD_ENET_TX_UN |
1221 BD_ENET_TX_CSL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001222 ndev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001223 if (status & BD_ENET_TX_HB) /* No heartbeat */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001224 ndev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001225 if (status & BD_ENET_TX_LC) /* Late collision */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001226 ndev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001227 if (status & BD_ENET_TX_RL) /* Retrans limit */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001228 ndev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001229 if (status & BD_ENET_TX_UN) /* Underrun */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001230 ndev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001231 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001232 ndev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 } else {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001234 ndev->stats.tx_packets++;
Nimrod Andy6e909282014-06-12 08:16:22 +08001235 ndev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237
Frank Liff43da82013-01-03 16:04:23 +00001238 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) &&
1239 fep->bufdesc_ex) {
Frank Li6605b732012-10-30 18:25:31 +00001240 struct skb_shared_hwtstamps shhwtstamps;
Frank Liff43da82013-01-03 16:04:23 +00001241 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
Frank Li6605b732012-10-30 18:25:31 +00001242
Johannes Berg5cfa3032016-01-24 16:52:37 +01001243 fec_enet_hwtstamp(fep, fec32_to_cpu(ebdp->ts), &shhwtstamps);
Frank Li6605b732012-10-30 18:25:31 +00001244 skb_tstamp_tx(skb, &shhwtstamps);
1245 }
Frank Liff43da82013-01-03 16:04:23 +00001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 /* Deferred means some collisions occurred during transmit,
1248 * but we eventually sent the packet OK.
1249 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001250 if (status & BD_ENET_TX_DEF)
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001251 ndev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001252
Sascha Hauer22f6b862009-04-15 01:32:18 +00001253 /* Free the sk buffer associated with this last transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 dev_kfree_skb_any(skb);
Troy Kisky7fafe802016-05-27 13:30:40 -07001255skb_done:
Kevin Haoc4bc44c2015-08-07 13:52:37 +08001256 /* Make sure the update to bdp and tx_skbuff are performed
1257 * before dirty_tx
1258 */
1259 wmb();
Fugang Duan4d494cd2014-09-13 05:00:48 +08001260 txq->dirty_tx = bdp;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001261
Sascha Hauer22f6b862009-04-15 01:32:18 +00001262 /* Update pointer to next buffer descriptor to be transmitted */
Troy Kisky7355f272016-02-05 14:52:46 -07001263 bdp = fec_enet_get_nextdesc(bdp, &txq->bd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001264
Sascha Hauer22f6b862009-04-15 01:32:18 +00001265 /* Since we have freed up a buffer, the ring is no longer full
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 */
Nimrod Andy79f33912014-06-12 08:16:23 +08001267 if (netif_queue_stopped(ndev)) {
Troy Kisky7355f272016-02-05 14:52:46 -07001268 entries_free = fec_enet_get_free_txdesc_num(txq);
Fugang Duan4d494cd2014-09-13 05:00:48 +08001269 if (entries_free >= txq->tx_wake_threshold)
1270 netif_tx_wake_queue(nq);
Nimrod Andy79f33912014-06-12 08:16:23 +08001271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
Russell Kingccea2962014-07-08 13:01:38 +01001273
Fugang Duanc10bc0e2017-04-11 19:13:07 +08001274 /* ERR006358: Keep the transmitter going */
Troy Kisky7355f272016-02-05 14:52:46 -07001275 if (bdp != txq->bd.cur &&
Troy Kisky53bb20d2016-02-05 14:52:47 -07001276 readl(txq->bd.reg_desc_active) == 0)
1277 writel(0, txq->bd.reg_desc_active);
Fugang Duan4d494cd2014-09-13 05:00:48 +08001278}
1279
1280static void
1281fec_enet_tx(struct net_device *ndev)
1282{
1283 struct fec_enet_private *fep = netdev_priv(ndev);
1284 u16 queue_id;
1285 /* First process class A queue, then Class B and Best Effort queue */
1286 for_each_set_bit(queue_id, &fep->work_tx, FEC_ENET_MAX_TX_QS) {
1287 clear_bit(queue_id, &fep->work_tx);
1288 fec_enet_tx_queue(ndev, queue_id);
1289 }
1290 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291}
1292
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001293static int
1294fec_enet_new_rxbdp(struct net_device *ndev, struct bufdesc *bdp, struct sk_buff *skb)
1295{
1296 struct fec_enet_private *fep = netdev_priv(ndev);
1297 int off;
1298
1299 off = ((unsigned long)skb->data) & fep->rx_align;
1300 if (off)
1301 skb_reserve(skb, fep->rx_align + 1 - off);
1302
Johannes Berg5cfa3032016-01-24 16:52:37 +01001303 bdp->cbd_bufaddr = cpu_to_fec32(dma_map_single(&fep->pdev->dev, skb->data, FEC_ENET_RX_FRSIZE - fep->rx_align, DMA_FROM_DEVICE));
1304 if (dma_mapping_error(&fep->pdev->dev, fec32_to_cpu(bdp->cbd_bufaddr))) {
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001305 if (net_ratelimit())
1306 netdev_err(ndev, "Rx DMA memory map failed\n");
1307 return -ENOMEM;
1308 }
1309
1310 return 0;
1311}
1312
1313static bool fec_enet_copybreak(struct net_device *ndev, struct sk_buff **skb,
Lothar Waßmann1310b542014-11-07 10:02:47 +01001314 struct bufdesc *bdp, u32 length, bool swap)
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001315{
1316 struct fec_enet_private *fep = netdev_priv(ndev);
1317 struct sk_buff *new_skb;
1318
1319 if (length > fep->rx_copybreak)
1320 return false;
1321
1322 new_skb = netdev_alloc_skb(ndev, length);
1323 if (!new_skb)
1324 return false;
1325
Johannes Berg5cfa3032016-01-24 16:52:37 +01001326 dma_sync_single_for_cpu(&fep->pdev->dev,
1327 fec32_to_cpu(bdp->cbd_bufaddr),
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001328 FEC_ENET_RX_FRSIZE - fep->rx_align,
1329 DMA_FROM_DEVICE);
Lothar Waßmann1310b542014-11-07 10:02:47 +01001330 if (!swap)
1331 memcpy(new_skb->data, (*skb)->data, length);
1332 else
1333 swap_buffer2(new_skb->data, (*skb)->data, length);
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001334 *skb = new_skb;
1335
1336 return true;
1337}
1338
Troy Kisky7355f272016-02-05 14:52:46 -07001339/* During a receive, the bd_rx.cur points to the current incoming buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 * When we update through the ring, if the next incoming buffer has
1341 * not been given to the system, we just set the empty indicator,
1342 * effectively tossing the packet.
1343 */
Frank Lidc975382013-01-28 18:31:42 +00001344static int
Fugang Duan4d494cd2014-09-13 05:00:48 +08001345fec_enet_rx_queue(struct net_device *ndev, int budget, u16 queue_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001347 struct fec_enet_private *fep = netdev_priv(ndev);
Fugang Duan4d494cd2014-09-13 05:00:48 +08001348 struct fec_enet_priv_rx_q *rxq;
Sascha Hauer2e285322009-04-15 01:32:16 +00001349 struct bufdesc *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001350 unsigned short status;
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001351 struct sk_buff *skb_new = NULL;
1352 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 ushort pkt_len;
1354 __u8 *data;
Frank Lidc975382013-01-28 18:31:42 +00001355 int pkt_received = 0;
Jim Baxtercdffcf12013-07-02 22:52:56 +01001356 struct bufdesc_ex *ebdp = NULL;
1357 bool vlan_packet_rcvd = false;
1358 u16 vlan_tag;
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08001359 int index = 0;
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001360 bool is_copybreak;
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01001361 bool need_swap = fep->quirks & FEC_QUIRK_SWAP_FRAME;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001362
Greg Ungerer0e702ab2006-06-27 13:19:33 +10001363#ifdef CONFIG_M532x
1364 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001365#endif
Fugang Duan4d494cd2014-09-13 05:00:48 +08001366 queue_id = FEC_ENET_GET_QUQUE(queue_id);
1367 rxq = fep->rx_queue[queue_id];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 /* First, grab all of the stats for the incoming packet.
1370 * These get messed up if we get called due to a busy condition.
1371 */
Troy Kisky7355f272016-02-05 14:52:46 -07001372 bdp = rxq->bd.cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Johannes Berg5cfa3032016-01-24 16:52:37 +01001374 while (!((status = fec16_to_cpu(bdp->cbd_sc)) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Frank Lidc975382013-01-28 18:31:42 +00001376 if (pkt_received >= budget)
1377 break;
1378 pkt_received++;
1379
Russell Kinged63f1d2015-09-02 17:24:14 +08001380 writel(FEC_ENET_RXF, fep->hwp + FEC_IEVENT);
Russell Kingdb3421c2014-07-08 13:01:49 +01001381
Sascha Hauer22f6b862009-04-15 01:32:18 +00001382 /* Check for errors. */
Troy Kisky095098e2016-02-05 14:52:44 -07001383 status ^= BD_ENET_RX_LAST;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001384 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Troy Kisky095098e2016-02-05 14:52:44 -07001385 BD_ENET_RX_CR | BD_ENET_RX_OV | BD_ENET_RX_LAST |
1386 BD_ENET_RX_CL)) {
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001387 ndev->stats.rx_errors++;
Troy Kisky095098e2016-02-05 14:52:44 -07001388 if (status & BD_ENET_RX_OV) {
1389 /* FIFO overrun */
1390 ndev->stats.rx_fifo_errors++;
1391 goto rx_processing_done;
1392 }
1393 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH
1394 | BD_ENET_RX_LAST)) {
Sascha Hauer22f6b862009-04-15 01:32:18 +00001395 /* Frame too long or too short. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001396 ndev->stats.rx_length_errors++;
Troy Kisky095098e2016-02-05 14:52:44 -07001397 if (status & BD_ENET_RX_LAST)
1398 netdev_err(ndev, "rcv is not +last\n");
Sascha Hauer22f6b862009-04-15 01:32:18 +00001399 }
Sascha Hauer22f6b862009-04-15 01:32:18 +00001400 if (status & BD_ENET_RX_CR) /* CRC Error */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001401 ndev->stats.rx_crc_errors++;
Troy Kisky095098e2016-02-05 14:52:44 -07001402 /* Report late collisions as a frame error. */
1403 if (status & (BD_ENET_RX_NO | BD_ENET_RX_CL))
1404 ndev->stats.rx_frame_errors++;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001405 goto rx_processing_done;
1406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Sascha Hauer22f6b862009-04-15 01:32:18 +00001408 /* Process the incoming frame. */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001409 ndev->stats.rx_packets++;
Johannes Berg5cfa3032016-01-24 16:52:37 +01001410 pkt_len = fec16_to_cpu(bdp->cbd_datlen);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001411 ndev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Troy Kisky7355f272016-02-05 14:52:46 -07001413 index = fec_enet_get_bd_index(bdp, &rxq->bd);
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001414 skb = rxq->rx_skbuff[index];
Sascha Hauerccdc4f12009-01-28 23:03:09 +00001415
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001416 /* The packet length includes FCS, but we don't want to
1417 * include that when passing upstream as it messes up
1418 * bridging applications.
1419 */
Lothar Waßmann1310b542014-11-07 10:02:47 +01001420 is_copybreak = fec_enet_copybreak(ndev, &skb, bdp, pkt_len - 4,
1421 need_swap);
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001422 if (!is_copybreak) {
1423 skb_new = netdev_alloc_skb(ndev, FEC_ENET_RX_FRSIZE);
1424 if (unlikely(!skb_new)) {
1425 ndev->stats.rx_dropped++;
1426 goto rx_processing_done;
1427 }
Johannes Berg5cfa3032016-01-24 16:52:37 +01001428 dma_unmap_single(&fep->pdev->dev,
1429 fec32_to_cpu(bdp->cbd_bufaddr),
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001430 FEC_ENET_RX_FRSIZE - fep->rx_align,
1431 DMA_FROM_DEVICE);
1432 }
1433
1434 prefetch(skb->data - NET_IP_ALIGN);
1435 skb_put(skb, pkt_len - 4);
1436 data = skb->data;
Eric Nelson3ac72b72016-09-24 07:42:19 -07001437
Fabio Estevam235bde12016-10-21 09:34:29 -02001438 if (!is_copybreak && need_swap)
1439 swap_buffer(data, pkt_len);
1440
Eric Nelson3ac72b72016-09-24 07:42:19 -07001441#if !defined(CONFIG_M5272)
1442 if (fep->quirks & FEC_QUIRK_HAS_RACC)
1443 data = skb_pull_inline(skb, 2);
1444#endif
1445
Jim Baxtercdffcf12013-07-02 22:52:56 +01001446 /* Extract the enhanced buffer descriptor */
1447 ebdp = NULL;
1448 if (fep->bufdesc_ex)
1449 ebdp = (struct bufdesc_ex *)bdp;
1450
1451 /* If this is a VLAN packet remove the VLAN Tag */
1452 vlan_packet_rcvd = false;
1453 if ((ndev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
Johannes Berg5cfa3032016-01-24 16:52:37 +01001454 fep->bufdesc_ex &&
1455 (ebdp->cbd_esc & cpu_to_fec32(BD_ENET_RX_VLAN))) {
Jim Baxtercdffcf12013-07-02 22:52:56 +01001456 /* Push and remove the vlan tag */
1457 struct vlan_hdr *vlan_header =
1458 (struct vlan_hdr *) (data + ETH_HLEN);
1459 vlan_tag = ntohs(vlan_header->h_vlan_TCI);
Jim Baxtercdffcf12013-07-02 22:52:56 +01001460
1461 vlan_packet_rcvd = true;
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001462
Nimrod Andyaf5cbc92015-03-10 19:09:41 +08001463 memmove(skb->data + VLAN_HLEN, data, ETH_ALEN * 2);
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001464 skb_pull(skb, VLAN_HLEN);
Jim Baxtercdffcf12013-07-02 22:52:56 +01001465 }
1466
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001467 skb->protocol = eth_type_trans(skb, ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001469 /* Get receive timestamp from the skb */
1470 if (fep->hwts_rx_en && fep->bufdesc_ex)
Johannes Berg5cfa3032016-01-24 16:52:37 +01001471 fec_enet_hwtstamp(fep, fec32_to_cpu(ebdp->ts),
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001472 skb_hwtstamps(skb));
Jim Baxtercdffcf12013-07-02 22:52:56 +01001473
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001474 if (fep->bufdesc_ex &&
1475 (fep->csum_flags & FLAG_RX_CSUM_ENABLED)) {
Johannes Berg5cfa3032016-01-24 16:52:37 +01001476 if (!(ebdp->cbd_esc & cpu_to_fec32(FLAG_RX_CSUM_ERROR))) {
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001477 /* don't check it */
1478 skb->ip_summed = CHECKSUM_UNNECESSARY;
1479 } else {
1480 skb_checksum_none_assert(skb);
Jim Baxter4c09eed2013-04-19 08:10:49 +00001481 }
Sascha Hauer22f6b862009-04-15 01:32:18 +00001482 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00001483
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001484 /* Handle received VLAN packets */
1485 if (vlan_packet_rcvd)
1486 __vlan_hwaccel_put_tag(skb,
1487 htons(ETH_P_8021Q),
1488 vlan_tag);
1489
1490 napi_gro_receive(&fep->napi, skb);
1491
1492 if (is_copybreak) {
Johannes Berg5cfa3032016-01-24 16:52:37 +01001493 dma_sync_single_for_device(&fep->pdev->dev,
1494 fec32_to_cpu(bdp->cbd_bufaddr),
Nimrod Andy1b7bde62014-09-30 09:28:05 +08001495 FEC_ENET_RX_FRSIZE - fep->rx_align,
1496 DMA_FROM_DEVICE);
1497 } else {
1498 rxq->rx_skbuff[index] = skb_new;
1499 fec_enet_new_rxbdp(ndev, bdp, skb_new);
1500 }
1501
Sascha Hauer22f6b862009-04-15 01:32:18 +00001502rx_processing_done:
1503 /* Clear the status flags for this buffer */
1504 status &= ~BD_ENET_RX_STATS;
1505
1506 /* Mark the buffer empty */
1507 status |= BD_ENET_RX_EMPTY;
Sascha Hauer22f6b862009-04-15 01:32:18 +00001508
Frank Liff43da82013-01-03 16:04:23 +00001509 if (fep->bufdesc_ex) {
1510 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
1511
Johannes Berg5cfa3032016-01-24 16:52:37 +01001512 ebdp->cbd_esc = cpu_to_fec32(BD_ENET_RX_INT);
Frank Liff43da82013-01-03 16:04:23 +00001513 ebdp->cbd_prot = 0;
1514 ebdp->cbd_bdu = 0;
1515 }
Troy Kiskybe293462016-02-05 14:52:49 -07001516 /* Make sure the updates to rest of the descriptor are
1517 * performed before transferring ownership.
1518 */
1519 wmb();
1520 bdp->cbd_sc = cpu_to_fec16(status);
Frank Li6605b732012-10-30 18:25:31 +00001521
Sascha Hauer22f6b862009-04-15 01:32:18 +00001522 /* Update BD pointer to next entry */
Troy Kisky7355f272016-02-05 14:52:46 -07001523 bdp = fec_enet_get_nextdesc(bdp, &rxq->bd);
Duan Fugang-B3861136e24e22013-09-03 10:41:18 +08001524
Sascha Hauer22f6b862009-04-15 01:32:18 +00001525 /* Doing this here will keep the FEC running while we process
1526 * incoming frames. On a heavily loaded network, we should be
1527 * able to keep up at the expense of system resources.
1528 */
Troy Kisky53bb20d2016-02-05 14:52:47 -07001529 writel(0, rxq->bd.reg_desc_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 }
Troy Kisky7355f272016-02-05 14:52:46 -07001531 rxq->bd.cur = bdp;
Frank Lidc975382013-01-28 18:31:42 +00001532 return pkt_received;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
Fugang Duan4d494cd2014-09-13 05:00:48 +08001535static int
1536fec_enet_rx(struct net_device *ndev, int budget)
1537{
1538 int pkt_received = 0;
1539 u16 queue_id;
1540 struct fec_enet_private *fep = netdev_priv(ndev);
1541
1542 for_each_set_bit(queue_id, &fep->work_rx, FEC_ENET_MAX_RX_QS) {
Uwe Kleine-König1c021bb2016-05-03 16:38:53 +02001543 int ret;
1544
1545 ret = fec_enet_rx_queue(ndev,
Fugang Duan4d494cd2014-09-13 05:00:48 +08001546 budget - pkt_received, queue_id);
Uwe Kleine-König1c021bb2016-05-03 16:38:53 +02001547
1548 if (ret < budget - pkt_received)
1549 clear_bit(queue_id, &fep->work_rx);
1550
1551 pkt_received += ret;
Fugang Duan4d494cd2014-09-13 05:00:48 +08001552 }
1553 return pkt_received;
1554}
1555
1556static bool
1557fec_enet_collect_events(struct fec_enet_private *fep, uint int_events)
1558{
1559 if (int_events == 0)
1560 return false;
1561
Troy Kisky5e62d982017-09-19 17:33:07 -07001562 if (int_events & FEC_ENET_RXF_0)
Fugang Duan4d494cd2014-09-13 05:00:48 +08001563 fep->work_rx |= (1 << 2);
Frank Lice99d0d2014-09-13 05:00:52 +08001564 if (int_events & FEC_ENET_RXF_1)
1565 fep->work_rx |= (1 << 0);
1566 if (int_events & FEC_ENET_RXF_2)
1567 fep->work_rx |= (1 << 1);
Fugang Duan4d494cd2014-09-13 05:00:48 +08001568
Troy Kisky5e62d982017-09-19 17:33:07 -07001569 if (int_events & FEC_ENET_TXF_0)
Fugang Duan4d494cd2014-09-13 05:00:48 +08001570 fep->work_tx |= (1 << 2);
Frank Lice99d0d2014-09-13 05:00:52 +08001571 if (int_events & FEC_ENET_TXF_1)
1572 fep->work_tx |= (1 << 0);
1573 if (int_events & FEC_ENET_TXF_2)
1574 fep->work_tx |= (1 << 1);
Fugang Duan4d494cd2014-09-13 05:00:48 +08001575
1576 return true;
1577}
1578
Uwe Kleine-König45993652011-01-19 20:47:04 +01001579static irqreturn_t
1580fec_enet_interrupt(int irq, void *dev_id)
1581{
1582 struct net_device *ndev = dev_id;
1583 struct fec_enet_private *fep = netdev_priv(ndev);
1584 uint int_events;
1585 irqreturn_t ret = IRQ_NONE;
1586
Russell King7a168072014-07-08 00:22:44 +01001587 int_events = readl(fep->hwp + FEC_IEVENT);
Nimrod Andy94191fd2014-12-16 18:25:58 +08001588 writel(int_events, fep->hwp + FEC_IEVENT);
Fugang Duan4d494cd2014-09-13 05:00:48 +08001589 fec_enet_collect_events(fep, int_events);
Uwe Kleine-König45993652011-01-19 20:47:04 +01001590
Fugang Duan61615cd2015-03-04 07:52:11 +08001591 if ((fep->work_tx || fep->work_rx) && fep->link) {
Russell King7a168072014-07-08 00:22:44 +01001592 ret = IRQ_HANDLED;
Frank Lidc975382013-01-28 18:31:42 +00001593
Nimrod Andy94191fd2014-12-16 18:25:58 +08001594 if (napi_schedule_prep(&fep->napi)) {
1595 /* Disable the NAPI interrupts */
Troy Kisky80dc6a92016-02-05 14:52:48 -07001596 writel(FEC_NAPI_IMASK, fep->hwp + FEC_IMASK);
Nimrod Andy94191fd2014-12-16 18:25:58 +08001597 __napi_schedule(&fep->napi);
1598 }
Russell King7a168072014-07-08 00:22:44 +01001599 }
Uwe Kleine-König45993652011-01-19 20:47:04 +01001600
Russell King7a168072014-07-08 00:22:44 +01001601 if (int_events & FEC_ENET_MII) {
1602 ret = IRQ_HANDLED;
1603 complete(&fep->mdio_done);
1604 }
Uwe Kleine-König45993652011-01-19 20:47:04 +01001605 return ret;
1606}
1607
Frank Lidc975382013-01-28 18:31:42 +00001608static int fec_enet_rx_napi(struct napi_struct *napi, int budget)
1609{
1610 struct net_device *ndev = napi->dev;
Frank Lidc975382013-01-28 18:31:42 +00001611 struct fec_enet_private *fep = netdev_priv(ndev);
Russell King7a168072014-07-08 00:22:44 +01001612 int pkts;
1613
Russell King7a168072014-07-08 00:22:44 +01001614 pkts = fec_enet_rx(ndev, budget);
Uwe Kleine-König45993652011-01-19 20:47:04 +01001615
Frank Lide5fb0a2013-03-03 17:34:25 +00001616 fec_enet_tx(ndev);
1617
Frank Lidc975382013-01-28 18:31:42 +00001618 if (pkts < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001619 napi_complete_done(napi, pkts);
Frank Lidc975382013-01-28 18:31:42 +00001620 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
1621 }
1622 return pkts;
1623}
Uwe Kleine-König45993652011-01-19 20:47:04 +01001624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625/* ------------------------------------------------------------------------- */
Fabio Estevam0c7768a2013-01-07 17:42:56 +00001626static void fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001628 struct fec_enet_private *fep = netdev_priv(ndev);
Jingoo Han94660ba2013-08-30 13:56:26 +09001629 struct fec_platform_data *pdata = dev_get_platdata(&fep->pdev->dev);
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001630 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Shawn Guo49da97d2011-01-05 21:13:11 +00001632 /*
1633 * try to get mac address in following order:
1634 *
1635 * 1) module parameter via kernel command line in form
1636 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
1637 */
1638 iap = macaddr;
1639
1640 /*
Shawn Guoca2cc332011-06-25 02:04:35 +08001641 * 2) from device tree data
1642 */
1643 if (!is_valid_ether_addr(iap)) {
1644 struct device_node *np = fep->pdev->dev.of_node;
1645 if (np) {
1646 const char *mac = of_get_mac_address(np);
1647 if (mac)
1648 iap = (unsigned char *) mac;
1649 }
1650 }
Shawn Guoca2cc332011-06-25 02:04:35 +08001651
1652 /*
1653 * 3) from flash or fuse (via platform data)
Shawn Guo49da97d2011-01-05 21:13:11 +00001654 */
1655 if (!is_valid_ether_addr(iap)) {
1656#ifdef CONFIG_M5272
1657 if (FEC_FLASHMAC)
1658 iap = (unsigned char *)FEC_FLASHMAC;
1659#else
1660 if (pdata)
Lothar Waßmann589efdc2011-12-07 21:59:29 +00001661 iap = (unsigned char *)&pdata->mac;
Shawn Guo49da97d2011-01-05 21:13:11 +00001662#endif
1663 }
1664
1665 /*
Shawn Guoca2cc332011-06-25 02:04:35 +08001666 * 4) FEC mac registers set by bootloader
Shawn Guo49da97d2011-01-05 21:13:11 +00001667 */
1668 if (!is_valid_ether_addr(iap)) {
Dan Carpenter7d7628f2013-08-29 11:25:14 +03001669 *((__be32 *) &tmpaddr[0]) =
1670 cpu_to_be32(readl(fep->hwp + FEC_ADDR_LOW));
1671 *((__be16 *) &tmpaddr[4]) =
1672 cpu_to_be16(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 iap = &tmpaddr[0];
1674 }
1675
Lucas Stachff5b2fa2013-06-03 00:38:39 +00001676 /*
1677 * 5) random mac address
1678 */
1679 if (!is_valid_ether_addr(iap)) {
1680 /* Report it and use a random ethernet address instead */
1681 netdev_err(ndev, "Invalid MAC address: %pM\n", iap);
1682 eth_hw_addr_random(ndev);
1683 netdev_info(ndev, "Using random MAC address: %pM\n",
1684 ndev->dev_addr);
1685 return;
1686 }
1687
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001688 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Shawn Guo49da97d2011-01-05 21:13:11 +00001690 /* Adjust MAC if using macaddr */
1691 if (iap == macaddr)
Shawn Guo43af9402011-12-05 05:01:15 +00001692 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695/* ------------------------------------------------------------------------- */
1696
Bryan Wue6b043d2010-03-31 02:10:44 +00001697/*
1698 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001700static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001702 struct fec_enet_private *fep = netdev_priv(ndev);
Philippe Reynes45f5c322016-05-10 00:19:42 +02001703 struct phy_device *phy_dev = ndev->phydev;
Bryan Wue6b043d2010-03-31 02:10:44 +00001704 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Bryan Wue6b043d2010-03-31 02:10:44 +00001706 /* Prevent a state halted on mii error */
1707 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
1708 phy_dev->state = PHY_RESUMING;
Frank Li54309fa2013-05-07 14:08:44 +00001709 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001711
Russell King8ce56242014-07-08 12:40:07 +01001712 /*
1713 * If the netdev is down, or is going down, we're not interested
1714 * in link state events, so just mark our idea of the link as down
1715 * and ignore the event.
1716 */
1717 if (!netif_running(ndev) || !netif_device_present(ndev)) {
1718 fep->link = 0;
1719 } else if (phy_dev->link) {
Lucas Stachd97e7492013-03-14 05:12:01 +00001720 if (!fep->link) {
Lothar Waßmann6ea07222011-12-07 21:59:27 +00001721 fep->link = phy_dev->link;
Bryan Wue6b043d2010-03-31 02:10:44 +00001722 status_change = 1;
1723 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001724
Russell Kingef833372014-07-08 12:40:43 +01001725 if (fep->full_duplex != phy_dev->duplex) {
1726 fep->full_duplex = phy_dev->duplex;
Lucas Stachd97e7492013-03-14 05:12:01 +00001727 status_change = 1;
Russell Kingef833372014-07-08 12:40:43 +01001728 }
Lucas Stachd97e7492013-03-14 05:12:01 +00001729
1730 if (phy_dev->speed != fep->speed) {
1731 fep->speed = phy_dev->speed;
1732 status_change = 1;
1733 }
1734
1735 /* if any of the above changed restart the FEC */
Russell Kingdbc64a82014-07-08 12:40:12 +01001736 if (status_change) {
Russell Kingdbc64a82014-07-08 12:40:12 +01001737 napi_disable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001738 netif_tx_lock_bh(ndev);
Russell Kingef833372014-07-08 12:40:43 +01001739 fec_restart(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001740 netif_wake_queue(ndev);
Russell King6af42d42014-07-08 12:40:18 +01001741 netif_tx_unlock_bh(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001742 napi_enable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001743 }
Lucas Stachd97e7492013-03-14 05:12:01 +00001744 } else {
1745 if (fep->link) {
Russell Kingf208ce12014-07-08 12:40:38 +01001746 napi_disable(&fep->napi);
1747 netif_tx_lock_bh(ndev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001748 fec_stop(ndev);
Russell Kingf208ce12014-07-08 12:40:38 +01001749 netif_tx_unlock_bh(ndev);
1750 napi_enable(&fep->napi);
Lucas Stach8d7ed0f2013-04-16 00:42:42 +00001751 fep->link = phy_dev->link;
Lucas Stachd97e7492013-03-14 05:12:01 +00001752 status_change = 1;
1753 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001754 }
1755
Bryan Wue6b043d2010-03-31 02:10:44 +00001756 if (status_change)
1757 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758}
1759
Bryan Wue6b043d2010-03-31 02:10:44 +00001760static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761{
Bryan Wue6b043d2010-03-31 02:10:44 +00001762 struct fec_enet_private *fep = bus->priv;
Andrew Lunn8fff7552015-07-25 22:38:02 +02001763 struct device *dev = &fep->pdev->dev;
Baruch Siach97b72e42010-07-11 21:12:51 +00001764 unsigned long time_left;
Andrew Lunn8fff7552015-07-25 22:38:02 +02001765 int ret = 0;
1766
1767 ret = pm_runtime_get_sync(dev);
Fabio Estevamb0c6ce22015-08-12 12:10:23 -03001768 if (ret < 0)
Andrew Lunn8fff7552015-07-25 22:38:02 +02001769 return ret;
Bryan Wue6b043d2010-03-31 02:10:44 +00001770
1771 fep->mii_timeout = 0;
Russell Kingaac27c72015-08-25 09:49:53 +01001772 reinit_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +00001773
1774 /* start a read op */
1775 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
1776 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
1777 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
1778
1779 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +00001780 time_left = wait_for_completion_timeout(&fep->mdio_done,
1781 usecs_to_jiffies(FEC_MII_TIMEOUT));
1782 if (time_left == 0) {
1783 fep->mii_timeout = 1;
Joe Perches31b77202013-04-13 19:03:17 +00001784 netdev_err(fep->netdev, "MDIO read timeout\n");
Andrew Lunn8fff7552015-07-25 22:38:02 +02001785 ret = -ETIMEDOUT;
1786 goto out;
Bryan Wue6b043d2010-03-31 02:10:44 +00001787 }
1788
Andrew Lunn8fff7552015-07-25 22:38:02 +02001789 ret = FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
1790
1791out:
1792 pm_runtime_mark_last_busy(dev);
1793 pm_runtime_put_autosuspend(dev);
1794
1795 return ret;
Bryan Wue6b043d2010-03-31 02:10:44 +00001796}
1797
1798static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
1799 u16 value)
1800{
1801 struct fec_enet_private *fep = bus->priv;
Andrew Lunn8fff7552015-07-25 22:38:02 +02001802 struct device *dev = &fep->pdev->dev;
Baruch Siach97b72e42010-07-11 21:12:51 +00001803 unsigned long time_left;
Maciej S. Szmigiero42ea4452015-09-03 21:38:30 +02001804 int ret;
Andrew Lunn8fff7552015-07-25 22:38:02 +02001805
1806 ret = pm_runtime_get_sync(dev);
Fabio Estevamb0c6ce22015-08-12 12:10:23 -03001807 if (ret < 0)
Andrew Lunn8fff7552015-07-25 22:38:02 +02001808 return ret;
Maciej S. Szmigiero42ea4452015-09-03 21:38:30 +02001809 else
1810 ret = 0;
Bryan Wue6b043d2010-03-31 02:10:44 +00001811
1812 fep->mii_timeout = 0;
Russell Kingaac27c72015-08-25 09:49:53 +01001813 reinit_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +00001814
Shawn Guo862f0982011-01-05 21:13:09 +00001815 /* start a write op */
1816 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +00001817 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
1818 FEC_MMFR_TA | FEC_MMFR_DATA(value),
1819 fep->hwp + FEC_MII_DATA);
1820
1821 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +00001822 time_left = wait_for_completion_timeout(&fep->mdio_done,
1823 usecs_to_jiffies(FEC_MII_TIMEOUT));
1824 if (time_left == 0) {
1825 fep->mii_timeout = 1;
Joe Perches31b77202013-04-13 19:03:17 +00001826 netdev_err(fep->netdev, "MDIO write timeout\n");
Andrew Lunn8fff7552015-07-25 22:38:02 +02001827 ret = -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +00001828 }
1829
Andrew Lunn8fff7552015-07-25 22:38:02 +02001830 pm_runtime_mark_last_busy(dev);
1831 pm_runtime_put_autosuspend(dev);
1832
1833 return ret;
Bryan Wue6b043d2010-03-31 02:10:44 +00001834}
1835
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001836static int fec_enet_clk_enable(struct net_device *ndev, bool enable)
1837{
1838 struct fec_enet_private *fep = netdev_priv(ndev);
1839 int ret;
1840
1841 if (enable) {
1842 ret = clk_prepare_enable(fep->clk_ahb);
1843 if (ret)
1844 return ret;
Uwe Kleine-König01e59432016-10-20 10:28:27 +02001845
1846 ret = clk_prepare_enable(fep->clk_enet_out);
1847 if (ret)
1848 goto failed_clk_enet_out;
1849
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001850 if (fep->clk_ptp) {
Nimrod Andy91c0d982014-08-21 17:09:38 +08001851 mutex_lock(&fep->ptp_clk_mutex);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001852 ret = clk_prepare_enable(fep->clk_ptp);
Nimrod Andy91c0d982014-08-21 17:09:38 +08001853 if (ret) {
1854 mutex_unlock(&fep->ptp_clk_mutex);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001855 goto failed_clk_ptp;
Nimrod Andy91c0d982014-08-21 17:09:38 +08001856 } else {
1857 fep->ptp_clk_on = true;
1858 }
1859 mutex_unlock(&fep->ptp_clk_mutex);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001860 }
Uwe Kleine-König01e59432016-10-20 10:28:27 +02001861
1862 ret = clk_prepare_enable(fep->clk_ref);
1863 if (ret)
1864 goto failed_clk_ref;
Richard Leitner1b0a83a2017-12-11 13:17:00 +01001865
1866 phy_reset_after_clk_enable(ndev->phydev);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001867 } else {
1868 clk_disable_unprepare(fep->clk_ahb);
Uwe Kleine-König01e59432016-10-20 10:28:27 +02001869 clk_disable_unprepare(fep->clk_enet_out);
Nimrod Andy91c0d982014-08-21 17:09:38 +08001870 if (fep->clk_ptp) {
1871 mutex_lock(&fep->ptp_clk_mutex);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001872 clk_disable_unprepare(fep->clk_ptp);
Nimrod Andy91c0d982014-08-21 17:09:38 +08001873 fep->ptp_clk_on = false;
1874 mutex_unlock(&fep->ptp_clk_mutex);
1875 }
Uwe Kleine-König01e59432016-10-20 10:28:27 +02001876 clk_disable_unprepare(fep->clk_ref);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001877 }
1878
1879 return 0;
Fugang Duan9b5330e2014-09-13 05:00:46 +08001880
1881failed_clk_ref:
1882 if (fep->clk_ref)
1883 clk_disable_unprepare(fep->clk_ref);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001884failed_clk_ptp:
1885 if (fep->clk_enet_out)
1886 clk_disable_unprepare(fep->clk_enet_out);
1887failed_clk_enet_out:
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001888 clk_disable_unprepare(fep->clk_ahb);
1889
1890 return ret;
1891}
1892
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001893static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +00001894{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001895 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001896 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001897 char mdio_bus_id[MII_BUS_ID_SIZE];
1898 char phy_name[MII_BUS_ID_SIZE + 3];
1899 int phy_id;
Shawn Guo43af9402011-12-05 05:01:15 +00001900 int dev_id = fep->dev_id;
Bryan Wue6b043d2010-03-31 02:10:44 +00001901
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001902 if (fep->phy_node) {
1903 phy_dev = of_phy_connect(ndev, fep->phy_node,
1904 &fec_enet_adjust_link, 0,
1905 fep->phy_interface);
Andrew Lunn9558df32017-07-30 22:11:06 +02001906 if (!phy_dev) {
1907 netdev_err(ndev, "Unable to connect to phy\n");
Nimrod Andy213a9922014-12-09 18:46:56 +08001908 return -ENODEV;
Andrew Lunn9558df32017-07-30 22:11:06 +02001909 }
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001910 } else {
1911 /* check for attached phy */
1912 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
Andrew Lunn7f854422016-01-06 20:11:18 +01001913 if (!mdiobus_is_registered_device(fep->mii_bus, phy_id))
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001914 continue;
1915 if (dev_id--)
1916 continue;
Rickard Strandqvist949bdd22014-09-14 19:32:42 +02001917 strlcpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001918 break;
1919 }
1920
1921 if (phy_id >= PHY_MAX_ADDR) {
1922 netdev_info(ndev, "no PHY, assuming direct connection to switch\n");
Rickard Strandqvist949bdd22014-09-14 19:32:42 +02001923 strlcpy(mdio_bus_id, "fixed-0", MII_BUS_ID_SIZE);
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001924 phy_id = 0;
1925 }
1926
1927 snprintf(phy_name, sizeof(phy_name),
1928 PHY_ID_FMT, mdio_bus_id, phy_id);
1929 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link,
1930 fep->phy_interface);
Bryan Wue6b043d2010-03-31 02:10:44 +00001931 }
1932
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001933 if (IS_ERR(phy_dev)) {
Joe Perches31b77202013-04-13 19:03:17 +00001934 netdev_err(ndev, "could not attach to PHY\n");
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001935 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001936 }
1937
1938 /* mask with MAC supported features */
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01001939 if (fep->quirks & FEC_QUIRK_HAS_GBIT) {
Shawn Guo230dec62011-09-23 02:12:48 +00001940 phy_dev->supported &= PHY_GBIT_FEATURES;
Russell Kingb44592f2014-07-08 00:22:34 +01001941 phy_dev->supported &= ~SUPPORTED_1000baseT_Half;
Guenter Roeckd1391932013-06-18 10:04:59 -07001942#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +00001943 phy_dev->supported |= SUPPORTED_Pause;
Guenter Roeckd1391932013-06-18 10:04:59 -07001944#endif
Frank Libaa70a52013-01-16 16:55:58 +00001945 }
Shawn Guo230dec62011-09-23 02:12:48 +00001946 else
1947 phy_dev->supported &= PHY_BASIC_FEATURES;
1948
Bryan Wue6b043d2010-03-31 02:10:44 +00001949 phy_dev->advertising = phy_dev->supported;
1950
Bryan Wue6b043d2010-03-31 02:10:44 +00001951 fep->link = 0;
1952 fep->full_duplex = 0;
1953
Andrew Lunn22209432016-01-06 20:11:13 +01001954 phy_attached_info(phy_dev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001955
Bryan Wue6b043d2010-03-31 02:10:44 +00001956 return 0;
1957}
1958
1959static int fec_enet_mii_init(struct platform_device *pdev)
1960{
Shawn Guob5680e02011-01-05 21:13:13 +00001961 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001962 struct net_device *ndev = platform_get_drvdata(pdev);
1963 struct fec_enet_private *fep = netdev_priv(ndev);
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001964 struct device_node *node;
Andrew Lunne7f4dc32016-01-06 20:11:15 +01001965 int err = -ENXIO;
Uwe Kleine-König63c60732015-03-27 11:08:32 +01001966 u32 mii_speed, holdtime;
Bryan Wue6b043d2010-03-31 02:10:44 +00001967
Shawn Guob5680e02011-01-05 21:13:13 +00001968 /*
Stefan Agner3d125f92015-01-14 00:20:21 +01001969 * The i.MX28 dual fec interfaces are not equal.
Shawn Guob5680e02011-01-05 21:13:13 +00001970 * Here are the differences:
1971 *
1972 * - fec0 supports MII & RMII modes while fec1 only supports RMII
1973 * - fec0 acts as the 1588 time master while fec1 is slave
1974 * - external phys can only be configured by fec0
1975 *
1976 * That is to say fec1 can not work independently. It only works
1977 * when fec0 is working. The reason behind this design is that the
1978 * second interface is added primarily for Switch mode.
1979 *
1980 * Because of the last point above, both phys are attached on fec0
1981 * mdio interface in board design, and need to be configured by
1982 * fec0 mii_bus.
1983 */
Stefan Agner3d125f92015-01-14 00:20:21 +01001984 if ((fep->quirks & FEC_QUIRK_SINGLE_MDIO) && fep->dev_id > 0) {
Shawn Guob5680e02011-01-05 21:13:13 +00001985 /* fec1 uses fec0 mii_bus */
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001986 if (mii_cnt && fec0_mii_bus) {
1987 fep->mii_bus = fec0_mii_bus;
1988 mii_cnt++;
1989 return 0;
1990 }
1991 return -ENOENT;
Shawn Guob5680e02011-01-05 21:13:13 +00001992 }
1993
Bryan Wue6b043d2010-03-31 02:10:44 +00001994 fep->mii_timeout = 0;
1995
1996 /*
1997 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
Shawn Guo230dec62011-09-23 02:12:48 +00001998 *
1999 * The formula for FEC MDC is 'ref_freq / (MII_SPEED x 2)' while
2000 * for ENET-MAC is 'ref_freq / ((MII_SPEED + 1) x 2)'. The i.MX28
2001 * Reference Manual has an error on this, and gets fixed on i.MX6Q
2002 * document.
Bryan Wue6b043d2010-03-31 02:10:44 +00002003 */
Uwe Kleine-König63c60732015-03-27 11:08:32 +01002004 mii_speed = DIV_ROUND_UP(clk_get_rate(fep->clk_ipg), 5000000);
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01002005 if (fep->quirks & FEC_QUIRK_ENET_MAC)
Uwe Kleine-König63c60732015-03-27 11:08:32 +01002006 mii_speed--;
2007 if (mii_speed > 63) {
2008 dev_err(&pdev->dev,
Peter Meerwald-Stadler981a0542016-12-16 14:23:36 +01002009 "fec clock (%lu) too fast to get right mii speed\n",
Uwe Kleine-König63c60732015-03-27 11:08:32 +01002010 clk_get_rate(fep->clk_ipg));
2011 err = -EINVAL;
2012 goto err_out;
2013 }
2014
2015 /*
2016 * The i.MX28 and i.MX6 types have another filed in the MSCR (aka
2017 * MII_SPEED) register that defines the MDIO output hold time. Earlier
2018 * versions are RAZ there, so just ignore the difference and write the
2019 * register always.
2020 * The minimal hold time according to IEE802.3 (clause 22) is 10 ns.
2021 * HOLDTIME + 1 is the number of clk cycles the fec is holding the
2022 * output.
2023 * The HOLDTIME bitfield takes values between 0 and 7 (inclusive).
2024 * Given that ceil(clkrate / 5000000) <= 64, the calculation for
2025 * holdtime cannot result in a value greater than 3.
2026 */
2027 holdtime = DIV_ROUND_UP(clk_get_rate(fep->clk_ipg), 100000000) - 1;
2028
2029 fep->phy_speed = mii_speed << 1 | holdtime << 8;
2030
Bryan Wue6b043d2010-03-31 02:10:44 +00002031 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
2032
2033 fep->mii_bus = mdiobus_alloc();
2034 if (fep->mii_bus == NULL) {
2035 err = -ENOMEM;
2036 goto err_out;
2037 }
2038
2039 fep->mii_bus->name = "fec_enet_mii_bus";
2040 fep->mii_bus->read = fec_enet_mdio_read;
2041 fep->mii_bus->write = fec_enet_mdio_write;
Florian Fainelli391420f2012-01-09 23:59:13 +00002042 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
2043 pdev->name, fep->dev_id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +00002044 fep->mii_bus->priv = fep;
2045 fep->mii_bus->parent = &pdev->dev;
2046
Uwe Kleine-König407066f2014-08-11 17:35:33 +02002047 node = of_get_child_by_name(pdev->dev.of_node, "mdio");
2048 if (node) {
2049 err = of_mdiobus_register(fep->mii_bus, node);
2050 of_node_put(node);
2051 } else {
2052 err = mdiobus_register(fep->mii_bus);
2053 }
2054
2055 if (err)
Andrew Lunne7f4dc32016-01-06 20:11:15 +01002056 goto err_out_free_mdiobus;
Bryan Wue6b043d2010-03-31 02:10:44 +00002057
Lothar Waßmanne163cc92011-12-07 21:59:31 +00002058 mii_cnt++;
2059
Shawn Guob5680e02011-01-05 21:13:13 +00002060 /* save fec0 mii_bus */
Stefan Agner3d125f92015-01-14 00:20:21 +01002061 if (fep->quirks & FEC_QUIRK_SINGLE_MDIO)
Shawn Guob5680e02011-01-05 21:13:13 +00002062 fec0_mii_bus = fep->mii_bus;
2063
Bryan Wue6b043d2010-03-31 02:10:44 +00002064 return 0;
2065
Bryan Wue6b043d2010-03-31 02:10:44 +00002066err_out_free_mdiobus:
2067 mdiobus_free(fep->mii_bus);
2068err_out:
2069 return err;
2070}
2071
2072static void fec_enet_mii_remove(struct fec_enet_private *fep)
2073{
Lothar Waßmanne163cc92011-12-07 21:59:31 +00002074 if (--mii_cnt == 0) {
2075 mdiobus_unregister(fep->mii_bus);
Lothar Waßmanne163cc92011-12-07 21:59:31 +00002076 mdiobus_free(fep->mii_bus);
2077 }
Bryan Wue6b043d2010-03-31 02:10:44 +00002078}
2079
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002080static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00002081 struct ethtool_drvinfo *info)
2082{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002083 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Jiri Pirko7826d432013-01-06 00:44:26 +00002085 strlcpy(info->driver, fep->pdev->dev.driver->name,
2086 sizeof(info->driver));
2087 strlcpy(info->version, "Revision: 1.0", sizeof(info->version));
2088 strlcpy(info->bus_info, dev_name(&ndev->dev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089}
Bryan Wue6b043d2010-03-31 02:10:44 +00002090
Philippe Reynesdb65f352015-05-11 00:01:42 +02002091static int fec_enet_get_regs_len(struct net_device *ndev)
2092{
2093 struct fec_enet_private *fep = netdev_priv(ndev);
2094 struct resource *r;
2095 int s = 0;
2096
2097 r = platform_get_resource(fep->pdev, IORESOURCE_MEM, 0);
2098 if (r)
2099 s = resource_size(r);
2100
2101 return s;
2102}
2103
2104/* List of registers that can be safety be read to dump them with ethtool */
2105#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Johannes Berg05f3b502016-01-25 11:40:50 +01002106 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Philippe Reynesdb65f352015-05-11 00:01:42 +02002107static u32 fec_enet_register_offset[] = {
2108 FEC_IEVENT, FEC_IMASK, FEC_R_DES_ACTIVE_0, FEC_X_DES_ACTIVE_0,
2109 FEC_ECNTRL, FEC_MII_DATA, FEC_MII_SPEED, FEC_MIB_CTRLSTAT, FEC_R_CNTRL,
2110 FEC_X_CNTRL, FEC_ADDR_LOW, FEC_ADDR_HIGH, FEC_OPD, FEC_TXIC0, FEC_TXIC1,
2111 FEC_TXIC2, FEC_RXIC0, FEC_RXIC1, FEC_RXIC2, FEC_HASH_TABLE_HIGH,
2112 FEC_HASH_TABLE_LOW, FEC_GRP_HASH_TABLE_HIGH, FEC_GRP_HASH_TABLE_LOW,
2113 FEC_X_WMRK, FEC_R_BOUND, FEC_R_FSTART, FEC_R_DES_START_1,
2114 FEC_X_DES_START_1, FEC_R_BUFF_SIZE_1, FEC_R_DES_START_2,
2115 FEC_X_DES_START_2, FEC_R_BUFF_SIZE_2, FEC_R_DES_START_0,
2116 FEC_X_DES_START_0, FEC_R_BUFF_SIZE_0, FEC_R_FIFO_RSFL, FEC_R_FIFO_RSEM,
2117 FEC_R_FIFO_RAEM, FEC_R_FIFO_RAFL, FEC_RACC, FEC_RCMR_1, FEC_RCMR_2,
2118 FEC_DMA_CFG_1, FEC_DMA_CFG_2, FEC_R_DES_ACTIVE_1, FEC_X_DES_ACTIVE_1,
2119 FEC_R_DES_ACTIVE_2, FEC_X_DES_ACTIVE_2, FEC_QOS_SCHEME,
2120 RMON_T_DROP, RMON_T_PACKETS, RMON_T_BC_PKT, RMON_T_MC_PKT,
2121 RMON_T_CRC_ALIGN, RMON_T_UNDERSIZE, RMON_T_OVERSIZE, RMON_T_FRAG,
2122 RMON_T_JAB, RMON_T_COL, RMON_T_P64, RMON_T_P65TO127, RMON_T_P128TO255,
2123 RMON_T_P256TO511, RMON_T_P512TO1023, RMON_T_P1024TO2047,
2124 RMON_T_P_GTE2048, RMON_T_OCTETS,
2125 IEEE_T_DROP, IEEE_T_FRAME_OK, IEEE_T_1COL, IEEE_T_MCOL, IEEE_T_DEF,
2126 IEEE_T_LCOL, IEEE_T_EXCOL, IEEE_T_MACERR, IEEE_T_CSERR, IEEE_T_SQE,
2127 IEEE_T_FDXFC, IEEE_T_OCTETS_OK,
2128 RMON_R_PACKETS, RMON_R_BC_PKT, RMON_R_MC_PKT, RMON_R_CRC_ALIGN,
2129 RMON_R_UNDERSIZE, RMON_R_OVERSIZE, RMON_R_FRAG, RMON_R_JAB,
2130 RMON_R_RESVD_O, RMON_R_P64, RMON_R_P65TO127, RMON_R_P128TO255,
2131 RMON_R_P256TO511, RMON_R_P512TO1023, RMON_R_P1024TO2047,
2132 RMON_R_P_GTE2048, RMON_R_OCTETS,
2133 IEEE_R_DROP, IEEE_R_FRAME_OK, IEEE_R_CRC, IEEE_R_ALIGN, IEEE_R_MACERR,
2134 IEEE_R_FDXFC, IEEE_R_OCTETS_OK
2135};
2136#else
2137static u32 fec_enet_register_offset[] = {
2138 FEC_ECNTRL, FEC_IEVENT, FEC_IMASK, FEC_IVEC, FEC_R_DES_ACTIVE_0,
2139 FEC_R_DES_ACTIVE_1, FEC_R_DES_ACTIVE_2, FEC_X_DES_ACTIVE_0,
2140 FEC_X_DES_ACTIVE_1, FEC_X_DES_ACTIVE_2, FEC_MII_DATA, FEC_MII_SPEED,
2141 FEC_R_BOUND, FEC_R_FSTART, FEC_X_WMRK, FEC_X_FSTART, FEC_R_CNTRL,
2142 FEC_MAX_FRM_LEN, FEC_X_CNTRL, FEC_ADDR_LOW, FEC_ADDR_HIGH,
2143 FEC_GRP_HASH_TABLE_HIGH, FEC_GRP_HASH_TABLE_LOW, FEC_R_DES_START_0,
2144 FEC_R_DES_START_1, FEC_R_DES_START_2, FEC_X_DES_START_0,
2145 FEC_X_DES_START_1, FEC_X_DES_START_2, FEC_R_BUFF_SIZE_0,
2146 FEC_R_BUFF_SIZE_1, FEC_R_BUFF_SIZE_2
2147};
2148#endif
2149
2150static void fec_enet_get_regs(struct net_device *ndev,
2151 struct ethtool_regs *regs, void *regbuf)
2152{
2153 struct fec_enet_private *fep = netdev_priv(ndev);
2154 u32 __iomem *theregs = (u32 __iomem *)fep->hwp;
2155 u32 *buf = (u32 *)regbuf;
2156 u32 i, off;
2157
2158 memset(buf, 0, regs->len);
2159
2160 for (i = 0; i < ARRAY_SIZE(fec_enet_register_offset); i++) {
2161 off = fec_enet_register_offset[i] / 4;
2162 buf[off] = readl(&theregs[off]);
2163 }
2164}
2165
Frank Li5ebae4892013-01-06 16:25:07 +00002166static int fec_enet_get_ts_info(struct net_device *ndev,
2167 struct ethtool_ts_info *info)
2168{
2169 struct fec_enet_private *fep = netdev_priv(ndev);
2170
2171 if (fep->bufdesc_ex) {
2172
2173 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
2174 SOF_TIMESTAMPING_RX_SOFTWARE |
2175 SOF_TIMESTAMPING_SOFTWARE |
2176 SOF_TIMESTAMPING_TX_HARDWARE |
2177 SOF_TIMESTAMPING_RX_HARDWARE |
2178 SOF_TIMESTAMPING_RAW_HARDWARE;
2179 if (fep->ptp_clock)
2180 info->phc_index = ptp_clock_index(fep->ptp_clock);
2181 else
2182 info->phc_index = -1;
2183
2184 info->tx_types = (1 << HWTSTAMP_TX_OFF) |
2185 (1 << HWTSTAMP_TX_ON);
2186
2187 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
2188 (1 << HWTSTAMP_FILTER_ALL);
2189 return 0;
2190 } else {
2191 return ethtool_op_get_ts_info(ndev, info);
2192 }
2193}
2194
Guenter Roeckd1391932013-06-18 10:04:59 -07002195#if !defined(CONFIG_M5272)
2196
Frank Libaa70a52013-01-16 16:55:58 +00002197static void fec_enet_get_pauseparam(struct net_device *ndev,
2198 struct ethtool_pauseparam *pause)
2199{
2200 struct fec_enet_private *fep = netdev_priv(ndev);
2201
2202 pause->autoneg = (fep->pause_flag & FEC_PAUSE_FLAG_AUTONEG) != 0;
2203 pause->tx_pause = (fep->pause_flag & FEC_PAUSE_FLAG_ENABLE) != 0;
2204 pause->rx_pause = pause->tx_pause;
2205}
2206
2207static int fec_enet_set_pauseparam(struct net_device *ndev,
2208 struct ethtool_pauseparam *pause)
2209{
2210 struct fec_enet_private *fep = netdev_priv(ndev);
2211
Philippe Reynes45f5c322016-05-10 00:19:42 +02002212 if (!ndev->phydev)
Russell King0b146ca2014-07-08 00:22:59 +01002213 return -ENODEV;
2214
Frank Libaa70a52013-01-16 16:55:58 +00002215 if (pause->tx_pause != pause->rx_pause) {
2216 netdev_info(ndev,
2217 "hardware only support enable/disable both tx and rx");
2218 return -EINVAL;
2219 }
2220
2221 fep->pause_flag = 0;
2222
2223 /* tx pause must be same as rx pause */
2224 fep->pause_flag |= pause->rx_pause ? FEC_PAUSE_FLAG_ENABLE : 0;
2225 fep->pause_flag |= pause->autoneg ? FEC_PAUSE_FLAG_AUTONEG : 0;
2226
2227 if (pause->rx_pause || pause->autoneg) {
Philippe Reynes45f5c322016-05-10 00:19:42 +02002228 ndev->phydev->supported |= ADVERTISED_Pause;
2229 ndev->phydev->advertising |= ADVERTISED_Pause;
Frank Libaa70a52013-01-16 16:55:58 +00002230 } else {
Philippe Reynes45f5c322016-05-10 00:19:42 +02002231 ndev->phydev->supported &= ~ADVERTISED_Pause;
2232 ndev->phydev->advertising &= ~ADVERTISED_Pause;
Frank Libaa70a52013-01-16 16:55:58 +00002233 }
2234
2235 if (pause->autoneg) {
2236 if (netif_running(ndev))
2237 fec_stop(ndev);
Philippe Reynes45f5c322016-05-10 00:19:42 +02002238 phy_start_aneg(ndev->phydev);
Frank Libaa70a52013-01-16 16:55:58 +00002239 }
Russell Kingdbc64a82014-07-08 12:40:12 +01002240 if (netif_running(ndev)) {
Russell Kingdbc64a82014-07-08 12:40:12 +01002241 napi_disable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01002242 netif_tx_lock_bh(ndev);
Russell Kingef833372014-07-08 12:40:43 +01002243 fec_restart(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01002244 netif_wake_queue(ndev);
Russell King6af42d42014-07-08 12:40:18 +01002245 netif_tx_unlock_bh(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01002246 napi_enable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01002247 }
Frank Libaa70a52013-01-16 16:55:58 +00002248
2249 return 0;
2250}
2251
Chris Healy38ae92d2013-06-25 23:18:52 -07002252static const struct fec_stat {
2253 char name[ETH_GSTRING_LEN];
2254 u16 offset;
2255} fec_stats[] = {
2256 /* RMON TX */
2257 { "tx_dropped", RMON_T_DROP },
2258 { "tx_packets", RMON_T_PACKETS },
2259 { "tx_broadcast", RMON_T_BC_PKT },
2260 { "tx_multicast", RMON_T_MC_PKT },
2261 { "tx_crc_errors", RMON_T_CRC_ALIGN },
2262 { "tx_undersize", RMON_T_UNDERSIZE },
2263 { "tx_oversize", RMON_T_OVERSIZE },
2264 { "tx_fragment", RMON_T_FRAG },
2265 { "tx_jabber", RMON_T_JAB },
2266 { "tx_collision", RMON_T_COL },
2267 { "tx_64byte", RMON_T_P64 },
2268 { "tx_65to127byte", RMON_T_P65TO127 },
2269 { "tx_128to255byte", RMON_T_P128TO255 },
2270 { "tx_256to511byte", RMON_T_P256TO511 },
2271 { "tx_512to1023byte", RMON_T_P512TO1023 },
2272 { "tx_1024to2047byte", RMON_T_P1024TO2047 },
2273 { "tx_GTE2048byte", RMON_T_P_GTE2048 },
2274 { "tx_octets", RMON_T_OCTETS },
2275
2276 /* IEEE TX */
2277 { "IEEE_tx_drop", IEEE_T_DROP },
2278 { "IEEE_tx_frame_ok", IEEE_T_FRAME_OK },
2279 { "IEEE_tx_1col", IEEE_T_1COL },
2280 { "IEEE_tx_mcol", IEEE_T_MCOL },
2281 { "IEEE_tx_def", IEEE_T_DEF },
2282 { "IEEE_tx_lcol", IEEE_T_LCOL },
2283 { "IEEE_tx_excol", IEEE_T_EXCOL },
2284 { "IEEE_tx_macerr", IEEE_T_MACERR },
2285 { "IEEE_tx_cserr", IEEE_T_CSERR },
2286 { "IEEE_tx_sqe", IEEE_T_SQE },
2287 { "IEEE_tx_fdxfc", IEEE_T_FDXFC },
2288 { "IEEE_tx_octets_ok", IEEE_T_OCTETS_OK },
2289
2290 /* RMON RX */
2291 { "rx_packets", RMON_R_PACKETS },
2292 { "rx_broadcast", RMON_R_BC_PKT },
2293 { "rx_multicast", RMON_R_MC_PKT },
2294 { "rx_crc_errors", RMON_R_CRC_ALIGN },
2295 { "rx_undersize", RMON_R_UNDERSIZE },
2296 { "rx_oversize", RMON_R_OVERSIZE },
2297 { "rx_fragment", RMON_R_FRAG },
2298 { "rx_jabber", RMON_R_JAB },
2299 { "rx_64byte", RMON_R_P64 },
2300 { "rx_65to127byte", RMON_R_P65TO127 },
2301 { "rx_128to255byte", RMON_R_P128TO255 },
2302 { "rx_256to511byte", RMON_R_P256TO511 },
2303 { "rx_512to1023byte", RMON_R_P512TO1023 },
2304 { "rx_1024to2047byte", RMON_R_P1024TO2047 },
2305 { "rx_GTE2048byte", RMON_R_P_GTE2048 },
2306 { "rx_octets", RMON_R_OCTETS },
2307
2308 /* IEEE RX */
2309 { "IEEE_rx_drop", IEEE_R_DROP },
2310 { "IEEE_rx_frame_ok", IEEE_R_FRAME_OK },
2311 { "IEEE_rx_crc", IEEE_R_CRC },
2312 { "IEEE_rx_align", IEEE_R_ALIGN },
2313 { "IEEE_rx_macerr", IEEE_R_MACERR },
2314 { "IEEE_rx_fdxfc", IEEE_R_FDXFC },
2315 { "IEEE_rx_octets_ok", IEEE_R_OCTETS_OK },
2316};
2317
Nikita Yushchenkof85de662016-12-06 09:26:53 +03002318#define FEC_STATS_SIZE (ARRAY_SIZE(fec_stats) * sizeof(u64))
2319
Nikita Yushchenko80cca772016-11-29 09:44:51 +03002320static void fec_enet_update_ethtool_stats(struct net_device *dev)
Chris Healy38ae92d2013-06-25 23:18:52 -07002321{
2322 struct fec_enet_private *fep = netdev_priv(dev);
2323 int i;
2324
2325 for (i = 0; i < ARRAY_SIZE(fec_stats); i++)
Nikita Yushchenko80cca772016-11-29 09:44:51 +03002326 fep->ethtool_stats[i] = readl(fep->hwp + fec_stats[i].offset);
2327}
2328
2329static void fec_enet_get_ethtool_stats(struct net_device *dev,
2330 struct ethtool_stats *stats, u64 *data)
2331{
2332 struct fec_enet_private *fep = netdev_priv(dev);
2333
2334 if (netif_running(dev))
2335 fec_enet_update_ethtool_stats(dev);
2336
Nikita Yushchenkof85de662016-12-06 09:26:53 +03002337 memcpy(data, fep->ethtool_stats, FEC_STATS_SIZE);
Chris Healy38ae92d2013-06-25 23:18:52 -07002338}
2339
2340static void fec_enet_get_strings(struct net_device *netdev,
2341 u32 stringset, u8 *data)
2342{
2343 int i;
2344 switch (stringset) {
2345 case ETH_SS_STATS:
2346 for (i = 0; i < ARRAY_SIZE(fec_stats); i++)
2347 memcpy(data + i * ETH_GSTRING_LEN,
2348 fec_stats[i].name, ETH_GSTRING_LEN);
2349 break;
2350 }
2351}
2352
2353static int fec_enet_get_sset_count(struct net_device *dev, int sset)
2354{
2355 switch (sset) {
2356 case ETH_SS_STATS:
2357 return ARRAY_SIZE(fec_stats);
2358 default:
2359 return -EOPNOTSUPP;
2360 }
2361}
Nikita Yushchenkof85de662016-12-06 09:26:53 +03002362
Andrew Lunn2b308422017-06-07 03:57:09 +02002363static void fec_enet_clear_ethtool_stats(struct net_device *dev)
2364{
2365 struct fec_enet_private *fep = netdev_priv(dev);
2366 int i;
2367
2368 /* Disable MIB statistics counters */
2369 writel(FEC_MIB_CTRLSTAT_DISABLE, fep->hwp + FEC_MIB_CTRLSTAT);
2370
2371 for (i = 0; i < ARRAY_SIZE(fec_stats); i++)
2372 writel(0, fep->hwp + fec_stats[i].offset);
2373
2374 /* Don't disable MIB statistics counters */
2375 writel(0, fep->hwp + FEC_MIB_CTRLSTAT);
2376}
2377
Nikita Yushchenkof85de662016-12-06 09:26:53 +03002378#else /* !defined(CONFIG_M5272) */
2379#define FEC_STATS_SIZE 0
2380static inline void fec_enet_update_ethtool_stats(struct net_device *dev)
2381{
2382}
Fabio Estevam41e8e402017-06-09 22:37:22 -03002383
2384static inline void fec_enet_clear_ethtool_stats(struct net_device *dev)
2385{
2386}
Guenter Roeckd1391932013-06-18 10:04:59 -07002387#endif /* !defined(CONFIG_M5272) */
Chris Healy38ae92d2013-06-25 23:18:52 -07002388
Fugang Duand851b472014-09-17 05:18:52 +08002389/* ITR clock source is enet system clock (clk_ahb).
2390 * TCTT unit is cycle_ns * 64 cycle
2391 * So, the ICTT value = X us / (cycle_ns * 64)
2392 */
2393static int fec_enet_us_to_itr_clock(struct net_device *ndev, int us)
2394{
2395 struct fec_enet_private *fep = netdev_priv(ndev);
2396
2397 return us * (fep->itr_clk_rate / 64000) / 1000;
2398}
2399
2400/* Set threshold for interrupt coalescing */
2401static void fec_enet_itr_coal_set(struct net_device *ndev)
2402{
2403 struct fec_enet_private *fep = netdev_priv(ndev);
Fugang Duand851b472014-09-17 05:18:52 +08002404 int rx_itr, tx_itr;
2405
Fugang Duand851b472014-09-17 05:18:52 +08002406 /* Must be greater than zero to avoid unpredictable behavior */
2407 if (!fep->rx_time_itr || !fep->rx_pkts_itr ||
2408 !fep->tx_time_itr || !fep->tx_pkts_itr)
2409 return;
2410
2411 /* Select enet system clock as Interrupt Coalescing
2412 * timer Clock Source
2413 */
2414 rx_itr = FEC_ITR_CLK_SEL;
2415 tx_itr = FEC_ITR_CLK_SEL;
2416
2417 /* set ICFT and ICTT */
2418 rx_itr |= FEC_ITR_ICFT(fep->rx_pkts_itr);
2419 rx_itr |= FEC_ITR_ICTT(fec_enet_us_to_itr_clock(ndev, fep->rx_time_itr));
2420 tx_itr |= FEC_ITR_ICFT(fep->tx_pkts_itr);
2421 tx_itr |= FEC_ITR_ICTT(fec_enet_us_to_itr_clock(ndev, fep->tx_time_itr));
2422
2423 rx_itr |= FEC_ITR_EN;
2424 tx_itr |= FEC_ITR_EN;
2425
2426 writel(tx_itr, fep->hwp + FEC_TXIC0);
2427 writel(rx_itr, fep->hwp + FEC_RXIC0);
Fugang Duanff7566b2016-06-22 18:52:35 +08002428 if (fep->quirks & FEC_QUIRK_HAS_AVB) {
2429 writel(tx_itr, fep->hwp + FEC_TXIC1);
2430 writel(rx_itr, fep->hwp + FEC_RXIC1);
2431 writel(tx_itr, fep->hwp + FEC_TXIC2);
2432 writel(rx_itr, fep->hwp + FEC_RXIC2);
2433 }
Fugang Duand851b472014-09-17 05:18:52 +08002434}
2435
2436static int
2437fec_enet_get_coalesce(struct net_device *ndev, struct ethtool_coalesce *ec)
2438{
2439 struct fec_enet_private *fep = netdev_priv(ndev);
Fugang Duand851b472014-09-17 05:18:52 +08002440
Fugang Duanff7566b2016-06-22 18:52:35 +08002441 if (!(fep->quirks & FEC_QUIRK_HAS_COALESCE))
Fugang Duand851b472014-09-17 05:18:52 +08002442 return -EOPNOTSUPP;
2443
2444 ec->rx_coalesce_usecs = fep->rx_time_itr;
2445 ec->rx_max_coalesced_frames = fep->rx_pkts_itr;
2446
2447 ec->tx_coalesce_usecs = fep->tx_time_itr;
2448 ec->tx_max_coalesced_frames = fep->tx_pkts_itr;
2449
2450 return 0;
2451}
2452
2453static int
2454fec_enet_set_coalesce(struct net_device *ndev, struct ethtool_coalesce *ec)
2455{
2456 struct fec_enet_private *fep = netdev_priv(ndev);
Fugang Duand851b472014-09-17 05:18:52 +08002457 unsigned int cycle;
2458
Fugang Duanff7566b2016-06-22 18:52:35 +08002459 if (!(fep->quirks & FEC_QUIRK_HAS_COALESCE))
Fugang Duand851b472014-09-17 05:18:52 +08002460 return -EOPNOTSUPP;
2461
2462 if (ec->rx_max_coalesced_frames > 255) {
Colin Ian King9f647a62016-06-06 09:21:44 +01002463 pr_err("Rx coalesced frames exceed hardware limitation\n");
Fugang Duand851b472014-09-17 05:18:52 +08002464 return -EINVAL;
2465 }
2466
2467 if (ec->tx_max_coalesced_frames > 255) {
Colin Ian King9f647a62016-06-06 09:21:44 +01002468 pr_err("Tx coalesced frame exceed hardware limitation\n");
Fugang Duand851b472014-09-17 05:18:52 +08002469 return -EINVAL;
2470 }
2471
2472 cycle = fec_enet_us_to_itr_clock(ndev, fep->rx_time_itr);
2473 if (cycle > 0xFFFF) {
Colin Ian King9f647a62016-06-06 09:21:44 +01002474 pr_err("Rx coalesced usec exceed hardware limitation\n");
Fugang Duand851b472014-09-17 05:18:52 +08002475 return -EINVAL;
2476 }
2477
2478 cycle = fec_enet_us_to_itr_clock(ndev, fep->tx_time_itr);
2479 if (cycle > 0xFFFF) {
Colin Ian King9f647a62016-06-06 09:21:44 +01002480 pr_err("Rx coalesced usec exceed hardware limitation\n");
Fugang Duand851b472014-09-17 05:18:52 +08002481 return -EINVAL;
2482 }
2483
2484 fep->rx_time_itr = ec->rx_coalesce_usecs;
2485 fep->rx_pkts_itr = ec->rx_max_coalesced_frames;
2486
2487 fep->tx_time_itr = ec->tx_coalesce_usecs;
2488 fep->tx_pkts_itr = ec->tx_max_coalesced_frames;
2489
2490 fec_enet_itr_coal_set(ndev);
2491
2492 return 0;
2493}
2494
2495static void fec_enet_itr_coal_init(struct net_device *ndev)
2496{
2497 struct ethtool_coalesce ec;
2498
2499 ec.rx_coalesce_usecs = FEC_ITR_ICTT_DEFAULT;
2500 ec.rx_max_coalesced_frames = FEC_ITR_ICFT_DEFAULT;
2501
2502 ec.tx_coalesce_usecs = FEC_ITR_ICTT_DEFAULT;
2503 ec.tx_max_coalesced_frames = FEC_ITR_ICFT_DEFAULT;
2504
2505 fec_enet_set_coalesce(ndev, &ec);
2506}
2507
Nimrod Andy1b7bde62014-09-30 09:28:05 +08002508static int fec_enet_get_tunable(struct net_device *netdev,
2509 const struct ethtool_tunable *tuna,
2510 void *data)
2511{
2512 struct fec_enet_private *fep = netdev_priv(netdev);
2513 int ret = 0;
2514
2515 switch (tuna->id) {
2516 case ETHTOOL_RX_COPYBREAK:
2517 *(u32 *)data = fep->rx_copybreak;
2518 break;
2519 default:
2520 ret = -EINVAL;
2521 break;
2522 }
2523
2524 return ret;
2525}
2526
2527static int fec_enet_set_tunable(struct net_device *netdev,
2528 const struct ethtool_tunable *tuna,
2529 const void *data)
2530{
2531 struct fec_enet_private *fep = netdev_priv(netdev);
2532 int ret = 0;
2533
2534 switch (tuna->id) {
2535 case ETHTOOL_RX_COPYBREAK:
2536 fep->rx_copybreak = *(u32 *)data;
2537 break;
2538 default:
2539 ret = -EINVAL;
2540 break;
2541 }
2542
2543 return ret;
2544}
2545
Nimrod Andyde40ed32014-12-24 17:30:39 +08002546static void
2547fec_enet_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
2548{
2549 struct fec_enet_private *fep = netdev_priv(ndev);
2550
2551 if (fep->wol_flag & FEC_WOL_HAS_MAGIC_PACKET) {
2552 wol->supported = WAKE_MAGIC;
2553 wol->wolopts = fep->wol_flag & FEC_WOL_FLAG_ENABLE ? WAKE_MAGIC : 0;
2554 } else {
2555 wol->supported = wol->wolopts = 0;
2556 }
2557}
2558
2559static int
2560fec_enet_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
2561{
2562 struct fec_enet_private *fep = netdev_priv(ndev);
2563
2564 if (!(fep->wol_flag & FEC_WOL_HAS_MAGIC_PACKET))
2565 return -EINVAL;
2566
2567 if (wol->wolopts & ~WAKE_MAGIC)
2568 return -EINVAL;
2569
2570 device_set_wakeup_enable(&ndev->dev, wol->wolopts & WAKE_MAGIC);
2571 if (device_may_wakeup(&ndev->dev)) {
2572 fep->wol_flag |= FEC_WOL_FLAG_ENABLE;
2573 if (fep->irq[0] > 0)
2574 enable_irq_wake(fep->irq[0]);
2575 } else {
2576 fep->wol_flag &= (~FEC_WOL_FLAG_ENABLE);
2577 if (fep->irq[0] > 0)
2578 disable_irq_wake(fep->irq[0]);
2579 }
2580
2581 return 0;
2582}
2583
stephen hemminger9b07be42012-01-04 12:59:49 +00002584static const struct ethtool_ops fec_enet_ethtool_ops = {
Bryan Wue6b043d2010-03-31 02:10:44 +00002585 .get_drvinfo = fec_enet_get_drvinfo,
Philippe Reynesdb65f352015-05-11 00:01:42 +02002586 .get_regs_len = fec_enet_get_regs_len,
2587 .get_regs = fec_enet_get_regs,
Florian Fainelli11d59282016-11-15 10:06:40 -08002588 .nway_reset = phy_ethtool_nway_reset,
Russell Kingc1d7c482014-07-08 13:01:54 +01002589 .get_link = ethtool_op_get_link,
Fugang Duand851b472014-09-17 05:18:52 +08002590 .get_coalesce = fec_enet_get_coalesce,
2591 .set_coalesce = fec_enet_set_coalesce,
Chris Healy38ae92d2013-06-25 23:18:52 -07002592#ifndef CONFIG_M5272
Russell Kingc1d7c482014-07-08 13:01:54 +01002593 .get_pauseparam = fec_enet_get_pauseparam,
2594 .set_pauseparam = fec_enet_set_pauseparam,
Chris Healy38ae92d2013-06-25 23:18:52 -07002595 .get_strings = fec_enet_get_strings,
Russell Kingc1d7c482014-07-08 13:01:54 +01002596 .get_ethtool_stats = fec_enet_get_ethtool_stats,
Chris Healy38ae92d2013-06-25 23:18:52 -07002597 .get_sset_count = fec_enet_get_sset_count,
2598#endif
Russell Kingc1d7c482014-07-08 13:01:54 +01002599 .get_ts_info = fec_enet_get_ts_info,
Nimrod Andy1b7bde62014-09-30 09:28:05 +08002600 .get_tunable = fec_enet_get_tunable,
2601 .set_tunable = fec_enet_set_tunable,
Nimrod Andyde40ed32014-12-24 17:30:39 +08002602 .get_wol = fec_enet_get_wol,
2603 .set_wol = fec_enet_set_wol,
Philippe Reynes9365fbf2016-05-10 00:19:43 +02002604 .get_link_ksettings = phy_ethtool_get_link_ksettings,
2605 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Bryan Wue6b043d2010-03-31 02:10:44 +00002606};
2607
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002608static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00002609{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002610 struct fec_enet_private *fep = netdev_priv(ndev);
Philippe Reynes45f5c322016-05-10 00:19:42 +02002611 struct phy_device *phydev = ndev->phydev;
Bryan Wue6b043d2010-03-31 02:10:44 +00002612
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002613 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00002614 return -EINVAL;
2615
2616 if (!phydev)
2617 return -ENODEV;
2618
Ben Hutchings1d5244d2013-11-18 23:02:44 +00002619 if (fep->bufdesc_ex) {
2620 if (cmd == SIOCSHWTSTAMP)
2621 return fec_ptp_set(ndev, rq);
2622 if (cmd == SIOCGHWTSTAMP)
2623 return fec_ptp_get(ndev, rq);
2624 }
Frank Liff43da82013-01-03 16:04:23 +00002625
Richard Cochran28b04112010-07-17 08:48:55 +00002626 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00002627}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002629static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002630{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002631 struct fec_enet_private *fep = netdev_priv(ndev);
Fabio Estevamda2191e2013-03-20 12:31:07 -03002632 unsigned int i;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002633 struct sk_buff *skb;
2634 struct bufdesc *bdp;
Fugang Duan4d494cd2014-09-13 05:00:48 +08002635 struct fec_enet_priv_tx_q *txq;
2636 struct fec_enet_priv_rx_q *rxq;
Frank Li59d0f7462014-09-13 05:00:50 +08002637 unsigned int q;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002638
Frank Li59d0f7462014-09-13 05:00:50 +08002639 for (q = 0; q < fep->num_rx_queues; q++) {
2640 rxq = fep->rx_queue[q];
Troy Kisky7355f272016-02-05 14:52:46 -07002641 bdp = rxq->bd.base;
2642 for (i = 0; i < rxq->bd.ring_size; i++) {
Frank Li59d0f7462014-09-13 05:00:50 +08002643 skb = rxq->rx_skbuff[i];
2644 rxq->rx_skbuff[i] = NULL;
2645 if (skb) {
2646 dma_unmap_single(&fep->pdev->dev,
Johannes Berg5cfa3032016-01-24 16:52:37 +01002647 fec32_to_cpu(bdp->cbd_bufaddr),
Nimrod Andyb64bf4b2014-09-23 15:40:57 +08002648 FEC_ENET_RX_FRSIZE - fep->rx_align,
Frank Li59d0f7462014-09-13 05:00:50 +08002649 DMA_FROM_DEVICE);
2650 dev_kfree_skb(skb);
2651 }
Troy Kisky7355f272016-02-05 14:52:46 -07002652 bdp = fec_enet_get_nextdesc(bdp, &rxq->bd);
Russell King730ee362014-07-08 00:23:14 +01002653 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002654 }
2655
Frank Li59d0f7462014-09-13 05:00:50 +08002656 for (q = 0; q < fep->num_tx_queues; q++) {
2657 txq = fep->tx_queue[q];
Troy Kisky7355f272016-02-05 14:52:46 -07002658 bdp = txq->bd.base;
2659 for (i = 0; i < txq->bd.ring_size; i++) {
Frank Li59d0f7462014-09-13 05:00:50 +08002660 kfree(txq->tx_bounce[i]);
2661 txq->tx_bounce[i] = NULL;
2662 skb = txq->tx_skbuff[i];
2663 txq->tx_skbuff[i] = NULL;
2664 dev_kfree_skb(skb);
2665 }
Russell King8b7c9ef2014-07-08 00:23:25 +01002666 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002667}
2668
Frank Li59d0f7462014-09-13 05:00:50 +08002669static void fec_enet_free_queue(struct net_device *ndev)
2670{
2671 struct fec_enet_private *fep = netdev_priv(ndev);
2672 int i;
2673 struct fec_enet_priv_tx_q *txq;
2674
2675 for (i = 0; i < fep->num_tx_queues; i++)
2676 if (fep->tx_queue[i] && fep->tx_queue[i]->tso_hdrs) {
2677 txq = fep->tx_queue[i];
Fugang Duan94920122017-04-11 19:13:05 +08002678 dma_free_coherent(&fep->pdev->dev,
Troy Kisky7355f272016-02-05 14:52:46 -07002679 txq->bd.ring_size * TSO_HEADER_SIZE,
Frank Li59d0f7462014-09-13 05:00:50 +08002680 txq->tso_hdrs,
2681 txq->tso_hdrs_dma);
2682 }
2683
2684 for (i = 0; i < fep->num_rx_queues; i++)
Markus Elfring1b4b32c2015-02-04 12:56:42 +01002685 kfree(fep->rx_queue[i]);
Frank Li59d0f7462014-09-13 05:00:50 +08002686 for (i = 0; i < fep->num_tx_queues; i++)
Markus Elfring1b4b32c2015-02-04 12:56:42 +01002687 kfree(fep->tx_queue[i]);
Frank Li59d0f7462014-09-13 05:00:50 +08002688}
2689
2690static int fec_enet_alloc_queue(struct net_device *ndev)
2691{
2692 struct fec_enet_private *fep = netdev_priv(ndev);
2693 int i;
2694 int ret = 0;
2695 struct fec_enet_priv_tx_q *txq;
2696
2697 for (i = 0; i < fep->num_tx_queues; i++) {
2698 txq = kzalloc(sizeof(*txq), GFP_KERNEL);
2699 if (!txq) {
2700 ret = -ENOMEM;
2701 goto alloc_failed;
2702 }
2703
2704 fep->tx_queue[i] = txq;
Troy Kisky7355f272016-02-05 14:52:46 -07002705 txq->bd.ring_size = TX_RING_SIZE;
2706 fep->total_tx_ring_size += fep->tx_queue[i]->bd.ring_size;
Frank Li59d0f7462014-09-13 05:00:50 +08002707
2708 txq->tx_stop_threshold = FEC_MAX_SKB_DESCS;
2709 txq->tx_wake_threshold =
Troy Kisky7355f272016-02-05 14:52:46 -07002710 (txq->bd.ring_size - txq->tx_stop_threshold) / 2;
Frank Li59d0f7462014-09-13 05:00:50 +08002711
Fugang Duan94920122017-04-11 19:13:05 +08002712 txq->tso_hdrs = dma_alloc_coherent(&fep->pdev->dev,
Troy Kisky7355f272016-02-05 14:52:46 -07002713 txq->bd.ring_size * TSO_HEADER_SIZE,
Frank Li59d0f7462014-09-13 05:00:50 +08002714 &txq->tso_hdrs_dma,
2715 GFP_KERNEL);
2716 if (!txq->tso_hdrs) {
2717 ret = -ENOMEM;
2718 goto alloc_failed;
2719 }
2720 }
2721
2722 for (i = 0; i < fep->num_rx_queues; i++) {
2723 fep->rx_queue[i] = kzalloc(sizeof(*fep->rx_queue[i]),
2724 GFP_KERNEL);
2725 if (!fep->rx_queue[i]) {
2726 ret = -ENOMEM;
2727 goto alloc_failed;
2728 }
2729
Troy Kisky7355f272016-02-05 14:52:46 -07002730 fep->rx_queue[i]->bd.ring_size = RX_RING_SIZE;
2731 fep->total_rx_ring_size += fep->rx_queue[i]->bd.ring_size;
Frank Li59d0f7462014-09-13 05:00:50 +08002732 }
2733 return ret;
2734
2735alloc_failed:
2736 fec_enet_free_queue(ndev);
2737 return ret;
2738}
2739
2740static int
2741fec_enet_alloc_rxq_buffers(struct net_device *ndev, unsigned int queue)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002742{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002743 struct fec_enet_private *fep = netdev_priv(ndev);
Fabio Estevamda2191e2013-03-20 12:31:07 -03002744 unsigned int i;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002745 struct sk_buff *skb;
2746 struct bufdesc *bdp;
Fugang Duan4d494cd2014-09-13 05:00:48 +08002747 struct fec_enet_priv_rx_q *rxq;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002748
Frank Li59d0f7462014-09-13 05:00:50 +08002749 rxq = fep->rx_queue[queue];
Troy Kisky7355f272016-02-05 14:52:46 -07002750 bdp = rxq->bd.base;
2751 for (i = 0; i < rxq->bd.ring_size; i++) {
Fabio Estevamb72061a2012-02-07 08:27:31 +00002752 skb = netdev_alloc_skb(ndev, FEC_ENET_RX_FRSIZE);
Russell Kingffdce2c2014-07-08 00:23:30 +01002753 if (!skb)
2754 goto err_alloc;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002755
Nimrod Andy1b7bde62014-09-30 09:28:05 +08002756 if (fec_enet_new_rxbdp(ndev, bdp, skb)) {
Russell King730ee362014-07-08 00:23:14 +01002757 dev_kfree_skb(skb);
Russell Kingffdce2c2014-07-08 00:23:30 +01002758 goto err_alloc;
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08002759 }
Russell King730ee362014-07-08 00:23:14 +01002760
Fugang Duan4d494cd2014-09-13 05:00:48 +08002761 rxq->rx_skbuff[i] = skb;
Johannes Berg5cfa3032016-01-24 16:52:37 +01002762 bdp->cbd_sc = cpu_to_fec16(BD_ENET_RX_EMPTY);
Frank Liff43da82013-01-03 16:04:23 +00002763
2764 if (fep->bufdesc_ex) {
2765 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
Johannes Berg5cfa3032016-01-24 16:52:37 +01002766 ebdp->cbd_esc = cpu_to_fec32(BD_ENET_RX_INT);
Frank Liff43da82013-01-03 16:04:23 +00002767 }
2768
Troy Kisky7355f272016-02-05 14:52:46 -07002769 bdp = fec_enet_get_nextdesc(bdp, &rxq->bd);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002770 }
2771
2772 /* Set the last buffer to wrap. */
Troy Kisky7355f272016-02-05 14:52:46 -07002773 bdp = fec_enet_get_prevdesc(bdp, &rxq->bd);
Johannes Berg5cfa3032016-01-24 16:52:37 +01002774 bdp->cbd_sc |= cpu_to_fec16(BD_SC_WRAP);
Frank Li59d0f7462014-09-13 05:00:50 +08002775 return 0;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002776
Frank Li59d0f7462014-09-13 05:00:50 +08002777 err_alloc:
2778 fec_enet_free_buffers(ndev);
2779 return -ENOMEM;
2780}
2781
2782static int
2783fec_enet_alloc_txq_buffers(struct net_device *ndev, unsigned int queue)
2784{
2785 struct fec_enet_private *fep = netdev_priv(ndev);
2786 unsigned int i;
2787 struct bufdesc *bdp;
2788 struct fec_enet_priv_tx_q *txq;
2789
2790 txq = fep->tx_queue[queue];
Troy Kisky7355f272016-02-05 14:52:46 -07002791 bdp = txq->bd.base;
2792 for (i = 0; i < txq->bd.ring_size; i++) {
Fugang Duan4d494cd2014-09-13 05:00:48 +08002793 txq->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
2794 if (!txq->tx_bounce[i])
Russell Kingffdce2c2014-07-08 00:23:30 +01002795 goto err_alloc;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002796
Johannes Berg5cfa3032016-01-24 16:52:37 +01002797 bdp->cbd_sc = cpu_to_fec16(0);
2798 bdp->cbd_bufaddr = cpu_to_fec32(0);
Frank Li6605b732012-10-30 18:25:31 +00002799
Frank Liff43da82013-01-03 16:04:23 +00002800 if (fep->bufdesc_ex) {
2801 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
Johannes Berg5cfa3032016-01-24 16:52:37 +01002802 ebdp->cbd_esc = cpu_to_fec32(BD_ENET_TX_INT);
Frank Liff43da82013-01-03 16:04:23 +00002803 }
2804
Troy Kisky7355f272016-02-05 14:52:46 -07002805 bdp = fec_enet_get_nextdesc(bdp, &txq->bd);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002806 }
2807
2808 /* Set the last buffer to wrap. */
Troy Kisky7355f272016-02-05 14:52:46 -07002809 bdp = fec_enet_get_prevdesc(bdp, &txq->bd);
Johannes Berg5cfa3032016-01-24 16:52:37 +01002810 bdp->cbd_sc |= cpu_to_fec16(BD_SC_WRAP);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002811
2812 return 0;
Russell Kingffdce2c2014-07-08 00:23:30 +01002813
2814 err_alloc:
2815 fec_enet_free_buffers(ndev);
2816 return -ENOMEM;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002817}
2818
Frank Li59d0f7462014-09-13 05:00:50 +08002819static int fec_enet_alloc_buffers(struct net_device *ndev)
2820{
2821 struct fec_enet_private *fep = netdev_priv(ndev);
2822 unsigned int i;
2823
2824 for (i = 0; i < fep->num_rx_queues; i++)
2825 if (fec_enet_alloc_rxq_buffers(ndev, i))
2826 return -ENOMEM;
2827
2828 for (i = 0; i < fep->num_tx_queues; i++)
2829 if (fec_enet_alloc_txq_buffers(ndev, i))
2830 return -ENOMEM;
2831 return 0;
2832}
2833
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002835fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002837 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002838 int ret;
Richard Leitner1b0a83a2017-12-11 13:17:00 +01002839 bool reset_again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Andrew Lunn8fff7552015-07-25 22:38:02 +02002841 ret = pm_runtime_get_sync(&fep->pdev->dev);
Fabio Estevamb0c6ce22015-08-12 12:10:23 -03002842 if (ret < 0)
Andrew Lunn8fff7552015-07-25 22:38:02 +02002843 return ret;
2844
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002845 pinctrl_pm_select_default_state(&fep->pdev->dev);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002846 ret = fec_enet_clk_enable(ndev, true);
2847 if (ret)
Andrew Lunn8fff7552015-07-25 22:38:02 +02002848 goto clk_enable;
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002849
Richard Leitner1b0a83a2017-12-11 13:17:00 +01002850 /* During the first fec_enet_open call the PHY isn't probed at this
2851 * point. Therefore the phy_reset_after_clk_enable() call within
2852 * fec_enet_clk_enable() fails. As we need this reset in order to be
2853 * sure the PHY is working correctly we check if we need to reset again
2854 * later when the PHY is probed
2855 */
2856 if (ndev->phydev && ndev->phydev->drv)
2857 reset_again = false;
2858 else
2859 reset_again = true;
2860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 /* I should reset the ring buffers here, but I don't yet know
2862 * a simple way to do that.
2863 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002865 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002866 if (ret)
Fabio Estevam681d2422014-10-04 13:40:01 -03002867 goto err_enet_alloc;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002868
Nimrod Andy55dd2752015-06-23 15:32:51 +08002869 /* Init MAC prior to mii bus probe */
2870 fec_restart(ndev);
2871
Bryan Wu418bd0d2010-05-28 03:40:39 -07002872 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002873 ret = fec_enet_mii_probe(ndev);
Fabio Estevam681d2422014-10-04 13:40:01 -03002874 if (ret)
2875 goto err_enet_mii_probe;
Russell Kingce5eaf02014-02-18 12:55:42 +00002876
Richard Leitner1b0a83a2017-12-11 13:17:00 +01002877 /* Call phy_reset_after_clk_enable() again if it failed during
2878 * phy_reset_after_clk_enable() before because the PHY wasn't probed.
2879 */
2880 if (reset_again)
2881 phy_reset_after_clk_enable(ndev->phydev);
2882
Lucas Stach29380902016-06-03 18:31:19 +02002883 if (fep->quirks & FEC_QUIRK_ERR006687)
2884 imx6q_cpuidle_fec_irqs_used();
2885
Russell Kingce5eaf02014-02-18 12:55:42 +00002886 napi_enable(&fep->napi);
Philippe Reynes45f5c322016-05-10 00:19:42 +02002887 phy_start(ndev->phydev);
Fugang Duan4d494cd2014-09-13 05:00:48 +08002888 netif_tx_start_all_queues(ndev);
2889
Nimrod Andyde40ed32014-12-24 17:30:39 +08002890 device_set_wakeup_enable(&ndev->dev, fep->wol_flag &
2891 FEC_WOL_FLAG_ENABLE);
2892
Sascha Hauer22f6b862009-04-15 01:32:18 +00002893 return 0;
Fabio Estevam681d2422014-10-04 13:40:01 -03002894
2895err_enet_mii_probe:
2896 fec_enet_free_buffers(ndev);
2897err_enet_alloc:
2898 fec_enet_clk_enable(ndev, false);
Andrew Lunn8fff7552015-07-25 22:38:02 +02002899clk_enable:
2900 pm_runtime_mark_last_busy(&fep->pdev->dev);
2901 pm_runtime_put_autosuspend(&fep->pdev->dev);
Fabio Estevam681d2422014-10-04 13:40:01 -03002902 pinctrl_pm_select_sleep_state(&fep->pdev->dev);
2903 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904}
2905
2906static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002907fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002909 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
Philippe Reynes45f5c322016-05-10 00:19:42 +02002911 phy_stop(ndev->phydev);
Russell Kingd76cfae2014-07-08 00:23:04 +01002912
Russell King31a6de32014-07-08 12:40:23 +01002913 if (netif_device_present(ndev)) {
2914 napi_disable(&fep->napi);
2915 netif_tx_disable(ndev);
Russell King8bbbd3c2014-07-08 12:40:02 +01002916 fec_stop(ndev);
Russell King31a6de32014-07-08 12:40:23 +01002917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Philippe Reynes45f5c322016-05-10 00:19:42 +02002919 phy_disconnect(ndev->phydev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07002920
Lucas Stach29380902016-06-03 18:31:19 +02002921 if (fep->quirks & FEC_QUIRK_ERR006687)
2922 imx6q_cpuidle_fec_irqs_unused();
2923
Nikita Yushchenko80cca772016-11-29 09:44:51 +03002924 fec_enet_update_ethtool_stats(ndev);
2925
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002926 fec_enet_clk_enable(ndev, false);
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002927 pinctrl_pm_select_sleep_state(&fep->pdev->dev);
Andrew Lunn8fff7552015-07-25 22:38:02 +02002928 pm_runtime_mark_last_busy(&fep->pdev->dev);
2929 pm_runtime_put_autosuspend(&fep->pdev->dev);
2930
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01002931 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002932
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 return 0;
2934}
2935
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936/* Set or clear the multicast filter for this adaptor.
2937 * Skeleton taken from sunlance driver.
2938 * The CPM Ethernet implementation allows Multicast as well as individual
2939 * MAC address filtering. Some of the drivers check to make sure it is
2940 * a group multicast address, and discard those that are not. I guess I
2941 * will do the same for now, but just remove the test if you want
2942 * individual filtering as well (do the upper net layers want or support
2943 * this kind of feature?).
2944 */
2945
Jiri Kosina6176e892016-08-12 16:34:49 +02002946#define FEC_HASH_BITS 6 /* #bits in hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947#define CRC32_POLY 0xEDB88320
2948
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002949static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002951 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00002952 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00002953 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 unsigned char hash;
Rui Sousa01f8902b2017-02-13 10:01:25 +08002955 unsigned int hash_high = 0, hash_low = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002957 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00002958 tmp = readl(fep->hwp + FEC_R_CNTRL);
2959 tmp |= 0x8;
2960 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00002961 return;
2962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
Sascha Hauer4e831832009-04-15 01:32:19 +00002964 tmp = readl(fep->hwp + FEC_R_CNTRL);
2965 tmp &= ~0x8;
2966 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002967
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002968 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00002969 /* Catch all multicast addresses, so set the
2970 * filter to all 1's
2971 */
2972 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
2973 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Sascha Hauer4e831832009-04-15 01:32:19 +00002975 return;
2976 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002977
Rui Sousa01f8902b2017-02-13 10:01:25 +08002978 /* Add the addresses in hash register */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002979 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00002980 /* calculate crc32 value of mac address */
2981 crc = 0xffffffff;
2982
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002983 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002984 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00002985 for (bit = 0; bit < 8; bit++, data >>= 1) {
2986 crc = (crc >> 1) ^
2987 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 }
2989 }
Sascha Hauer4e831832009-04-15 01:32:19 +00002990
Jiri Kosina6176e892016-08-12 16:34:49 +02002991 /* only upper 6 bits (FEC_HASH_BITS) are used
Peter Meerwald-Stadler981a0542016-12-16 14:23:36 +01002992 * which point to specific bit in the hash registers
Sascha Hauer4e831832009-04-15 01:32:19 +00002993 */
Jiri Kosina6176e892016-08-12 16:34:49 +02002994 hash = (crc >> (32 - FEC_HASH_BITS)) & 0x3f;
Sascha Hauer4e831832009-04-15 01:32:19 +00002995
Rui Sousa01f8902b2017-02-13 10:01:25 +08002996 if (hash > 31)
2997 hash_high |= 1 << (hash - 32);
2998 else
2999 hash_low |= 1 << hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 }
Rui Sousa01f8902b2017-02-13 10:01:25 +08003001
3002 writel(hash_high, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
3003 writel(hash_low, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004}
3005
Sascha Hauer22f6b862009-04-15 01:32:18 +00003006/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00003007static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003008fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003010 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00003011 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Lucas Stach44934fa2014-03-30 21:32:08 +02003013 if (addr) {
3014 if (!is_valid_ether_addr(addr->sa_data))
3015 return -EADDRNOTAVAIL;
3016 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
3017 }
Sascha Hauer009fda82009-04-15 01:32:23 +00003018
Nimrod Andy9638d192015-09-10 09:35:39 +08003019 /* Add netif status check here to avoid system hang in below case:
3020 * ifconfig ethx down; ifconfig ethx hw ether xx:xx:xx:xx:xx:xx;
3021 * After ethx down, fec all clocks are gated off and then register
3022 * access causes system hang.
3023 */
3024 if (!netif_running(ndev))
3025 return 0;
3026
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003027 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
3028 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00003029 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003030 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07003031 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00003032 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033}
3034
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00003035#ifdef CONFIG_NET_POLL_CONTROLLER
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003036/**
3037 * fec_poll_controller - FEC Poll controller function
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00003038 * @dev: The FEC network adapter
3039 *
3040 * Polled functionality used by netconsole and others in non interrupt mode
3041 *
3042 */
Wei Yongjun47a52472013-03-20 05:06:11 +00003043static void fec_poll_controller(struct net_device *dev)
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00003044{
3045 int i;
3046 struct fec_enet_private *fep = netdev_priv(dev);
3047
3048 for (i = 0; i < FEC_IRQ_NUM; i++) {
3049 if (fep->irq[i] > 0) {
3050 disable_irq(fep->irq[i]);
3051 fec_enet_interrupt(fep->irq[i], dev);
3052 enable_irq(fep->irq[i]);
3053 }
3054 }
3055}
3056#endif
3057
Nimrod Andy5bc26722014-10-13 10:53:48 +08003058static inline void fec_enet_set_netdev_features(struct net_device *netdev,
Jim Baxter4c09eed2013-04-19 08:10:49 +00003059 netdev_features_t features)
3060{
3061 struct fec_enet_private *fep = netdev_priv(netdev);
3062 netdev_features_t changed = features ^ netdev->features;
3063
3064 netdev->features = features;
3065
3066 /* Receive checksum has been changed */
3067 if (changed & NETIF_F_RXCSUM) {
3068 if (features & NETIF_F_RXCSUM)
3069 fep->csum_flags |= FLAG_RX_CSUM_ENABLED;
3070 else
3071 fep->csum_flags &= ~FLAG_RX_CSUM_ENABLED;
Russell King8506fa12014-07-08 12:40:33 +01003072 }
Nimrod Andy5bc26722014-10-13 10:53:48 +08003073}
Jim Baxter4c09eed2013-04-19 08:10:49 +00003074
Nimrod Andy5bc26722014-10-13 10:53:48 +08003075static int fec_set_features(struct net_device *netdev,
3076 netdev_features_t features)
3077{
3078 struct fec_enet_private *fep = netdev_priv(netdev);
3079 netdev_features_t changed = features ^ netdev->features;
3080
Fabio Estevam5b40f702015-09-25 18:31:32 -03003081 if (netif_running(netdev) && changed & NETIF_F_RXCSUM) {
Nimrod Andy5bc26722014-10-13 10:53:48 +08003082 napi_disable(&fep->napi);
3083 netif_tx_lock_bh(netdev);
3084 fec_stop(netdev);
3085 fec_enet_set_netdev_features(netdev, features);
Russell Kingef833372014-07-08 12:40:43 +01003086 fec_restart(netdev);
Fugang Duan4d494cd2014-09-13 05:00:48 +08003087 netif_tx_wake_all_queues(netdev);
Russell King8506fa12014-07-08 12:40:33 +01003088 netif_tx_unlock_bh(netdev);
3089 napi_enable(&fep->napi);
Nimrod Andy5bc26722014-10-13 10:53:48 +08003090 } else {
3091 fec_enet_set_netdev_features(netdev, features);
Jim Baxter4c09eed2013-04-19 08:10:49 +00003092 }
3093
3094 return 0;
3095}
3096
Sascha Hauer009fda82009-04-15 01:32:23 +00003097static const struct net_device_ops fec_netdev_ops = {
3098 .ndo_open = fec_enet_open,
3099 .ndo_stop = fec_enet_close,
3100 .ndo_start_xmit = fec_enet_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00003101 .ndo_set_rx_mode = set_multicast_list,
Sascha Hauer009fda82009-04-15 01:32:23 +00003102 .ndo_validate_addr = eth_validate_addr,
3103 .ndo_tx_timeout = fec_timeout,
3104 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01003105 .ndo_do_ioctl = fec_enet_ioctl,
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00003106#ifdef CONFIG_NET_POLL_CONTROLLER
3107 .ndo_poll_controller = fec_poll_controller,
3108#endif
Jim Baxter4c09eed2013-04-19 08:10:49 +00003109 .ndo_set_features = fec_set_features,
Sascha Hauer009fda82009-04-15 01:32:23 +00003110};
3111
Troy Kisky53bb20d2016-02-05 14:52:47 -07003112static const unsigned short offset_des_active_rxq[] = {
3113 FEC_R_DES_ACTIVE_0, FEC_R_DES_ACTIVE_1, FEC_R_DES_ACTIVE_2
3114};
3115
3116static const unsigned short offset_des_active_txq[] = {
3117 FEC_X_DES_ACTIVE_0, FEC_X_DES_ACTIVE_1, FEC_X_DES_ACTIVE_2
3118};
3119
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 /*
3121 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00003122 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003124static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003126 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00003127 struct bufdesc *cbd_base;
Fugang Duan4d494cd2014-09-13 05:00:48 +08003128 dma_addr_t bd_dma;
Nimrod Andy55d02182014-06-12 08:16:21 +08003129 int bd_size;
Frank Li59d0f7462014-09-13 05:00:50 +08003130 unsigned int i;
Troy Kisky7355f272016-02-05 14:52:46 -07003131 unsigned dsize = fep->bufdesc_ex ? sizeof(struct bufdesc_ex) :
3132 sizeof(struct bufdesc);
3133 unsigned dsize_log2 = __fls(dsize);
Nimrod Andy55d02182014-06-12 08:16:21 +08003134
Troy Kisky7355f272016-02-05 14:52:46 -07003135 WARN_ON(dsize != (1 << dsize_log2));
Fugang Duan41ef84c2014-09-13 05:00:54 +08003136#if defined(CONFIG_ARM)
3137 fep->rx_align = 0xf;
3138 fep->tx_align = 0xf;
3139#else
3140 fep->rx_align = 0x3;
3141 fep->tx_align = 0x3;
3142#endif
3143
Frank Li59d0f7462014-09-13 05:00:50 +08003144 fec_enet_alloc_queue(ndev);
Nimrod Andy79f33912014-06-12 08:16:23 +08003145
Troy Kisky7355f272016-02-05 14:52:46 -07003146 bd_size = (fep->total_tx_ring_size + fep->total_rx_ring_size) * dsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00003148 /* Allocate memory for buffer descriptors. */
Lucas Stachc0a1a0a2015-07-23 16:06:19 +02003149 cbd_base = dmam_alloc_coherent(&fep->pdev->dev, bd_size, &bd_dma,
3150 GFP_KERNEL);
Fugang Duan4d494cd2014-09-13 05:00:48 +08003151 if (!cbd_base) {
Fugang Duan4d494cd2014-09-13 05:00:48 +08003152 return -ENOMEM;
3153 }
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10003154
Fugang Duan4d494cd2014-09-13 05:00:48 +08003155 memset(cbd_base, 0, bd_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Shawn Guo49da97d2011-01-05 21:13:11 +00003157 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003158 fec_get_mac(ndev);
Lucas Stach44934fa2014-03-30 21:32:08 +02003159 /* make sure MAC we just acquired is programmed into the hw */
3160 fec_set_mac_address(ndev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00003162 /* Set receive and transmit descriptor base. */
Frank Li59d0f7462014-09-13 05:00:50 +08003163 for (i = 0; i < fep->num_rx_queues; i++) {
Troy Kisky7355f272016-02-05 14:52:46 -07003164 struct fec_enet_priv_rx_q *rxq = fep->rx_queue[i];
3165 unsigned size = dsize * rxq->bd.ring_size;
3166
3167 rxq->bd.qid = i;
3168 rxq->bd.base = cbd_base;
3169 rxq->bd.cur = cbd_base;
3170 rxq->bd.dma = bd_dma;
3171 rxq->bd.dsize = dsize;
3172 rxq->bd.dsize_log2 = dsize_log2;
Troy Kisky53bb20d2016-02-05 14:52:47 -07003173 rxq->bd.reg_desc_active = fep->hwp + offset_des_active_rxq[i];
Troy Kisky7355f272016-02-05 14:52:46 -07003174 bd_dma += size;
3175 cbd_base = (struct bufdesc *)(((void *)cbd_base) + size);
3176 rxq->bd.last = (struct bufdesc *)(((void *)cbd_base) - dsize);
Frank Li59d0f7462014-09-13 05:00:50 +08003177 }
3178
3179 for (i = 0; i < fep->num_tx_queues; i++) {
Troy Kisky7355f272016-02-05 14:52:46 -07003180 struct fec_enet_priv_tx_q *txq = fep->tx_queue[i];
3181 unsigned size = dsize * txq->bd.ring_size;
3182
3183 txq->bd.qid = i;
3184 txq->bd.base = cbd_base;
3185 txq->bd.cur = cbd_base;
3186 txq->bd.dma = bd_dma;
3187 txq->bd.dsize = dsize;
3188 txq->bd.dsize_log2 = dsize_log2;
Troy Kisky53bb20d2016-02-05 14:52:47 -07003189 txq->bd.reg_desc_active = fep->hwp + offset_des_active_txq[i];
Troy Kisky7355f272016-02-05 14:52:46 -07003190 bd_dma += size;
3191 cbd_base = (struct bufdesc *)(((void *)cbd_base) + size);
3192 txq->bd.last = (struct bufdesc *)(((void *)cbd_base) - dsize);
Frank Li59d0f7462014-09-13 05:00:50 +08003193 }
Fugang Duan4d494cd2014-09-13 05:00:48 +08003194
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Sascha Hauer22f6b862009-04-15 01:32:18 +00003196 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003197 ndev->watchdog_timeo = TX_TIMEOUT;
3198 ndev->netdev_ops = &fec_netdev_ops;
3199 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00003200
Frank Lidc975382013-01-28 18:31:42 +00003201 writel(FEC_RX_DISABLED_IMASK, fep->hwp + FEC_IMASK);
Fabio Estevam322555f2013-08-27 17:35:08 -03003202 netif_napi_add(ndev, &fep->napi, fec_enet_rx_napi, NAPI_POLL_WEIGHT);
Frank Lidc975382013-01-28 18:31:42 +00003203
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003204 if (fep->quirks & FEC_QUIRK_HAS_VLAN)
Jim Baxtercdffcf12013-07-02 22:52:56 +01003205 /* enable hw VLAN support */
3206 ndev->features |= NETIF_F_HW_VLAN_CTAG_RX;
Jim Baxtercdffcf12013-07-02 22:52:56 +01003207
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003208 if (fep->quirks & FEC_QUIRK_HAS_CSUM) {
Nimrod Andy79f33912014-06-12 08:16:23 +08003209 ndev->gso_max_segs = FEC_MAX_TSO_SEGS;
3210
Shawn Guo48496252013-05-08 21:08:22 +00003211 /* enable hw accelerator */
3212 ndev->features |= (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM
Nimrod Andy79f33912014-06-12 08:16:23 +08003213 | NETIF_F_RXCSUM | NETIF_F_SG | NETIF_F_TSO);
Shawn Guo48496252013-05-08 21:08:22 +00003214 fep->csum_flags |= FLAG_RX_CSUM_ENABLED;
3215 }
Jim Baxter4c09eed2013-04-19 08:10:49 +00003216
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003217 if (fep->quirks & FEC_QUIRK_HAS_AVB) {
Fugang Duan41ef84c2014-09-13 05:00:54 +08003218 fep->tx_align = 0;
3219 fep->rx_align = 0x3f;
3220 }
3221
Nimrod Andy09d1e542014-06-12 08:16:20 +08003222 ndev->hw_features = ndev->features;
3223
Russell Kingef833372014-07-08 12:40:43 +01003224 fec_restart(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
Andrew Lunn2b308422017-06-07 03:57:09 +02003226 if (fep->quirks & FEC_QUIRK_MIB_CLEAR)
3227 fec_enet_clear_ethtool_stats(ndev);
3228 else
3229 fec_enet_update_ethtool_stats(ndev);
Nikita Yushchenko80cca772016-11-29 09:44:51 +03003230
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 return 0;
3232}
3233
Shawn Guoca2cc332011-06-25 02:04:35 +08003234#ifdef CONFIG_OF
Fugang Duan9269e552017-04-11 19:13:06 +08003235static int fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08003236{
3237 int err, phy_reset;
Bernhard Walle962d8cd2016-03-03 10:15:55 +01003238 bool active_high = false;
Quentin Schulz159a07602017-05-23 11:48:08 +02003239 int msec = 1, phy_post_delay = 0;
Shawn Guoca2cc332011-06-25 02:04:35 +08003240 struct device_node *np = pdev->dev.of_node;
3241
3242 if (!np)
Fugang Duan9269e552017-04-11 19:13:06 +08003243 return 0;
Shawn Guoca2cc332011-06-25 02:04:35 +08003244
Fugang Duan61e04cc2017-04-11 19:13:03 +08003245 err = of_property_read_u32(np, "phy-reset-duration", &msec);
Shawn Guoa3caad02012-06-27 03:45:24 +00003246 /* A sane reset duration should not be longer than 1s */
Fugang Duan61e04cc2017-04-11 19:13:03 +08003247 if (!err && msec > 1000)
Shawn Guoa3caad02012-06-27 03:45:24 +00003248 msec = 1;
3249
Shawn Guoca2cc332011-06-25 02:04:35 +08003250 phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
Fugang Duan9269e552017-04-11 19:13:06 +08003251 if (phy_reset == -EPROBE_DEFER)
3252 return phy_reset;
3253 else if (!gpio_is_valid(phy_reset))
3254 return 0;
Fabio Estevam07dcf8e2013-02-18 10:20:31 +00003255
Quentin Schulz159a07602017-05-23 11:48:08 +02003256 err = of_property_read_u32(np, "phy-reset-post-delay", &phy_post_delay);
3257 /* valid reset duration should be less than 1s */
3258 if (!err && phy_post_delay > 1000)
3259 return -EINVAL;
3260
Bernhard Walle962d8cd2016-03-03 10:15:55 +01003261 active_high = of_property_read_bool(np, "phy-reset-active-high");
Bernhard Walle64f10f62016-02-08 21:21:13 +01003262
Shawn Guo119fc002012-06-27 03:45:22 +00003263 err = devm_gpio_request_one(&pdev->dev, phy_reset,
Bernhard Walle962d8cd2016-03-03 10:15:55 +01003264 active_high ? GPIOF_OUT_INIT_HIGH : GPIOF_OUT_INIT_LOW,
Bernhard Walle64f10f62016-02-08 21:21:13 +01003265 "phy-reset");
Shawn Guoca2cc332011-06-25 02:04:35 +08003266 if (err) {
Fabio Estevam07dcf8e2013-02-18 10:20:31 +00003267 dev_err(&pdev->dev, "failed to get phy-reset-gpios: %d\n", err);
Fugang Duan9269e552017-04-11 19:13:06 +08003268 return err;
Shawn Guoca2cc332011-06-25 02:04:35 +08003269 }
Stefan Wahreneb37c5632016-06-08 20:42:46 +00003270
3271 if (msec > 20)
3272 msleep(msec);
3273 else
3274 usleep_range(msec * 1000, msec * 1000 + 1000);
3275
Bernhard Walle962d8cd2016-03-03 10:15:55 +01003276 gpio_set_value_cansleep(phy_reset, !active_high);
Fugang Duan9269e552017-04-11 19:13:06 +08003277
Quentin Schulz159a07602017-05-23 11:48:08 +02003278 if (!phy_post_delay)
3279 return 0;
3280
3281 if (phy_post_delay > 20)
3282 msleep(phy_post_delay);
3283 else
3284 usleep_range(phy_post_delay * 1000,
3285 phy_post_delay * 1000 + 1000);
3286
Fugang Duan9269e552017-04-11 19:13:06 +08003287 return 0;
Shawn Guoca2cc332011-06-25 02:04:35 +08003288}
3289#else /* CONFIG_OF */
Fugang Duan9269e552017-04-11 19:13:06 +08003290static int fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08003291{
3292 /*
3293 * In case of platform probe, the reset has been done
3294 * by machine code.
3295 */
Fugang Duan9269e552017-04-11 19:13:06 +08003296 return 0;
Shawn Guoca2cc332011-06-25 02:04:35 +08003297}
3298#endif /* CONFIG_OF */
3299
Fugang Duan9fc095f2014-09-13 05:00:49 +08003300static void
3301fec_enet_get_queue_num(struct platform_device *pdev, int *num_tx, int *num_rx)
3302{
3303 struct device_node *np = pdev->dev.of_node;
Fugang Duan9fc095f2014-09-13 05:00:49 +08003304
3305 *num_tx = *num_rx = 1;
3306
3307 if (!np || !of_device_is_available(np))
3308 return;
3309
3310 /* parse the num of tx and rx queues */
Saurabh Sengar73b1c902015-11-23 19:21:48 +05303311 of_property_read_u32(np, "fsl,num-tx-queues", num_tx);
Frank Lib7bd75c2014-09-17 05:18:51 +08003312
Saurabh Sengar73b1c902015-11-23 19:21:48 +05303313 of_property_read_u32(np, "fsl,num-rx-queues", num_rx);
Fugang Duan9fc095f2014-09-13 05:00:49 +08003314
3315 if (*num_tx < 1 || *num_tx > FEC_ENET_MAX_TX_QS) {
Frank Lib7bd75c2014-09-17 05:18:51 +08003316 dev_warn(&pdev->dev, "Invalid num_tx(=%d), fall back to 1\n",
3317 *num_tx);
Fugang Duan9fc095f2014-09-13 05:00:49 +08003318 *num_tx = 1;
3319 return;
3320 }
3321
3322 if (*num_rx < 1 || *num_rx > FEC_ENET_MAX_RX_QS) {
Frank Lib7bd75c2014-09-17 05:18:51 +08003323 dev_warn(&pdev->dev, "Invalid num_rx(=%d), fall back to 1\n",
3324 *num_rx);
Fugang Duan9fc095f2014-09-13 05:00:49 +08003325 *num_rx = 1;
3326 return;
3327 }
3328
3329}
3330
Troy Kisky4ad1cee2017-11-03 10:29:59 -07003331static int fec_enet_get_irq_cnt(struct platform_device *pdev)
3332{
3333 int irq_cnt = platform_irq_count(pdev);
3334
3335 if (irq_cnt > FEC_IRQ_NUM)
3336 irq_cnt = FEC_IRQ_NUM; /* last for pps */
3337 else if (irq_cnt == 2)
3338 irq_cnt = 1; /* last for pps */
3339 else if (irq_cnt <= 0)
3340 irq_cnt = 1; /* At least 1 irq is needed */
3341 return irq_cnt;
3342}
3343
Bill Pemberton33897cc2012-12-03 09:23:58 -05003344static int
Sascha Haueread73182009-01-28 23:03:11 +00003345fec_probe(struct platform_device *pdev)
3346{
3347 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07003348 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00003349 struct net_device *ndev;
3350 int i, irq, ret = 0;
3351 struct resource *r;
Shawn Guoca2cc332011-06-25 02:04:35 +08003352 const struct of_device_id *of_id;
Shawn Guo43af9402011-12-05 05:01:15 +00003353 static int dev_id;
Uwe Kleine-König407066f2014-08-11 17:35:33 +02003354 struct device_node *np = pdev->dev.of_node, *phy_node;
Frank Lib7bd75c2014-09-17 05:18:51 +08003355 int num_tx_qs;
3356 int num_rx_qs;
Troy Kisky4ad1cee2017-11-03 10:29:59 -07003357 char irq_name[8];
3358 int irq_cnt;
Shawn Guoca2cc332011-06-25 02:04:35 +08003359
Fugang Duan9fc095f2014-09-13 05:00:49 +08003360 fec_enet_get_queue_num(pdev, &num_tx_qs, &num_rx_qs);
3361
Sascha Haueread73182009-01-28 23:03:11 +00003362 /* Init network device */
Nikita Yushchenko80cca772016-11-29 09:44:51 +03003363 ndev = alloc_etherdev_mqs(sizeof(struct fec_enet_private) +
Nikita Yushchenkof85de662016-12-06 09:26:53 +03003364 FEC_STATS_SIZE, num_tx_qs, num_rx_qs);
Fabio Estevam83e519b2013-03-11 07:32:55 +00003365 if (!ndev)
3366 return -ENOMEM;
Sascha Haueread73182009-01-28 23:03:11 +00003367
3368 SET_NETDEV_DEV(ndev, &pdev->dev);
3369
3370 /* setup board info structure */
3371 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00003372
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003373 of_id = of_match_device(fec_dt_ids, &pdev->dev);
3374 if (of_id)
3375 pdev->id_entry = of_id->data;
3376 fep->quirks = pdev->id_entry->driver_data;
3377
Hubert Feurstein0c818592015-01-07 14:48:17 +01003378 fep->netdev = ndev;
Fugang Duan9fc095f2014-09-13 05:00:49 +08003379 fep->num_rx_queues = num_rx_qs;
3380 fep->num_tx_queues = num_tx_qs;
3381
Guenter Roeckd1391932013-06-18 10:04:59 -07003382#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +00003383 /* default enable pause frame auto negotiation */
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003384 if (fep->quirks & FEC_QUIRK_HAS_GBIT)
Frank Libaa70a52013-01-16 16:55:58 +00003385 fep->pause_flag |= FEC_PAUSE_FLAG_AUTONEG;
Guenter Roeckd1391932013-06-18 10:04:59 -07003386#endif
Frank Libaa70a52013-01-16 16:55:58 +00003387
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08003388 /* Select default pin state */
3389 pinctrl_pm_select_default_state(&pdev->dev);
3390
Fabio Estevam399db752013-07-21 13:25:03 -03003391 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Tushar Behera941e1732013-06-10 17:05:05 +05303392 fep->hwp = devm_ioremap_resource(&pdev->dev, r);
3393 if (IS_ERR(fep->hwp)) {
3394 ret = PTR_ERR(fep->hwp);
3395 goto failed_ioremap;
3396 }
3397
Bryan Wue6b043d2010-03-31 02:10:44 +00003398 fep->pdev = pdev;
Shawn Guo43af9402011-12-05 05:01:15 +00003399 fep->dev_id = dev_id++;
Sascha Haueread73182009-01-28 23:03:11 +00003400
Sascha Haueread73182009-01-28 23:03:11 +00003401 platform_set_drvdata(pdev, ndev);
3402
Lucas Stach29380902016-06-03 18:31:19 +02003403 if ((of_machine_is_compatible("fsl,imx6q") ||
3404 of_machine_is_compatible("fsl,imx6dl")) &&
3405 !of_property_read_bool(np, "fsl,err006687-workaround-present"))
3406 fep->quirks |= FEC_QUIRK_ERR006687;
3407
Nimrod Andyde40ed32014-12-24 17:30:39 +08003408 if (of_get_property(np, "fsl,magic-packet", NULL))
3409 fep->wol_flag |= FEC_WOL_HAS_MAGIC_PACKET;
3410
Uwe Kleine-König407066f2014-08-11 17:35:33 +02003411 phy_node = of_parse_phandle(np, "phy-handle", 0);
3412 if (!phy_node && of_phy_is_fixed_link(np)) {
3413 ret = of_phy_register_fixed_link(np);
3414 if (ret < 0) {
3415 dev_err(&pdev->dev,
3416 "broken fixed-link specification\n");
3417 goto failed_phy;
3418 }
3419 phy_node = of_node_get(np);
3420 }
3421 fep->phy_node = phy_node;
3422
Guenter Roeck6c5f7802013-04-02 09:35:10 +00003423 ret = of_get_phy_mode(pdev->dev.of_node);
Shawn Guoca2cc332011-06-25 02:04:35 +08003424 if (ret < 0) {
Jingoo Han94660ba2013-08-30 13:56:26 +09003425 pdata = dev_get_platdata(&pdev->dev);
Shawn Guoca2cc332011-06-25 02:04:35 +08003426 if (pdata)
3427 fep->phy_interface = pdata->phy;
3428 else
3429 fep->phy_interface = PHY_INTERFACE_MODE_MII;
3430 } else {
3431 fep->phy_interface = ret;
3432 }
3433
Fabio Estevame2f8d552013-02-22 06:40:45 +00003434 fep->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
3435 if (IS_ERR(fep->clk_ipg)) {
3436 ret = PTR_ERR(fep->clk_ipg);
3437 goto failed_clk;
3438 }
3439
3440 fep->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
3441 if (IS_ERR(fep->clk_ahb)) {
3442 ret = PTR_ERR(fep->clk_ahb);
3443 goto failed_clk;
3444 }
3445
Fugang Duand851b472014-09-17 05:18:52 +08003446 fep->itr_clk_rate = clk_get_rate(fep->clk_ahb);
3447
Linus Torvalds38f56f32013-05-07 11:06:17 -07003448 /* enet_out is optional, depends on board */
3449 fep->clk_enet_out = devm_clk_get(&pdev->dev, "enet_out");
3450 if (IS_ERR(fep->clk_enet_out))
3451 fep->clk_enet_out = NULL;
3452
Nimrod Andy91c0d982014-08-21 17:09:38 +08003453 fep->ptp_clk_on = false;
3454 mutex_init(&fep->ptp_clk_mutex);
Fugang Duan9b5330e2014-09-13 05:00:46 +08003455
3456 /* clk_ref is optional, depends on board */
3457 fep->clk_ref = devm_clk_get(&pdev->dev, "enet_clk_ref");
3458 if (IS_ERR(fep->clk_ref))
3459 fep->clk_ref = NULL;
3460
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003461 fep->bufdesc_ex = fep->quirks & FEC_QUIRK_HAS_BUFDESC_EX;
Fabio Estevame2f8d552013-02-22 06:40:45 +00003462 fep->clk_ptp = devm_clk_get(&pdev->dev, "ptp");
Fabio Estevame2f8d552013-02-22 06:40:45 +00003463 if (IS_ERR(fep->clk_ptp)) {
Linus Torvalds38f56f32013-05-07 11:06:17 -07003464 fep->clk_ptp = NULL;
Lothar Waßmann217b5842014-11-17 10:51:20 +01003465 fep->bufdesc_ex = false;
Fabio Estevame2f8d552013-02-22 06:40:45 +00003466 }
3467
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08003468 ret = fec_enet_clk_enable(ndev, true);
Fabio Estevam13a097b2013-07-21 13:25:02 -03003469 if (ret)
3470 goto failed_clk;
3471
Andrew Lunn8fff7552015-07-25 22:38:02 +02003472 ret = clk_prepare_enable(fep->clk_ipg);
3473 if (ret)
3474 goto failed_clk_ipg;
3475
Fabio Estevamf4e9f3d2013-05-27 03:48:29 +00003476 fep->reg_phy = devm_regulator_get(&pdev->dev, "phy");
3477 if (!IS_ERR(fep->reg_phy)) {
3478 ret = regulator_enable(fep->reg_phy);
Fabio Estevame2f8d552013-02-22 06:40:45 +00003479 if (ret) {
3480 dev_err(&pdev->dev,
3481 "Failed to enable phy regulator: %d\n", ret);
Fugang Duan9269e552017-04-11 19:13:06 +08003482 clk_disable_unprepare(fep->clk_ipg);
Fabio Estevame2f8d552013-02-22 06:40:45 +00003483 goto failed_regulator;
3484 }
Fabio Estevamf6a4d602013-05-27 03:48:31 +00003485 } else {
3486 fep->reg_phy = NULL;
Fabio Estevame2f8d552013-02-22 06:40:45 +00003487 }
3488
Andrew Lunn8fff7552015-07-25 22:38:02 +02003489 pm_runtime_set_autosuspend_delay(&pdev->dev, FEC_MDIO_PM_TIMEOUT);
3490 pm_runtime_use_autosuspend(&pdev->dev);
Lucas Stach14d2b7c2015-08-03 17:50:11 +02003491 pm_runtime_get_noresume(&pdev->dev);
Andrew Lunn8fff7552015-07-25 22:38:02 +02003492 pm_runtime_set_active(&pdev->dev);
3493 pm_runtime_enable(&pdev->dev);
3494
Fugang Duan9269e552017-04-11 19:13:06 +08003495 ret = fec_reset_phy(pdev);
3496 if (ret)
3497 goto failed_reset;
Fabio Estevame2f8d552013-02-22 06:40:45 +00003498
Troy Kisky4ad1cee2017-11-03 10:29:59 -07003499 irq_cnt = fec_enet_get_irq_cnt(pdev);
Fabio Estevam7f7d6c22013-02-21 09:21:50 +00003500 if (fep->bufdesc_ex)
Troy Kisky4ad1cee2017-11-03 10:29:59 -07003501 fec_ptp_init(pdev, irq_cnt);
Fabio Estevam7f7d6c22013-02-21 09:21:50 +00003502
3503 ret = fec_enet_init(ndev);
3504 if (ret)
3505 goto failed_init;
3506
Troy Kisky4ad1cee2017-11-03 10:29:59 -07003507 for (i = 0; i < irq_cnt; i++) {
3508 sprintf(irq_name, "int%d", i);
3509 irq = platform_get_irq_byname(pdev, irq_name);
3510 if (irq < 0)
3511 irq = platform_get_irq(pdev, i);
Lothar Waßmann86f9f2c2011-12-07 21:59:28 +00003512 if (irq < 0) {
Lothar Waßmann86f9f2c2011-12-07 21:59:28 +00003513 ret = irq;
3514 goto failed_irq;
3515 }
Fabio Estevam0d9b2ab2013-07-21 13:25:04 -03003516 ret = devm_request_irq(&pdev->dev, irq, fec_enet_interrupt,
Michael Opdenacker44a272d2013-09-13 05:44:38 +02003517 0, pdev->name, ndev);
Fabio Estevam0d9b2ab2013-07-21 13:25:04 -03003518 if (ret)
Sascha Haueread73182009-01-28 23:03:11 +00003519 goto failed_irq;
Nimrod Andyde40ed32014-12-24 17:30:39 +08003520
3521 fep->irq[i] = irq;
Sascha Haueread73182009-01-28 23:03:11 +00003522 }
3523
Fugang Duanb4d39b52014-09-13 05:00:55 +08003524 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +00003525 ret = fec_enet_mii_init(pdev);
3526 if (ret)
3527 goto failed_mii_init;
3528
Oskar Schirmer03c698c2010-10-07 02:30:30 +00003529 /* Carrier starts down, phylib will bring it up */
3530 netif_carrier_off(ndev);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08003531 fec_enet_clk_enable(ndev, false);
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08003532 pinctrl_pm_select_sleep_state(&pdev->dev);
Oskar Schirmer03c698c2010-10-07 02:30:30 +00003533
Sascha Haueread73182009-01-28 23:03:11 +00003534 ret = register_netdev(ndev);
3535 if (ret)
3536 goto failed_register;
3537
Nimrod Andyde40ed32014-12-24 17:30:39 +08003538 device_init_wakeup(&ndev->dev, fep->wol_flag &
3539 FEC_WOL_HAS_MAGIC_PACKET);
3540
Fabio Estevameb1d0642013-04-13 07:25:36 +00003541 if (fep->bufdesc_ex && fep->ptp_clock)
3542 netdev_info(ndev, "registered PHC device %d\n", fep->dev_id);
3543
Nimrod Andy1b7bde62014-09-30 09:28:05 +08003544 fep->rx_copybreak = COPYBREAK_DEFAULT;
Russell King36cdc742014-07-08 13:01:44 +01003545 INIT_WORK(&fep->tx_timeout_work, fec_enet_timeout_work);
Andrew Lunn8fff7552015-07-25 22:38:02 +02003546
3547 pm_runtime_mark_last_busy(&pdev->dev);
3548 pm_runtime_put_autosuspend(&pdev->dev);
3549
Sascha Haueread73182009-01-28 23:03:11 +00003550 return 0;
3551
3552failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00003553 fec_enet_mii_remove(fep);
3554failed_mii_init:
Fabio Estevam7a2bbd82013-05-27 03:48:30 +00003555failed_irq:
Fabio Estevam7a2bbd82013-05-27 03:48:30 +00003556failed_init:
Lucas Stach32cba572015-07-23 16:06:20 +02003557 fec_ptp_stop(pdev);
Fabio Estevamf6a4d602013-05-27 03:48:31 +00003558 if (fep->reg_phy)
3559 regulator_disable(fep->reg_phy);
Fugang Duan9269e552017-04-11 19:13:06 +08003560failed_reset:
3561 pm_runtime_put(&pdev->dev);
3562 pm_runtime_disable(&pdev->dev);
Shawn Guo5fa9c0f2012-06-27 03:45:21 +00003563failed_regulator:
Andrew Lunn8fff7552015-07-25 22:38:02 +02003564failed_clk_ipg:
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08003565 fec_enet_clk_enable(ndev, false);
Sascha Haueread73182009-01-28 23:03:11 +00003566failed_clk:
Johan Hovold82005b12016-11-28 19:25:00 +01003567 if (of_phy_is_fixed_link(np))
3568 of_phy_deregister_fixed_link(np);
Uwe Kleine-König407066f2014-08-11 17:35:33 +02003569failed_phy:
3570 of_node_put(phy_node);
Sascha Haueread73182009-01-28 23:03:11 +00003571failed_ioremap:
3572 free_netdev(ndev);
3573
3574 return ret;
3575}
3576
Bill Pemberton33897cc2012-12-03 09:23:58 -05003577static int
Sascha Haueread73182009-01-28 23:03:11 +00003578fec_drv_remove(struct platform_device *pdev)
3579{
3580 struct net_device *ndev = platform_get_drvdata(pdev);
3581 struct fec_enet_private *fep = netdev_priv(ndev);
Johan Hovold82005b12016-11-28 19:25:00 +01003582 struct device_node *np = pdev->dev.of_node;
Sascha Haueread73182009-01-28 23:03:11 +00003583
Russell King36cdc742014-07-08 13:01:44 +01003584 cancel_work_sync(&fep->tx_timeout_work);
Lucas Stach32cba572015-07-23 16:06:20 +02003585 fec_ptp_stop(pdev);
Lothar Waßmanne163cc92011-12-07 21:59:31 +00003586 unregister_netdev(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00003587 fec_enet_mii_remove(fep);
Fabio Estevamf6a4d602013-05-27 03:48:31 +00003588 if (fep->reg_phy)
3589 regulator_disable(fep->reg_phy);
Johan Hovold82005b12016-11-28 19:25:00 +01003590 if (of_phy_is_fixed_link(np))
3591 of_phy_deregister_fixed_link(np);
Uwe Kleine-König407066f2014-08-11 17:35:33 +02003592 of_node_put(fep->phy_node);
Sascha Haueread73182009-01-28 23:03:11 +00003593 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01003594
Sascha Haueread73182009-01-28 23:03:11 +00003595 return 0;
3596}
3597
Fabio Estevamdd66d382014-07-24 18:24:01 -03003598static int __maybe_unused fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00003599{
Eric Benard87cad5c2010-06-18 04:19:54 +00003600 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003601 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00003602
Russell Kingda1774e2014-07-08 12:39:57 +01003603 rtnl_lock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003604 if (netif_running(ndev)) {
Nimrod Andyde40ed32014-12-24 17:30:39 +08003605 if (fep->wol_flag & FEC_WOL_FLAG_ENABLE)
3606 fep->wol_flag |= FEC_WOL_FLAG_SLEEP_ON;
Philippe Reynes45f5c322016-05-10 00:19:42 +02003607 phy_stop(ndev->phydev);
Russell King31a6de32014-07-08 12:40:23 +01003608 napi_disable(&fep->napi);
3609 netif_tx_lock_bh(ndev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003610 netif_device_detach(ndev);
Russell King31a6de32014-07-08 12:40:23 +01003611 netif_tx_unlock_bh(ndev);
3612 fec_stop(ndev);
Nimrod Andyf4c4a4e2014-11-03 13:26:50 +08003613 fec_enet_clk_enable(ndev, false);
Nimrod Andyde40ed32014-12-24 17:30:39 +08003614 if (!(fep->wol_flag & FEC_WOL_FLAG_ENABLE))
3615 pinctrl_pm_select_sleep_state(&fep->pdev->dev);
Sascha Haueread73182009-01-28 23:03:11 +00003616 }
Russell Kingda1774e2014-07-08 12:39:57 +01003617 rtnl_unlock();
3618
Nimrod Andyde40ed32014-12-24 17:30:39 +08003619 if (fep->reg_phy && !(fep->wol_flag & FEC_WOL_FLAG_ENABLE))
Fabio Estevam238f7bc2013-05-27 03:48:33 +00003620 regulator_disable(fep->reg_phy);
3621
Nimrod Andy858eeb72014-12-11 09:20:31 +08003622 /* SOC supply clock to phy, when clock is disabled, phy link down
3623 * SOC control phy regulator, when regulator is disabled, phy link down
3624 */
3625 if (fep->clk_enet_out || fep->reg_phy)
3626 fep->link = 0;
3627
Sascha Haueread73182009-01-28 23:03:11 +00003628 return 0;
3629}
3630
Fabio Estevamdd66d382014-07-24 18:24:01 -03003631static int __maybe_unused fec_resume(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00003632{
Eric Benard87cad5c2010-06-18 04:19:54 +00003633 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003634 struct fec_enet_private *fep = netdev_priv(ndev);
Nimrod Andyde40ed32014-12-24 17:30:39 +08003635 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Fabio Estevam238f7bc2013-05-27 03:48:33 +00003636 int ret;
Nimrod Andyde40ed32014-12-24 17:30:39 +08003637 int val;
Fabio Estevam238f7bc2013-05-27 03:48:33 +00003638
Nimrod Andyde40ed32014-12-24 17:30:39 +08003639 if (fep->reg_phy && !(fep->wol_flag & FEC_WOL_FLAG_ENABLE)) {
Fabio Estevam238f7bc2013-05-27 03:48:33 +00003640 ret = regulator_enable(fep->reg_phy);
3641 if (ret)
3642 return ret;
3643 }
Sascha Haueread73182009-01-28 23:03:11 +00003644
Russell Kingda1774e2014-07-08 12:39:57 +01003645 rtnl_lock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003646 if (netif_running(ndev)) {
Nimrod Andyf4c4a4e2014-11-03 13:26:50 +08003647 ret = fec_enet_clk_enable(ndev, true);
3648 if (ret) {
3649 rtnl_unlock();
3650 goto failed_clk;
3651 }
Nimrod Andyde40ed32014-12-24 17:30:39 +08003652 if (fep->wol_flag & FEC_WOL_FLAG_ENABLE) {
3653 if (pdata && pdata->sleep_mode_enable)
3654 pdata->sleep_mode_enable(false);
3655 val = readl(fep->hwp + FEC_ECNTRL);
3656 val &= ~(FEC_ECR_MAGICEN | FEC_ECR_SLEEP);
3657 writel(val, fep->hwp + FEC_ECNTRL);
3658 fep->wol_flag &= ~FEC_WOL_FLAG_SLEEP_ON;
3659 } else {
3660 pinctrl_pm_select_default_state(&fep->pdev->dev);
3661 }
Russell Kingef833372014-07-08 12:40:43 +01003662 fec_restart(ndev);
Russell King31a6de32014-07-08 12:40:23 +01003663 netif_tx_lock_bh(ndev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003664 netif_device_attach(ndev);
Russell King6af42d42014-07-08 12:40:18 +01003665 netif_tx_unlock_bh(ndev);
Russell King6af42d42014-07-08 12:40:18 +01003666 napi_enable(&fep->napi);
Philippe Reynes45f5c322016-05-10 00:19:42 +02003667 phy_start(ndev->phydev);
Sascha Haueread73182009-01-28 23:03:11 +00003668 }
Russell Kingda1774e2014-07-08 12:39:57 +01003669 rtnl_unlock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003670
Sascha Haueread73182009-01-28 23:03:11 +00003671 return 0;
Fabio Estevam13a097b2013-07-21 13:25:02 -03003672
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08003673failed_clk:
Fabio Estevam13a097b2013-07-21 13:25:02 -03003674 if (fep->reg_phy)
3675 regulator_disable(fep->reg_phy);
3676 return ret;
Sascha Haueread73182009-01-28 23:03:11 +00003677}
3678
Andrew Lunn8fff7552015-07-25 22:38:02 +02003679static int __maybe_unused fec_runtime_suspend(struct device *dev)
3680{
3681 struct net_device *ndev = dev_get_drvdata(dev);
3682 struct fec_enet_private *fep = netdev_priv(ndev);
3683
3684 clk_disable_unprepare(fep->clk_ipg);
3685
3686 return 0;
3687}
3688
3689static int __maybe_unused fec_runtime_resume(struct device *dev)
3690{
3691 struct net_device *ndev = dev_get_drvdata(dev);
3692 struct fec_enet_private *fep = netdev_priv(ndev);
3693
3694 return clk_prepare_enable(fep->clk_ipg);
3695}
3696
3697static const struct dev_pm_ops fec_pm_ops = {
3698 SET_SYSTEM_SLEEP_PM_OPS(fec_suspend, fec_resume)
3699 SET_RUNTIME_PM_OPS(fec_runtime_suspend, fec_runtime_resume, NULL)
3700};
Denis Kirjanov59d42892010-06-02 09:27:04 +00003701
Sascha Haueread73182009-01-28 23:03:11 +00003702static struct platform_driver fec_driver = {
3703 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00003704 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00003705 .pm = &fec_pm_ops,
Shawn Guoca2cc332011-06-25 02:04:35 +08003706 .of_match_table = fec_dt_ids,
Sascha Haueread73182009-01-28 23:03:11 +00003707 },
Shawn Guob5680e02011-01-05 21:13:13 +00003708 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00003709 .probe = fec_probe,
Bill Pemberton33897cc2012-12-03 09:23:58 -05003710 .remove = fec_drv_remove,
Sascha Haueread73182009-01-28 23:03:11 +00003711};
3712
Fabio Estevamaaca2372012-01-23 16:44:50 +00003713module_platform_driver(fec_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
Fabio Estevamf8c0aca2013-07-20 16:20:36 -03003715MODULE_ALIAS("platform:"DRIVER_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716MODULE_LICENSE("GPL");