blob: 56f56d6ada9cfdfa6f719eb6d9793efb3a614ccd [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
1562 if (int_events & FEC_ENET_RXF)
1563 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
1569 if (int_events & FEC_ENET_TXF)
1570 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
Philipp Zabel81f35ff2014-10-22 16:34:35 +02001606 if (fep->ptp_clock)
1607 fec_ptp_check_pps_event(fep);
Luwei Zhou278d2402014-10-10 13:15:30 +08001608
Uwe Kleine-König45993652011-01-19 20:47:04 +01001609 return ret;
1610}
1611
Frank Lidc975382013-01-28 18:31:42 +00001612static int fec_enet_rx_napi(struct napi_struct *napi, int budget)
1613{
1614 struct net_device *ndev = napi->dev;
Frank Lidc975382013-01-28 18:31:42 +00001615 struct fec_enet_private *fep = netdev_priv(ndev);
Russell King7a168072014-07-08 00:22:44 +01001616 int pkts;
1617
Russell King7a168072014-07-08 00:22:44 +01001618 pkts = fec_enet_rx(ndev, budget);
Uwe Kleine-König45993652011-01-19 20:47:04 +01001619
Frank Lide5fb0a2013-03-03 17:34:25 +00001620 fec_enet_tx(ndev);
1621
Frank Lidc975382013-01-28 18:31:42 +00001622 if (pkts < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001623 napi_complete_done(napi, pkts);
Frank Lidc975382013-01-28 18:31:42 +00001624 writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK);
1625 }
1626 return pkts;
1627}
Uwe Kleine-König45993652011-01-19 20:47:04 +01001628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629/* ------------------------------------------------------------------------- */
Fabio Estevam0c7768a2013-01-07 17:42:56 +00001630static void fec_get_mac(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001632 struct fec_enet_private *fep = netdev_priv(ndev);
Jingoo Han94660ba2013-08-30 13:56:26 +09001633 struct fec_platform_data *pdata = dev_get_platdata(&fep->pdev->dev);
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001634 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Shawn Guo49da97d2011-01-05 21:13:11 +00001636 /*
1637 * try to get mac address in following order:
1638 *
1639 * 1) module parameter via kernel command line in form
1640 * fec.macaddr=0x00,0x04,0x9f,0x01,0x30,0xe0
1641 */
1642 iap = macaddr;
1643
1644 /*
Shawn Guoca2cc332011-06-25 02:04:35 +08001645 * 2) from device tree data
1646 */
1647 if (!is_valid_ether_addr(iap)) {
1648 struct device_node *np = fep->pdev->dev.of_node;
1649 if (np) {
1650 const char *mac = of_get_mac_address(np);
1651 if (mac)
1652 iap = (unsigned char *) mac;
1653 }
1654 }
Shawn Guoca2cc332011-06-25 02:04:35 +08001655
1656 /*
1657 * 3) from flash or fuse (via platform data)
Shawn Guo49da97d2011-01-05 21:13:11 +00001658 */
1659 if (!is_valid_ether_addr(iap)) {
1660#ifdef CONFIG_M5272
1661 if (FEC_FLASHMAC)
1662 iap = (unsigned char *)FEC_FLASHMAC;
1663#else
1664 if (pdata)
Lothar Waßmann589efdc2011-12-07 21:59:29 +00001665 iap = (unsigned char *)&pdata->mac;
Shawn Guo49da97d2011-01-05 21:13:11 +00001666#endif
1667 }
1668
1669 /*
Shawn Guoca2cc332011-06-25 02:04:35 +08001670 * 4) FEC mac registers set by bootloader
Shawn Guo49da97d2011-01-05 21:13:11 +00001671 */
1672 if (!is_valid_ether_addr(iap)) {
Dan Carpenter7d7628f2013-08-29 11:25:14 +03001673 *((__be32 *) &tmpaddr[0]) =
1674 cpu_to_be32(readl(fep->hwp + FEC_ADDR_LOW));
1675 *((__be16 *) &tmpaddr[4]) =
1676 cpu_to_be16(readl(fep->hwp + FEC_ADDR_HIGH) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 iap = &tmpaddr[0];
1678 }
1679
Lucas Stachff5b2fa2013-06-03 00:38:39 +00001680 /*
1681 * 5) random mac address
1682 */
1683 if (!is_valid_ether_addr(iap)) {
1684 /* Report it and use a random ethernet address instead */
1685 netdev_err(ndev, "Invalid MAC address: %pM\n", iap);
1686 eth_hw_addr_random(ndev);
1687 netdev_info(ndev, "Using random MAC address: %pM\n",
1688 ndev->dev_addr);
1689 return;
1690 }
1691
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001692 memcpy(ndev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Shawn Guo49da97d2011-01-05 21:13:11 +00001694 /* Adjust MAC if using macaddr */
1695 if (iap == macaddr)
Shawn Guo43af9402011-12-05 05:01:15 +00001696 ndev->dev_addr[ETH_ALEN-1] = macaddr[ETH_ALEN-1] + fep->dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699/* ------------------------------------------------------------------------- */
1700
Bryan Wue6b043d2010-03-31 02:10:44 +00001701/*
1702 * Phy section
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001704static void fec_enet_adjust_link(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001706 struct fec_enet_private *fep = netdev_priv(ndev);
Philippe Reynes45f5c322016-05-10 00:19:42 +02001707 struct phy_device *phy_dev = ndev->phydev;
Bryan Wue6b043d2010-03-31 02:10:44 +00001708 int status_change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Bryan Wue6b043d2010-03-31 02:10:44 +00001710 /* Prevent a state halted on mii error */
1711 if (fep->mii_timeout && phy_dev->state == PHY_HALTED) {
1712 phy_dev->state = PHY_RESUMING;
Frank Li54309fa2013-05-07 14:08:44 +00001713 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001715
Russell King8ce56242014-07-08 12:40:07 +01001716 /*
1717 * If the netdev is down, or is going down, we're not interested
1718 * in link state events, so just mark our idea of the link as down
1719 * and ignore the event.
1720 */
1721 if (!netif_running(ndev) || !netif_device_present(ndev)) {
1722 fep->link = 0;
1723 } else if (phy_dev->link) {
Lucas Stachd97e7492013-03-14 05:12:01 +00001724 if (!fep->link) {
Lothar Waßmann6ea07222011-12-07 21:59:27 +00001725 fep->link = phy_dev->link;
Bryan Wue6b043d2010-03-31 02:10:44 +00001726 status_change = 1;
1727 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001728
Russell Kingef833372014-07-08 12:40:43 +01001729 if (fep->full_duplex != phy_dev->duplex) {
1730 fep->full_duplex = phy_dev->duplex;
Lucas Stachd97e7492013-03-14 05:12:01 +00001731 status_change = 1;
Russell Kingef833372014-07-08 12:40:43 +01001732 }
Lucas Stachd97e7492013-03-14 05:12:01 +00001733
1734 if (phy_dev->speed != fep->speed) {
1735 fep->speed = phy_dev->speed;
1736 status_change = 1;
1737 }
1738
1739 /* if any of the above changed restart the FEC */
Russell Kingdbc64a82014-07-08 12:40:12 +01001740 if (status_change) {
Russell Kingdbc64a82014-07-08 12:40:12 +01001741 napi_disable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001742 netif_tx_lock_bh(ndev);
Russell Kingef833372014-07-08 12:40:43 +01001743 fec_restart(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001744 netif_wake_queue(ndev);
Russell King6af42d42014-07-08 12:40:18 +01001745 netif_tx_unlock_bh(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01001746 napi_enable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01001747 }
Lucas Stachd97e7492013-03-14 05:12:01 +00001748 } else {
1749 if (fep->link) {
Russell Kingf208ce12014-07-08 12:40:38 +01001750 napi_disable(&fep->napi);
1751 netif_tx_lock_bh(ndev);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001752 fec_stop(ndev);
Russell Kingf208ce12014-07-08 12:40:38 +01001753 netif_tx_unlock_bh(ndev);
1754 napi_enable(&fep->napi);
Lucas Stach8d7ed0f2013-04-16 00:42:42 +00001755 fep->link = phy_dev->link;
Lucas Stachd97e7492013-03-14 05:12:01 +00001756 status_change = 1;
1757 }
Bryan Wue6b043d2010-03-31 02:10:44 +00001758 }
1759
Bryan Wue6b043d2010-03-31 02:10:44 +00001760 if (status_change)
1761 phy_print_status(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
Bryan Wue6b043d2010-03-31 02:10:44 +00001764static int fec_enet_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
Bryan Wue6b043d2010-03-31 02:10:44 +00001766 struct fec_enet_private *fep = bus->priv;
Andrew Lunn8fff7552015-07-25 22:38:02 +02001767 struct device *dev = &fep->pdev->dev;
Baruch Siach97b72e42010-07-11 21:12:51 +00001768 unsigned long time_left;
Andrew Lunn8fff7552015-07-25 22:38:02 +02001769 int ret = 0;
1770
1771 ret = pm_runtime_get_sync(dev);
Fabio Estevamb0c6ce22015-08-12 12:10:23 -03001772 if (ret < 0)
Andrew Lunn8fff7552015-07-25 22:38:02 +02001773 return ret;
Bryan Wue6b043d2010-03-31 02:10:44 +00001774
1775 fep->mii_timeout = 0;
Russell Kingaac27c72015-08-25 09:49:53 +01001776 reinit_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +00001777
1778 /* start a read op */
1779 writel(FEC_MMFR_ST | FEC_MMFR_OP_READ |
1780 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
1781 FEC_MMFR_TA, fep->hwp + FEC_MII_DATA);
1782
1783 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +00001784 time_left = wait_for_completion_timeout(&fep->mdio_done,
1785 usecs_to_jiffies(FEC_MII_TIMEOUT));
1786 if (time_left == 0) {
1787 fep->mii_timeout = 1;
Joe Perches31b77202013-04-13 19:03:17 +00001788 netdev_err(fep->netdev, "MDIO read timeout\n");
Andrew Lunn8fff7552015-07-25 22:38:02 +02001789 ret = -ETIMEDOUT;
1790 goto out;
Bryan Wue6b043d2010-03-31 02:10:44 +00001791 }
1792
Andrew Lunn8fff7552015-07-25 22:38:02 +02001793 ret = FEC_MMFR_DATA(readl(fep->hwp + FEC_MII_DATA));
1794
1795out:
1796 pm_runtime_mark_last_busy(dev);
1797 pm_runtime_put_autosuspend(dev);
1798
1799 return ret;
Bryan Wue6b043d2010-03-31 02:10:44 +00001800}
1801
1802static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
1803 u16 value)
1804{
1805 struct fec_enet_private *fep = bus->priv;
Andrew Lunn8fff7552015-07-25 22:38:02 +02001806 struct device *dev = &fep->pdev->dev;
Baruch Siach97b72e42010-07-11 21:12:51 +00001807 unsigned long time_left;
Maciej S. Szmigiero42ea4452015-09-03 21:38:30 +02001808 int ret;
Andrew Lunn8fff7552015-07-25 22:38:02 +02001809
1810 ret = pm_runtime_get_sync(dev);
Fabio Estevamb0c6ce22015-08-12 12:10:23 -03001811 if (ret < 0)
Andrew Lunn8fff7552015-07-25 22:38:02 +02001812 return ret;
Maciej S. Szmigiero42ea4452015-09-03 21:38:30 +02001813 else
1814 ret = 0;
Bryan Wue6b043d2010-03-31 02:10:44 +00001815
1816 fep->mii_timeout = 0;
Russell Kingaac27c72015-08-25 09:49:53 +01001817 reinit_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +00001818
Shawn Guo862f0982011-01-05 21:13:09 +00001819 /* start a write op */
1820 writel(FEC_MMFR_ST | FEC_MMFR_OP_WRITE |
Bryan Wue6b043d2010-03-31 02:10:44 +00001821 FEC_MMFR_PA(mii_id) | FEC_MMFR_RA(regnum) |
1822 FEC_MMFR_TA | FEC_MMFR_DATA(value),
1823 fep->hwp + FEC_MII_DATA);
1824
1825 /* wait for end of transfer */
Baruch Siach97b72e42010-07-11 21:12:51 +00001826 time_left = wait_for_completion_timeout(&fep->mdio_done,
1827 usecs_to_jiffies(FEC_MII_TIMEOUT));
1828 if (time_left == 0) {
1829 fep->mii_timeout = 1;
Joe Perches31b77202013-04-13 19:03:17 +00001830 netdev_err(fep->netdev, "MDIO write timeout\n");
Andrew Lunn8fff7552015-07-25 22:38:02 +02001831 ret = -ETIMEDOUT;
Bryan Wue6b043d2010-03-31 02:10:44 +00001832 }
1833
Andrew Lunn8fff7552015-07-25 22:38:02 +02001834 pm_runtime_mark_last_busy(dev);
1835 pm_runtime_put_autosuspend(dev);
1836
1837 return ret;
Bryan Wue6b043d2010-03-31 02:10:44 +00001838}
1839
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001840static int fec_enet_clk_enable(struct net_device *ndev, bool enable)
1841{
1842 struct fec_enet_private *fep = netdev_priv(ndev);
1843 int ret;
1844
1845 if (enable) {
1846 ret = clk_prepare_enable(fep->clk_ahb);
1847 if (ret)
1848 return ret;
Uwe Kleine-König01e59432016-10-20 10:28:27 +02001849
1850 ret = clk_prepare_enable(fep->clk_enet_out);
1851 if (ret)
1852 goto failed_clk_enet_out;
1853
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001854 if (fep->clk_ptp) {
Nimrod Andy91c0d982014-08-21 17:09:38 +08001855 mutex_lock(&fep->ptp_clk_mutex);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001856 ret = clk_prepare_enable(fep->clk_ptp);
Nimrod Andy91c0d982014-08-21 17:09:38 +08001857 if (ret) {
1858 mutex_unlock(&fep->ptp_clk_mutex);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001859 goto failed_clk_ptp;
Nimrod Andy91c0d982014-08-21 17:09:38 +08001860 } else {
1861 fep->ptp_clk_on = true;
1862 }
1863 mutex_unlock(&fep->ptp_clk_mutex);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001864 }
Uwe Kleine-König01e59432016-10-20 10:28:27 +02001865
1866 ret = clk_prepare_enable(fep->clk_ref);
1867 if (ret)
1868 goto failed_clk_ref;
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001869 } else {
1870 clk_disable_unprepare(fep->clk_ahb);
Uwe Kleine-König01e59432016-10-20 10:28:27 +02001871 clk_disable_unprepare(fep->clk_enet_out);
Nimrod Andy91c0d982014-08-21 17:09:38 +08001872 if (fep->clk_ptp) {
1873 mutex_lock(&fep->ptp_clk_mutex);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001874 clk_disable_unprepare(fep->clk_ptp);
Nimrod Andy91c0d982014-08-21 17:09:38 +08001875 fep->ptp_clk_on = false;
1876 mutex_unlock(&fep->ptp_clk_mutex);
1877 }
Uwe Kleine-König01e59432016-10-20 10:28:27 +02001878 clk_disable_unprepare(fep->clk_ref);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001879 }
1880
1881 return 0;
Fugang Duan9b5330e2014-09-13 05:00:46 +08001882
1883failed_clk_ref:
1884 if (fep->clk_ref)
1885 clk_disable_unprepare(fep->clk_ref);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001886failed_clk_ptp:
1887 if (fep->clk_enet_out)
1888 clk_disable_unprepare(fep->clk_enet_out);
1889failed_clk_enet_out:
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08001890 clk_disable_unprepare(fep->clk_ahb);
1891
1892 return ret;
1893}
1894
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001895static int fec_enet_mii_probe(struct net_device *ndev)
Bryan Wue6b043d2010-03-31 02:10:44 +00001896{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001897 struct fec_enet_private *fep = netdev_priv(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001898 struct phy_device *phy_dev = NULL;
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001899 char mdio_bus_id[MII_BUS_ID_SIZE];
1900 char phy_name[MII_BUS_ID_SIZE + 3];
1901 int phy_id;
Shawn Guo43af9402011-12-05 05:01:15 +00001902 int dev_id = fep->dev_id;
Bryan Wue6b043d2010-03-31 02:10:44 +00001903
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001904 if (fep->phy_node) {
1905 phy_dev = of_phy_connect(ndev, fep->phy_node,
1906 &fec_enet_adjust_link, 0,
1907 fep->phy_interface);
Andrew Lunn9558df32017-07-30 22:11:06 +02001908 if (!phy_dev) {
1909 netdev_err(ndev, "Unable to connect to phy\n");
Nimrod Andy213a9922014-12-09 18:46:56 +08001910 return -ENODEV;
Andrew Lunn9558df32017-07-30 22:11:06 +02001911 }
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001912 } else {
1913 /* check for attached phy */
1914 for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
Andrew Lunn7f854422016-01-06 20:11:18 +01001915 if (!mdiobus_is_registered_device(fep->mii_bus, phy_id))
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001916 continue;
1917 if (dev_id--)
1918 continue;
Rickard Strandqvist949bdd22014-09-14 19:32:42 +02001919 strlcpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001920 break;
1921 }
1922
1923 if (phy_id >= PHY_MAX_ADDR) {
1924 netdev_info(ndev, "no PHY, assuming direct connection to switch\n");
Rickard Strandqvist949bdd22014-09-14 19:32:42 +02001925 strlcpy(mdio_bus_id, "fixed-0", MII_BUS_ID_SIZE);
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001926 phy_id = 0;
1927 }
1928
1929 snprintf(phy_name, sizeof(phy_name),
1930 PHY_ID_FMT, mdio_bus_id, phy_id);
1931 phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link,
1932 fep->phy_interface);
Bryan Wue6b043d2010-03-31 02:10:44 +00001933 }
1934
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001935 if (IS_ERR(phy_dev)) {
Joe Perches31b77202013-04-13 19:03:17 +00001936 netdev_err(ndev, "could not attach to PHY\n");
Greg Ungerer6fcc0402010-10-11 21:03:05 +00001937 return PTR_ERR(phy_dev);
Bryan Wue6b043d2010-03-31 02:10:44 +00001938 }
1939
1940 /* mask with MAC supported features */
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01001941 if (fep->quirks & FEC_QUIRK_HAS_GBIT) {
Shawn Guo230dec62011-09-23 02:12:48 +00001942 phy_dev->supported &= PHY_GBIT_FEATURES;
Russell Kingb44592f2014-07-08 00:22:34 +01001943 phy_dev->supported &= ~SUPPORTED_1000baseT_Half;
Guenter Roeckd1391932013-06-18 10:04:59 -07001944#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +00001945 phy_dev->supported |= SUPPORTED_Pause;
Guenter Roeckd1391932013-06-18 10:04:59 -07001946#endif
Frank Libaa70a52013-01-16 16:55:58 +00001947 }
Shawn Guo230dec62011-09-23 02:12:48 +00001948 else
1949 phy_dev->supported &= PHY_BASIC_FEATURES;
1950
Bryan Wue6b043d2010-03-31 02:10:44 +00001951 phy_dev->advertising = phy_dev->supported;
1952
Bryan Wue6b043d2010-03-31 02:10:44 +00001953 fep->link = 0;
1954 fep->full_duplex = 0;
1955
Andrew Lunn22209432016-01-06 20:11:13 +01001956 phy_attached_info(phy_dev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07001957
Bryan Wue6b043d2010-03-31 02:10:44 +00001958 return 0;
1959}
1960
1961static int fec_enet_mii_init(struct platform_device *pdev)
1962{
Shawn Guob5680e02011-01-05 21:13:13 +00001963 static struct mii_bus *fec0_mii_bus;
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01001964 struct net_device *ndev = platform_get_drvdata(pdev);
1965 struct fec_enet_private *fep = netdev_priv(ndev);
Uwe Kleine-König407066f2014-08-11 17:35:33 +02001966 struct device_node *node;
Andrew Lunne7f4dc32016-01-06 20:11:15 +01001967 int err = -ENXIO;
Uwe Kleine-König63c60732015-03-27 11:08:32 +01001968 u32 mii_speed, holdtime;
Bryan Wue6b043d2010-03-31 02:10:44 +00001969
Shawn Guob5680e02011-01-05 21:13:13 +00001970 /*
Stefan Agner3d125f92015-01-14 00:20:21 +01001971 * The i.MX28 dual fec interfaces are not equal.
Shawn Guob5680e02011-01-05 21:13:13 +00001972 * Here are the differences:
1973 *
1974 * - fec0 supports MII & RMII modes while fec1 only supports RMII
1975 * - fec0 acts as the 1588 time master while fec1 is slave
1976 * - external phys can only be configured by fec0
1977 *
1978 * That is to say fec1 can not work independently. It only works
1979 * when fec0 is working. The reason behind this design is that the
1980 * second interface is added primarily for Switch mode.
1981 *
1982 * Because of the last point above, both phys are attached on fec0
1983 * mdio interface in board design, and need to be configured by
1984 * fec0 mii_bus.
1985 */
Stefan Agner3d125f92015-01-14 00:20:21 +01001986 if ((fep->quirks & FEC_QUIRK_SINGLE_MDIO) && fep->dev_id > 0) {
Shawn Guob5680e02011-01-05 21:13:13 +00001987 /* fec1 uses fec0 mii_bus */
Lothar Waßmanne163cc92011-12-07 21:59:31 +00001988 if (mii_cnt && fec0_mii_bus) {
1989 fep->mii_bus = fec0_mii_bus;
1990 mii_cnt++;
1991 return 0;
1992 }
1993 return -ENOENT;
Shawn Guob5680e02011-01-05 21:13:13 +00001994 }
1995
Bryan Wue6b043d2010-03-31 02:10:44 +00001996 fep->mii_timeout = 0;
1997
1998 /*
1999 * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
Shawn Guo230dec62011-09-23 02:12:48 +00002000 *
2001 * The formula for FEC MDC is 'ref_freq / (MII_SPEED x 2)' while
2002 * for ENET-MAC is 'ref_freq / ((MII_SPEED + 1) x 2)'. The i.MX28
2003 * Reference Manual has an error on this, and gets fixed on i.MX6Q
2004 * document.
Bryan Wue6b043d2010-03-31 02:10:44 +00002005 */
Uwe Kleine-König63c60732015-03-27 11:08:32 +01002006 mii_speed = DIV_ROUND_UP(clk_get_rate(fep->clk_ipg), 5000000);
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01002007 if (fep->quirks & FEC_QUIRK_ENET_MAC)
Uwe Kleine-König63c60732015-03-27 11:08:32 +01002008 mii_speed--;
2009 if (mii_speed > 63) {
2010 dev_err(&pdev->dev,
Peter Meerwald-Stadler981a0542016-12-16 14:23:36 +01002011 "fec clock (%lu) too fast to get right mii speed\n",
Uwe Kleine-König63c60732015-03-27 11:08:32 +01002012 clk_get_rate(fep->clk_ipg));
2013 err = -EINVAL;
2014 goto err_out;
2015 }
2016
2017 /*
2018 * The i.MX28 and i.MX6 types have another filed in the MSCR (aka
2019 * MII_SPEED) register that defines the MDIO output hold time. Earlier
2020 * versions are RAZ there, so just ignore the difference and write the
2021 * register always.
2022 * The minimal hold time according to IEE802.3 (clause 22) is 10 ns.
2023 * HOLDTIME + 1 is the number of clk cycles the fec is holding the
2024 * output.
2025 * The HOLDTIME bitfield takes values between 0 and 7 (inclusive).
2026 * Given that ceil(clkrate / 5000000) <= 64, the calculation for
2027 * holdtime cannot result in a value greater than 3.
2028 */
2029 holdtime = DIV_ROUND_UP(clk_get_rate(fep->clk_ipg), 100000000) - 1;
2030
2031 fep->phy_speed = mii_speed << 1 | holdtime << 8;
2032
Bryan Wue6b043d2010-03-31 02:10:44 +00002033 writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
2034
2035 fep->mii_bus = mdiobus_alloc();
2036 if (fep->mii_bus == NULL) {
2037 err = -ENOMEM;
2038 goto err_out;
2039 }
2040
2041 fep->mii_bus->name = "fec_enet_mii_bus";
2042 fep->mii_bus->read = fec_enet_mdio_read;
2043 fep->mii_bus->write = fec_enet_mdio_write;
Florian Fainelli391420f2012-01-09 23:59:13 +00002044 snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
2045 pdev->name, fep->dev_id + 1);
Bryan Wue6b043d2010-03-31 02:10:44 +00002046 fep->mii_bus->priv = fep;
2047 fep->mii_bus->parent = &pdev->dev;
2048
Uwe Kleine-König407066f2014-08-11 17:35:33 +02002049 node = of_get_child_by_name(pdev->dev.of_node, "mdio");
2050 if (node) {
2051 err = of_mdiobus_register(fep->mii_bus, node);
2052 of_node_put(node);
2053 } else {
2054 err = mdiobus_register(fep->mii_bus);
2055 }
2056
2057 if (err)
Andrew Lunne7f4dc32016-01-06 20:11:15 +01002058 goto err_out_free_mdiobus;
Bryan Wue6b043d2010-03-31 02:10:44 +00002059
Lothar Waßmanne163cc92011-12-07 21:59:31 +00002060 mii_cnt++;
2061
Shawn Guob5680e02011-01-05 21:13:13 +00002062 /* save fec0 mii_bus */
Stefan Agner3d125f92015-01-14 00:20:21 +01002063 if (fep->quirks & FEC_QUIRK_SINGLE_MDIO)
Shawn Guob5680e02011-01-05 21:13:13 +00002064 fec0_mii_bus = fep->mii_bus;
2065
Bryan Wue6b043d2010-03-31 02:10:44 +00002066 return 0;
2067
Bryan Wue6b043d2010-03-31 02:10:44 +00002068err_out_free_mdiobus:
2069 mdiobus_free(fep->mii_bus);
2070err_out:
2071 return err;
2072}
2073
2074static void fec_enet_mii_remove(struct fec_enet_private *fep)
2075{
Lothar Waßmanne163cc92011-12-07 21:59:31 +00002076 if (--mii_cnt == 0) {
2077 mdiobus_unregister(fep->mii_bus);
Lothar Waßmanne163cc92011-12-07 21:59:31 +00002078 mdiobus_free(fep->mii_bus);
2079 }
Bryan Wue6b043d2010-03-31 02:10:44 +00002080}
2081
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002082static void fec_enet_get_drvinfo(struct net_device *ndev,
Bryan Wue6b043d2010-03-31 02:10:44 +00002083 struct ethtool_drvinfo *info)
2084{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002085 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Jiri Pirko7826d432013-01-06 00:44:26 +00002087 strlcpy(info->driver, fep->pdev->dev.driver->name,
2088 sizeof(info->driver));
2089 strlcpy(info->version, "Revision: 1.0", sizeof(info->version));
2090 strlcpy(info->bus_info, dev_name(&ndev->dev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
Bryan Wue6b043d2010-03-31 02:10:44 +00002092
Philippe Reynesdb65f352015-05-11 00:01:42 +02002093static int fec_enet_get_regs_len(struct net_device *ndev)
2094{
2095 struct fec_enet_private *fep = netdev_priv(ndev);
2096 struct resource *r;
2097 int s = 0;
2098
2099 r = platform_get_resource(fep->pdev, IORESOURCE_MEM, 0);
2100 if (r)
2101 s = resource_size(r);
2102
2103 return s;
2104}
2105
2106/* List of registers that can be safety be read to dump them with ethtool */
2107#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Johannes Berg05f3b502016-01-25 11:40:50 +01002108 defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
Philippe Reynesdb65f352015-05-11 00:01:42 +02002109static u32 fec_enet_register_offset[] = {
2110 FEC_IEVENT, FEC_IMASK, FEC_R_DES_ACTIVE_0, FEC_X_DES_ACTIVE_0,
2111 FEC_ECNTRL, FEC_MII_DATA, FEC_MII_SPEED, FEC_MIB_CTRLSTAT, FEC_R_CNTRL,
2112 FEC_X_CNTRL, FEC_ADDR_LOW, FEC_ADDR_HIGH, FEC_OPD, FEC_TXIC0, FEC_TXIC1,
2113 FEC_TXIC2, FEC_RXIC0, FEC_RXIC1, FEC_RXIC2, FEC_HASH_TABLE_HIGH,
2114 FEC_HASH_TABLE_LOW, FEC_GRP_HASH_TABLE_HIGH, FEC_GRP_HASH_TABLE_LOW,
2115 FEC_X_WMRK, FEC_R_BOUND, FEC_R_FSTART, FEC_R_DES_START_1,
2116 FEC_X_DES_START_1, FEC_R_BUFF_SIZE_1, FEC_R_DES_START_2,
2117 FEC_X_DES_START_2, FEC_R_BUFF_SIZE_2, FEC_R_DES_START_0,
2118 FEC_X_DES_START_0, FEC_R_BUFF_SIZE_0, FEC_R_FIFO_RSFL, FEC_R_FIFO_RSEM,
2119 FEC_R_FIFO_RAEM, FEC_R_FIFO_RAFL, FEC_RACC, FEC_RCMR_1, FEC_RCMR_2,
2120 FEC_DMA_CFG_1, FEC_DMA_CFG_2, FEC_R_DES_ACTIVE_1, FEC_X_DES_ACTIVE_1,
2121 FEC_R_DES_ACTIVE_2, FEC_X_DES_ACTIVE_2, FEC_QOS_SCHEME,
2122 RMON_T_DROP, RMON_T_PACKETS, RMON_T_BC_PKT, RMON_T_MC_PKT,
2123 RMON_T_CRC_ALIGN, RMON_T_UNDERSIZE, RMON_T_OVERSIZE, RMON_T_FRAG,
2124 RMON_T_JAB, RMON_T_COL, RMON_T_P64, RMON_T_P65TO127, RMON_T_P128TO255,
2125 RMON_T_P256TO511, RMON_T_P512TO1023, RMON_T_P1024TO2047,
2126 RMON_T_P_GTE2048, RMON_T_OCTETS,
2127 IEEE_T_DROP, IEEE_T_FRAME_OK, IEEE_T_1COL, IEEE_T_MCOL, IEEE_T_DEF,
2128 IEEE_T_LCOL, IEEE_T_EXCOL, IEEE_T_MACERR, IEEE_T_CSERR, IEEE_T_SQE,
2129 IEEE_T_FDXFC, IEEE_T_OCTETS_OK,
2130 RMON_R_PACKETS, RMON_R_BC_PKT, RMON_R_MC_PKT, RMON_R_CRC_ALIGN,
2131 RMON_R_UNDERSIZE, RMON_R_OVERSIZE, RMON_R_FRAG, RMON_R_JAB,
2132 RMON_R_RESVD_O, RMON_R_P64, RMON_R_P65TO127, RMON_R_P128TO255,
2133 RMON_R_P256TO511, RMON_R_P512TO1023, RMON_R_P1024TO2047,
2134 RMON_R_P_GTE2048, RMON_R_OCTETS,
2135 IEEE_R_DROP, IEEE_R_FRAME_OK, IEEE_R_CRC, IEEE_R_ALIGN, IEEE_R_MACERR,
2136 IEEE_R_FDXFC, IEEE_R_OCTETS_OK
2137};
2138#else
2139static u32 fec_enet_register_offset[] = {
2140 FEC_ECNTRL, FEC_IEVENT, FEC_IMASK, FEC_IVEC, FEC_R_DES_ACTIVE_0,
2141 FEC_R_DES_ACTIVE_1, FEC_R_DES_ACTIVE_2, FEC_X_DES_ACTIVE_0,
2142 FEC_X_DES_ACTIVE_1, FEC_X_DES_ACTIVE_2, FEC_MII_DATA, FEC_MII_SPEED,
2143 FEC_R_BOUND, FEC_R_FSTART, FEC_X_WMRK, FEC_X_FSTART, FEC_R_CNTRL,
2144 FEC_MAX_FRM_LEN, FEC_X_CNTRL, FEC_ADDR_LOW, FEC_ADDR_HIGH,
2145 FEC_GRP_HASH_TABLE_HIGH, FEC_GRP_HASH_TABLE_LOW, FEC_R_DES_START_0,
2146 FEC_R_DES_START_1, FEC_R_DES_START_2, FEC_X_DES_START_0,
2147 FEC_X_DES_START_1, FEC_X_DES_START_2, FEC_R_BUFF_SIZE_0,
2148 FEC_R_BUFF_SIZE_1, FEC_R_BUFF_SIZE_2
2149};
2150#endif
2151
2152static void fec_enet_get_regs(struct net_device *ndev,
2153 struct ethtool_regs *regs, void *regbuf)
2154{
2155 struct fec_enet_private *fep = netdev_priv(ndev);
2156 u32 __iomem *theregs = (u32 __iomem *)fep->hwp;
2157 u32 *buf = (u32 *)regbuf;
2158 u32 i, off;
2159
2160 memset(buf, 0, regs->len);
2161
2162 for (i = 0; i < ARRAY_SIZE(fec_enet_register_offset); i++) {
2163 off = fec_enet_register_offset[i] / 4;
2164 buf[off] = readl(&theregs[off]);
2165 }
2166}
2167
Frank Li5ebae4892013-01-06 16:25:07 +00002168static int fec_enet_get_ts_info(struct net_device *ndev,
2169 struct ethtool_ts_info *info)
2170{
2171 struct fec_enet_private *fep = netdev_priv(ndev);
2172
2173 if (fep->bufdesc_ex) {
2174
2175 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
2176 SOF_TIMESTAMPING_RX_SOFTWARE |
2177 SOF_TIMESTAMPING_SOFTWARE |
2178 SOF_TIMESTAMPING_TX_HARDWARE |
2179 SOF_TIMESTAMPING_RX_HARDWARE |
2180 SOF_TIMESTAMPING_RAW_HARDWARE;
2181 if (fep->ptp_clock)
2182 info->phc_index = ptp_clock_index(fep->ptp_clock);
2183 else
2184 info->phc_index = -1;
2185
2186 info->tx_types = (1 << HWTSTAMP_TX_OFF) |
2187 (1 << HWTSTAMP_TX_ON);
2188
2189 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
2190 (1 << HWTSTAMP_FILTER_ALL);
2191 return 0;
2192 } else {
2193 return ethtool_op_get_ts_info(ndev, info);
2194 }
2195}
2196
Guenter Roeckd1391932013-06-18 10:04:59 -07002197#if !defined(CONFIG_M5272)
2198
Frank Libaa70a52013-01-16 16:55:58 +00002199static void fec_enet_get_pauseparam(struct net_device *ndev,
2200 struct ethtool_pauseparam *pause)
2201{
2202 struct fec_enet_private *fep = netdev_priv(ndev);
2203
2204 pause->autoneg = (fep->pause_flag & FEC_PAUSE_FLAG_AUTONEG) != 0;
2205 pause->tx_pause = (fep->pause_flag & FEC_PAUSE_FLAG_ENABLE) != 0;
2206 pause->rx_pause = pause->tx_pause;
2207}
2208
2209static int fec_enet_set_pauseparam(struct net_device *ndev,
2210 struct ethtool_pauseparam *pause)
2211{
2212 struct fec_enet_private *fep = netdev_priv(ndev);
2213
Philippe Reynes45f5c322016-05-10 00:19:42 +02002214 if (!ndev->phydev)
Russell King0b146ca2014-07-08 00:22:59 +01002215 return -ENODEV;
2216
Frank Libaa70a52013-01-16 16:55:58 +00002217 if (pause->tx_pause != pause->rx_pause) {
2218 netdev_info(ndev,
2219 "hardware only support enable/disable both tx and rx");
2220 return -EINVAL;
2221 }
2222
2223 fep->pause_flag = 0;
2224
2225 /* tx pause must be same as rx pause */
2226 fep->pause_flag |= pause->rx_pause ? FEC_PAUSE_FLAG_ENABLE : 0;
2227 fep->pause_flag |= pause->autoneg ? FEC_PAUSE_FLAG_AUTONEG : 0;
2228
2229 if (pause->rx_pause || pause->autoneg) {
Philippe Reynes45f5c322016-05-10 00:19:42 +02002230 ndev->phydev->supported |= ADVERTISED_Pause;
2231 ndev->phydev->advertising |= ADVERTISED_Pause;
Frank Libaa70a52013-01-16 16:55:58 +00002232 } else {
Philippe Reynes45f5c322016-05-10 00:19:42 +02002233 ndev->phydev->supported &= ~ADVERTISED_Pause;
2234 ndev->phydev->advertising &= ~ADVERTISED_Pause;
Frank Libaa70a52013-01-16 16:55:58 +00002235 }
2236
2237 if (pause->autoneg) {
2238 if (netif_running(ndev))
2239 fec_stop(ndev);
Philippe Reynes45f5c322016-05-10 00:19:42 +02002240 phy_start_aneg(ndev->phydev);
Frank Libaa70a52013-01-16 16:55:58 +00002241 }
Russell Kingdbc64a82014-07-08 12:40:12 +01002242 if (netif_running(ndev)) {
Russell Kingdbc64a82014-07-08 12:40:12 +01002243 napi_disable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01002244 netif_tx_lock_bh(ndev);
Russell Kingef833372014-07-08 12:40:43 +01002245 fec_restart(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01002246 netif_wake_queue(ndev);
Russell King6af42d42014-07-08 12:40:18 +01002247 netif_tx_unlock_bh(ndev);
Russell Kingdbc64a82014-07-08 12:40:12 +01002248 napi_enable(&fep->napi);
Russell Kingdbc64a82014-07-08 12:40:12 +01002249 }
Frank Libaa70a52013-01-16 16:55:58 +00002250
2251 return 0;
2252}
2253
Chris Healy38ae92d2013-06-25 23:18:52 -07002254static const struct fec_stat {
2255 char name[ETH_GSTRING_LEN];
2256 u16 offset;
2257} fec_stats[] = {
2258 /* RMON TX */
2259 { "tx_dropped", RMON_T_DROP },
2260 { "tx_packets", RMON_T_PACKETS },
2261 { "tx_broadcast", RMON_T_BC_PKT },
2262 { "tx_multicast", RMON_T_MC_PKT },
2263 { "tx_crc_errors", RMON_T_CRC_ALIGN },
2264 { "tx_undersize", RMON_T_UNDERSIZE },
2265 { "tx_oversize", RMON_T_OVERSIZE },
2266 { "tx_fragment", RMON_T_FRAG },
2267 { "tx_jabber", RMON_T_JAB },
2268 { "tx_collision", RMON_T_COL },
2269 { "tx_64byte", RMON_T_P64 },
2270 { "tx_65to127byte", RMON_T_P65TO127 },
2271 { "tx_128to255byte", RMON_T_P128TO255 },
2272 { "tx_256to511byte", RMON_T_P256TO511 },
2273 { "tx_512to1023byte", RMON_T_P512TO1023 },
2274 { "tx_1024to2047byte", RMON_T_P1024TO2047 },
2275 { "tx_GTE2048byte", RMON_T_P_GTE2048 },
2276 { "tx_octets", RMON_T_OCTETS },
2277
2278 /* IEEE TX */
2279 { "IEEE_tx_drop", IEEE_T_DROP },
2280 { "IEEE_tx_frame_ok", IEEE_T_FRAME_OK },
2281 { "IEEE_tx_1col", IEEE_T_1COL },
2282 { "IEEE_tx_mcol", IEEE_T_MCOL },
2283 { "IEEE_tx_def", IEEE_T_DEF },
2284 { "IEEE_tx_lcol", IEEE_T_LCOL },
2285 { "IEEE_tx_excol", IEEE_T_EXCOL },
2286 { "IEEE_tx_macerr", IEEE_T_MACERR },
2287 { "IEEE_tx_cserr", IEEE_T_CSERR },
2288 { "IEEE_tx_sqe", IEEE_T_SQE },
2289 { "IEEE_tx_fdxfc", IEEE_T_FDXFC },
2290 { "IEEE_tx_octets_ok", IEEE_T_OCTETS_OK },
2291
2292 /* RMON RX */
2293 { "rx_packets", RMON_R_PACKETS },
2294 { "rx_broadcast", RMON_R_BC_PKT },
2295 { "rx_multicast", RMON_R_MC_PKT },
2296 { "rx_crc_errors", RMON_R_CRC_ALIGN },
2297 { "rx_undersize", RMON_R_UNDERSIZE },
2298 { "rx_oversize", RMON_R_OVERSIZE },
2299 { "rx_fragment", RMON_R_FRAG },
2300 { "rx_jabber", RMON_R_JAB },
2301 { "rx_64byte", RMON_R_P64 },
2302 { "rx_65to127byte", RMON_R_P65TO127 },
2303 { "rx_128to255byte", RMON_R_P128TO255 },
2304 { "rx_256to511byte", RMON_R_P256TO511 },
2305 { "rx_512to1023byte", RMON_R_P512TO1023 },
2306 { "rx_1024to2047byte", RMON_R_P1024TO2047 },
2307 { "rx_GTE2048byte", RMON_R_P_GTE2048 },
2308 { "rx_octets", RMON_R_OCTETS },
2309
2310 /* IEEE RX */
2311 { "IEEE_rx_drop", IEEE_R_DROP },
2312 { "IEEE_rx_frame_ok", IEEE_R_FRAME_OK },
2313 { "IEEE_rx_crc", IEEE_R_CRC },
2314 { "IEEE_rx_align", IEEE_R_ALIGN },
2315 { "IEEE_rx_macerr", IEEE_R_MACERR },
2316 { "IEEE_rx_fdxfc", IEEE_R_FDXFC },
2317 { "IEEE_rx_octets_ok", IEEE_R_OCTETS_OK },
2318};
2319
Nikita Yushchenkof85de662016-12-06 09:26:53 +03002320#define FEC_STATS_SIZE (ARRAY_SIZE(fec_stats) * sizeof(u64))
2321
Nikita Yushchenko80cca772016-11-29 09:44:51 +03002322static void fec_enet_update_ethtool_stats(struct net_device *dev)
Chris Healy38ae92d2013-06-25 23:18:52 -07002323{
2324 struct fec_enet_private *fep = netdev_priv(dev);
2325 int i;
2326
2327 for (i = 0; i < ARRAY_SIZE(fec_stats); i++)
Nikita Yushchenko80cca772016-11-29 09:44:51 +03002328 fep->ethtool_stats[i] = readl(fep->hwp + fec_stats[i].offset);
2329}
2330
2331static void fec_enet_get_ethtool_stats(struct net_device *dev,
2332 struct ethtool_stats *stats, u64 *data)
2333{
2334 struct fec_enet_private *fep = netdev_priv(dev);
2335
2336 if (netif_running(dev))
2337 fec_enet_update_ethtool_stats(dev);
2338
Nikita Yushchenkof85de662016-12-06 09:26:53 +03002339 memcpy(data, fep->ethtool_stats, FEC_STATS_SIZE);
Chris Healy38ae92d2013-06-25 23:18:52 -07002340}
2341
2342static void fec_enet_get_strings(struct net_device *netdev,
2343 u32 stringset, u8 *data)
2344{
2345 int i;
2346 switch (stringset) {
2347 case ETH_SS_STATS:
2348 for (i = 0; i < ARRAY_SIZE(fec_stats); i++)
2349 memcpy(data + i * ETH_GSTRING_LEN,
2350 fec_stats[i].name, ETH_GSTRING_LEN);
2351 break;
2352 }
2353}
2354
2355static int fec_enet_get_sset_count(struct net_device *dev, int sset)
2356{
2357 switch (sset) {
2358 case ETH_SS_STATS:
2359 return ARRAY_SIZE(fec_stats);
2360 default:
2361 return -EOPNOTSUPP;
2362 }
2363}
Nikita Yushchenkof85de662016-12-06 09:26:53 +03002364
Andrew Lunn2b308422017-06-07 03:57:09 +02002365static void fec_enet_clear_ethtool_stats(struct net_device *dev)
2366{
2367 struct fec_enet_private *fep = netdev_priv(dev);
2368 int i;
2369
2370 /* Disable MIB statistics counters */
2371 writel(FEC_MIB_CTRLSTAT_DISABLE, fep->hwp + FEC_MIB_CTRLSTAT);
2372
2373 for (i = 0; i < ARRAY_SIZE(fec_stats); i++)
2374 writel(0, fep->hwp + fec_stats[i].offset);
2375
2376 /* Don't disable MIB statistics counters */
2377 writel(0, fep->hwp + FEC_MIB_CTRLSTAT);
2378}
2379
Nikita Yushchenkof85de662016-12-06 09:26:53 +03002380#else /* !defined(CONFIG_M5272) */
2381#define FEC_STATS_SIZE 0
2382static inline void fec_enet_update_ethtool_stats(struct net_device *dev)
2383{
2384}
Fabio Estevam41e8e402017-06-09 22:37:22 -03002385
2386static inline void fec_enet_clear_ethtool_stats(struct net_device *dev)
2387{
2388}
Guenter Roeckd1391932013-06-18 10:04:59 -07002389#endif /* !defined(CONFIG_M5272) */
Chris Healy38ae92d2013-06-25 23:18:52 -07002390
Fugang Duand851b472014-09-17 05:18:52 +08002391/* ITR clock source is enet system clock (clk_ahb).
2392 * TCTT unit is cycle_ns * 64 cycle
2393 * So, the ICTT value = X us / (cycle_ns * 64)
2394 */
2395static int fec_enet_us_to_itr_clock(struct net_device *ndev, int us)
2396{
2397 struct fec_enet_private *fep = netdev_priv(ndev);
2398
2399 return us * (fep->itr_clk_rate / 64000) / 1000;
2400}
2401
2402/* Set threshold for interrupt coalescing */
2403static void fec_enet_itr_coal_set(struct net_device *ndev)
2404{
2405 struct fec_enet_private *fep = netdev_priv(ndev);
Fugang Duand851b472014-09-17 05:18:52 +08002406 int rx_itr, tx_itr;
2407
Fugang Duand851b472014-09-17 05:18:52 +08002408 /* Must be greater than zero to avoid unpredictable behavior */
2409 if (!fep->rx_time_itr || !fep->rx_pkts_itr ||
2410 !fep->tx_time_itr || !fep->tx_pkts_itr)
2411 return;
2412
2413 /* Select enet system clock as Interrupt Coalescing
2414 * timer Clock Source
2415 */
2416 rx_itr = FEC_ITR_CLK_SEL;
2417 tx_itr = FEC_ITR_CLK_SEL;
2418
2419 /* set ICFT and ICTT */
2420 rx_itr |= FEC_ITR_ICFT(fep->rx_pkts_itr);
2421 rx_itr |= FEC_ITR_ICTT(fec_enet_us_to_itr_clock(ndev, fep->rx_time_itr));
2422 tx_itr |= FEC_ITR_ICFT(fep->tx_pkts_itr);
2423 tx_itr |= FEC_ITR_ICTT(fec_enet_us_to_itr_clock(ndev, fep->tx_time_itr));
2424
2425 rx_itr |= FEC_ITR_EN;
2426 tx_itr |= FEC_ITR_EN;
2427
2428 writel(tx_itr, fep->hwp + FEC_TXIC0);
2429 writel(rx_itr, fep->hwp + FEC_RXIC0);
Fugang Duanff7566b2016-06-22 18:52:35 +08002430 if (fep->quirks & FEC_QUIRK_HAS_AVB) {
2431 writel(tx_itr, fep->hwp + FEC_TXIC1);
2432 writel(rx_itr, fep->hwp + FEC_RXIC1);
2433 writel(tx_itr, fep->hwp + FEC_TXIC2);
2434 writel(rx_itr, fep->hwp + FEC_RXIC2);
2435 }
Fugang Duand851b472014-09-17 05:18:52 +08002436}
2437
2438static int
2439fec_enet_get_coalesce(struct net_device *ndev, struct ethtool_coalesce *ec)
2440{
2441 struct fec_enet_private *fep = netdev_priv(ndev);
Fugang Duand851b472014-09-17 05:18:52 +08002442
Fugang Duanff7566b2016-06-22 18:52:35 +08002443 if (!(fep->quirks & FEC_QUIRK_HAS_COALESCE))
Fugang Duand851b472014-09-17 05:18:52 +08002444 return -EOPNOTSUPP;
2445
2446 ec->rx_coalesce_usecs = fep->rx_time_itr;
2447 ec->rx_max_coalesced_frames = fep->rx_pkts_itr;
2448
2449 ec->tx_coalesce_usecs = fep->tx_time_itr;
2450 ec->tx_max_coalesced_frames = fep->tx_pkts_itr;
2451
2452 return 0;
2453}
2454
2455static int
2456fec_enet_set_coalesce(struct net_device *ndev, struct ethtool_coalesce *ec)
2457{
2458 struct fec_enet_private *fep = netdev_priv(ndev);
Fugang Duand851b472014-09-17 05:18:52 +08002459 unsigned int cycle;
2460
Fugang Duanff7566b2016-06-22 18:52:35 +08002461 if (!(fep->quirks & FEC_QUIRK_HAS_COALESCE))
Fugang Duand851b472014-09-17 05:18:52 +08002462 return -EOPNOTSUPP;
2463
2464 if (ec->rx_max_coalesced_frames > 255) {
Colin Ian King9f647a62016-06-06 09:21:44 +01002465 pr_err("Rx coalesced frames exceed hardware limitation\n");
Fugang Duand851b472014-09-17 05:18:52 +08002466 return -EINVAL;
2467 }
2468
2469 if (ec->tx_max_coalesced_frames > 255) {
Colin Ian King9f647a62016-06-06 09:21:44 +01002470 pr_err("Tx coalesced frame exceed hardware limitation\n");
Fugang Duand851b472014-09-17 05:18:52 +08002471 return -EINVAL;
2472 }
2473
2474 cycle = fec_enet_us_to_itr_clock(ndev, fep->rx_time_itr);
2475 if (cycle > 0xFFFF) {
Colin Ian King9f647a62016-06-06 09:21:44 +01002476 pr_err("Rx coalesced usec exceed hardware limitation\n");
Fugang Duand851b472014-09-17 05:18:52 +08002477 return -EINVAL;
2478 }
2479
2480 cycle = fec_enet_us_to_itr_clock(ndev, fep->tx_time_itr);
2481 if (cycle > 0xFFFF) {
Colin Ian King9f647a62016-06-06 09:21:44 +01002482 pr_err("Rx coalesced usec exceed hardware limitation\n");
Fugang Duand851b472014-09-17 05:18:52 +08002483 return -EINVAL;
2484 }
2485
2486 fep->rx_time_itr = ec->rx_coalesce_usecs;
2487 fep->rx_pkts_itr = ec->rx_max_coalesced_frames;
2488
2489 fep->tx_time_itr = ec->tx_coalesce_usecs;
2490 fep->tx_pkts_itr = ec->tx_max_coalesced_frames;
2491
2492 fec_enet_itr_coal_set(ndev);
2493
2494 return 0;
2495}
2496
2497static void fec_enet_itr_coal_init(struct net_device *ndev)
2498{
2499 struct ethtool_coalesce ec;
2500
2501 ec.rx_coalesce_usecs = FEC_ITR_ICTT_DEFAULT;
2502 ec.rx_max_coalesced_frames = FEC_ITR_ICFT_DEFAULT;
2503
2504 ec.tx_coalesce_usecs = FEC_ITR_ICTT_DEFAULT;
2505 ec.tx_max_coalesced_frames = FEC_ITR_ICFT_DEFAULT;
2506
2507 fec_enet_set_coalesce(ndev, &ec);
2508}
2509
Nimrod Andy1b7bde62014-09-30 09:28:05 +08002510static int fec_enet_get_tunable(struct net_device *netdev,
2511 const struct ethtool_tunable *tuna,
2512 void *data)
2513{
2514 struct fec_enet_private *fep = netdev_priv(netdev);
2515 int ret = 0;
2516
2517 switch (tuna->id) {
2518 case ETHTOOL_RX_COPYBREAK:
2519 *(u32 *)data = fep->rx_copybreak;
2520 break;
2521 default:
2522 ret = -EINVAL;
2523 break;
2524 }
2525
2526 return ret;
2527}
2528
2529static int fec_enet_set_tunable(struct net_device *netdev,
2530 const struct ethtool_tunable *tuna,
2531 const void *data)
2532{
2533 struct fec_enet_private *fep = netdev_priv(netdev);
2534 int ret = 0;
2535
2536 switch (tuna->id) {
2537 case ETHTOOL_RX_COPYBREAK:
2538 fep->rx_copybreak = *(u32 *)data;
2539 break;
2540 default:
2541 ret = -EINVAL;
2542 break;
2543 }
2544
2545 return ret;
2546}
2547
Nimrod Andyde40ed32014-12-24 17:30:39 +08002548static void
2549fec_enet_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
2550{
2551 struct fec_enet_private *fep = netdev_priv(ndev);
2552
2553 if (fep->wol_flag & FEC_WOL_HAS_MAGIC_PACKET) {
2554 wol->supported = WAKE_MAGIC;
2555 wol->wolopts = fep->wol_flag & FEC_WOL_FLAG_ENABLE ? WAKE_MAGIC : 0;
2556 } else {
2557 wol->supported = wol->wolopts = 0;
2558 }
2559}
2560
2561static int
2562fec_enet_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
2563{
2564 struct fec_enet_private *fep = netdev_priv(ndev);
2565
2566 if (!(fep->wol_flag & FEC_WOL_HAS_MAGIC_PACKET))
2567 return -EINVAL;
2568
2569 if (wol->wolopts & ~WAKE_MAGIC)
2570 return -EINVAL;
2571
2572 device_set_wakeup_enable(&ndev->dev, wol->wolopts & WAKE_MAGIC);
2573 if (device_may_wakeup(&ndev->dev)) {
2574 fep->wol_flag |= FEC_WOL_FLAG_ENABLE;
2575 if (fep->irq[0] > 0)
2576 enable_irq_wake(fep->irq[0]);
2577 } else {
2578 fep->wol_flag &= (~FEC_WOL_FLAG_ENABLE);
2579 if (fep->irq[0] > 0)
2580 disable_irq_wake(fep->irq[0]);
2581 }
2582
2583 return 0;
2584}
2585
stephen hemminger9b07be42012-01-04 12:59:49 +00002586static const struct ethtool_ops fec_enet_ethtool_ops = {
Bryan Wue6b043d2010-03-31 02:10:44 +00002587 .get_drvinfo = fec_enet_get_drvinfo,
Philippe Reynesdb65f352015-05-11 00:01:42 +02002588 .get_regs_len = fec_enet_get_regs_len,
2589 .get_regs = fec_enet_get_regs,
Florian Fainelli11d59282016-11-15 10:06:40 -08002590 .nway_reset = phy_ethtool_nway_reset,
Russell Kingc1d7c482014-07-08 13:01:54 +01002591 .get_link = ethtool_op_get_link,
Fugang Duand851b472014-09-17 05:18:52 +08002592 .get_coalesce = fec_enet_get_coalesce,
2593 .set_coalesce = fec_enet_set_coalesce,
Chris Healy38ae92d2013-06-25 23:18:52 -07002594#ifndef CONFIG_M5272
Russell Kingc1d7c482014-07-08 13:01:54 +01002595 .get_pauseparam = fec_enet_get_pauseparam,
2596 .set_pauseparam = fec_enet_set_pauseparam,
Chris Healy38ae92d2013-06-25 23:18:52 -07002597 .get_strings = fec_enet_get_strings,
Russell Kingc1d7c482014-07-08 13:01:54 +01002598 .get_ethtool_stats = fec_enet_get_ethtool_stats,
Chris Healy38ae92d2013-06-25 23:18:52 -07002599 .get_sset_count = fec_enet_get_sset_count,
2600#endif
Russell Kingc1d7c482014-07-08 13:01:54 +01002601 .get_ts_info = fec_enet_get_ts_info,
Nimrod Andy1b7bde62014-09-30 09:28:05 +08002602 .get_tunable = fec_enet_get_tunable,
2603 .set_tunable = fec_enet_set_tunable,
Nimrod Andyde40ed32014-12-24 17:30:39 +08002604 .get_wol = fec_enet_get_wol,
2605 .set_wol = fec_enet_set_wol,
Philippe Reynes9365fbf2016-05-10 00:19:43 +02002606 .get_link_ksettings = phy_ethtool_get_link_ksettings,
2607 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Bryan Wue6b043d2010-03-31 02:10:44 +00002608};
2609
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002610static int fec_enet_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
Bryan Wue6b043d2010-03-31 02:10:44 +00002611{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002612 struct fec_enet_private *fep = netdev_priv(ndev);
Philippe Reynes45f5c322016-05-10 00:19:42 +02002613 struct phy_device *phydev = ndev->phydev;
Bryan Wue6b043d2010-03-31 02:10:44 +00002614
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002615 if (!netif_running(ndev))
Bryan Wue6b043d2010-03-31 02:10:44 +00002616 return -EINVAL;
2617
2618 if (!phydev)
2619 return -ENODEV;
2620
Ben Hutchings1d5244d2013-11-18 23:02:44 +00002621 if (fep->bufdesc_ex) {
2622 if (cmd == SIOCSHWTSTAMP)
2623 return fec_ptp_set(ndev, rq);
2624 if (cmd == SIOCGHWTSTAMP)
2625 return fec_ptp_get(ndev, rq);
2626 }
Frank Liff43da82013-01-03 16:04:23 +00002627
Richard Cochran28b04112010-07-17 08:48:55 +00002628 return phy_mii_ioctl(phydev, rq, cmd);
Bryan Wue6b043d2010-03-31 02:10:44 +00002629}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002631static void fec_enet_free_buffers(struct net_device *ndev)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002632{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002633 struct fec_enet_private *fep = netdev_priv(ndev);
Fabio Estevamda2191e2013-03-20 12:31:07 -03002634 unsigned int i;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002635 struct sk_buff *skb;
2636 struct bufdesc *bdp;
Fugang Duan4d494cd2014-09-13 05:00:48 +08002637 struct fec_enet_priv_tx_q *txq;
2638 struct fec_enet_priv_rx_q *rxq;
Frank Li59d0f7462014-09-13 05:00:50 +08002639 unsigned int q;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002640
Frank Li59d0f7462014-09-13 05:00:50 +08002641 for (q = 0; q < fep->num_rx_queues; q++) {
2642 rxq = fep->rx_queue[q];
Troy Kisky7355f272016-02-05 14:52:46 -07002643 bdp = rxq->bd.base;
2644 for (i = 0; i < rxq->bd.ring_size; i++) {
Frank Li59d0f7462014-09-13 05:00:50 +08002645 skb = rxq->rx_skbuff[i];
2646 rxq->rx_skbuff[i] = NULL;
2647 if (skb) {
2648 dma_unmap_single(&fep->pdev->dev,
Johannes Berg5cfa3032016-01-24 16:52:37 +01002649 fec32_to_cpu(bdp->cbd_bufaddr),
Nimrod Andyb64bf4b2014-09-23 15:40:57 +08002650 FEC_ENET_RX_FRSIZE - fep->rx_align,
Frank Li59d0f7462014-09-13 05:00:50 +08002651 DMA_FROM_DEVICE);
2652 dev_kfree_skb(skb);
2653 }
Troy Kisky7355f272016-02-05 14:52:46 -07002654 bdp = fec_enet_get_nextdesc(bdp, &rxq->bd);
Russell King730ee362014-07-08 00:23:14 +01002655 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002656 }
2657
Frank Li59d0f7462014-09-13 05:00:50 +08002658 for (q = 0; q < fep->num_tx_queues; q++) {
2659 txq = fep->tx_queue[q];
Troy Kisky7355f272016-02-05 14:52:46 -07002660 bdp = txq->bd.base;
2661 for (i = 0; i < txq->bd.ring_size; i++) {
Frank Li59d0f7462014-09-13 05:00:50 +08002662 kfree(txq->tx_bounce[i]);
2663 txq->tx_bounce[i] = NULL;
2664 skb = txq->tx_skbuff[i];
2665 txq->tx_skbuff[i] = NULL;
2666 dev_kfree_skb(skb);
2667 }
Russell King8b7c9ef2014-07-08 00:23:25 +01002668 }
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002669}
2670
Frank Li59d0f7462014-09-13 05:00:50 +08002671static void fec_enet_free_queue(struct net_device *ndev)
2672{
2673 struct fec_enet_private *fep = netdev_priv(ndev);
2674 int i;
2675 struct fec_enet_priv_tx_q *txq;
2676
2677 for (i = 0; i < fep->num_tx_queues; i++)
2678 if (fep->tx_queue[i] && fep->tx_queue[i]->tso_hdrs) {
2679 txq = fep->tx_queue[i];
Fugang Duan94920122017-04-11 19:13:05 +08002680 dma_free_coherent(&fep->pdev->dev,
Troy Kisky7355f272016-02-05 14:52:46 -07002681 txq->bd.ring_size * TSO_HEADER_SIZE,
Frank Li59d0f7462014-09-13 05:00:50 +08002682 txq->tso_hdrs,
2683 txq->tso_hdrs_dma);
2684 }
2685
2686 for (i = 0; i < fep->num_rx_queues; i++)
Markus Elfring1b4b32c2015-02-04 12:56:42 +01002687 kfree(fep->rx_queue[i]);
Frank Li59d0f7462014-09-13 05:00:50 +08002688 for (i = 0; i < fep->num_tx_queues; i++)
Markus Elfring1b4b32c2015-02-04 12:56:42 +01002689 kfree(fep->tx_queue[i]);
Frank Li59d0f7462014-09-13 05:00:50 +08002690}
2691
2692static int fec_enet_alloc_queue(struct net_device *ndev)
2693{
2694 struct fec_enet_private *fep = netdev_priv(ndev);
2695 int i;
2696 int ret = 0;
2697 struct fec_enet_priv_tx_q *txq;
2698
2699 for (i = 0; i < fep->num_tx_queues; i++) {
2700 txq = kzalloc(sizeof(*txq), GFP_KERNEL);
2701 if (!txq) {
2702 ret = -ENOMEM;
2703 goto alloc_failed;
2704 }
2705
2706 fep->tx_queue[i] = txq;
Troy Kisky7355f272016-02-05 14:52:46 -07002707 txq->bd.ring_size = TX_RING_SIZE;
2708 fep->total_tx_ring_size += fep->tx_queue[i]->bd.ring_size;
Frank Li59d0f7462014-09-13 05:00:50 +08002709
2710 txq->tx_stop_threshold = FEC_MAX_SKB_DESCS;
2711 txq->tx_wake_threshold =
Troy Kisky7355f272016-02-05 14:52:46 -07002712 (txq->bd.ring_size - txq->tx_stop_threshold) / 2;
Frank Li59d0f7462014-09-13 05:00:50 +08002713
Fugang Duan94920122017-04-11 19:13:05 +08002714 txq->tso_hdrs = dma_alloc_coherent(&fep->pdev->dev,
Troy Kisky7355f272016-02-05 14:52:46 -07002715 txq->bd.ring_size * TSO_HEADER_SIZE,
Frank Li59d0f7462014-09-13 05:00:50 +08002716 &txq->tso_hdrs_dma,
2717 GFP_KERNEL);
2718 if (!txq->tso_hdrs) {
2719 ret = -ENOMEM;
2720 goto alloc_failed;
2721 }
2722 }
2723
2724 for (i = 0; i < fep->num_rx_queues; i++) {
2725 fep->rx_queue[i] = kzalloc(sizeof(*fep->rx_queue[i]),
2726 GFP_KERNEL);
2727 if (!fep->rx_queue[i]) {
2728 ret = -ENOMEM;
2729 goto alloc_failed;
2730 }
2731
Troy Kisky7355f272016-02-05 14:52:46 -07002732 fep->rx_queue[i]->bd.ring_size = RX_RING_SIZE;
2733 fep->total_rx_ring_size += fep->rx_queue[i]->bd.ring_size;
Frank Li59d0f7462014-09-13 05:00:50 +08002734 }
2735 return ret;
2736
2737alloc_failed:
2738 fec_enet_free_queue(ndev);
2739 return ret;
2740}
2741
2742static int
2743fec_enet_alloc_rxq_buffers(struct net_device *ndev, unsigned int queue)
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002744{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002745 struct fec_enet_private *fep = netdev_priv(ndev);
Fabio Estevamda2191e2013-03-20 12:31:07 -03002746 unsigned int i;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002747 struct sk_buff *skb;
2748 struct bufdesc *bdp;
Fugang Duan4d494cd2014-09-13 05:00:48 +08002749 struct fec_enet_priv_rx_q *rxq;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002750
Frank Li59d0f7462014-09-13 05:00:50 +08002751 rxq = fep->rx_queue[queue];
Troy Kisky7355f272016-02-05 14:52:46 -07002752 bdp = rxq->bd.base;
2753 for (i = 0; i < rxq->bd.ring_size; i++) {
Fabio Estevamb72061a2012-02-07 08:27:31 +00002754 skb = netdev_alloc_skb(ndev, FEC_ENET_RX_FRSIZE);
Russell Kingffdce2c2014-07-08 00:23:30 +01002755 if (!skb)
2756 goto err_alloc;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002757
Nimrod Andy1b7bde62014-09-30 09:28:05 +08002758 if (fec_enet_new_rxbdp(ndev, bdp, skb)) {
Russell King730ee362014-07-08 00:23:14 +01002759 dev_kfree_skb(skb);
Russell Kingffdce2c2014-07-08 00:23:30 +01002760 goto err_alloc;
Duan Fugang-B38611d842a312013-11-14 09:57:10 +08002761 }
Russell King730ee362014-07-08 00:23:14 +01002762
Fugang Duan4d494cd2014-09-13 05:00:48 +08002763 rxq->rx_skbuff[i] = skb;
Johannes Berg5cfa3032016-01-24 16:52:37 +01002764 bdp->cbd_sc = cpu_to_fec16(BD_ENET_RX_EMPTY);
Frank Liff43da82013-01-03 16:04:23 +00002765
2766 if (fep->bufdesc_ex) {
2767 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
Johannes Berg5cfa3032016-01-24 16:52:37 +01002768 ebdp->cbd_esc = cpu_to_fec32(BD_ENET_RX_INT);
Frank Liff43da82013-01-03 16:04:23 +00002769 }
2770
Troy Kisky7355f272016-02-05 14:52:46 -07002771 bdp = fec_enet_get_nextdesc(bdp, &rxq->bd);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002772 }
2773
2774 /* Set the last buffer to wrap. */
Troy Kisky7355f272016-02-05 14:52:46 -07002775 bdp = fec_enet_get_prevdesc(bdp, &rxq->bd);
Johannes Berg5cfa3032016-01-24 16:52:37 +01002776 bdp->cbd_sc |= cpu_to_fec16(BD_SC_WRAP);
Frank Li59d0f7462014-09-13 05:00:50 +08002777 return 0;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002778
Frank Li59d0f7462014-09-13 05:00:50 +08002779 err_alloc:
2780 fec_enet_free_buffers(ndev);
2781 return -ENOMEM;
2782}
2783
2784static int
2785fec_enet_alloc_txq_buffers(struct net_device *ndev, unsigned int queue)
2786{
2787 struct fec_enet_private *fep = netdev_priv(ndev);
2788 unsigned int i;
2789 struct bufdesc *bdp;
2790 struct fec_enet_priv_tx_q *txq;
2791
2792 txq = fep->tx_queue[queue];
Troy Kisky7355f272016-02-05 14:52:46 -07002793 bdp = txq->bd.base;
2794 for (i = 0; i < txq->bd.ring_size; i++) {
Fugang Duan4d494cd2014-09-13 05:00:48 +08002795 txq->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
2796 if (!txq->tx_bounce[i])
Russell Kingffdce2c2014-07-08 00:23:30 +01002797 goto err_alloc;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002798
Johannes Berg5cfa3032016-01-24 16:52:37 +01002799 bdp->cbd_sc = cpu_to_fec16(0);
2800 bdp->cbd_bufaddr = cpu_to_fec32(0);
Frank Li6605b732012-10-30 18:25:31 +00002801
Frank Liff43da82013-01-03 16:04:23 +00002802 if (fep->bufdesc_ex) {
2803 struct bufdesc_ex *ebdp = (struct bufdesc_ex *)bdp;
Johannes Berg5cfa3032016-01-24 16:52:37 +01002804 ebdp->cbd_esc = cpu_to_fec32(BD_ENET_TX_INT);
Frank Liff43da82013-01-03 16:04:23 +00002805 }
2806
Troy Kisky7355f272016-02-05 14:52:46 -07002807 bdp = fec_enet_get_nextdesc(bdp, &txq->bd);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002808 }
2809
2810 /* Set the last buffer to wrap. */
Troy Kisky7355f272016-02-05 14:52:46 -07002811 bdp = fec_enet_get_prevdesc(bdp, &txq->bd);
Johannes Berg5cfa3032016-01-24 16:52:37 +01002812 bdp->cbd_sc |= cpu_to_fec16(BD_SC_WRAP);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002813
2814 return 0;
Russell Kingffdce2c2014-07-08 00:23:30 +01002815
2816 err_alloc:
2817 fec_enet_free_buffers(ndev);
2818 return -ENOMEM;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002819}
2820
Frank Li59d0f7462014-09-13 05:00:50 +08002821static int fec_enet_alloc_buffers(struct net_device *ndev)
2822{
2823 struct fec_enet_private *fep = netdev_priv(ndev);
2824 unsigned int i;
2825
2826 for (i = 0; i < fep->num_rx_queues; i++)
2827 if (fec_enet_alloc_rxq_buffers(ndev, i))
2828 return -ENOMEM;
2829
2830 for (i = 0; i < fep->num_tx_queues; i++)
2831 if (fec_enet_alloc_txq_buffers(ndev, i))
2832 return -ENOMEM;
2833 return 0;
2834}
2835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002837fec_enet_open(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002839 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002840 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
Andrew Lunn8fff7552015-07-25 22:38:02 +02002842 ret = pm_runtime_get_sync(&fep->pdev->dev);
Fabio Estevamb0c6ce22015-08-12 12:10:23 -03002843 if (ret < 0)
Andrew Lunn8fff7552015-07-25 22:38:02 +02002844 return ret;
2845
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002846 pinctrl_pm_select_default_state(&fep->pdev->dev);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002847 ret = fec_enet_clk_enable(ndev, true);
2848 if (ret)
Andrew Lunn8fff7552015-07-25 22:38:02 +02002849 goto clk_enable;
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 /* I should reset the ring buffers here, but I don't yet know
2852 * a simple way to do that.
2853 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002855 ret = fec_enet_alloc_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002856 if (ret)
Fabio Estevam681d2422014-10-04 13:40:01 -03002857 goto err_enet_alloc;
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002858
Nimrod Andy55dd2752015-06-23 15:32:51 +08002859 /* Init MAC prior to mii bus probe */
2860 fec_restart(ndev);
2861
Bryan Wu418bd0d2010-05-28 03:40:39 -07002862 /* Probe and connect to PHY when open the interface */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002863 ret = fec_enet_mii_probe(ndev);
Fabio Estevam681d2422014-10-04 13:40:01 -03002864 if (ret)
2865 goto err_enet_mii_probe;
Russell Kingce5eaf02014-02-18 12:55:42 +00002866
Lucas Stach29380902016-06-03 18:31:19 +02002867 if (fep->quirks & FEC_QUIRK_ERR006687)
2868 imx6q_cpuidle_fec_irqs_used();
2869
Russell Kingce5eaf02014-02-18 12:55:42 +00002870 napi_enable(&fep->napi);
Philippe Reynes45f5c322016-05-10 00:19:42 +02002871 phy_start(ndev->phydev);
Fugang Duan4d494cd2014-09-13 05:00:48 +08002872 netif_tx_start_all_queues(ndev);
2873
Nimrod Andyde40ed32014-12-24 17:30:39 +08002874 device_set_wakeup_enable(&ndev->dev, fep->wol_flag &
2875 FEC_WOL_FLAG_ENABLE);
2876
Sascha Hauer22f6b862009-04-15 01:32:18 +00002877 return 0;
Fabio Estevam681d2422014-10-04 13:40:01 -03002878
2879err_enet_mii_probe:
2880 fec_enet_free_buffers(ndev);
2881err_enet_alloc:
2882 fec_enet_clk_enable(ndev, false);
Andrew Lunn8fff7552015-07-25 22:38:02 +02002883clk_enable:
2884 pm_runtime_mark_last_busy(&fep->pdev->dev);
2885 pm_runtime_put_autosuspend(&fep->pdev->dev);
Fabio Estevam681d2422014-10-04 13:40:01 -03002886 pinctrl_pm_select_sleep_state(&fep->pdev->dev);
2887 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
2890static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002891fec_enet_close(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002893 struct fec_enet_private *fep = netdev_priv(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
Philippe Reynes45f5c322016-05-10 00:19:42 +02002895 phy_stop(ndev->phydev);
Russell Kingd76cfae2014-07-08 00:23:04 +01002896
Russell King31a6de32014-07-08 12:40:23 +01002897 if (netif_device_present(ndev)) {
2898 napi_disable(&fep->napi);
2899 netif_tx_disable(ndev);
Russell King8bbbd3c2014-07-08 12:40:02 +01002900 fec_stop(ndev);
Russell King31a6de32014-07-08 12:40:23 +01002901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Philippe Reynes45f5c322016-05-10 00:19:42 +02002903 phy_disconnect(ndev->phydev);
Bryan Wu418bd0d2010-05-28 03:40:39 -07002904
Lucas Stach29380902016-06-03 18:31:19 +02002905 if (fep->quirks & FEC_QUIRK_ERR006687)
2906 imx6q_cpuidle_fec_irqs_unused();
2907
Nikita Yushchenko80cca772016-11-29 09:44:51 +03002908 fec_enet_update_ethtool_stats(ndev);
2909
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08002910 fec_enet_clk_enable(ndev, false);
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08002911 pinctrl_pm_select_sleep_state(&fep->pdev->dev);
Andrew Lunn8fff7552015-07-25 22:38:02 +02002912 pm_runtime_mark_last_busy(&fep->pdev->dev);
2913 pm_runtime_put_autosuspend(&fep->pdev->dev);
2914
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01002915 fec_enet_free_buffers(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00002916
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 return 0;
2918}
2919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920/* Set or clear the multicast filter for this adaptor.
2921 * Skeleton taken from sunlance driver.
2922 * The CPM Ethernet implementation allows Multicast as well as individual
2923 * MAC address filtering. Some of the drivers check to make sure it is
2924 * a group multicast address, and discard those that are not. I guess I
2925 * will do the same for now, but just remove the test if you want
2926 * individual filtering as well (do the upper net layers want or support
2927 * this kind of feature?).
2928 */
2929
Jiri Kosina6176e892016-08-12 16:34:49 +02002930#define FEC_HASH_BITS 6 /* #bits in hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931#define CRC32_POLY 0xEDB88320
2932
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002933static void set_multicast_list(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002935 struct fec_enet_private *fep = netdev_priv(ndev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00002936 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00002937 unsigned int i, bit, data, crc, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 unsigned char hash;
Rui Sousa01f8902b2017-02-13 10:01:25 +08002939 unsigned int hash_high = 0, hash_low = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002941 if (ndev->flags & IFF_PROMISC) {
Sascha Hauerf44d6302009-04-15 03:11:30 +00002942 tmp = readl(fep->hwp + FEC_R_CNTRL);
2943 tmp |= 0x8;
2944 writel(tmp, fep->hwp + FEC_R_CNTRL);
Sascha Hauer4e831832009-04-15 01:32:19 +00002945 return;
2946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Sascha Hauer4e831832009-04-15 01:32:19 +00002948 tmp = readl(fep->hwp + FEC_R_CNTRL);
2949 tmp &= ~0x8;
2950 writel(tmp, fep->hwp + FEC_R_CNTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002951
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002952 if (ndev->flags & IFF_ALLMULTI) {
Sascha Hauer4e831832009-04-15 01:32:19 +00002953 /* Catch all multicast addresses, so set the
2954 * filter to all 1's
2955 */
2956 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
2957 writel(0xffffffff, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Sascha Hauer4e831832009-04-15 01:32:19 +00002959 return;
2960 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002961
Rui Sousa01f8902b2017-02-13 10:01:25 +08002962 /* Add the addresses in hash register */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002963 netdev_for_each_mc_addr(ha, ndev) {
Sascha Hauer4e831832009-04-15 01:32:19 +00002964 /* calculate crc32 value of mac address */
2965 crc = 0xffffffff;
2966
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002967 for (i = 0; i < ndev->addr_len; i++) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002968 data = ha->addr[i];
Sascha Hauer4e831832009-04-15 01:32:19 +00002969 for (bit = 0; bit < 8; bit++, data >>= 1) {
2970 crc = (crc >> 1) ^
2971 (((crc ^ data) & 1) ? CRC32_POLY : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 }
2973 }
Sascha Hauer4e831832009-04-15 01:32:19 +00002974
Jiri Kosina6176e892016-08-12 16:34:49 +02002975 /* only upper 6 bits (FEC_HASH_BITS) are used
Peter Meerwald-Stadler981a0542016-12-16 14:23:36 +01002976 * which point to specific bit in the hash registers
Sascha Hauer4e831832009-04-15 01:32:19 +00002977 */
Jiri Kosina6176e892016-08-12 16:34:49 +02002978 hash = (crc >> (32 - FEC_HASH_BITS)) & 0x3f;
Sascha Hauer4e831832009-04-15 01:32:19 +00002979
Rui Sousa01f8902b2017-02-13 10:01:25 +08002980 if (hash > 31)
2981 hash_high |= 1 << (hash - 32);
2982 else
2983 hash_low |= 1 << hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 }
Rui Sousa01f8902b2017-02-13 10:01:25 +08002985
2986 writel(hash_high, fep->hwp + FEC_GRP_HASH_TABLE_HIGH);
2987 writel(hash_low, fep->hwp + FEC_GRP_HASH_TABLE_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988}
2989
Sascha Hauer22f6b862009-04-15 01:32:18 +00002990/* Set a MAC change in hardware. */
Sascha Hauer009fda82009-04-15 01:32:23 +00002991static int
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002992fec_set_mac_address(struct net_device *ndev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01002994 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauer009fda82009-04-15 01:32:23 +00002995 struct sockaddr *addr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Lucas Stach44934fa2014-03-30 21:32:08 +02002997 if (addr) {
2998 if (!is_valid_ether_addr(addr->sa_data))
2999 return -EADDRNOTAVAIL;
3000 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
3001 }
Sascha Hauer009fda82009-04-15 01:32:23 +00003002
Nimrod Andy9638d192015-09-10 09:35:39 +08003003 /* Add netif status check here to avoid system hang in below case:
3004 * ifconfig ethx down; ifconfig ethx hw ether xx:xx:xx:xx:xx:xx;
3005 * After ethx down, fec all clocks are gated off and then register
3006 * access causes system hang.
3007 */
3008 if (!netif_running(ndev))
3009 return 0;
3010
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003011 writel(ndev->dev_addr[3] | (ndev->dev_addr[2] << 8) |
3012 (ndev->dev_addr[1] << 16) | (ndev->dev_addr[0] << 24),
Sascha Hauerf44d6302009-04-15 03:11:30 +00003013 fep->hwp + FEC_ADDR_LOW);
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003014 writel((ndev->dev_addr[5] << 16) | (ndev->dev_addr[4] << 24),
Mattias Walström7cff0942010-05-05 00:55:48 -07003015 fep->hwp + FEC_ADDR_HIGH);
Sascha Hauer009fda82009-04-15 01:32:23 +00003016 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017}
3018
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00003019#ifdef CONFIG_NET_POLL_CONTROLLER
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003020/**
3021 * fec_poll_controller - FEC Poll controller function
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00003022 * @dev: The FEC network adapter
3023 *
3024 * Polled functionality used by netconsole and others in non interrupt mode
3025 *
3026 */
Wei Yongjun47a52472013-03-20 05:06:11 +00003027static void fec_poll_controller(struct net_device *dev)
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00003028{
3029 int i;
3030 struct fec_enet_private *fep = netdev_priv(dev);
3031
3032 for (i = 0; i < FEC_IRQ_NUM; i++) {
3033 if (fep->irq[i] > 0) {
3034 disable_irq(fep->irq[i]);
3035 fec_enet_interrupt(fep->irq[i], dev);
3036 enable_irq(fep->irq[i]);
3037 }
3038 }
3039}
3040#endif
3041
Nimrod Andy5bc26722014-10-13 10:53:48 +08003042static inline void fec_enet_set_netdev_features(struct net_device *netdev,
Jim Baxter4c09eed2013-04-19 08:10:49 +00003043 netdev_features_t features)
3044{
3045 struct fec_enet_private *fep = netdev_priv(netdev);
3046 netdev_features_t changed = features ^ netdev->features;
3047
3048 netdev->features = features;
3049
3050 /* Receive checksum has been changed */
3051 if (changed & NETIF_F_RXCSUM) {
3052 if (features & NETIF_F_RXCSUM)
3053 fep->csum_flags |= FLAG_RX_CSUM_ENABLED;
3054 else
3055 fep->csum_flags &= ~FLAG_RX_CSUM_ENABLED;
Russell King8506fa12014-07-08 12:40:33 +01003056 }
Nimrod Andy5bc26722014-10-13 10:53:48 +08003057}
Jim Baxter4c09eed2013-04-19 08:10:49 +00003058
Nimrod Andy5bc26722014-10-13 10:53:48 +08003059static int fec_set_features(struct net_device *netdev,
3060 netdev_features_t features)
3061{
3062 struct fec_enet_private *fep = netdev_priv(netdev);
3063 netdev_features_t changed = features ^ netdev->features;
3064
Fabio Estevam5b40f702015-09-25 18:31:32 -03003065 if (netif_running(netdev) && changed & NETIF_F_RXCSUM) {
Nimrod Andy5bc26722014-10-13 10:53:48 +08003066 napi_disable(&fep->napi);
3067 netif_tx_lock_bh(netdev);
3068 fec_stop(netdev);
3069 fec_enet_set_netdev_features(netdev, features);
Russell Kingef833372014-07-08 12:40:43 +01003070 fec_restart(netdev);
Fugang Duan4d494cd2014-09-13 05:00:48 +08003071 netif_tx_wake_all_queues(netdev);
Russell King8506fa12014-07-08 12:40:33 +01003072 netif_tx_unlock_bh(netdev);
3073 napi_enable(&fep->napi);
Nimrod Andy5bc26722014-10-13 10:53:48 +08003074 } else {
3075 fec_enet_set_netdev_features(netdev, features);
Jim Baxter4c09eed2013-04-19 08:10:49 +00003076 }
3077
3078 return 0;
3079}
3080
Sascha Hauer009fda82009-04-15 01:32:23 +00003081static const struct net_device_ops fec_netdev_ops = {
3082 .ndo_open = fec_enet_open,
3083 .ndo_stop = fec_enet_close,
3084 .ndo_start_xmit = fec_enet_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00003085 .ndo_set_rx_mode = set_multicast_list,
Sascha Hauer009fda82009-04-15 01:32:23 +00003086 .ndo_validate_addr = eth_validate_addr,
3087 .ndo_tx_timeout = fec_timeout,
3088 .ndo_set_mac_address = fec_set_mac_address,
Uwe Kleine-Königdb8880b2011-01-19 20:26:39 +01003089 .ndo_do_ioctl = fec_enet_ioctl,
Xiao Jiang7f5c6ad2011-09-29 02:15:57 +00003090#ifdef CONFIG_NET_POLL_CONTROLLER
3091 .ndo_poll_controller = fec_poll_controller,
3092#endif
Jim Baxter4c09eed2013-04-19 08:10:49 +00003093 .ndo_set_features = fec_set_features,
Sascha Hauer009fda82009-04-15 01:32:23 +00003094};
3095
Troy Kisky53bb20d2016-02-05 14:52:47 -07003096static const unsigned short offset_des_active_rxq[] = {
3097 FEC_R_DES_ACTIVE_0, FEC_R_DES_ACTIVE_1, FEC_R_DES_ACTIVE_2
3098};
3099
3100static const unsigned short offset_des_active_txq[] = {
3101 FEC_X_DES_ACTIVE_0, FEC_X_DES_ACTIVE_1, FEC_X_DES_ACTIVE_2
3102};
3103
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 /*
3105 * XXX: We need to clean up on failure exits here.
Sascha Haueread73182009-01-28 23:03:11 +00003106 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003108static int fec_enet_init(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109{
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003110 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Hauerf0b3fbe2009-04-15 01:32:24 +00003111 struct bufdesc *cbd_base;
Fugang Duan4d494cd2014-09-13 05:00:48 +08003112 dma_addr_t bd_dma;
Nimrod Andy55d02182014-06-12 08:16:21 +08003113 int bd_size;
Frank Li59d0f7462014-09-13 05:00:50 +08003114 unsigned int i;
Troy Kisky7355f272016-02-05 14:52:46 -07003115 unsigned dsize = fep->bufdesc_ex ? sizeof(struct bufdesc_ex) :
3116 sizeof(struct bufdesc);
3117 unsigned dsize_log2 = __fls(dsize);
Nimrod Andy55d02182014-06-12 08:16:21 +08003118
Troy Kisky7355f272016-02-05 14:52:46 -07003119 WARN_ON(dsize != (1 << dsize_log2));
Fugang Duan41ef84c2014-09-13 05:00:54 +08003120#if defined(CONFIG_ARM)
3121 fep->rx_align = 0xf;
3122 fep->tx_align = 0xf;
3123#else
3124 fep->rx_align = 0x3;
3125 fep->tx_align = 0x3;
3126#endif
3127
Frank Li59d0f7462014-09-13 05:00:50 +08003128 fec_enet_alloc_queue(ndev);
Nimrod Andy79f33912014-06-12 08:16:23 +08003129
Troy Kisky7355f272016-02-05 14:52:46 -07003130 bd_size = (fep->total_tx_ring_size + fep->total_rx_ring_size) * dsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00003132 /* Allocate memory for buffer descriptors. */
Lucas Stachc0a1a0a2015-07-23 16:06:19 +02003133 cbd_base = dmam_alloc_coherent(&fep->pdev->dev, bd_size, &bd_dma,
3134 GFP_KERNEL);
Fugang Duan4d494cd2014-09-13 05:00:48 +08003135 if (!cbd_base) {
Fugang Duan4d494cd2014-09-13 05:00:48 +08003136 return -ENOMEM;
3137 }
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10003138
Fugang Duan4d494cd2014-09-13 05:00:48 +08003139 memset(cbd_base, 0, bd_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
Shawn Guo49da97d2011-01-05 21:13:11 +00003141 /* Get the Ethernet address */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003142 fec_get_mac(ndev);
Lucas Stach44934fa2014-03-30 21:32:08 +02003143 /* make sure MAC we just acquired is programmed into the hw */
3144 fec_set_mac_address(ndev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
Sascha Hauer8d4dd5c2009-04-15 01:32:17 +00003146 /* Set receive and transmit descriptor base. */
Frank Li59d0f7462014-09-13 05:00:50 +08003147 for (i = 0; i < fep->num_rx_queues; i++) {
Troy Kisky7355f272016-02-05 14:52:46 -07003148 struct fec_enet_priv_rx_q *rxq = fep->rx_queue[i];
3149 unsigned size = dsize * rxq->bd.ring_size;
3150
3151 rxq->bd.qid = i;
3152 rxq->bd.base = cbd_base;
3153 rxq->bd.cur = cbd_base;
3154 rxq->bd.dma = bd_dma;
3155 rxq->bd.dsize = dsize;
3156 rxq->bd.dsize_log2 = dsize_log2;
Troy Kisky53bb20d2016-02-05 14:52:47 -07003157 rxq->bd.reg_desc_active = fep->hwp + offset_des_active_rxq[i];
Troy Kisky7355f272016-02-05 14:52:46 -07003158 bd_dma += size;
3159 cbd_base = (struct bufdesc *)(((void *)cbd_base) + size);
3160 rxq->bd.last = (struct bufdesc *)(((void *)cbd_base) - dsize);
Frank Li59d0f7462014-09-13 05:00:50 +08003161 }
3162
3163 for (i = 0; i < fep->num_tx_queues; i++) {
Troy Kisky7355f272016-02-05 14:52:46 -07003164 struct fec_enet_priv_tx_q *txq = fep->tx_queue[i];
3165 unsigned size = dsize * txq->bd.ring_size;
3166
3167 txq->bd.qid = i;
3168 txq->bd.base = cbd_base;
3169 txq->bd.cur = cbd_base;
3170 txq->bd.dma = bd_dma;
3171 txq->bd.dsize = dsize;
3172 txq->bd.dsize_log2 = dsize_log2;
Troy Kisky53bb20d2016-02-05 14:52:47 -07003173 txq->bd.reg_desc_active = fep->hwp + offset_des_active_txq[i];
Troy Kisky7355f272016-02-05 14:52:46 -07003174 bd_dma += size;
3175 cbd_base = (struct bufdesc *)(((void *)cbd_base) + size);
3176 txq->bd.last = (struct bufdesc *)(((void *)cbd_base) - dsize);
Frank Li59d0f7462014-09-13 05:00:50 +08003177 }
Fugang Duan4d494cd2014-09-13 05:00:48 +08003178
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179
Sascha Hauer22f6b862009-04-15 01:32:18 +00003180 /* The FEC Ethernet specific entries in the device structure */
Uwe Kleine-Königc5561672011-01-19 11:58:12 +01003181 ndev->watchdog_timeo = TX_TIMEOUT;
3182 ndev->netdev_ops = &fec_netdev_ops;
3183 ndev->ethtool_ops = &fec_enet_ethtool_ops;
Rob Herring633e7532010-02-05 08:56:20 +00003184
Frank Lidc975382013-01-28 18:31:42 +00003185 writel(FEC_RX_DISABLED_IMASK, fep->hwp + FEC_IMASK);
Fabio Estevam322555f2013-08-27 17:35:08 -03003186 netif_napi_add(ndev, &fep->napi, fec_enet_rx_napi, NAPI_POLL_WEIGHT);
Frank Lidc975382013-01-28 18:31:42 +00003187
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003188 if (fep->quirks & FEC_QUIRK_HAS_VLAN)
Jim Baxtercdffcf12013-07-02 22:52:56 +01003189 /* enable hw VLAN support */
3190 ndev->features |= NETIF_F_HW_VLAN_CTAG_RX;
Jim Baxtercdffcf12013-07-02 22:52:56 +01003191
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003192 if (fep->quirks & FEC_QUIRK_HAS_CSUM) {
Nimrod Andy79f33912014-06-12 08:16:23 +08003193 ndev->gso_max_segs = FEC_MAX_TSO_SEGS;
3194
Shawn Guo48496252013-05-08 21:08:22 +00003195 /* enable hw accelerator */
3196 ndev->features |= (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM
Nimrod Andy79f33912014-06-12 08:16:23 +08003197 | NETIF_F_RXCSUM | NETIF_F_SG | NETIF_F_TSO);
Shawn Guo48496252013-05-08 21:08:22 +00003198 fep->csum_flags |= FLAG_RX_CSUM_ENABLED;
3199 }
Jim Baxter4c09eed2013-04-19 08:10:49 +00003200
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003201 if (fep->quirks & FEC_QUIRK_HAS_AVB) {
Fugang Duan41ef84c2014-09-13 05:00:54 +08003202 fep->tx_align = 0;
3203 fep->rx_align = 0x3f;
3204 }
3205
Nimrod Andy09d1e542014-06-12 08:16:20 +08003206 ndev->hw_features = ndev->features;
3207
Russell Kingef833372014-07-08 12:40:43 +01003208 fec_restart(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
Andrew Lunn2b308422017-06-07 03:57:09 +02003210 if (fep->quirks & FEC_QUIRK_MIB_CLEAR)
3211 fec_enet_clear_ethtool_stats(ndev);
3212 else
3213 fec_enet_update_ethtool_stats(ndev);
Nikita Yushchenko80cca772016-11-29 09:44:51 +03003214
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 return 0;
3216}
3217
Shawn Guoca2cc332011-06-25 02:04:35 +08003218#ifdef CONFIG_OF
Fugang Duan9269e552017-04-11 19:13:06 +08003219static int fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08003220{
3221 int err, phy_reset;
Bernhard Walle962d8cd2016-03-03 10:15:55 +01003222 bool active_high = false;
Quentin Schulz159a07602017-05-23 11:48:08 +02003223 int msec = 1, phy_post_delay = 0;
Shawn Guoca2cc332011-06-25 02:04:35 +08003224 struct device_node *np = pdev->dev.of_node;
3225
3226 if (!np)
Fugang Duan9269e552017-04-11 19:13:06 +08003227 return 0;
Shawn Guoca2cc332011-06-25 02:04:35 +08003228
Fugang Duan61e04cc2017-04-11 19:13:03 +08003229 err = of_property_read_u32(np, "phy-reset-duration", &msec);
Shawn Guoa3caad02012-06-27 03:45:24 +00003230 /* A sane reset duration should not be longer than 1s */
Fugang Duan61e04cc2017-04-11 19:13:03 +08003231 if (!err && msec > 1000)
Shawn Guoa3caad02012-06-27 03:45:24 +00003232 msec = 1;
3233
Shawn Guoca2cc332011-06-25 02:04:35 +08003234 phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
Fugang Duan9269e552017-04-11 19:13:06 +08003235 if (phy_reset == -EPROBE_DEFER)
3236 return phy_reset;
3237 else if (!gpio_is_valid(phy_reset))
3238 return 0;
Fabio Estevam07dcf8e2013-02-18 10:20:31 +00003239
Quentin Schulz159a07602017-05-23 11:48:08 +02003240 err = of_property_read_u32(np, "phy-reset-post-delay", &phy_post_delay);
3241 /* valid reset duration should be less than 1s */
3242 if (!err && phy_post_delay > 1000)
3243 return -EINVAL;
3244
Bernhard Walle962d8cd2016-03-03 10:15:55 +01003245 active_high = of_property_read_bool(np, "phy-reset-active-high");
Bernhard Walle64f10f62016-02-08 21:21:13 +01003246
Shawn Guo119fc002012-06-27 03:45:22 +00003247 err = devm_gpio_request_one(&pdev->dev, phy_reset,
Bernhard Walle962d8cd2016-03-03 10:15:55 +01003248 active_high ? GPIOF_OUT_INIT_HIGH : GPIOF_OUT_INIT_LOW,
Bernhard Walle64f10f62016-02-08 21:21:13 +01003249 "phy-reset");
Shawn Guoca2cc332011-06-25 02:04:35 +08003250 if (err) {
Fabio Estevam07dcf8e2013-02-18 10:20:31 +00003251 dev_err(&pdev->dev, "failed to get phy-reset-gpios: %d\n", err);
Fugang Duan9269e552017-04-11 19:13:06 +08003252 return err;
Shawn Guoca2cc332011-06-25 02:04:35 +08003253 }
Stefan Wahreneb37c5632016-06-08 20:42:46 +00003254
3255 if (msec > 20)
3256 msleep(msec);
3257 else
3258 usleep_range(msec * 1000, msec * 1000 + 1000);
3259
Bernhard Walle962d8cd2016-03-03 10:15:55 +01003260 gpio_set_value_cansleep(phy_reset, !active_high);
Fugang Duan9269e552017-04-11 19:13:06 +08003261
Quentin Schulz159a07602017-05-23 11:48:08 +02003262 if (!phy_post_delay)
3263 return 0;
3264
3265 if (phy_post_delay > 20)
3266 msleep(phy_post_delay);
3267 else
3268 usleep_range(phy_post_delay * 1000,
3269 phy_post_delay * 1000 + 1000);
3270
Fugang Duan9269e552017-04-11 19:13:06 +08003271 return 0;
Shawn Guoca2cc332011-06-25 02:04:35 +08003272}
3273#else /* CONFIG_OF */
Fugang Duan9269e552017-04-11 19:13:06 +08003274static int fec_reset_phy(struct platform_device *pdev)
Shawn Guoca2cc332011-06-25 02:04:35 +08003275{
3276 /*
3277 * In case of platform probe, the reset has been done
3278 * by machine code.
3279 */
Fugang Duan9269e552017-04-11 19:13:06 +08003280 return 0;
Shawn Guoca2cc332011-06-25 02:04:35 +08003281}
3282#endif /* CONFIG_OF */
3283
Fugang Duan9fc095f2014-09-13 05:00:49 +08003284static void
3285fec_enet_get_queue_num(struct platform_device *pdev, int *num_tx, int *num_rx)
3286{
3287 struct device_node *np = pdev->dev.of_node;
Fugang Duan9fc095f2014-09-13 05:00:49 +08003288
3289 *num_tx = *num_rx = 1;
3290
3291 if (!np || !of_device_is_available(np))
3292 return;
3293
3294 /* parse the num of tx and rx queues */
Saurabh Sengar73b1c902015-11-23 19:21:48 +05303295 of_property_read_u32(np, "fsl,num-tx-queues", num_tx);
Frank Lib7bd75c2014-09-17 05:18:51 +08003296
Saurabh Sengar73b1c902015-11-23 19:21:48 +05303297 of_property_read_u32(np, "fsl,num-rx-queues", num_rx);
Fugang Duan9fc095f2014-09-13 05:00:49 +08003298
3299 if (*num_tx < 1 || *num_tx > FEC_ENET_MAX_TX_QS) {
Frank Lib7bd75c2014-09-17 05:18:51 +08003300 dev_warn(&pdev->dev, "Invalid num_tx(=%d), fall back to 1\n",
3301 *num_tx);
Fugang Duan9fc095f2014-09-13 05:00:49 +08003302 *num_tx = 1;
3303 return;
3304 }
3305
3306 if (*num_rx < 1 || *num_rx > FEC_ENET_MAX_RX_QS) {
Frank Lib7bd75c2014-09-17 05:18:51 +08003307 dev_warn(&pdev->dev, "Invalid num_rx(=%d), fall back to 1\n",
3308 *num_rx);
Fugang Duan9fc095f2014-09-13 05:00:49 +08003309 *num_rx = 1;
3310 return;
3311 }
3312
3313}
3314
Bill Pemberton33897cc2012-12-03 09:23:58 -05003315static int
Sascha Haueread73182009-01-28 23:03:11 +00003316fec_probe(struct platform_device *pdev)
3317{
3318 struct fec_enet_private *fep;
Baruch Siach5eb32bd2010-05-24 00:36:13 -07003319 struct fec_platform_data *pdata;
Sascha Haueread73182009-01-28 23:03:11 +00003320 struct net_device *ndev;
3321 int i, irq, ret = 0;
3322 struct resource *r;
Shawn Guoca2cc332011-06-25 02:04:35 +08003323 const struct of_device_id *of_id;
Shawn Guo43af9402011-12-05 05:01:15 +00003324 static int dev_id;
Uwe Kleine-König407066f2014-08-11 17:35:33 +02003325 struct device_node *np = pdev->dev.of_node, *phy_node;
Frank Lib7bd75c2014-09-17 05:18:51 +08003326 int num_tx_qs;
3327 int num_rx_qs;
Shawn Guoca2cc332011-06-25 02:04:35 +08003328
Fugang Duan9fc095f2014-09-13 05:00:49 +08003329 fec_enet_get_queue_num(pdev, &num_tx_qs, &num_rx_qs);
3330
Sascha Haueread73182009-01-28 23:03:11 +00003331 /* Init network device */
Nikita Yushchenko80cca772016-11-29 09:44:51 +03003332 ndev = alloc_etherdev_mqs(sizeof(struct fec_enet_private) +
Nikita Yushchenkof85de662016-12-06 09:26:53 +03003333 FEC_STATS_SIZE, num_tx_qs, num_rx_qs);
Fabio Estevam83e519b2013-03-11 07:32:55 +00003334 if (!ndev)
3335 return -ENOMEM;
Sascha Haueread73182009-01-28 23:03:11 +00003336
3337 SET_NETDEV_DEV(ndev, &pdev->dev);
3338
3339 /* setup board info structure */
3340 fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00003341
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003342 of_id = of_match_device(fec_dt_ids, &pdev->dev);
3343 if (of_id)
3344 pdev->id_entry = of_id->data;
3345 fep->quirks = pdev->id_entry->driver_data;
3346
Hubert Feurstein0c818592015-01-07 14:48:17 +01003347 fep->netdev = ndev;
Fugang Duan9fc095f2014-09-13 05:00:49 +08003348 fep->num_rx_queues = num_rx_qs;
3349 fep->num_tx_queues = num_tx_qs;
3350
Guenter Roeckd1391932013-06-18 10:04:59 -07003351#if !defined(CONFIG_M5272)
Frank Libaa70a52013-01-16 16:55:58 +00003352 /* default enable pause frame auto negotiation */
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003353 if (fep->quirks & FEC_QUIRK_HAS_GBIT)
Frank Libaa70a52013-01-16 16:55:58 +00003354 fep->pause_flag |= FEC_PAUSE_FLAG_AUTONEG;
Guenter Roeckd1391932013-06-18 10:04:59 -07003355#endif
Frank Libaa70a52013-01-16 16:55:58 +00003356
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08003357 /* Select default pin state */
3358 pinctrl_pm_select_default_state(&pdev->dev);
3359
Fabio Estevam399db752013-07-21 13:25:03 -03003360 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Tushar Behera941e1732013-06-10 17:05:05 +05303361 fep->hwp = devm_ioremap_resource(&pdev->dev, r);
3362 if (IS_ERR(fep->hwp)) {
3363 ret = PTR_ERR(fep->hwp);
3364 goto failed_ioremap;
3365 }
3366
Bryan Wue6b043d2010-03-31 02:10:44 +00003367 fep->pdev = pdev;
Shawn Guo43af9402011-12-05 05:01:15 +00003368 fep->dev_id = dev_id++;
Sascha Haueread73182009-01-28 23:03:11 +00003369
Sascha Haueread73182009-01-28 23:03:11 +00003370 platform_set_drvdata(pdev, ndev);
3371
Lucas Stach29380902016-06-03 18:31:19 +02003372 if ((of_machine_is_compatible("fsl,imx6q") ||
3373 of_machine_is_compatible("fsl,imx6dl")) &&
3374 !of_property_read_bool(np, "fsl,err006687-workaround-present"))
3375 fep->quirks |= FEC_QUIRK_ERR006687;
3376
Nimrod Andyde40ed32014-12-24 17:30:39 +08003377 if (of_get_property(np, "fsl,magic-packet", NULL))
3378 fep->wol_flag |= FEC_WOL_HAS_MAGIC_PACKET;
3379
Uwe Kleine-König407066f2014-08-11 17:35:33 +02003380 phy_node = of_parse_phandle(np, "phy-handle", 0);
3381 if (!phy_node && of_phy_is_fixed_link(np)) {
3382 ret = of_phy_register_fixed_link(np);
3383 if (ret < 0) {
3384 dev_err(&pdev->dev,
3385 "broken fixed-link specification\n");
3386 goto failed_phy;
3387 }
3388 phy_node = of_node_get(np);
3389 }
3390 fep->phy_node = phy_node;
3391
Guenter Roeck6c5f7802013-04-02 09:35:10 +00003392 ret = of_get_phy_mode(pdev->dev.of_node);
Shawn Guoca2cc332011-06-25 02:04:35 +08003393 if (ret < 0) {
Jingoo Han94660ba2013-08-30 13:56:26 +09003394 pdata = dev_get_platdata(&pdev->dev);
Shawn Guoca2cc332011-06-25 02:04:35 +08003395 if (pdata)
3396 fep->phy_interface = pdata->phy;
3397 else
3398 fep->phy_interface = PHY_INTERFACE_MODE_MII;
3399 } else {
3400 fep->phy_interface = ret;
3401 }
3402
Fabio Estevame2f8d552013-02-22 06:40:45 +00003403 fep->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
3404 if (IS_ERR(fep->clk_ipg)) {
3405 ret = PTR_ERR(fep->clk_ipg);
3406 goto failed_clk;
3407 }
3408
3409 fep->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
3410 if (IS_ERR(fep->clk_ahb)) {
3411 ret = PTR_ERR(fep->clk_ahb);
3412 goto failed_clk;
3413 }
3414
Fugang Duand851b472014-09-17 05:18:52 +08003415 fep->itr_clk_rate = clk_get_rate(fep->clk_ahb);
3416
Linus Torvalds38f56f32013-05-07 11:06:17 -07003417 /* enet_out is optional, depends on board */
3418 fep->clk_enet_out = devm_clk_get(&pdev->dev, "enet_out");
3419 if (IS_ERR(fep->clk_enet_out))
3420 fep->clk_enet_out = NULL;
3421
Nimrod Andy91c0d982014-08-21 17:09:38 +08003422 fep->ptp_clk_on = false;
3423 mutex_init(&fep->ptp_clk_mutex);
Fugang Duan9b5330e2014-09-13 05:00:46 +08003424
3425 /* clk_ref is optional, depends on board */
3426 fep->clk_ref = devm_clk_get(&pdev->dev, "enet_clk_ref");
3427 if (IS_ERR(fep->clk_ref))
3428 fep->clk_ref = NULL;
3429
Lothar Waßmann6b7e4002014-11-17 10:51:21 +01003430 fep->bufdesc_ex = fep->quirks & FEC_QUIRK_HAS_BUFDESC_EX;
Fabio Estevame2f8d552013-02-22 06:40:45 +00003431 fep->clk_ptp = devm_clk_get(&pdev->dev, "ptp");
Fabio Estevame2f8d552013-02-22 06:40:45 +00003432 if (IS_ERR(fep->clk_ptp)) {
Linus Torvalds38f56f32013-05-07 11:06:17 -07003433 fep->clk_ptp = NULL;
Lothar Waßmann217b5842014-11-17 10:51:20 +01003434 fep->bufdesc_ex = false;
Fabio Estevame2f8d552013-02-22 06:40:45 +00003435 }
3436
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08003437 ret = fec_enet_clk_enable(ndev, true);
Fabio Estevam13a097b2013-07-21 13:25:02 -03003438 if (ret)
3439 goto failed_clk;
3440
Andrew Lunn8fff7552015-07-25 22:38:02 +02003441 ret = clk_prepare_enable(fep->clk_ipg);
3442 if (ret)
3443 goto failed_clk_ipg;
3444
Fabio Estevamf4e9f3d2013-05-27 03:48:29 +00003445 fep->reg_phy = devm_regulator_get(&pdev->dev, "phy");
3446 if (!IS_ERR(fep->reg_phy)) {
3447 ret = regulator_enable(fep->reg_phy);
Fabio Estevame2f8d552013-02-22 06:40:45 +00003448 if (ret) {
3449 dev_err(&pdev->dev,
3450 "Failed to enable phy regulator: %d\n", ret);
Fugang Duan9269e552017-04-11 19:13:06 +08003451 clk_disable_unprepare(fep->clk_ipg);
Fabio Estevame2f8d552013-02-22 06:40:45 +00003452 goto failed_regulator;
3453 }
Fabio Estevamf6a4d602013-05-27 03:48:31 +00003454 } else {
3455 fep->reg_phy = NULL;
Fabio Estevame2f8d552013-02-22 06:40:45 +00003456 }
3457
Andrew Lunn8fff7552015-07-25 22:38:02 +02003458 pm_runtime_set_autosuspend_delay(&pdev->dev, FEC_MDIO_PM_TIMEOUT);
3459 pm_runtime_use_autosuspend(&pdev->dev);
Lucas Stach14d2b7c2015-08-03 17:50:11 +02003460 pm_runtime_get_noresume(&pdev->dev);
Andrew Lunn8fff7552015-07-25 22:38:02 +02003461 pm_runtime_set_active(&pdev->dev);
3462 pm_runtime_enable(&pdev->dev);
3463
Fugang Duan9269e552017-04-11 19:13:06 +08003464 ret = fec_reset_phy(pdev);
3465 if (ret)
3466 goto failed_reset;
Fabio Estevame2f8d552013-02-22 06:40:45 +00003467
Fabio Estevam7f7d6c22013-02-21 09:21:50 +00003468 if (fep->bufdesc_ex)
Fabio Estevamca162a82013-06-07 10:48:00 +00003469 fec_ptp_init(pdev);
Fabio Estevam7f7d6c22013-02-21 09:21:50 +00003470
3471 ret = fec_enet_init(ndev);
3472 if (ret)
3473 goto failed_init;
3474
Xiao Jiangc7c83d12011-09-29 02:15:56 +00003475 for (i = 0; i < FEC_IRQ_NUM; i++) {
Sascha Haueread73182009-01-28 23:03:11 +00003476 irq = platform_get_irq(pdev, i);
Lothar Waßmann86f9f2c2011-12-07 21:59:28 +00003477 if (irq < 0) {
3478 if (i)
3479 break;
3480 ret = irq;
3481 goto failed_irq;
3482 }
Fabio Estevam0d9b2ab2013-07-21 13:25:04 -03003483 ret = devm_request_irq(&pdev->dev, irq, fec_enet_interrupt,
Michael Opdenacker44a272d2013-09-13 05:44:38 +02003484 0, pdev->name, ndev);
Fabio Estevam0d9b2ab2013-07-21 13:25:04 -03003485 if (ret)
Sascha Haueread73182009-01-28 23:03:11 +00003486 goto failed_irq;
Nimrod Andyde40ed32014-12-24 17:30:39 +08003487
3488 fep->irq[i] = irq;
Sascha Haueread73182009-01-28 23:03:11 +00003489 }
3490
Fugang Duanb4d39b52014-09-13 05:00:55 +08003491 init_completion(&fep->mdio_done);
Bryan Wue6b043d2010-03-31 02:10:44 +00003492 ret = fec_enet_mii_init(pdev);
3493 if (ret)
3494 goto failed_mii_init;
3495
Oskar Schirmer03c698c2010-10-07 02:30:30 +00003496 /* Carrier starts down, phylib will bring it up */
3497 netif_carrier_off(ndev);
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08003498 fec_enet_clk_enable(ndev, false);
Nimrod Andy5bbde4d2014-05-27 15:51:08 +08003499 pinctrl_pm_select_sleep_state(&pdev->dev);
Oskar Schirmer03c698c2010-10-07 02:30:30 +00003500
Sascha Haueread73182009-01-28 23:03:11 +00003501 ret = register_netdev(ndev);
3502 if (ret)
3503 goto failed_register;
3504
Nimrod Andyde40ed32014-12-24 17:30:39 +08003505 device_init_wakeup(&ndev->dev, fep->wol_flag &
3506 FEC_WOL_HAS_MAGIC_PACKET);
3507
Fabio Estevameb1d0642013-04-13 07:25:36 +00003508 if (fep->bufdesc_ex && fep->ptp_clock)
3509 netdev_info(ndev, "registered PHC device %d\n", fep->dev_id);
3510
Nimrod Andy1b7bde62014-09-30 09:28:05 +08003511 fep->rx_copybreak = COPYBREAK_DEFAULT;
Russell King36cdc742014-07-08 13:01:44 +01003512 INIT_WORK(&fep->tx_timeout_work, fec_enet_timeout_work);
Andrew Lunn8fff7552015-07-25 22:38:02 +02003513
3514 pm_runtime_mark_last_busy(&pdev->dev);
3515 pm_runtime_put_autosuspend(&pdev->dev);
3516
Sascha Haueread73182009-01-28 23:03:11 +00003517 return 0;
3518
3519failed_register:
Bryan Wue6b043d2010-03-31 02:10:44 +00003520 fec_enet_mii_remove(fep);
3521failed_mii_init:
Fabio Estevam7a2bbd82013-05-27 03:48:30 +00003522failed_irq:
Fabio Estevam7a2bbd82013-05-27 03:48:30 +00003523failed_init:
Lucas Stach32cba572015-07-23 16:06:20 +02003524 fec_ptp_stop(pdev);
Fabio Estevamf6a4d602013-05-27 03:48:31 +00003525 if (fep->reg_phy)
3526 regulator_disable(fep->reg_phy);
Fugang Duan9269e552017-04-11 19:13:06 +08003527failed_reset:
3528 pm_runtime_put(&pdev->dev);
3529 pm_runtime_disable(&pdev->dev);
Shawn Guo5fa9c0f2012-06-27 03:45:21 +00003530failed_regulator:
Andrew Lunn8fff7552015-07-25 22:38:02 +02003531failed_clk_ipg:
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08003532 fec_enet_clk_enable(ndev, false);
Sascha Haueread73182009-01-28 23:03:11 +00003533failed_clk:
Johan Hovold82005b12016-11-28 19:25:00 +01003534 if (of_phy_is_fixed_link(np))
3535 of_phy_deregister_fixed_link(np);
Uwe Kleine-König407066f2014-08-11 17:35:33 +02003536failed_phy:
3537 of_node_put(phy_node);
Sascha Haueread73182009-01-28 23:03:11 +00003538failed_ioremap:
3539 free_netdev(ndev);
3540
3541 return ret;
3542}
3543
Bill Pemberton33897cc2012-12-03 09:23:58 -05003544static int
Sascha Haueread73182009-01-28 23:03:11 +00003545fec_drv_remove(struct platform_device *pdev)
3546{
3547 struct net_device *ndev = platform_get_drvdata(pdev);
3548 struct fec_enet_private *fep = netdev_priv(ndev);
Johan Hovold82005b12016-11-28 19:25:00 +01003549 struct device_node *np = pdev->dev.of_node;
Sascha Haueread73182009-01-28 23:03:11 +00003550
Russell King36cdc742014-07-08 13:01:44 +01003551 cancel_work_sync(&fep->tx_timeout_work);
Lucas Stach32cba572015-07-23 16:06:20 +02003552 fec_ptp_stop(pdev);
Lothar Waßmanne163cc92011-12-07 21:59:31 +00003553 unregister_netdev(ndev);
Bryan Wue6b043d2010-03-31 02:10:44 +00003554 fec_enet_mii_remove(fep);
Fabio Estevamf6a4d602013-05-27 03:48:31 +00003555 if (fep->reg_phy)
3556 regulator_disable(fep->reg_phy);
Johan Hovold82005b12016-11-28 19:25:00 +01003557 if (of_phy_is_fixed_link(np))
3558 of_phy_deregister_fixed_link(np);
Uwe Kleine-König407066f2014-08-11 17:35:33 +02003559 of_node_put(fep->phy_node);
Sascha Haueread73182009-01-28 23:03:11 +00003560 free_netdev(ndev);
Uwe Kleine-König28e21882011-01-13 21:44:18 +01003561
Sascha Haueread73182009-01-28 23:03:11 +00003562 return 0;
3563}
3564
Fabio Estevamdd66d382014-07-24 18:24:01 -03003565static int __maybe_unused fec_suspend(struct device *dev)
Sascha Haueread73182009-01-28 23:03:11 +00003566{
Eric Benard87cad5c2010-06-18 04:19:54 +00003567 struct net_device *ndev = dev_get_drvdata(dev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003568 struct fec_enet_private *fep = netdev_priv(ndev);
Sascha Haueread73182009-01-28 23:03:11 +00003569
Russell Kingda1774e2014-07-08 12:39:57 +01003570 rtnl_lock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003571 if (netif_running(ndev)) {
Nimrod Andyde40ed32014-12-24 17:30:39 +08003572 if (fep->wol_flag & FEC_WOL_FLAG_ENABLE)
3573 fep->wol_flag |= FEC_WOL_FLAG_SLEEP_ON;
Philippe Reynes45f5c322016-05-10 00:19:42 +02003574 phy_stop(ndev->phydev);
Russell King31a6de32014-07-08 12:40:23 +01003575 napi_disable(&fep->napi);
3576 netif_tx_lock_bh(ndev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003577 netif_device_detach(ndev);
Russell King31a6de32014-07-08 12:40:23 +01003578 netif_tx_unlock_bh(ndev);
3579 fec_stop(ndev);
Nimrod Andyf4c4a4e2014-11-03 13:26:50 +08003580 fec_enet_clk_enable(ndev, false);
Nimrod Andyde40ed32014-12-24 17:30:39 +08003581 if (!(fep->wol_flag & FEC_WOL_FLAG_ENABLE))
3582 pinctrl_pm_select_sleep_state(&fep->pdev->dev);
Sascha Haueread73182009-01-28 23:03:11 +00003583 }
Russell Kingda1774e2014-07-08 12:39:57 +01003584 rtnl_unlock();
3585
Nimrod Andyde40ed32014-12-24 17:30:39 +08003586 if (fep->reg_phy && !(fep->wol_flag & FEC_WOL_FLAG_ENABLE))
Fabio Estevam238f7bc2013-05-27 03:48:33 +00003587 regulator_disable(fep->reg_phy);
3588
Nimrod Andy858eeb72014-12-11 09:20:31 +08003589 /* SOC supply clock to phy, when clock is disabled, phy link down
3590 * SOC control phy regulator, when regulator is disabled, phy link down
3591 */
3592 if (fep->clk_enet_out || fep->reg_phy)
3593 fep->link = 0;
3594
Sascha Haueread73182009-01-28 23:03:11 +00003595 return 0;
3596}
3597
Fabio Estevamdd66d382014-07-24 18:24:01 -03003598static int __maybe_unused fec_resume(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);
Nimrod Andyde40ed32014-12-24 17:30:39 +08003602 struct fec_platform_data *pdata = fep->pdev->dev.platform_data;
Fabio Estevam238f7bc2013-05-27 03:48:33 +00003603 int ret;
Nimrod Andyde40ed32014-12-24 17:30:39 +08003604 int val;
Fabio Estevam238f7bc2013-05-27 03:48:33 +00003605
Nimrod Andyde40ed32014-12-24 17:30:39 +08003606 if (fep->reg_phy && !(fep->wol_flag & FEC_WOL_FLAG_ENABLE)) {
Fabio Estevam238f7bc2013-05-27 03:48:33 +00003607 ret = regulator_enable(fep->reg_phy);
3608 if (ret)
3609 return ret;
3610 }
Sascha Haueread73182009-01-28 23:03:11 +00003611
Russell Kingda1774e2014-07-08 12:39:57 +01003612 rtnl_lock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003613 if (netif_running(ndev)) {
Nimrod Andyf4c4a4e2014-11-03 13:26:50 +08003614 ret = fec_enet_clk_enable(ndev, true);
3615 if (ret) {
3616 rtnl_unlock();
3617 goto failed_clk;
3618 }
Nimrod Andyde40ed32014-12-24 17:30:39 +08003619 if (fep->wol_flag & FEC_WOL_FLAG_ENABLE) {
3620 if (pdata && pdata->sleep_mode_enable)
3621 pdata->sleep_mode_enable(false);
3622 val = readl(fep->hwp + FEC_ECNTRL);
3623 val &= ~(FEC_ECR_MAGICEN | FEC_ECR_SLEEP);
3624 writel(val, fep->hwp + FEC_ECNTRL);
3625 fep->wol_flag &= ~FEC_WOL_FLAG_SLEEP_ON;
3626 } else {
3627 pinctrl_pm_select_default_state(&fep->pdev->dev);
3628 }
Russell Kingef833372014-07-08 12:40:43 +01003629 fec_restart(ndev);
Russell King31a6de32014-07-08 12:40:23 +01003630 netif_tx_lock_bh(ndev);
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003631 netif_device_attach(ndev);
Russell King6af42d42014-07-08 12:40:18 +01003632 netif_tx_unlock_bh(ndev);
Russell King6af42d42014-07-08 12:40:18 +01003633 napi_enable(&fep->napi);
Philippe Reynes45f5c322016-05-10 00:19:42 +02003634 phy_start(ndev->phydev);
Sascha Haueread73182009-01-28 23:03:11 +00003635 }
Russell Kingda1774e2014-07-08 12:39:57 +01003636 rtnl_unlock();
Uwe Kleine-König04e52162011-01-13 21:53:40 +01003637
Sascha Haueread73182009-01-28 23:03:11 +00003638 return 0;
Fabio Estevam13a097b2013-07-21 13:25:02 -03003639
Nimrod Andye8fcfcd2014-05-20 13:22:51 +08003640failed_clk:
Fabio Estevam13a097b2013-07-21 13:25:02 -03003641 if (fep->reg_phy)
3642 regulator_disable(fep->reg_phy);
3643 return ret;
Sascha Haueread73182009-01-28 23:03:11 +00003644}
3645
Andrew Lunn8fff7552015-07-25 22:38:02 +02003646static int __maybe_unused fec_runtime_suspend(struct device *dev)
3647{
3648 struct net_device *ndev = dev_get_drvdata(dev);
3649 struct fec_enet_private *fep = netdev_priv(ndev);
3650
3651 clk_disable_unprepare(fep->clk_ipg);
3652
3653 return 0;
3654}
3655
3656static int __maybe_unused fec_runtime_resume(struct device *dev)
3657{
3658 struct net_device *ndev = dev_get_drvdata(dev);
3659 struct fec_enet_private *fep = netdev_priv(ndev);
3660
3661 return clk_prepare_enable(fep->clk_ipg);
3662}
3663
3664static const struct dev_pm_ops fec_pm_ops = {
3665 SET_SYSTEM_SLEEP_PM_OPS(fec_suspend, fec_resume)
3666 SET_RUNTIME_PM_OPS(fec_runtime_suspend, fec_runtime_resume, NULL)
3667};
Denis Kirjanov59d42892010-06-02 09:27:04 +00003668
Sascha Haueread73182009-01-28 23:03:11 +00003669static struct platform_driver fec_driver = {
3670 .driver = {
Shawn Guob5680e02011-01-05 21:13:13 +00003671 .name = DRIVER_NAME,
Eric Benard87cad5c2010-06-18 04:19:54 +00003672 .pm = &fec_pm_ops,
Shawn Guoca2cc332011-06-25 02:04:35 +08003673 .of_match_table = fec_dt_ids,
Sascha Haueread73182009-01-28 23:03:11 +00003674 },
Shawn Guob5680e02011-01-05 21:13:13 +00003675 .id_table = fec_devtype,
Eric Benard87cad5c2010-06-18 04:19:54 +00003676 .probe = fec_probe,
Bill Pemberton33897cc2012-12-03 09:23:58 -05003677 .remove = fec_drv_remove,
Sascha Haueread73182009-01-28 23:03:11 +00003678};
3679
Fabio Estevamaaca2372012-01-23 16:44:50 +00003680module_platform_driver(fec_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
Fabio Estevamf8c0aca2013-07-20 16:20:36 -03003682MODULE_ALIAS("platform:"DRIVER_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683MODULE_LICENSE("GPL");