blob: 4a65edc5a3759393215c419c3a4c72781d37bea0 [file] [log] [blame]
Grygorii Strashko68cf0272019-04-26 20:12:23 +03001// SPDX-License-Identifier: GPL-2.0
Mugunthan V Ndf828592012-03-18 20:17:54 +00002/*
3 * Texas Instruments Ethernet Switch Driver
4 *
5 * Copyright (C) 2012 Texas Instruments
6 *
Mugunthan V Ndf828592012-03-18 20:17:54 +00007 */
8
9#include <linux/kernel.h>
10#include <linux/io.h>
11#include <linux/clk.h>
12#include <linux/timer.h>
13#include <linux/module.h>
14#include <linux/platform_device.h>
15#include <linux/irqreturn.h>
16#include <linux/interrupt.h>
17#include <linux/if_ether.h>
18#include <linux/etherdevice.h>
19#include <linux/netdevice.h>
Richard Cochran2e5b38a2012-10-29 08:45:20 +000020#include <linux/net_tstamp.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000021#include <linux/phy.h>
Grygorii Strashko3ff18842018-11-25 18:15:25 -060022#include <linux/phy/phy.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000023#include <linux/workqueue.h>
24#include <linux/delay.h>
Mugunthan V Nf150bd72012-07-17 08:09:50 +000025#include <linux/pm_runtime.h>
Arnd Bergmanne2b3e492018-05-30 23:51:54 +020026#include <linux/gpio/consumer.h>
Mugunthan V N2eb32b02012-07-30 10:17:14 +000027#include <linux/of.h>
Heiko Schocher9e42f712015-10-17 06:04:35 +020028#include <linux/of_mdio.h>
Mugunthan V N2eb32b02012-07-30 10:17:14 +000029#include <linux/of_net.h>
30#include <linux/of_device.h>
Mugunthan V N3b72c2f2013-02-05 08:26:48 +000031#include <linux/if_vlan.h>
Randy Dunlap514c6032018-04-05 16:25:34 -070032#include <linux/kmemleak.h>
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +030033#include <linux/sys_soc.h>
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +030034#include <net/page_pool.h>
35#include <linux/bpf.h>
36#include <linux/bpf_trace.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000037
Mugunthan V N739683b2013-06-06 23:45:14 +053038#include <linux/pinctrl/consumer.h>
Ivan Khoronzhuk7929a662018-07-24 00:26:31 +030039#include <net/pkt_cls.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000040
Mugunthan V Ndbe34722013-08-19 17:47:40 +053041#include "cpsw.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000042#include "cpsw_ale.h"
Grygorii Strashko814b4a62019-04-26 20:12:37 +030043#include "cpsw_priv.h"
Grygorii Strashkocfc08342019-04-26 20:12:41 +030044#include "cpsw_sl.h"
Richard Cochran2e5b38a2012-10-29 08:45:20 +000045#include "cpts.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000046#include "davinci_cpdma.h"
47
Ivan Khoronzhuk57d90142018-07-24 00:26:32 +030048#include <net/pkt_sched.h>
49
Mugunthan V Ndf828592012-03-18 20:17:54 +000050static int debug_level;
51module_param(debug_level, int, 0);
52MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)");
53
54static int ale_ageout = 10;
55module_param(ale_ageout, int, 0);
56MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)");
57
58static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
59module_param(rx_packet_max, int, 0);
60MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)");
61
Grygorii Strashko90225bf2017-01-06 14:07:33 -060062static int descs_pool_size = CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT;
63module_param(descs_pool_size, int, 0444);
64MODULE_PARM_DESC(descs_pool_size, "Number of CPDMA CPPI descriptors in pool");
65
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +000066#define for_each_slave(priv, func, arg...) \
67 do { \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +000068 struct cpsw_slave *slave; \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +030069 struct cpsw_common *cpsw = (priv)->cpsw; \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +000070 int n; \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +030071 if (cpsw->data.dual_emac) \
72 (func)((cpsw)->slaves + priv->emac_port, ##arg);\
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +000073 else \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +030074 for (n = cpsw->data.slaves, \
75 slave = cpsw->slaves; \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +000076 n; n--) \
77 (func)(slave++, ##arg); \
Mugunthan V Ndf828592012-03-18 20:17:54 +000078 } while (0)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +000079
Grygorii Strashko51a95332019-11-20 00:19:16 +020080static int cpsw_slave_index_priv(struct cpsw_common *cpsw,
81 struct cpsw_priv *priv)
82{
83 return cpsw->data.dual_emac ? priv->emac_port : cpsw->data.active_slave;
84}
85
86static int cpsw_get_slave_port(u32 slave_num)
87{
88 return slave_num + 1;
89}
90
Ivan Khoronzhuk00fe4712018-11-08 22:27:57 +020091static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
92 __be16 proto, u16 vid);
93
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +053094static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
95{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +030096 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
97 struct cpsw_ale *ale = cpsw->ale;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +053098 int i;
99
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300100 if (cpsw->data.dual_emac) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530101 bool flag = false;
102
103 /* Enabling promiscuous mode for one interface will be
104 * common for both the interface as the interface shares
105 * the same hardware resource.
106 */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300107 for (i = 0; i < cpsw->data.slaves; i++)
108 if (cpsw->slaves[i].ndev->flags & IFF_PROMISC)
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530109 flag = true;
110
111 if (!enable && flag) {
112 enable = true;
113 dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
114 }
115
116 if (enable) {
117 /* Enable Bypass */
118 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1);
119
120 dev_dbg(&ndev->dev, "promiscuity enabled\n");
121 } else {
122 /* Disable Bypass */
123 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0);
124 dev_dbg(&ndev->dev, "promiscuity disabled\n");
125 }
126 } else {
127 if (enable) {
128 unsigned long timeout = jiffies + HZ;
129
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400130 /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300131 for (i = 0; i <= cpsw->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530132 cpsw_ale_control_set(ale, i,
133 ALE_PORT_NOLEARN, 1);
134 cpsw_ale_control_set(ale, i,
135 ALE_PORT_NO_SA_UPDATE, 1);
136 }
137
138 /* Clear All Untouched entries */
139 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
140 do {
141 cpu_relax();
142 if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT))
143 break;
144 } while (time_after(timeout, jiffies));
145 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
146
147 /* Clear all mcast from ALE */
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300148 cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS, -1);
Ivan Khoronzhuk15180ec2018-11-08 22:27:56 +0200149 __hw_addr_ref_unsync_dev(&ndev->mc, ndev, NULL);
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530150
151 /* Flood All Unicast Packets to Host port */
152 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1);
153 dev_dbg(&ndev->dev, "promiscuity enabled\n");
154 } else {
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400155 /* Don't Flood All Unicast Packets to Host port */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530156 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0);
157
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400158 /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300159 for (i = 0; i <= cpsw->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530160 cpsw_ale_control_set(ale, i,
161 ALE_PORT_NOLEARN, 0);
162 cpsw_ale_control_set(ale, i,
163 ALE_PORT_NO_SA_UPDATE, 0);
164 }
165 dev_dbg(&ndev->dev, "promiscuity disabled\n");
166 }
167 }
168}
169
Ivan Khoronzhuk15180ec2018-11-08 22:27:56 +0200170/**
171 * cpsw_set_mc - adds multicast entry to the table if it's not added or deletes
172 * if it's not deleted
173 * @ndev: device to sync
174 * @addr: address to be added or deleted
175 * @vid: vlan id, if vid < 0 set/unset address for real device
176 * @add: add address if the flag is set or remove otherwise
177 */
178static int cpsw_set_mc(struct net_device *ndev, const u8 *addr,
179 int vid, int add)
Mugunthan V N5c50a852012-10-29 08:45:11 +0000180{
181 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300182 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk15180ec2018-11-08 22:27:56 +0200183 int mask, flags, ret;
Mugunthan V N25906052015-01-13 17:35:49 +0530184
Ivan Khoronzhuk15180ec2018-11-08 22:27:56 +0200185 if (vid < 0) {
186 if (cpsw->data.dual_emac)
187 vid = cpsw->slaves[priv->emac_port].port_vlan;
188 else
189 vid = 0;
Ivan Khoronzhuk5da19482018-10-12 18:28:15 +0300190 }
191
Ivan Khoronzhuk15180ec2018-11-08 22:27:56 +0200192 mask = cpsw->data.dual_emac ? ALE_PORT_HOST : ALE_ALL_PORTS;
193 flags = vid ? ALE_VLAN : 0;
194
195 if (add)
196 ret = cpsw_ale_add_mcast(cpsw->ale, addr, mask, flags, vid, 0);
197 else
198 ret = cpsw_ale_del_mcast(cpsw->ale, addr, 0, flags, vid);
199
200 return ret;
201}
202
203static int cpsw_update_vlan_mc(struct net_device *vdev, int vid, void *ctx)
204{
205 struct addr_sync_ctx *sync_ctx = ctx;
206 struct netdev_hw_addr *ha;
207 int found = 0, ret = 0;
208
209 if (!vdev || !(vdev->flags & IFF_UP))
210 return 0;
211
212 /* vlan address is relevant if its sync_cnt != 0 */
213 netdev_for_each_mc_addr(ha, vdev) {
214 if (ether_addr_equal(ha->addr, sync_ctx->addr)) {
215 found = ha->sync_cnt;
216 break;
217 }
218 }
219
220 if (found)
221 sync_ctx->consumed++;
222
223 if (sync_ctx->flush) {
224 if (!found)
225 cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 0);
226 return 0;
227 }
228
229 if (found)
230 ret = cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 1);
231
232 return ret;
233}
234
235static int cpsw_add_mc_addr(struct net_device *ndev, const u8 *addr, int num)
236{
237 struct addr_sync_ctx sync_ctx;
238 int ret;
239
240 sync_ctx.consumed = 0;
241 sync_ctx.addr = addr;
242 sync_ctx.ndev = ndev;
243 sync_ctx.flush = 0;
244
245 ret = vlan_for_each(ndev, cpsw_update_vlan_mc, &sync_ctx);
246 if (sync_ctx.consumed < num && !ret)
247 ret = cpsw_set_mc(ndev, addr, -1, 1);
248
249 return ret;
250}
251
252static int cpsw_del_mc_addr(struct net_device *ndev, const u8 *addr, int num)
253{
254 struct addr_sync_ctx sync_ctx;
255
256 sync_ctx.consumed = 0;
257 sync_ctx.addr = addr;
258 sync_ctx.ndev = ndev;
259 sync_ctx.flush = 1;
260
261 vlan_for_each(ndev, cpsw_update_vlan_mc, &sync_ctx);
262 if (sync_ctx.consumed == num)
263 cpsw_set_mc(ndev, addr, -1, 0);
264
265 return 0;
266}
267
268static int cpsw_purge_vlan_mc(struct net_device *vdev, int vid, void *ctx)
269{
270 struct addr_sync_ctx *sync_ctx = ctx;
271 struct netdev_hw_addr *ha;
272 int found = 0;
273
274 if (!vdev || !(vdev->flags & IFF_UP))
275 return 0;
276
277 /* vlan address is relevant if its sync_cnt != 0 */
278 netdev_for_each_mc_addr(ha, vdev) {
279 if (ether_addr_equal(ha->addr, sync_ctx->addr)) {
280 found = ha->sync_cnt;
281 break;
282 }
283 }
284
285 if (!found)
286 return 0;
287
288 sync_ctx->consumed++;
289 cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 0);
290 return 0;
291}
292
293static int cpsw_purge_all_mc(struct net_device *ndev, const u8 *addr, int num)
294{
295 struct addr_sync_ctx sync_ctx;
296
297 sync_ctx.addr = addr;
298 sync_ctx.ndev = ndev;
299 sync_ctx.consumed = 0;
300
301 vlan_for_each(ndev, cpsw_purge_vlan_mc, &sync_ctx);
302 if (sync_ctx.consumed < num)
303 cpsw_set_mc(ndev, addr, -1, 0);
304
Ivan Khoronzhuk5da19482018-10-12 18:28:15 +0300305 return 0;
306}
307
308static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
309{
Grygorii Strashko06095f32019-04-26 20:12:33 +0300310 struct cpsw_priv *priv = netdev_priv(ndev);
311 struct cpsw_common *cpsw = priv->cpsw;
312 int slave_port = -1;
313
314 if (cpsw->data.dual_emac)
315 slave_port = priv->emac_port + 1;
Mugunthan V N5c50a852012-10-29 08:45:11 +0000316
317 if (ndev->flags & IFF_PROMISC) {
318 /* Enable promiscuous mode */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530319 cpsw_set_promiscious(ndev, true);
Grygorii Strashko06095f32019-04-26 20:12:33 +0300320 cpsw_ale_set_allmulti(cpsw->ale, IFF_ALLMULTI, slave_port);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000321 return;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530322 } else {
323 /* Disable promiscuous mode */
324 cpsw_set_promiscious(ndev, false);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000325 }
326
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400327 /* Restore allmulti on vlans if necessary */
Grygorii Strashko06095f32019-04-26 20:12:33 +0300328 cpsw_ale_set_allmulti(cpsw->ale,
329 ndev->flags & IFF_ALLMULTI, slave_port);
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400330
Ivan Khoronzhuk15180ec2018-11-08 22:27:56 +0200331 /* add/remove mcast address either for real netdev or for vlan */
332 __hw_addr_ref_sync_dev(&ndev->mc, ndev, cpsw_add_mc_addr,
333 cpsw_del_mc_addr);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000334}
335
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300336static unsigned int cpsw_rxbuf_total_len(unsigned int len)
337{
338 len += CPSW_HEADROOM;
339 len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
340
341 return SKB_DATA_ALIGN(len);
342}
343
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300344static void cpsw_rx_handler(void *token, int len, int status)
345{
346 struct page *new_page, *page = token;
347 void *pa = page_address(page);
348 struct cpsw_meta_xdp *xmeta = pa + CPSW_XMETA_OFFSET;
349 struct cpsw_common *cpsw = ndev_to_cpsw(xmeta->ndev);
350 int pkt_size = cpsw->rx_packet_max;
351 int ret = 0, port, ch = xmeta->ch;
352 int headroom = CPSW_HEADROOM;
353 struct net_device *ndev = xmeta->ndev;
354 struct cpsw_priv *priv;
355 struct page_pool *pool;
356 struct sk_buff *skb;
357 struct xdp_buff xdp;
358 dma_addr_t dma;
359
360 if (cpsw->data.dual_emac && status >= 0) {
361 port = CPDMA_RX_SOURCE_PORT(status);
362 if (port)
363 ndev = cpsw->slaves[--port].ndev;
364 }
365
366 priv = netdev_priv(ndev);
367 pool = cpsw->page_pool[ch];
Mugunthan V N16e5c572014-04-10 14:23:23 +0530368 if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
Ivan Khoronzhukfe734d02017-01-19 18:58:26 +0200369 /* In dual emac mode check for all interfaces */
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200370 if (cpsw->data.dual_emac && cpsw->usage_count &&
Ivan Khoronzhukfe734d02017-01-19 18:58:26 +0200371 (status >= 0)) {
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530372 /* The packet received is for the interface which
373 * is already down and the other interface is up
Joe Perchesdbedd442015-03-06 20:49:12 -0800374 * and running, instead of freeing which results
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530375 * in reducing of the number of rx descriptor in
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300376 * DMA engine, requeue page back to cpdma.
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530377 */
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300378 new_page = page;
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530379 goto requeue;
380 }
381
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300382 /* the interface is going down, pages are purged */
383 page_pool_recycle_direct(pool, page);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000384 return;
385 }
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000386
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300387 new_page = page_pool_dev_alloc_pages(pool);
388 if (unlikely(!new_page)) {
389 new_page = page;
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100390 ndev->stats.rx_dropped++;
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300391 goto requeue;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000392 }
393
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300394 if (priv->xdp_prog) {
395 if (status & CPDMA_RX_VLAN_ENCAP) {
396 xdp.data = pa + CPSW_HEADROOM +
397 CPSW_RX_VLAN_ENCAP_HDR_SIZE;
398 xdp.data_end = xdp.data + len -
399 CPSW_RX_VLAN_ENCAP_HDR_SIZE;
400 } else {
401 xdp.data = pa + CPSW_HEADROOM;
402 xdp.data_end = xdp.data + len;
403 }
404
405 xdp_set_data_meta_invalid(&xdp);
406
407 xdp.data_hard_start = pa;
408 xdp.rxq = &priv->xdp_rxq[ch];
Jesper Dangaard Brouerc88c3512020-05-14 12:50:08 +0200409 xdp.frame_sz = PAGE_SIZE;
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300410
Grygorii Strashkoc5013ac2019-11-20 00:19:17 +0200411 port = priv->emac_port + cpsw->data.dual_emac;
412 ret = cpsw_run_xdp(priv, ch, &xdp, page, port);
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300413 if (ret != CPSW_XDP_PASS)
414 goto requeue;
415
416 /* XDP prog might have changed packet data and boundaries */
417 len = xdp.data_end - xdp.data;
418 headroom = xdp.data - xdp.data_hard_start;
419
420 /* XDP prog can modify vlan tag, so can't use encap header */
421 status &= ~CPDMA_RX_VLAN_ENCAP;
422 }
423
424 /* pass skb to netstack if no XDP prog or returned XDP_PASS */
425 skb = build_skb(pa, cpsw_rxbuf_total_len(pkt_size));
426 if (!skb) {
427 ndev->stats.rx_dropped++;
428 page_pool_recycle_direct(pool, page);
429 goto requeue;
430 }
431
432 skb_reserve(skb, headroom);
433 skb_put(skb, len);
434 skb->dev = ndev;
435 if (status & CPDMA_RX_VLAN_ENCAP)
436 cpsw_rx_vlan_encap(skb);
437 if (priv->rx_ts_enabled)
438 cpts_rx_timestamp(cpsw->cpts, skb);
439 skb->protocol = eth_type_trans(skb, ndev);
440
441 /* unmap page as no netstack skb page recycling */
442 page_pool_release_page(pool, page);
443 netif_receive_skb(skb);
444
445 ndev->stats.rx_bytes += len;
446 ndev->stats.rx_packets++;
447
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530448requeue:
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300449 xmeta = page_address(new_page) + CPSW_XMETA_OFFSET;
450 xmeta->ndev = ndev;
451 xmeta->ch = ch;
452
453 dma = page_pool_get_dma_addr(new_page) + CPSW_HEADROOM;
454 ret = cpdma_chan_submit_mapped(cpsw->rxv[ch].ch, new_page, dma,
455 pkt_size, 0);
Ivan Khoronzhuk871e8462019-06-15 14:01:32 +0300456 if (ret < 0) {
457 WARN_ON(ret == -ENOMEM);
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300458 page_pool_recycle_direct(pool, new_page);
Ivan Khoronzhuk871e8462019-06-15 14:01:32 +0300459 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000460}
461
Mugunthan V Ndf828592012-03-18 20:17:54 +0000462static void _cpsw_adjust_link(struct cpsw_slave *slave,
463 struct cpsw_priv *priv, bool *link)
464{
465 struct phy_device *phy = slave->phy;
466 u32 mac_control = 0;
467 u32 slave_port;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300468 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000469
470 if (!phy)
471 return;
472
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300473 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000474
475 if (phy->link) {
Grygorii Strashkocfc08342019-04-26 20:12:41 +0300476 mac_control = CPSW_SL_CTL_GMII_EN;
477
478 if (phy->speed == 1000)
479 mac_control |= CPSW_SL_CTL_GIG;
480 if (phy->duplex)
481 mac_control |= CPSW_SL_CTL_FULLDUPLEX;
482
483 /* set speed_in input in case RMII mode is used in 100Mbps */
484 if (phy->speed == 100)
485 mac_control |= CPSW_SL_CTL_IFCTL_A;
486 /* in band mode only works in 10Mbps RGMII mode */
487 else if ((phy->speed == 10) && phy_interface_is_rgmii(phy))
488 mac_control |= CPSW_SL_CTL_EXT_EN; /* In Band mode */
489
490 if (priv->rx_pause)
491 mac_control |= CPSW_SL_CTL_RX_FLOW_EN;
492
493 if (priv->tx_pause)
494 mac_control |= CPSW_SL_CTL_TX_FLOW_EN;
495
496 if (mac_control != slave->mac_control)
497 cpsw_sl_ctl_set(slave->mac_sl, mac_control);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000498
499 /* enable forwarding */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300500 cpsw_ale_control_set(cpsw->ale, slave_port,
Mugunthan V Ndf828592012-03-18 20:17:54 +0000501 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
502
Mugunthan V Ndf828592012-03-18 20:17:54 +0000503 *link = true;
Ivan Khoronzhuk57d90142018-07-24 00:26:32 +0300504
505 if (priv->shp_cfg_speed &&
506 priv->shp_cfg_speed != slave->phy->speed &&
507 !cpsw_shp_is_off(priv))
508 dev_warn(priv->dev,
509 "Speed was changed, CBS shaper speeds are changed!");
Mugunthan V Ndf828592012-03-18 20:17:54 +0000510 } else {
511 mac_control = 0;
512 /* disable forwarding */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300513 cpsw_ale_control_set(cpsw->ale, slave_port,
Mugunthan V Ndf828592012-03-18 20:17:54 +0000514 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
Grygorii Strashkocfc08342019-04-26 20:12:41 +0300515
516 cpsw_sl_wait_for_idle(slave->mac_sl, 100);
517
518 cpsw_sl_ctl_reset(slave->mac_sl);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000519 }
520
Grygorii Strashkocfc08342019-04-26 20:12:41 +0300521 if (mac_control != slave->mac_control)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000522 phy_print_status(phy);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000523
524 slave->mac_control = mac_control;
525}
526
527static void cpsw_adjust_link(struct net_device *ndev)
528{
529 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +0200530 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000531 bool link = false;
532
533 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
534
535 if (link) {
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +0200536 if (cpsw_need_resplit(cpsw))
Grygorii Strashko9763a892019-04-26 20:12:26 +0300537 cpsw_split_res(cpsw);
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +0200538
Mugunthan V Ndf828592012-03-18 20:17:54 +0000539 netif_carrier_on(ndev);
540 if (netif_running(ndev))
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300541 netif_tx_wake_all_queues(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000542 } else {
543 netif_carrier_off(ndev);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300544 netif_tx_stop_all_queues(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000545 }
546}
547
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000548static inline void cpsw_add_dual_emac_def_ale_entries(
549 struct cpsw_priv *priv, struct cpsw_slave *slave,
550 u32 slave_port)
551{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300552 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300553 u32 port_mask = 1 << slave_port | ALE_PORT_HOST;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000554
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300555 if (cpsw->version == CPSW_VERSION_1)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000556 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
557 else
558 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300559 cpsw_ale_add_vlan(cpsw->ale, slave->port_vlan, port_mask,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000560 port_mask, port_mask, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300561 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Ivan Khoronzhuk5b3a5a12018-10-12 19:06:29 +0300562 ALE_PORT_HOST, ALE_VLAN, slave->port_vlan, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300563 cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr,
564 HOST_PORT_NUM, ALE_VLAN |
565 ALE_SECURE, slave->port_vlan);
Grygorii Strashko5e5add12018-05-01 12:41:22 -0500566 cpsw_ale_control_set(cpsw->ale, slave_port,
567 ALE_PORT_DROP_UNKNOWN_VLAN, 1);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000568}
569
Daniel Mack1e7a2e22013-11-15 08:29:16 +0100570static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
571{
Mugunthan V Ndf828592012-03-18 20:17:54 +0000572 u32 slave_port;
Sekhar Nori30c57f02017-04-03 17:34:28 +0530573 struct phy_device *phy;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300574 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000575
Grygorii Strashkocfc08342019-04-26 20:12:41 +0300576 cpsw_sl_reset(slave->mac_sl, 100);
577 cpsw_sl_ctl_reset(slave->mac_sl);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000578
579 /* setup priority mapping */
Grygorii Strashkocfc08342019-04-26 20:12:41 +0300580 cpsw_sl_reg_write(slave->mac_sl, CPSW_SL_RX_PRI_MAP,
581 RX_PRIORITY_MAPPING);
Richard Cochran9750a3a2012-10-29 08:45:15 +0000582
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300583 switch (cpsw->version) {
Richard Cochran9750a3a2012-10-29 08:45:15 +0000584 case CPSW_VERSION_1:
585 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
Grygorii Strashko48f5bcc2017-05-08 14:21:21 -0500586 /* Increase RX FIFO size to 5 for supporting fullduplex
587 * flow control mode
588 */
589 slave_write(slave,
590 (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) |
591 CPSW_MAX_BLKS_RX, CPSW1_MAX_BLKS);
Richard Cochran9750a3a2012-10-29 08:45:15 +0000592 break;
593 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +0530594 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +0530595 case CPSW_VERSION_4:
Richard Cochran9750a3a2012-10-29 08:45:15 +0000596 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
Grygorii Strashko48f5bcc2017-05-08 14:21:21 -0500597 /* Increase RX FIFO size to 5 for supporting fullduplex
598 * flow control mode
599 */
600 slave_write(slave,
601 (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) |
602 CPSW_MAX_BLKS_RX, CPSW2_MAX_BLKS);
Richard Cochran9750a3a2012-10-29 08:45:15 +0000603 break;
604 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000605
606 /* setup max packet size, and mac address */
Grygorii Strashkocfc08342019-04-26 20:12:41 +0300607 cpsw_sl_reg_write(slave->mac_sl, CPSW_SL_RX_MAXLEN,
608 cpsw->rx_packet_max);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000609 cpsw_set_slave_mac(slave, priv);
610
611 slave->mac_control = 0; /* no link yet */
612
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300613 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000614
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300615 if (cpsw->data.dual_emac)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000616 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
617 else
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300618 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000619 1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000620
David Rivshind733f7542016-04-27 21:32:31 -0400621 if (slave->data->phy_node) {
Sekhar Nori30c57f02017-04-03 17:34:28 +0530622 phy = of_phy_connect(priv->ndev, slave->data->phy_node,
Heiko Schocher9e42f712015-10-17 06:04:35 +0200623 &cpsw_adjust_link, 0, slave->data->phy_if);
Sekhar Nori30c57f02017-04-03 17:34:28 +0530624 if (!phy) {
Rob Herringf7ce9102017-07-18 16:43:19 -0500625 dev_err(priv->dev, "phy \"%pOF\" not found on slave %d\n",
626 slave->data->phy_node,
David Rivshind733f7542016-04-27 21:32:31 -0400627 slave->slave_num);
628 return;
629 }
630 } else {
Sekhar Nori30c57f02017-04-03 17:34:28 +0530631 phy = phy_connect(priv->ndev, slave->data->phy_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +0000632 &cpsw_adjust_link, slave->data->phy_if);
Sekhar Nori30c57f02017-04-03 17:34:28 +0530633 if (IS_ERR(phy)) {
David Rivshind733f7542016-04-27 21:32:31 -0400634 dev_err(priv->dev,
635 "phy \"%s\" not found on slave %d, err %ld\n",
636 slave->data->phy_id, slave->slave_num,
Sekhar Nori30c57f02017-04-03 17:34:28 +0530637 PTR_ERR(phy));
David Rivshind733f7542016-04-27 21:32:31 -0400638 return;
639 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000640 }
David Rivshind733f7542016-04-27 21:32:31 -0400641
Sekhar Nori30c57f02017-04-03 17:34:28 +0530642 slave->phy = phy;
643
David Rivshind733f7542016-04-27 21:32:31 -0400644 phy_attached_info(slave->phy);
645
646 phy_start(slave->phy);
647
648 /* Configure GMII_SEL register */
Grygorii Strashko3ff18842018-11-25 18:15:25 -0600649 if (!IS_ERR(slave->data->ifphy))
650 phy_set_mode_ext(slave->data->ifphy, PHY_MODE_ETHERNET,
651 slave->data->phy_if);
652 else
653 cpsw_phy_sel(cpsw->dev, slave->phy->interface,
654 slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000655}
656
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000657static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
658{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300659 struct cpsw_common *cpsw = priv->cpsw;
660 const int vlan = cpsw->data.default_vlan;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000661 u32 reg;
662 int i;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400663 int unreg_mcast_mask;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000664
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300665 reg = (cpsw->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000666 CPSW2_PORT_VLAN;
667
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300668 writel(vlan, &cpsw->host_port_regs->port_vlan);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000669
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300670 for (i = 0; i < cpsw->data.slaves; i++)
671 slave_write(cpsw->slaves + i, vlan, reg);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000672
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400673 if (priv->ndev->flags & IFF_ALLMULTI)
674 unreg_mcast_mask = ALE_ALL_PORTS;
675 else
676 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
677
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300678 cpsw_ale_add_vlan(cpsw->ale, vlan, ALE_ALL_PORTS,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300679 ALE_ALL_PORTS, ALE_ALL_PORTS,
680 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000681}
682
Mugunthan V Ndf828592012-03-18 20:17:54 +0000683static void cpsw_init_host_port(struct cpsw_priv *priv)
684{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000685 u32 fifo_mode;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300686 u32 control_reg;
687 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000688
Mugunthan V Ndf828592012-03-18 20:17:54 +0000689 /* soft reset the controller and initialize ale */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300690 soft_reset("cpsw", &cpsw->regs->soft_reset);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300691 cpsw_ale_start(cpsw->ale);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000692
693 /* switch to vlan unaware mode */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300694 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_VLAN_AWARE,
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000695 CPSW_ALE_VLAN_AWARE);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300696 control_reg = readl(&cpsw->regs->control);
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500697 control_reg |= CPSW_VLAN_AWARE | CPSW_RX_VLAN_ENCAP;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300698 writel(control_reg, &cpsw->regs->control);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300699 fifo_mode = (cpsw->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000700 CPSW_FIFO_NORMAL_MODE;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300701 writel(fifo_mode, &cpsw->host_port_regs->tx_in_ctl);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000702
703 /* setup host port priority mapping */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600704 writel_relaxed(CPDMA_TX_PRIORITY_MAP,
705 &cpsw->host_port_regs->cpdma_tx_pri_map);
706 writel_relaxed(0, &cpsw->host_port_regs->cpdma_rx_chan_map);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000707
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300708 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM,
Mugunthan V Ndf828592012-03-18 20:17:54 +0000709 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
710
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300711 if (!cpsw->data.dual_emac) {
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300712 cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000713 0, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300714 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300715 ALE_PORT_HOST, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000716 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000717}
718
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300719static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_common *cpsw)
Sebastian Siewioraacebbf2013-04-23 07:31:36 +0000720{
Schuyler Patton3995d262014-03-03 16:19:06 +0530721 u32 slave_port;
722
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300723 slave_port = cpsw_get_slave_port(slave->slave_num);
Schuyler Patton3995d262014-03-03 16:19:06 +0530724
Sebastian Siewioraacebbf2013-04-23 07:31:36 +0000725 if (!slave->phy)
726 return;
727 phy_stop(slave->phy);
728 phy_disconnect(slave->phy);
729 slave->phy = NULL;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300730 cpsw_ale_control_set(cpsw->ale, slave_port,
Schuyler Patton3995d262014-03-03 16:19:06 +0530731 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
Grygorii Strashkocfc08342019-04-26 20:12:41 +0300732 cpsw_sl_reset(slave->mac_sl, 100);
733 cpsw_sl_ctl_reset(slave->mac_sl);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +0000734}
735
Ivan Khoronzhuk00fe4712018-11-08 22:27:57 +0200736static int cpsw_restore_vlans(struct net_device *vdev, int vid, void *arg)
737{
738 struct cpsw_priv *priv = arg;
739
740 if (!vdev)
741 return 0;
742
743 cpsw_ndo_vlan_rx_add_vid(priv->ndev, 0, vid);
744 return 0;
745}
746
Ivan Khoronzhuk4b4255e2018-07-24 00:26:33 +0300747/* restore resources after port reset */
748static void cpsw_restore(struct cpsw_priv *priv)
749{
Ivan Khoronzhuk00fe4712018-11-08 22:27:57 +0200750 /* restore vlan configurations */
751 vlan_for_each(priv->ndev, cpsw_restore_vlans, priv);
752
Ivan Khoronzhuk4b4255e2018-07-24 00:26:33 +0300753 /* restore MQPRIO offload */
754 for_each_slave(priv, cpsw_mqprio_resume, priv);
755
756 /* restore CBS offload */
757 for_each_slave(priv, cpsw_cbs_resume, priv);
758}
759
Mugunthan V Ndf828592012-03-18 20:17:54 +0000760static int cpsw_ndo_open(struct net_device *ndev)
761{
762 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300763 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300764 int ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000765 u32 reg;
766
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +0300767 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +0300768 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +0300769 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +0300770 return ret;
771 }
Grygorii Strashko3fa88c52016-04-19 21:09:49 +0300772
Mugunthan V Ndf828592012-03-18 20:17:54 +0000773 netif_carrier_off(ndev);
774
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300775 /* Notify the stack of the actual queue counts. */
776 ret = netif_set_real_num_tx_queues(ndev, cpsw->tx_ch_num);
777 if (ret) {
778 dev_err(priv->dev, "cannot set real number of tx queues\n");
779 goto err_cleanup;
780 }
781
782 ret = netif_set_real_num_rx_queues(ndev, cpsw->rx_ch_num);
783 if (ret) {
784 dev_err(priv->dev, "cannot set real number of rx queues\n");
785 goto err_cleanup;
786 }
787
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300788 reg = cpsw->version;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000789
790 dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
791 CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
792 CPSW_RTL_VERSION(reg));
793
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200794 /* Initialize host and slave ports */
795 if (!cpsw->usage_count)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000796 cpsw_init_host_port(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000797 for_each_slave(priv, cpsw_slave_open, priv);
798
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000799 /* Add default VLAN */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300800 if (!cpsw->data.dual_emac)
Mugunthan V Ne6afea02014-06-18 17:21:48 +0530801 cpsw_add_default_vlan(priv);
802 else
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300803 cpsw_ale_add_vlan(cpsw->ale, cpsw->data.default_vlan,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300804 ALE_ALL_PORTS, ALE_ALL_PORTS, 0, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000805
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200806 /* initialize shared resources for every ndev */
807 if (!cpsw->usage_count) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000808 /* disable priority elevation */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600809 writel_relaxed(0, &cpsw->regs->ptype);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000810
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000811 /* enable statistics collection only on all ports */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600812 writel_relaxed(0x7, &cpsw->regs->stat_port_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000813
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530814 /* Enable internal fifo flow control */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300815 writel(0x7, &cpsw->regs->flow_control);
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530816
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300817 napi_enable(&cpsw->napi_rx);
818 napi_enable(&cpsw->napi_tx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +0530819
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300820 if (cpsw->tx_irq_disabled) {
821 cpsw->tx_irq_disabled = false;
822 enable_irq(cpsw->irqs_table[1]);
Mugunthan V N7da11602015-08-12 15:22:53 +0530823 }
824
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300825 if (cpsw->rx_irq_disabled) {
826 cpsw->rx_irq_disabled = false;
827 enable_irq(cpsw->irqs_table[0]);
Mugunthan V N7da11602015-08-12 15:22:53 +0530828 }
829
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300830 /* create rxqs for both infs in dual mac as they use same pool
831 * and must be destroyed together when no users.
832 */
833 ret = cpsw_create_xdp_rxqs(cpsw);
834 if (ret < 0)
835 goto err_cleanup;
836
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300837 ret = cpsw_fill_rx_channels(priv);
838 if (ret < 0)
839 goto err_cleanup;
Mugunthan V Nf280e892013-12-11 22:09:05 -0600840
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -0600841 if (cpts_register(cpsw->cpts))
Mugunthan V Nf280e892013-12-11 22:09:05 -0600842 dev_err(priv->dev, "error registering cpts device\n");
843
Mugunthan V Ndf828592012-03-18 20:17:54 +0000844 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000845
Ivan Khoronzhuk4b4255e2018-07-24 00:26:33 +0300846 cpsw_restore(priv);
847
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000848 /* Enable Interrupt pacing if configured */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300849 if (cpsw->coal_intvl != 0) {
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000850 struct ethtool_coalesce coal;
851
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300852 coal.rx_coalesce_usecs = cpsw->coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000853 cpsw_set_coalesce(ndev, &coal);
854 }
855
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300856 cpdma_ctlr_start(cpsw->dma);
857 cpsw_intr_enable(cpsw);
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200858 cpsw->usage_count++;
Mugunthan V Nf63a9752014-04-10 14:23:24 +0530859
Mugunthan V Ndf828592012-03-18 20:17:54 +0000860 return 0;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000861
Sebastian Siewioraacebbf2013-04-23 07:31:36 +0000862err_cleanup:
Ivan Khoronzhuk02caced2019-05-28 20:45:19 +0300863 if (!cpsw->usage_count) {
864 cpdma_ctlr_stop(cpsw->dma);
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300865 cpsw_destroy_xdp_rxqs(cpsw);
Ivan Khoronzhuk02caced2019-05-28 20:45:19 +0300866 }
867
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300868 for_each_slave(priv, cpsw_slave_stop, cpsw);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +0300869 pm_runtime_put_sync(cpsw->dev);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +0000870 netif_carrier_off(priv->ndev);
871 return ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000872}
873
874static int cpsw_ndo_stop(struct net_device *ndev)
875{
876 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300877 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000878
879 cpsw_info(priv, ifdown, "shutting down cpsw device\n");
Ivan Khoronzhuk15180ec2018-11-08 22:27:56 +0200880 __hw_addr_ref_unsync_dev(&ndev->mc, ndev, cpsw_purge_all_mc);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300881 netif_tx_stop_all_queues(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000882 netif_carrier_off(priv->ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000883
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200884 if (cpsw->usage_count <= 1) {
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300885 napi_disable(&cpsw->napi_rx);
886 napi_disable(&cpsw->napi_tx);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300887 cpts_unregister(cpsw->cpts);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300888 cpsw_intr_disable(cpsw);
889 cpdma_ctlr_stop(cpsw->dma);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300890 cpsw_ale_stop(cpsw->ale);
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +0300891 cpsw_destroy_xdp_rxqs(cpsw);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000892 }
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300893 for_each_slave(priv, cpsw_slave_stop, cpsw);
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +0200894
895 if (cpsw_need_resplit(cpsw))
Grygorii Strashko9763a892019-04-26 20:12:26 +0300896 cpsw_split_res(cpsw);
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +0200897
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200898 cpsw->usage_count--;
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +0300899 pm_runtime_put_sync(cpsw->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000900 return 0;
901}
902
903static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
904 struct net_device *ndev)
905{
906 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300907 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhukf44f8412017-06-27 16:58:52 +0300908 struct cpts *cpts = cpsw->cpts;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300909 struct netdev_queue *txq;
910 struct cpdma_chan *txch;
911 int ret, q_idx;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000912
Mugunthan V Ndf828592012-03-18 20:17:54 +0000913 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
914 cpsw_err(priv, tx_err, "packet pad failed\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100915 ndev->stats.tx_dropped++;
Ivan Khoronzhuk1bf96052017-02-11 03:49:57 +0200916 return NET_XMIT_DROP;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000917 }
918
Mugunthan V N9232b162013-02-11 09:52:19 +0000919 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
Ivan Khoronzhuka9423122018-11-12 16:00:22 +0200920 priv->tx_ts_enabled && cpts_can_timestamp(cpts, skb))
Richard Cochran2e5b38a2012-10-29 08:45:20 +0000921 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
922
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300923 q_idx = skb_get_queue_mapping(skb);
924 if (q_idx >= cpsw->tx_ch_num)
925 q_idx = q_idx % cpsw->tx_ch_num;
926
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200927 txch = cpsw->txv[q_idx].ch;
Grygorii Strashko62f94c22018-02-06 19:17:06 -0600928 txq = netdev_get_tx_queue(ndev, q_idx);
Grygorii Strashko10ae8052019-04-26 20:12:30 +0300929 skb_tx_timestamp(skb);
930 ret = cpdma_chan_submit(txch, skb, skb->data, skb->len,
931 priv->emac_port + cpsw->data.dual_emac);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000932 if (unlikely(ret != 0)) {
933 cpsw_err(priv, tx_err, "desc submit failed\n");
934 goto fail;
935 }
936
Mugunthan V Nfae50822013-01-17 06:31:34 +0000937 /* If there is no more tx desc left free then we need to
938 * tell the kernel to stop sending us tx frames.
939 */
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300940 if (unlikely(!cpdma_check_free_tx_desc(txch))) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300941 netif_tx_stop_queue(txq);
Grygorii Strashko62f94c22018-02-06 19:17:06 -0600942
943 /* Barrier, so that stop_queue visible to other cpus */
944 smp_mb__after_atomic();
945
946 if (cpdma_check_free_tx_desc(txch))
947 netif_tx_wake_queue(txq);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300948 }
Mugunthan V Nfae50822013-01-17 06:31:34 +0000949
Mugunthan V Ndf828592012-03-18 20:17:54 +0000950 return NETDEV_TX_OK;
951fail:
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100952 ndev->stats.tx_dropped++;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300953 netif_tx_stop_queue(txq);
Grygorii Strashko62f94c22018-02-06 19:17:06 -0600954
955 /* Barrier, so that stop_queue visible to other cpus */
956 smp_mb__after_atomic();
957
958 if (cpdma_check_free_tx_desc(txch))
959 netif_tx_wake_queue(txq);
960
Mugunthan V Ndf828592012-03-18 20:17:54 +0000961 return NETDEV_TX_BUSY;
962}
963
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +0530964static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
965{
966 struct cpsw_priv *priv = netdev_priv(ndev);
967 struct sockaddr *addr = (struct sockaddr *)p;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300968 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +0530969 int flags = 0;
970 u16 vid = 0;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +0300971 int ret;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +0530972
973 if (!is_valid_ether_addr(addr->sa_data))
974 return -EADDRNOTAVAIL;
975
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +0300976 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +0300977 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +0300978 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +0300979 return ret;
980 }
981
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300982 if (cpsw->data.dual_emac) {
983 vid = cpsw->slaves[priv->emac_port].port_vlan;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +0530984 flags = ALE_VLAN;
985 }
986
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300987 cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +0530988 flags, vid);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300989 cpsw_ale_add_ucast(cpsw->ale, addr->sa_data, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +0530990 flags, vid);
991
992 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
993 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
994 for_each_slave(priv, cpsw_set_slave_mac, priv);
995
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +0300996 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +0300997
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +0530998 return 0;
999}
1000
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001001static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
1002 unsigned short vid)
1003{
1004 int ret;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301005 int unreg_mcast_mask = 0;
Ivan Khoronzhuk5b3a5a12018-10-12 19:06:29 +03001006 int mcast_mask;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301007 u32 port_mask;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001008 struct cpsw_common *cpsw = priv->cpsw;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001009
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001010 if (cpsw->data.dual_emac) {
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301011 port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001012
Ivan Khoronzhuk5b3a5a12018-10-12 19:06:29 +03001013 mcast_mask = ALE_PORT_HOST;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301014 if (priv->ndev->flags & IFF_ALLMULTI)
Ivan Khoronzhuk5b3a5a12018-10-12 19:06:29 +03001015 unreg_mcast_mask = mcast_mask;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301016 } else {
1017 port_mask = ALE_ALL_PORTS;
Ivan Khoronzhuk5b3a5a12018-10-12 19:06:29 +03001018 mcast_mask = port_mask;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301019
1020 if (priv->ndev->flags & IFF_ALLMULTI)
1021 unreg_mcast_mask = ALE_ALL_PORTS;
1022 else
1023 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1024 }
1025
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001026 ret = cpsw_ale_add_vlan(cpsw->ale, vid, port_mask, 0, port_mask,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001027 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001028 if (ret != 0)
1029 return ret;
1030
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001031 ret = cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001032 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001033 if (ret != 0)
1034 goto clean_vid;
1035
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001036 ret = cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Ivan Khoronzhuk5b3a5a12018-10-12 19:06:29 +03001037 mcast_mask, ALE_VLAN, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001038 if (ret != 0)
1039 goto clean_vlan_ucast;
1040 return 0;
1041
1042clean_vlan_ucast:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001043 cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001044 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001045clean_vid:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001046 cpsw_ale_del_vlan(cpsw->ale, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001047 return ret;
1048}
1049
1050static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001051 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001052{
1053 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001054 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001055 int ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001056
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001057 if (vid == cpsw->data.default_vlan)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001058 return 0;
1059
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001060 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001061 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001062 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001063 return ret;
1064 }
1065
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001066 if (cpsw->data.dual_emac) {
Mugunthan V N02a54162015-01-22 15:19:22 +05301067 /* In dual EMAC, reserved VLAN id should not be used for
1068 * creating VLAN interfaces as this can break the dual
1069 * EMAC port separation
1070 */
1071 int i;
1072
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001073 for (i = 0; i < cpsw->data.slaves; i++) {
Ivan Khoronzhuk803c4f62018-08-10 15:47:09 +03001074 if (vid == cpsw->slaves[i].port_vlan) {
1075 ret = -EINVAL;
1076 goto err;
1077 }
Mugunthan V N02a54162015-01-22 15:19:22 +05301078 }
1079 }
1080
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001081 dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001082 ret = cpsw_add_vlan_ale_entry(priv, vid);
Ivan Khoronzhuk803c4f62018-08-10 15:47:09 +03001083err:
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001084 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001085 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001086}
1087
1088static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001089 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001090{
1091 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001092 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001093 int ret;
1094
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001095 if (vid == cpsw->data.default_vlan)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001096 return 0;
1097
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001098 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001099 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001100 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001101 return ret;
1102 }
1103
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001104 if (cpsw->data.dual_emac) {
Mugunthan V N02a54162015-01-22 15:19:22 +05301105 int i;
1106
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001107 for (i = 0; i < cpsw->data.slaves; i++) {
1108 if (vid == cpsw->slaves[i].port_vlan)
Ivan Khoronzhuk803c4f62018-08-10 15:47:09 +03001109 goto err;
Mugunthan V N02a54162015-01-22 15:19:22 +05301110 }
1111 }
1112
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001113 dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001114 ret = cpsw_ale_del_vlan(cpsw->ale, vid, 0);
Ivan Khoronzhukbe35b982018-08-10 15:47:08 +03001115 ret |= cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr,
1116 HOST_PORT_NUM, ALE_VLAN, vid);
1117 ret |= cpsw_ale_del_mcast(cpsw->ale, priv->ndev->broadcast,
1118 0, ALE_VLAN, vid);
Murali Karicheri99d469f2020-08-24 11:10:52 -04001119 ret |= cpsw_ale_flush_multicast(cpsw->ale, ALE_PORT_HOST, vid);
Ivan Khoronzhuk803c4f62018-08-10 15:47:09 +03001120err:
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001121 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001122 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001123}
1124
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +03001125static int cpsw_ndo_xdp_xmit(struct net_device *ndev, int n,
1126 struct xdp_frame **frames, u32 flags)
1127{
1128 struct cpsw_priv *priv = netdev_priv(ndev);
Grygorii Strashkoc5013ac2019-11-20 00:19:17 +02001129 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +03001130 struct xdp_frame *xdpf;
Grygorii Strashkoc5013ac2019-11-20 00:19:17 +02001131 int i, drops = 0, port;
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +03001132
1133 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
1134 return -EINVAL;
1135
1136 for (i = 0; i < n; i++) {
1137 xdpf = frames[i];
1138 if (xdpf->len < CPSW_MIN_PACKET_SIZE) {
1139 xdp_return_frame_rx_napi(xdpf);
1140 drops++;
1141 continue;
1142 }
1143
Grygorii Strashkoc5013ac2019-11-20 00:19:17 +02001144 port = priv->emac_port + cpsw->data.dual_emac;
1145 if (cpsw_xdp_tx_frame(priv, xdpf, NULL, port))
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +03001146 drops++;
1147 }
1148
1149 return n - drops;
1150}
1151
David S. Miller026cc9c2019-04-27 20:08:25 -04001152#ifdef CONFIG_NET_POLL_CONTROLLER
1153static void cpsw_ndo_poll_controller(struct net_device *ndev)
1154{
1155 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
1156
1157 cpsw_intr_disable(cpsw);
1158 cpsw_rx_interrupt(cpsw->irqs_table[0], cpsw);
1159 cpsw_tx_interrupt(cpsw->irqs_table[1], cpsw);
1160 cpsw_intr_enable(cpsw);
1161}
1162#endif
1163
Mugunthan V Ndf828592012-03-18 20:17:54 +00001164static const struct net_device_ops cpsw_netdev_ops = {
1165 .ndo_open = cpsw_ndo_open,
1166 .ndo_stop = cpsw_ndo_stop,
1167 .ndo_start_xmit = cpsw_ndo_start_xmit,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301168 .ndo_set_mac_address = cpsw_ndo_set_mac_address,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001169 .ndo_do_ioctl = cpsw_ndo_ioctl,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001170 .ndo_validate_addr = eth_validate_addr,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001171 .ndo_tx_timeout = cpsw_ndo_tx_timeout,
Mugunthan V N5c50a852012-10-29 08:45:11 +00001172 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode,
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02001173 .ndo_set_tx_maxrate = cpsw_ndo_set_tx_maxrate,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001174#ifdef CONFIG_NET_POLL_CONTROLLER
1175 .ndo_poll_controller = cpsw_ndo_poll_controller,
1176#endif
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001177 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid,
1178 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid,
Ivan Khoronzhuk7929a662018-07-24 00:26:31 +03001179 .ndo_setup_tc = cpsw_ndo_setup_tc,
Ivan Khoronzhuk9ed40502019-07-09 00:34:32 +03001180 .ndo_bpf = cpsw_ndo_bpf,
1181 .ndo_xdp_xmit = cpsw_ndo_xdp_xmit,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001182};
1183
1184static void cpsw_get_drvinfo(struct net_device *ndev,
1185 struct ethtool_drvinfo *info)
1186{
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001187 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001188 struct platform_device *pdev = to_platform_device(cpsw->dev);
Jiri Pirko7826d432013-01-06 00:44:26 +00001189
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301190 strlcpy(info->driver, "cpsw", sizeof(info->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +00001191 strlcpy(info->version, "1.0", sizeof(info->version));
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001192 strlcpy(info->bus_info, pdev->name, sizeof(info->bus_info));
Mugunthan V Ndf828592012-03-18 20:17:54 +00001193}
1194
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301195static int cpsw_set_pauseparam(struct net_device *ndev,
1196 struct ethtool_pauseparam *pause)
1197{
1198 struct cpsw_priv *priv = netdev_priv(ndev);
1199 bool link;
1200
1201 priv->rx_pause = pause->rx_pause ? true : false;
1202 priv->tx_pause = pause->tx_pause ? true : false;
1203
1204 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301205 return 0;
1206}
1207
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02001208static int cpsw_set_channels(struct net_device *ndev,
1209 struct ethtool_channels *chs)
1210{
Grygorii Strashkoc24eef22019-04-26 20:12:42 +03001211 return cpsw_set_channels_common(ndev, chs, cpsw_rx_handler);
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06001212}
1213
Mugunthan V Ndf828592012-03-18 20:17:54 +00001214static const struct ethtool_ops cpsw_ethtool_ops = {
Jakub Kicinski3b6e1a42020-03-16 13:47:08 -07001215 .supported_coalesce_params = ETHTOOL_COALESCE_RX_USECS,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001216 .get_drvinfo = cpsw_get_drvinfo,
1217 .get_msglevel = cpsw_get_msglevel,
1218 .set_msglevel = cpsw_set_msglevel,
1219 .get_link = ethtool_op_get_link,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001220 .get_ts_info = cpsw_get_ts_info,
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001221 .get_coalesce = cpsw_get_coalesce,
1222 .set_coalesce = cpsw_set_coalesce,
Mugunthan V Nd9718542013-07-23 15:38:17 +05301223 .get_sset_count = cpsw_get_sset_count,
1224 .get_strings = cpsw_get_strings,
1225 .get_ethtool_stats = cpsw_get_ethtool_stats,
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301226 .get_pauseparam = cpsw_get_pauseparam,
1227 .set_pauseparam = cpsw_set_pauseparam,
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001228 .get_wol = cpsw_get_wol,
1229 .set_wol = cpsw_set_wol,
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301230 .get_regs_len = cpsw_get_regs_len,
1231 .get_regs = cpsw_get_regs,
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001232 .begin = cpsw_ethtool_op_begin,
1233 .complete = cpsw_ethtool_op_complete,
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03001234 .get_channels = cpsw_get_channels,
1235 .set_channels = cpsw_set_channels,
Philippe Reynes24798762016-10-08 17:46:15 +02001236 .get_link_ksettings = cpsw_get_link_ksettings,
1237 .set_link_ksettings = cpsw_set_link_ksettings,
Yegor Yefremova0909942016-11-28 09:41:33 +01001238 .get_eee = cpsw_get_eee,
1239 .set_eee = cpsw_set_eee,
Yegor Yefremov6bb10c22016-11-28 10:47:52 +01001240 .nway_reset = cpsw_nway_reset,
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06001241 .get_ringparam = cpsw_get_ringparam,
1242 .set_ringparam = cpsw_set_ringparam,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001243};
1244
David Rivshin552165b2016-04-27 21:25:25 -04001245static int cpsw_probe_dt(struct cpsw_platform_data *data,
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001246 struct platform_device *pdev)
1247{
1248 struct device_node *node = pdev->dev.of_node;
1249 struct device_node *slave_node;
1250 int i = 0, ret;
1251 u32 prop;
1252
1253 if (!node)
1254 return -EINVAL;
1255
1256 if (of_property_read_u32(node, "slaves", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301257 dev_err(&pdev->dev, "Missing slaves property in the DT.\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001258 return -EINVAL;
1259 }
1260 data->slaves = prop;
1261
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001262 if (of_property_read_u32(node, "active_slave", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301263 dev_err(&pdev->dev, "Missing active_slave property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301264 return -EINVAL;
Richard Cochran78ca0b22012-10-29 08:45:18 +00001265 }
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001266 data->active_slave = prop;
Richard Cochran78ca0b22012-10-29 08:45:18 +00001267
Kees Cooka86854d2018-06-12 14:07:58 -07001268 data->slave_data = devm_kcalloc(&pdev->dev,
1269 data->slaves,
1270 sizeof(struct cpsw_slave_data),
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301271 GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +00001272 if (!data->slave_data)
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301273 return -ENOMEM;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001274
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001275 if (of_property_read_u32(node, "cpdma_channels", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301276 dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301277 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001278 }
1279 data->channels = prop;
1280
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001281 if (of_property_read_u32(node, "ale_entries", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301282 dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301283 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001284 }
1285 data->ale_entries = prop;
1286
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001287 if (of_property_read_u32(node, "bd_ram_size", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301288 dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301289 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001290 }
1291 data->bd_ram_size = prop;
1292
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001293 if (of_property_read_u32(node, "mac_control", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301294 dev_err(&pdev->dev, "Missing mac_control property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301295 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001296 }
1297 data->mac_control = prop;
1298
Markus Pargmann281abd92013-10-04 14:44:40 +02001299 if (of_property_read_bool(node, "dual_emac"))
1300 data->dual_emac = 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001301
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00001302 /*
1303 * Populate all the child nodes here...
1304 */
1305 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
1306 /* We do not want to force this, as in some cases may not have child */
1307 if (ret)
George Cherian88c99ff2014-05-12 10:21:19 +05301308 dev_warn(&pdev->dev, "Doesn't have any child node\n");
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00001309
Ben Hutchings8658aaf2016-06-21 01:16:31 +01001310 for_each_available_child_of_node(node, slave_node) {
Richard Cochran549985e2012-11-14 09:07:56 +00001311 struct cpsw_slave_data *slave_data = data->slave_data + i;
1312 const void *mac_addr = NULL;
Richard Cochran549985e2012-11-14 09:07:56 +00001313 int lenp;
1314 const __be32 *parp;
Richard Cochran549985e2012-11-14 09:07:56 +00001315
Markus Pargmannf468b102013-10-04 14:44:39 +02001316 /* This is no slave child node, continue */
Rob Herringbf5849f2018-12-05 13:50:32 -06001317 if (!of_node_name_eq(slave_node, "slave"))
Markus Pargmannf468b102013-10-04 14:44:39 +02001318 continue;
1319
Grygorii Strashko3ff18842018-11-25 18:15:25 -06001320 slave_data->ifphy = devm_of_phy_get(&pdev->dev, slave_node,
1321 NULL);
1322 if (!IS_ENABLED(CONFIG_TI_CPSW_PHY_SEL) &&
1323 IS_ERR(slave_data->ifphy)) {
1324 ret = PTR_ERR(slave_data->ifphy);
1325 dev_err(&pdev->dev,
1326 "%d: Error retrieving port phy: %d\n", i, ret);
Nishka Dasgupta3cd6e202019-07-16 11:18:43 +05301327 goto err_node_put;
Grygorii Strashko3ff18842018-11-25 18:15:25 -06001328 }
1329
Marek Vasut337d1722019-06-23 14:11:43 +02001330 slave_data->slave_node = slave_node;
David Rivshin552165b2016-04-27 21:25:25 -04001331 slave_data->phy_node = of_parse_phandle(slave_node,
1332 "phy-handle", 0);
David Rivshinf1eea5c2015-12-16 23:02:10 -05001333 parp = of_get_property(slave_node, "phy_id", &lenp);
David Rivshinae092b52016-04-27 21:38:26 -04001334 if (slave_data->phy_node) {
1335 dev_dbg(&pdev->dev,
Rob Herringf7ce9102017-07-18 16:43:19 -05001336 "slave[%d] using phy-handle=\"%pOF\"\n",
1337 i, slave_data->phy_node);
David Rivshinae092b52016-04-27 21:38:26 -04001338 } else if (of_phy_is_fixed_link(slave_node)) {
David Rivshindfc0a6d2015-12-16 23:02:11 -05001339 /* In the case of a fixed PHY, the DT node associated
1340 * to the PHY is the Ethernet MAC DT node.
1341 */
Markus Brunner1f71e8c2015-11-03 22:09:51 +01001342 ret = of_phy_register_fixed_link(slave_node);
Johan Hovold23a09872016-11-17 17:40:04 +01001343 if (ret) {
1344 if (ret != -EPROBE_DEFER)
1345 dev_err(&pdev->dev, "failed to register fixed-link phy: %d\n", ret);
Nishka Dasgupta3cd6e202019-07-16 11:18:43 +05301346 goto err_node_put;
Johan Hovold23a09872016-11-17 17:40:04 +01001347 }
David Rivshin06cd6d62016-04-27 21:45:45 -04001348 slave_data->phy_node = of_node_get(slave_node);
David Rivshinf1eea5c2015-12-16 23:02:10 -05001349 } else if (parp) {
1350 u32 phyid;
1351 struct device_node *mdio_node;
1352 struct platform_device *mdio;
1353
1354 if (lenp != (sizeof(__be32) * 2)) {
1355 dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i);
1356 goto no_phy_slave;
1357 }
1358 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
1359 phyid = be32_to_cpup(parp+1);
1360 mdio = of_find_device_by_node(mdio_node);
1361 of_node_put(mdio_node);
1362 if (!mdio) {
1363 dev_err(&pdev->dev, "Missing mdio platform device\n");
Nishka Dasgupta3cd6e202019-07-16 11:18:43 +05301364 ret = -EINVAL;
1365 goto err_node_put;
David Rivshinf1eea5c2015-12-16 23:02:10 -05001366 }
1367 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
1368 PHY_ID_FMT, mdio->name, phyid);
Johan Hovold86e1d5a2016-11-17 17:39:59 +01001369 put_device(&mdio->dev);
David Rivshinf1eea5c2015-12-16 23:02:10 -05001370 } else {
David Rivshinae092b52016-04-27 21:38:26 -04001371 dev_err(&pdev->dev,
1372 "No slave[%d] phy_id, phy-handle, or fixed-link property\n",
1373 i);
Markus Brunner1f71e8c2015-11-03 22:09:51 +01001374 goto no_phy_slave;
1375 }
Andrew Lunn0c65b2b2019-11-04 02:40:33 +01001376 ret = of_get_phy_mode(slave_node, &slave_data->phy_if);
1377 if (ret) {
Mugunthan V N47276fc2014-10-24 18:51:33 +05301378 dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n",
1379 i);
Nishka Dasgupta3cd6e202019-07-16 11:18:43 +05301380 goto err_node_put;
Mugunthan V N47276fc2014-10-24 18:51:33 +05301381 }
1382
1383no_phy_slave:
Richard Cochran549985e2012-11-14 09:07:56 +00001384 mac_addr = of_get_mac_address(slave_node);
Petr Å tetiara51645f2019-05-06 23:27:04 +02001385 if (!IS_ERR(mac_addr)) {
Petr Å tetiar2d2924a2019-05-10 11:35:17 +02001386 ether_addr_copy(slave_data->mac_addr, mac_addr);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02001387 } else {
Mugunthan V Nb6745f62015-09-21 15:56:50 +05301388 ret = ti_cm_get_macid(&pdev->dev, i,
1389 slave_data->mac_addr);
1390 if (ret)
Nishka Dasgupta3cd6e202019-07-16 11:18:43 +05301391 goto err_node_put;
Markus Pargmann0ba517b2014-09-29 08:53:17 +02001392 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001393 if (data->dual_emac) {
Mugunthan V N91c41662013-04-15 07:31:28 +00001394 if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001395 &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301396 dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001397 slave_data->dual_emac_res_vlan = i+1;
George Cherian88c99ff2014-05-12 10:21:19 +05301398 dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n",
1399 slave_data->dual_emac_res_vlan, i);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001400 } else {
1401 slave_data->dual_emac_res_vlan = prop;
1402 }
1403 }
1404
Richard Cochran549985e2012-11-14 09:07:56 +00001405 i++;
Nishka Dasgupta3cd6e202019-07-16 11:18:43 +05301406 if (i == data->slaves) {
1407 ret = 0;
1408 goto err_node_put;
1409 }
Richard Cochran549985e2012-11-14 09:07:56 +00001410 }
1411
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001412 return 0;
Nishka Dasgupta3cd6e202019-07-16 11:18:43 +05301413
1414err_node_put:
1415 of_node_put(slave_node);
1416 return ret;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001417}
1418
Johan Hovolda4e32b02016-11-17 17:40:00 +01001419static void cpsw_remove_dt(struct platform_device *pdev)
1420{
Ivan Khoronzhukbfe59032019-06-12 00:49:03 +03001421 struct cpsw_common *cpsw = platform_get_drvdata(pdev);
Johan Hovold8cbcc462016-11-17 17:40:01 +01001422 struct cpsw_platform_data *data = &cpsw->data;
1423 struct device_node *node = pdev->dev.of_node;
1424 struct device_node *slave_node;
1425 int i = 0;
1426
1427 for_each_available_child_of_node(node, slave_node) {
1428 struct cpsw_slave_data *slave_data = &data->slave_data[i];
1429
Rob Herringbf5849f2018-12-05 13:50:32 -06001430 if (!of_node_name_eq(slave_node, "slave"))
Johan Hovold8cbcc462016-11-17 17:40:01 +01001431 continue;
1432
Johan Hovold3f650472016-11-28 19:24:55 +01001433 if (of_phy_is_fixed_link(slave_node))
1434 of_phy_deregister_fixed_link(slave_node);
Johan Hovold8cbcc462016-11-17 17:40:01 +01001435
1436 of_node_put(slave_data->phy_node);
1437
1438 i++;
Nishka Dasgupta3cd6e202019-07-16 11:18:43 +05301439 if (i == data->slaves) {
1440 of_node_put(slave_node);
Johan Hovold8cbcc462016-11-17 17:40:01 +01001441 break;
Nishka Dasgupta3cd6e202019-07-16 11:18:43 +05301442 }
Johan Hovold8cbcc462016-11-17 17:40:01 +01001443 }
1444
Johan Hovolda4e32b02016-11-17 17:40:00 +01001445 of_platform_depopulate(&pdev->dev);
1446}
1447
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001448static int cpsw_probe_dual_emac(struct cpsw_priv *priv)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001449{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001450 struct cpsw_common *cpsw = priv->cpsw;
1451 struct cpsw_platform_data *data = &cpsw->data;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001452 struct net_device *ndev;
1453 struct cpsw_priv *priv_sl2;
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001454 int ret = 0;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001455
Grygorii Strashkod183a942019-04-26 20:12:29 +03001456 ndev = devm_alloc_etherdev_mqs(cpsw->dev, sizeof(struct cpsw_priv),
1457 CPSW_MAX_QUEUES, CPSW_MAX_QUEUES);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001458 if (!ndev) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001459 dev_err(cpsw->dev, "cpsw: error allocating net_device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001460 return -ENOMEM;
1461 }
1462
1463 priv_sl2 = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001464 priv_sl2->cpsw = cpsw;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001465 priv_sl2->ndev = ndev;
1466 priv_sl2->dev = &ndev->dev;
1467 priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001468
1469 if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
1470 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
1471 ETH_ALEN);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001472 dev_info(cpsw->dev, "cpsw: Detected MACID = %pM\n",
1473 priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001474 } else {
Joe Perches6c1f0a12018-06-22 10:51:00 -07001475 eth_random_addr(priv_sl2->mac_addr);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001476 dev_info(cpsw->dev, "cpsw: Random MACID = %pM\n",
1477 priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001478 }
1479 memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
1480
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001481 priv_sl2->emac_port = 1;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001482 cpsw->slaves[1].ndev = ndev;
Ivan Khoronzhuk193736c2018-07-27 19:54:39 +03001483 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_RX;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001484
1485 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001486 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001487
1488 /* register the network device */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001489 SET_NETDEV_DEV(ndev, cpsw->dev);
Marek Vasut337d1722019-06-23 14:11:43 +02001490 ndev->dev.of_node = cpsw->slaves[1].data->slave_node;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001491 ret = register_netdev(ndev);
Grygorii Strashkod183a942019-04-26 20:12:29 +03001492 if (ret)
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001493 dev_err(cpsw->dev, "cpsw: error registering net device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001494
1495 return ret;
1496}
1497
Mugunthan V N7da11602015-08-12 15:22:53 +05301498static const struct of_device_id cpsw_of_mtable[] = {
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03001499 { .compatible = "ti,cpsw"},
1500 { .compatible = "ti,am335x-cpsw"},
1501 { .compatible = "ti,am4372-cpsw"},
1502 { .compatible = "ti,dra7-cpsw"},
Mugunthan V N7da11602015-08-12 15:22:53 +05301503 { /* sentinel */ },
1504};
1505MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
1506
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03001507static const struct soc_device_attribute cpsw_soc_devices[] = {
1508 { .family = "AM33xx", .revision = "ES1.0"},
1509 { /* sentinel */ }
1510};
1511
Bill Pemberton663e12e2012-12-03 09:23:45 -05001512static int cpsw_probe(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001513{
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001514 struct device *dev = &pdev->dev;
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03001515 struct clk *clk;
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00001516 struct cpsw_platform_data *data;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001517 struct net_device *ndev;
1518 struct cpsw_priv *priv;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301519 void __iomem *ss_regs;
YueHaibingc8ace622019-08-21 20:48:50 +08001520 struct resource *ss_res;
Mugunthan V N1d147cc2015-09-07 15:16:44 +05301521 struct gpio_descs *mode;
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03001522 const struct soc_device_attribute *soc;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001523 struct cpsw_common *cpsw;
Grygorii Strashkoe6a84622019-04-26 20:12:39 +03001524 int ret = 0, ch;
Felipe Balbi5087b912015-01-16 10:11:11 -06001525 int irq;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001526
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001527 cpsw = devm_kzalloc(dev, sizeof(struct cpsw_common), GFP_KERNEL);
Johan Hovold3420ea82016-11-17 17:40:03 +01001528 if (!cpsw)
1529 return -ENOMEM;
1530
Antoine Tenart2d683ea2019-08-21 16:41:23 +02001531 platform_set_drvdata(pdev, cpsw);
Grygorii Strashko51a95332019-11-20 00:19:16 +02001532 cpsw_slave_index = cpsw_slave_index_priv;
1533
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001534 cpsw->dev = dev;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001535
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001536 mode = devm_gpiod_get_array_optional(dev, "mode", GPIOD_OUT_LOW);
Mugunthan V N1d147cc2015-09-07 15:16:44 +05301537 if (IS_ERR(mode)) {
1538 ret = PTR_ERR(mode);
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001539 dev_err(dev, "gpio request failed, ret %d\n", ret);
Grygorii Strashkod183a942019-04-26 20:12:29 +03001540 return ret;
Mugunthan V N1d147cc2015-09-07 15:16:44 +05301541 }
1542
Grygorii Strashko83a84712019-04-26 20:12:36 +03001543 clk = devm_clk_get(dev, "fck");
1544 if (IS_ERR(clk)) {
YueHaibingac97a352019-04-30 01:55:24 +00001545 ret = PTR_ERR(clk);
Grygorii Strashko83a84712019-04-26 20:12:36 +03001546 dev_err(dev, "fck is not found %d\n", ret);
1547 return ret;
1548 }
1549 cpsw->bus_freq_mhz = clk_get_rate(clk) / 1000000;
1550
1551 ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1552 ss_regs = devm_ioremap_resource(dev, ss_res);
1553 if (IS_ERR(ss_regs))
1554 return PTR_ERR(ss_regs);
1555 cpsw->regs = ss_regs;
1556
YueHaibingc8ace622019-08-21 20:48:50 +08001557 cpsw->wr_regs = devm_platform_ioremap_resource(pdev, 1);
Grygorii Strashko83a84712019-04-26 20:12:36 +03001558 if (IS_ERR(cpsw->wr_regs))
1559 return PTR_ERR(cpsw->wr_regs);
1560
1561 /* RX IRQ */
1562 irq = platform_get_irq(pdev, 1);
1563 if (irq < 0)
1564 return irq;
1565 cpsw->irqs_table[0] = irq;
1566
1567 /* TX IRQ */
1568 irq = platform_get_irq(pdev, 2);
1569 if (irq < 0)
1570 return irq;
1571 cpsw->irqs_table[1] = irq;
1572
Grygorii Strashko84ea9c02020-04-23 17:20:22 +03001573 /* get misc irq*/
1574 irq = platform_get_irq(pdev, 3);
1575 if (irq <= 0)
1576 return irq;
1577 cpsw->misc_irq = irq;
1578
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00001579 /*
1580 * This may be required here for child devices.
1581 */
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001582 pm_runtime_enable(dev);
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00001583
Johan Hovolda4e32b02016-11-17 17:40:00 +01001584 /* Need to enable clocks with runtime PM api to access module
1585 * registers
1586 */
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001587 ret = pm_runtime_get_sync(dev);
Johan Hovolda4e32b02016-11-17 17:40:00 +01001588 if (ret < 0) {
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001589 pm_runtime_put_noidle(dev);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301590 goto clean_runtime_disable_ret;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001591 }
Johan Hovolda4e32b02016-11-17 17:40:00 +01001592
Johan Hovold23a09872016-11-17 17:40:04 +01001593 ret = cpsw_probe_dt(&cpsw->data, pdev);
1594 if (ret)
Johan Hovolda4e32b02016-11-17 17:40:00 +01001595 goto clean_dt_ret;
Johan Hovold23a09872016-11-17 17:40:04 +01001596
Grygorii Strashko83a84712019-04-26 20:12:36 +03001597 soc = soc_device_match(cpsw_soc_devices);
1598 if (soc)
1599 cpsw->quirk_irq = 1;
1600
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001601 data = &cpsw->data;
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001602 cpsw->slaves = devm_kcalloc(dev,
Kees Cooka86854d2018-06-12 14:07:58 -07001603 data->slaves, sizeof(struct cpsw_slave),
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301604 GFP_KERNEL);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001605 if (!cpsw->slaves) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301606 ret = -ENOMEM;
Johan Hovolda4e32b02016-11-17 17:40:00 +01001607 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001608 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001609
Grygorii Strashko83a84712019-04-26 20:12:36 +03001610 cpsw->rx_packet_max = max(rx_packet_max, CPSW_MAX_PACKET_SIZE);
Grygorii Strashkoc24eef22019-04-26 20:12:42 +03001611 cpsw->descs_pool_size = descs_pool_size;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001612
Grygorii Strashkoe6a84622019-04-26 20:12:39 +03001613 ret = cpsw_init_common(cpsw, ss_regs, ale_ageout,
1614 ss_res->start + CPSW2_BD_OFFSET,
1615 descs_pool_size);
1616 if (ret)
Johan Hovolda4e32b02016-11-17 17:40:00 +01001617 goto clean_dt_ret;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06001618
Grygorii Strashko83a84712019-04-26 20:12:36 +03001619 ch = cpsw->quirk_irq ? 0 : 7;
1620 cpsw->txv[0].ch = cpdma_chan_create(cpsw->dma, ch, cpsw_tx_handler, 0);
1621 if (IS_ERR(cpsw->txv[0].ch)) {
1622 dev_err(dev, "error initializing tx dma channel\n");
1623 ret = PTR_ERR(cpsw->txv[0].ch);
1624 goto clean_cpts;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001625 }
1626
Grygorii Strashko83a84712019-04-26 20:12:36 +03001627 cpsw->rxv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_rx_handler, 1);
1628 if (IS_ERR(cpsw->rxv[0].ch)) {
1629 dev_err(dev, "error initializing rx dma channel\n");
1630 ret = PTR_ERR(cpsw->rxv[0].ch);
1631 goto clean_cpts;
1632 }
1633 cpsw_split_res(cpsw);
1634
1635 /* setup netdev */
1636 ndev = devm_alloc_etherdev_mqs(dev, sizeof(struct cpsw_priv),
1637 CPSW_MAX_QUEUES, CPSW_MAX_QUEUES);
1638 if (!ndev) {
1639 dev_err(dev, "error allocating net_device\n");
1640 goto clean_cpts;
1641 }
1642
Grygorii Strashko83a84712019-04-26 20:12:36 +03001643 priv = netdev_priv(ndev);
1644 priv->cpsw = cpsw;
1645 priv->ndev = ndev;
1646 priv->dev = dev;
1647 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
1648 priv->emac_port = 0;
1649
1650 if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
1651 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
1652 dev_info(dev, "Detected MACID = %pM\n", priv->mac_addr);
1653 } else {
1654 eth_random_addr(priv->mac_addr);
1655 dev_info(dev, "Random MACID = %pM\n", priv->mac_addr);
1656 }
1657
1658 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1659
1660 cpsw->slaves[0].ndev = ndev;
1661
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -05001662 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_RX;
Keerthy070f9c62017-07-20 16:59:52 +05301663
1664 ndev->netdev_ops = &cpsw_netdev_ops;
1665 ndev->ethtool_ops = &cpsw_ethtool_ops;
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03001666 netif_napi_add(ndev, &cpsw->napi_rx,
1667 cpsw->quirk_irq ? cpsw_rx_poll : cpsw_rx_mq_poll,
1668 CPSW_POLL_WEIGHT);
1669 netif_tx_napi_add(ndev, &cpsw->napi_tx,
1670 cpsw->quirk_irq ? cpsw_tx_poll : cpsw_tx_mq_poll,
1671 CPSW_POLL_WEIGHT);
Keerthy070f9c62017-07-20 16:59:52 +05301672
1673 /* register the network device */
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001674 SET_NETDEV_DEV(ndev, dev);
Marek Vasut337d1722019-06-23 14:11:43 +02001675 ndev->dev.of_node = cpsw->slaves[0].data->slave_node;
Keerthy070f9c62017-07-20 16:59:52 +05301676 ret = register_netdev(ndev);
1677 if (ret) {
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001678 dev_err(dev, "error registering net device\n");
Keerthy070f9c62017-07-20 16:59:52 +05301679 ret = -ENODEV;
Grygorii Strashko83a84712019-04-26 20:12:36 +03001680 goto clean_cpts;
Keerthy070f9c62017-07-20 16:59:52 +05301681 }
1682
1683 if (cpsw->data.dual_emac) {
1684 ret = cpsw_probe_dual_emac(priv);
1685 if (ret) {
1686 cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
1687 goto clean_unregister_netdev_ret;
1688 }
1689 }
1690
Felipe Balbic03abd82015-01-16 10:11:12 -06001691 /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
1692 * MISC IRQs which are always kept disabled with this driver so
1693 * we will not request them.
1694 *
1695 * If anyone wants to implement support for those, make sure to
1696 * first request and append them to irqs_table array.
1697 */
Grygorii Strashko83a84712019-04-26 20:12:36 +03001698 ret = devm_request_irq(dev, cpsw->irqs_table[0], cpsw_rx_interrupt,
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001699 0, dev_name(dev), cpsw);
Felipe Balbi5087b912015-01-16 10:11:11 -06001700 if (ret < 0) {
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001701 dev_err(dev, "error attaching irq (%d)\n", ret);
Grygorii Strashko83a84712019-04-26 20:12:36 +03001702 goto clean_unregister_netdev_ret;
Felipe Balbi5087b912015-01-16 10:11:11 -06001703 }
1704
Felipe Balbi5087b912015-01-16 10:11:11 -06001705
Grygorii Strashko83a84712019-04-26 20:12:36 +03001706 ret = devm_request_irq(dev, cpsw->irqs_table[1], cpsw_tx_interrupt,
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001707 0, dev_name(&pdev->dev), cpsw);
Felipe Balbi5087b912015-01-16 10:11:11 -06001708 if (ret < 0) {
Grygorii Strashkoc8fb5662019-04-26 20:12:27 +03001709 dev_err(dev, "error attaching irq (%d)\n", ret);
Grygorii Strashko83a84712019-04-26 20:12:36 +03001710 goto clean_unregister_netdev_ret;
Felipe Balbi5087b912015-01-16 10:11:11 -06001711 }
Daniel Mackc2b32e52014-09-04 09:00:23 +02001712
Grygorii Strashko84ea9c02020-04-23 17:20:22 +03001713 if (!cpsw->cpts)
1714 goto skip_cpts;
1715
1716 ret = devm_request_irq(&pdev->dev, cpsw->misc_irq, cpsw_misc_interrupt,
1717 0, dev_name(&pdev->dev), cpsw);
1718 if (ret < 0) {
1719 dev_err(dev, "error attaching misc irq (%d)\n", ret);
1720 goto clean_unregister_netdev_ret;
1721 }
1722
1723 /* Enable misc CPTS evnt_pend IRQ */
1724 cpts_set_irqpoll(cpsw->cpts, false);
1725 writel(0x10, &cpsw->wr_regs->misc_en);
1726
1727skip_cpts:
Grygorii Strashko90225bf2017-01-06 14:07:33 -06001728 cpsw_notice(priv, probe,
1729 "initialized device (regs %pa, irq %d, pool size %d)\n",
Grygorii Strashko83a84712019-04-26 20:12:36 +03001730 &ss_res->start, cpsw->irqs_table[0], descs_pool_size);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001731
Johan Hovoldc46ab7e2016-11-17 17:39:58 +01001732 pm_runtime_put(&pdev->dev);
1733
Mugunthan V Ndf828592012-03-18 20:17:54 +00001734 return 0;
1735
Johan Hovolda7fe9d42016-11-17 17:40:02 +01001736clean_unregister_netdev_ret:
1737 unregister_netdev(ndev);
Grygorii Strashko83a84712019-04-26 20:12:36 +03001738clean_cpts:
1739 cpts_release(cpsw->cpts);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001740 cpdma_ctlr_destroy(cpsw->dma);
Johan Hovolda4e32b02016-11-17 17:40:00 +01001741clean_dt_ret:
1742 cpsw_remove_dt(pdev);
Johan Hovoldc46ab7e2016-11-17 17:39:58 +01001743 pm_runtime_put_sync(&pdev->dev);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301744clean_runtime_disable_ret:
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001745 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001746 return ret;
1747}
1748
Bill Pemberton663e12e2012-12-03 09:23:45 -05001749static int cpsw_remove(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001750{
Ivan Khoronzhukbfe59032019-06-12 00:49:03 +03001751 struct cpsw_common *cpsw = platform_get_drvdata(pdev);
1752 int i, ret;
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03001753
1754 ret = pm_runtime_get_sync(&pdev->dev);
1755 if (ret < 0) {
1756 pm_runtime_put_noidle(&pdev->dev);
1757 return ret;
1758 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001759
Ivan Khoronzhukbfe59032019-06-12 00:49:03 +03001760 for (i = 0; i < cpsw->data.slaves; i++)
1761 if (cpsw->slaves[i].ndev)
1762 unregister_netdev(cpsw->slaves[i].ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001763
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06001764 cpts_release(cpsw->cpts);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001765 cpdma_ctlr_destroy(cpsw->dma);
Johan Hovolda4e32b02016-11-17 17:40:00 +01001766 cpsw_remove_dt(pdev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03001767 pm_runtime_put_sync(&pdev->dev);
1768 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001769 return 0;
1770}
1771
Grygorii Strashko8963a502015-02-27 13:19:45 +02001772#ifdef CONFIG_PM_SLEEP
Mugunthan V Ndf828592012-03-18 20:17:54 +00001773static int cpsw_suspend(struct device *dev)
1774{
Keerthy2f9b0d92019-06-24 10:46:19 +05301775 struct cpsw_common *cpsw = dev_get_drvdata(dev);
1776 int i;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001777
Grygorii Strashko4c64b832020-05-22 20:09:28 +03001778 rtnl_lock();
1779
Keerthy2f9b0d92019-06-24 10:46:19 +05301780 for (i = 0; i < cpsw->data.slaves; i++)
1781 if (cpsw->slaves[i].ndev)
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001782 if (netif_running(cpsw->slaves[i].ndev))
1783 cpsw_ndo_stop(cpsw->slaves[i].ndev);
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001784
Grygorii Strashko4c64b832020-05-22 20:09:28 +03001785 rtnl_unlock();
1786
Mugunthan V N739683b2013-06-06 23:45:14 +05301787 /* Select sleep pin state */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001788 pinctrl_pm_select_sleep_state(dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05301789
Mugunthan V Ndf828592012-03-18 20:17:54 +00001790 return 0;
1791}
1792
1793static int cpsw_resume(struct device *dev)
1794{
Keerthy2f9b0d92019-06-24 10:46:19 +05301795 struct cpsw_common *cpsw = dev_get_drvdata(dev);
1796 int i;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001797
Mugunthan V N739683b2013-06-06 23:45:14 +05301798 /* Select default pin state */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001799 pinctrl_pm_select_default_state(dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05301800
Grygorii Strashko4ccfd632016-11-29 16:27:03 -06001801 /* shut up ASSERT_RTNL() warning in netif_set_real_num_tx/rx_queues */
1802 rtnl_lock();
Mugunthan V N618073e2014-09-11 22:52:38 +05301803
Keerthy2f9b0d92019-06-24 10:46:19 +05301804 for (i = 0; i < cpsw->data.slaves; i++)
1805 if (cpsw->slaves[i].ndev)
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001806 if (netif_running(cpsw->slaves[i].ndev))
1807 cpsw_ndo_open(cpsw->slaves[i].ndev);
Keerthy2f9b0d92019-06-24 10:46:19 +05301808
Grygorii Strashko4ccfd632016-11-29 16:27:03 -06001809 rtnl_unlock();
1810
Mugunthan V Ndf828592012-03-18 20:17:54 +00001811 return 0;
1812}
Grygorii Strashko8963a502015-02-27 13:19:45 +02001813#endif
Mugunthan V Ndf828592012-03-18 20:17:54 +00001814
Grygorii Strashko8963a502015-02-27 13:19:45 +02001815static SIMPLE_DEV_PM_OPS(cpsw_pm_ops, cpsw_suspend, cpsw_resume);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001816
1817static struct platform_driver cpsw_driver = {
1818 .driver = {
1819 .name = "cpsw",
Mugunthan V Ndf828592012-03-18 20:17:54 +00001820 .pm = &cpsw_pm_ops,
Sachin Kamat1e5c76d2013-09-30 09:55:12 +05301821 .of_match_table = cpsw_of_mtable,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001822 },
1823 .probe = cpsw_probe,
Bill Pemberton663e12e2012-12-03 09:23:45 -05001824 .remove = cpsw_remove,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001825};
1826
Grygorii Strashko6fb3b6b52015-10-23 14:41:12 +03001827module_platform_driver(cpsw_driver);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001828
1829MODULE_LICENSE("GPL");
1830MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
1831MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
1832MODULE_DESCRIPTION("TI CPSW Ethernet driver");