• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Texas Instruments Ethernet Switch Driver
4  *
5  * Copyright (C) 2019 Texas Instruments
6  */
7 
8 #include <linux/io.h>
9 #include <linux/clk.h>
10 #include <linux/timer.h>
11 #include <linux/module.h>
12 #include <linux/irqreturn.h>
13 #include <linux/interrupt.h>
14 #include <linux/if_ether.h>
15 #include <linux/etherdevice.h>
16 #include <linux/net_tstamp.h>
17 #include <linux/phy.h>
18 #include <linux/phy/phy.h>
19 #include <linux/delay.h>
20 #include <linux/pinctrl/consumer.h>
21 #include <linux/pm_runtime.h>
22 #include <linux/gpio/consumer.h>
23 #include <linux/of.h>
24 #include <linux/of_mdio.h>
25 #include <linux/of_net.h>
26 #include <linux/of_device.h>
27 #include <linux/if_vlan.h>
28 #include <linux/kmemleak.h>
29 #include <linux/sys_soc.h>
30 
31 #include <net/switchdev.h>
32 #include <net/page_pool.h>
33 #include <net/pkt_cls.h>
34 #include <net/devlink.h>
35 
36 #include "cpsw.h"
37 #include "cpsw_ale.h"
38 #include "cpsw_priv.h"
39 #include "cpsw_sl.h"
40 #include "cpsw_switchdev.h"
41 #include "cpts.h"
42 #include "davinci_cpdma.h"
43 
44 #include <net/pkt_sched.h>
45 
46 static int debug_level;
47 static int ale_ageout = CPSW_ALE_AGEOUT_DEFAULT;
48 static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
49 static int descs_pool_size = CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT;
50 
51 struct cpsw_devlink {
52 	struct cpsw_common *cpsw;
53 };
54 
55 enum cpsw_devlink_param_id {
56 	CPSW_DEVLINK_PARAM_ID_BASE = DEVLINK_PARAM_GENERIC_ID_MAX,
57 	CPSW_DL_PARAM_SWITCH_MODE,
58 	CPSW_DL_PARAM_ALE_BYPASS,
59 };
60 
61 /* struct cpsw_common is not needed, kept here for compatibility
62  * reasons witrh the old driver
63  */
cpsw_slave_index_priv(struct cpsw_common * cpsw,struct cpsw_priv * priv)64 static int cpsw_slave_index_priv(struct cpsw_common *cpsw,
65 				 struct cpsw_priv *priv)
66 {
67 	if (priv->emac_port == HOST_PORT_NUM)
68 		return -1;
69 
70 	return priv->emac_port - 1;
71 }
72 
cpsw_is_switch_en(struct cpsw_common * cpsw)73 static bool cpsw_is_switch_en(struct cpsw_common *cpsw)
74 {
75 	return !cpsw->data.dual_emac;
76 }
77 
cpsw_set_promiscious(struct net_device * ndev,bool enable)78 static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
79 {
80 	struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
81 	bool enable_uni = false;
82 	int i;
83 
84 	if (cpsw_is_switch_en(cpsw))
85 		return;
86 
87 	/* Enabling promiscuous mode for one interface will be
88 	 * common for both the interface as the interface shares
89 	 * the same hardware resource.
90 	 */
91 	for (i = 0; i < cpsw->data.slaves; i++)
92 		if (cpsw->slaves[i].ndev &&
93 		    (cpsw->slaves[i].ndev->flags & IFF_PROMISC))
94 			enable_uni = true;
95 
96 	if (!enable && enable_uni) {
97 		enable = enable_uni;
98 		dev_dbg(cpsw->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
99 	}
100 
101 	if (enable) {
102 		/* Enable unknown unicast, reg/unreg mcast */
103 		cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM,
104 				     ALE_P0_UNI_FLOOD, 1);
105 
106 		dev_dbg(cpsw->dev, "promiscuity enabled\n");
107 	} else {
108 		/* Disable unknown unicast */
109 		cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM,
110 				     ALE_P0_UNI_FLOOD, 0);
111 		dev_dbg(cpsw->dev, "promiscuity disabled\n");
112 	}
113 }
114 
115 /**
116  * cpsw_set_mc - adds multicast entry to the table if it's not added or deletes
117  * if it's not deleted
118  * @ndev: device to sync
119  * @addr: address to be added or deleted
120  * @vid: vlan id, if vid < 0 set/unset address for real device
121  * @add: add address if the flag is set or remove otherwise
122  */
cpsw_set_mc(struct net_device * ndev,const u8 * addr,int vid,int add)123 static int cpsw_set_mc(struct net_device *ndev, const u8 *addr,
124 		       int vid, int add)
125 {
126 	struct cpsw_priv *priv = netdev_priv(ndev);
127 	struct cpsw_common *cpsw = priv->cpsw;
128 	int mask, flags, ret, slave_no;
129 
130 	slave_no = cpsw_slave_index(cpsw, priv);
131 	if (vid < 0)
132 		vid = cpsw->slaves[slave_no].port_vlan;
133 
134 	mask =  ALE_PORT_HOST;
135 	flags = vid ? ALE_VLAN : 0;
136 
137 	if (add)
138 		ret = cpsw_ale_add_mcast(cpsw->ale, addr, mask, flags, vid, 0);
139 	else
140 		ret = cpsw_ale_del_mcast(cpsw->ale, addr, 0, flags, vid);
141 
142 	return ret;
143 }
144 
cpsw_update_vlan_mc(struct net_device * vdev,int vid,void * ctx)145 static int cpsw_update_vlan_mc(struct net_device *vdev, int vid, void *ctx)
146 {
147 	struct addr_sync_ctx *sync_ctx = ctx;
148 	struct netdev_hw_addr *ha;
149 	int found = 0, ret = 0;
150 
151 	if (!vdev || !(vdev->flags & IFF_UP))
152 		return 0;
153 
154 	/* vlan address is relevant if its sync_cnt != 0 */
155 	netdev_for_each_mc_addr(ha, vdev) {
156 		if (ether_addr_equal(ha->addr, sync_ctx->addr)) {
157 			found = ha->sync_cnt;
158 			break;
159 		}
160 	}
161 
162 	if (found)
163 		sync_ctx->consumed++;
164 
165 	if (sync_ctx->flush) {
166 		if (!found)
167 			cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 0);
168 		return 0;
169 	}
170 
171 	if (found)
172 		ret = cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 1);
173 
174 	return ret;
175 }
176 
cpsw_add_mc_addr(struct net_device * ndev,const u8 * addr,int num)177 static int cpsw_add_mc_addr(struct net_device *ndev, const u8 *addr, int num)
178 {
179 	struct addr_sync_ctx sync_ctx;
180 	int ret;
181 
182 	sync_ctx.consumed = 0;
183 	sync_ctx.addr = addr;
184 	sync_ctx.ndev = ndev;
185 	sync_ctx.flush = 0;
186 
187 	ret = vlan_for_each(ndev, cpsw_update_vlan_mc, &sync_ctx);
188 	if (sync_ctx.consumed < num && !ret)
189 		ret = cpsw_set_mc(ndev, addr, -1, 1);
190 
191 	return ret;
192 }
193 
cpsw_del_mc_addr(struct net_device * ndev,const u8 * addr,int num)194 static int cpsw_del_mc_addr(struct net_device *ndev, const u8 *addr, int num)
195 {
196 	struct addr_sync_ctx sync_ctx;
197 
198 	sync_ctx.consumed = 0;
199 	sync_ctx.addr = addr;
200 	sync_ctx.ndev = ndev;
201 	sync_ctx.flush = 1;
202 
203 	vlan_for_each(ndev, cpsw_update_vlan_mc, &sync_ctx);
204 	if (sync_ctx.consumed == num)
205 		cpsw_set_mc(ndev, addr, -1, 0);
206 
207 	return 0;
208 }
209 
cpsw_purge_vlan_mc(struct net_device * vdev,int vid,void * ctx)210 static int cpsw_purge_vlan_mc(struct net_device *vdev, int vid, void *ctx)
211 {
212 	struct addr_sync_ctx *sync_ctx = ctx;
213 	struct netdev_hw_addr *ha;
214 	int found = 0;
215 
216 	if (!vdev || !(vdev->flags & IFF_UP))
217 		return 0;
218 
219 	/* vlan address is relevant if its sync_cnt != 0 */
220 	netdev_for_each_mc_addr(ha, vdev) {
221 		if (ether_addr_equal(ha->addr, sync_ctx->addr)) {
222 			found = ha->sync_cnt;
223 			break;
224 		}
225 	}
226 
227 	if (!found)
228 		return 0;
229 
230 	sync_ctx->consumed++;
231 	cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 0);
232 	return 0;
233 }
234 
cpsw_purge_all_mc(struct net_device * ndev,const u8 * addr,int num)235 static int cpsw_purge_all_mc(struct net_device *ndev, const u8 *addr, int num)
236 {
237 	struct addr_sync_ctx sync_ctx;
238 
239 	sync_ctx.addr = addr;
240 	sync_ctx.ndev = ndev;
241 	sync_ctx.consumed = 0;
242 
243 	vlan_for_each(ndev, cpsw_purge_vlan_mc, &sync_ctx);
244 	if (sync_ctx.consumed < num)
245 		cpsw_set_mc(ndev, addr, -1, 0);
246 
247 	return 0;
248 }
249 
cpsw_ndo_set_rx_mode(struct net_device * ndev)250 static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
251 {
252 	struct cpsw_priv *priv = netdev_priv(ndev);
253 	struct cpsw_common *cpsw = priv->cpsw;
254 
255 	if (ndev->flags & IFF_PROMISC) {
256 		/* Enable promiscuous mode */
257 		cpsw_set_promiscious(ndev, true);
258 		cpsw_ale_set_allmulti(cpsw->ale, IFF_ALLMULTI, priv->emac_port);
259 		return;
260 	}
261 
262 	/* Disable promiscuous mode */
263 	cpsw_set_promiscious(ndev, false);
264 
265 	/* Restore allmulti on vlans if necessary */
266 	cpsw_ale_set_allmulti(cpsw->ale,
267 			      ndev->flags & IFF_ALLMULTI, priv->emac_port);
268 
269 	/* add/remove mcast address either for real netdev or for vlan */
270 	__hw_addr_ref_sync_dev(&ndev->mc, ndev, cpsw_add_mc_addr,
271 			       cpsw_del_mc_addr);
272 }
273 
cpsw_rxbuf_total_len(unsigned int len)274 static unsigned int cpsw_rxbuf_total_len(unsigned int len)
275 {
276 	len += CPSW_HEADROOM;
277 	len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
278 
279 	return SKB_DATA_ALIGN(len);
280 }
281 
cpsw_rx_handler(void * token,int len,int status)282 static void cpsw_rx_handler(void *token, int len, int status)
283 {
284 	struct page *new_page, *page = token;
285 	void *pa = page_address(page);
286 	int headroom = CPSW_HEADROOM_NA;
287 	struct cpsw_meta_xdp *xmeta;
288 	struct cpsw_common *cpsw;
289 	struct net_device *ndev;
290 	int port, ch, pkt_size;
291 	struct cpsw_priv *priv;
292 	struct page_pool *pool;
293 	struct sk_buff *skb;
294 	struct xdp_buff xdp;
295 	int ret = 0;
296 	dma_addr_t dma;
297 
298 	xmeta = pa + CPSW_XMETA_OFFSET;
299 	cpsw = ndev_to_cpsw(xmeta->ndev);
300 	ndev = xmeta->ndev;
301 	pkt_size = cpsw->rx_packet_max;
302 	ch = xmeta->ch;
303 
304 	if (status >= 0) {
305 		port = CPDMA_RX_SOURCE_PORT(status);
306 		if (port)
307 			ndev = cpsw->slaves[--port].ndev;
308 	}
309 
310 	priv = netdev_priv(ndev);
311 	pool = cpsw->page_pool[ch];
312 
313 	if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
314 		/* In dual emac mode check for all interfaces */
315 		if (cpsw->usage_count && status >= 0) {
316 			/* The packet received is for the interface which
317 			 * is already down and the other interface is up
318 			 * and running, instead of freeing which results
319 			 * in reducing of the number of rx descriptor in
320 			 * DMA engine, requeue page back to cpdma.
321 			 */
322 			new_page = page;
323 			goto requeue;
324 		}
325 
326 		/* the interface is going down, pages are purged */
327 		page_pool_recycle_direct(pool, page);
328 		return;
329 	}
330 
331 	new_page = page_pool_dev_alloc_pages(pool);
332 	if (unlikely(!new_page)) {
333 		new_page = page;
334 		ndev->stats.rx_dropped++;
335 		goto requeue;
336 	}
337 
338 	if (priv->xdp_prog) {
339 		int size = len;
340 
341 		xdp_init_buff(&xdp, PAGE_SIZE, &priv->xdp_rxq[ch]);
342 		if (status & CPDMA_RX_VLAN_ENCAP) {
343 			headroom += CPSW_RX_VLAN_ENCAP_HDR_SIZE;
344 			size -= CPSW_RX_VLAN_ENCAP_HDR_SIZE;
345 		}
346 
347 		xdp_prepare_buff(&xdp, pa, headroom, size, false);
348 
349 		ret = cpsw_run_xdp(priv, ch, &xdp, page, priv->emac_port, &len);
350 		if (ret != CPSW_XDP_PASS)
351 			goto requeue;
352 
353 		headroom = xdp.data - xdp.data_hard_start;
354 
355 		/* XDP prog can modify vlan tag, so can't use encap header */
356 		status &= ~CPDMA_RX_VLAN_ENCAP;
357 	}
358 
359 	/* pass skb to netstack if no XDP prog or returned XDP_PASS */
360 	skb = build_skb(pa, cpsw_rxbuf_total_len(pkt_size));
361 	if (!skb) {
362 		ndev->stats.rx_dropped++;
363 		page_pool_recycle_direct(pool, page);
364 		goto requeue;
365 	}
366 
367 	skb->offload_fwd_mark = priv->offload_fwd_mark;
368 	skb_reserve(skb, headroom);
369 	skb_put(skb, len);
370 	skb->dev = ndev;
371 	if (status & CPDMA_RX_VLAN_ENCAP)
372 		cpsw_rx_vlan_encap(skb);
373 	if (priv->rx_ts_enabled)
374 		cpts_rx_timestamp(cpsw->cpts, skb);
375 	skb->protocol = eth_type_trans(skb, ndev);
376 
377 	/* mark skb for recycling */
378 	skb_mark_for_recycle(skb);
379 	netif_receive_skb(skb);
380 
381 	ndev->stats.rx_bytes += len;
382 	ndev->stats.rx_packets++;
383 
384 requeue:
385 	xmeta = page_address(new_page) + CPSW_XMETA_OFFSET;
386 	xmeta->ndev = ndev;
387 	xmeta->ch = ch;
388 
389 	dma = page_pool_get_dma_addr(new_page) + CPSW_HEADROOM_NA;
390 	ret = cpdma_chan_submit_mapped(cpsw->rxv[ch].ch, new_page, dma,
391 				       pkt_size, 0);
392 	if (ret < 0) {
393 		WARN_ON(ret == -ENOMEM);
394 		page_pool_recycle_direct(pool, new_page);
395 	}
396 }
397 
cpsw_add_vlan_ale_entry(struct cpsw_priv * priv,unsigned short vid)398 static int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
399 				   unsigned short vid)
400 {
401 	struct cpsw_common *cpsw = priv->cpsw;
402 	int unreg_mcast_mask = 0;
403 	int mcast_mask;
404 	u32 port_mask;
405 	int ret;
406 
407 	port_mask = (1 << priv->emac_port) | ALE_PORT_HOST;
408 
409 	mcast_mask = ALE_PORT_HOST;
410 	if (priv->ndev->flags & IFF_ALLMULTI)
411 		unreg_mcast_mask = mcast_mask;
412 
413 	ret = cpsw_ale_add_vlan(cpsw->ale, vid, port_mask, 0, port_mask,
414 				unreg_mcast_mask);
415 	if (ret != 0)
416 		return ret;
417 
418 	ret = cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr,
419 				 HOST_PORT_NUM, ALE_VLAN, vid);
420 	if (ret != 0)
421 		goto clean_vid;
422 
423 	ret = cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
424 				 mcast_mask, ALE_VLAN, vid, 0);
425 	if (ret != 0)
426 		goto clean_vlan_ucast;
427 	return 0;
428 
429 clean_vlan_ucast:
430 	cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr,
431 			   HOST_PORT_NUM, ALE_VLAN, vid);
432 clean_vid:
433 	cpsw_ale_del_vlan(cpsw->ale, vid, 0);
434 	return ret;
435 }
436 
cpsw_ndo_vlan_rx_add_vid(struct net_device * ndev,__be16 proto,u16 vid)437 static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
438 				    __be16 proto, u16 vid)
439 {
440 	struct cpsw_priv *priv = netdev_priv(ndev);
441 	struct cpsw_common *cpsw = priv->cpsw;
442 	int ret, i;
443 
444 	if (cpsw_is_switch_en(cpsw)) {
445 		dev_dbg(cpsw->dev, ".ndo_vlan_rx_add_vid called in switch mode\n");
446 		return 0;
447 	}
448 
449 	if (vid == cpsw->data.default_vlan)
450 		return 0;
451 
452 	ret = pm_runtime_get_sync(cpsw->dev);
453 	if (ret < 0) {
454 		pm_runtime_put_noidle(cpsw->dev);
455 		return ret;
456 	}
457 
458 	/* In dual EMAC, reserved VLAN id should not be used for
459 	 * creating VLAN interfaces as this can break the dual
460 	 * EMAC port separation
461 	 */
462 	for (i = 0; i < cpsw->data.slaves; i++) {
463 		if (cpsw->slaves[i].ndev &&
464 		    vid == cpsw->slaves[i].port_vlan) {
465 			ret = -EINVAL;
466 			goto err;
467 		}
468 	}
469 
470 	dev_dbg(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
471 	ret = cpsw_add_vlan_ale_entry(priv, vid);
472 err:
473 	pm_runtime_put(cpsw->dev);
474 	return ret;
475 }
476 
cpsw_restore_vlans(struct net_device * vdev,int vid,void * arg)477 static int cpsw_restore_vlans(struct net_device *vdev, int vid, void *arg)
478 {
479 	struct cpsw_priv *priv = arg;
480 
481 	if (!vdev || !vid)
482 		return 0;
483 
484 	cpsw_ndo_vlan_rx_add_vid(priv->ndev, 0, vid);
485 	return 0;
486 }
487 
488 /* restore resources after port reset */
cpsw_restore(struct cpsw_priv * priv)489 static void cpsw_restore(struct cpsw_priv *priv)
490 {
491 	struct cpsw_common *cpsw = priv->cpsw;
492 
493 	/* restore vlan configurations */
494 	vlan_for_each(priv->ndev, cpsw_restore_vlans, priv);
495 
496 	/* restore MQPRIO offload */
497 	cpsw_mqprio_resume(&cpsw->slaves[priv->emac_port - 1], priv);
498 
499 	/* restore CBS offload */
500 	cpsw_cbs_resume(&cpsw->slaves[priv->emac_port - 1], priv);
501 }
502 
cpsw_init_stp_ale_entry(struct cpsw_common * cpsw)503 static void cpsw_init_stp_ale_entry(struct cpsw_common *cpsw)
504 {
505 	static const char stpa[] = {0x01, 0x80, 0xc2, 0x0, 0x0, 0x0};
506 
507 	cpsw_ale_add_mcast(cpsw->ale, stpa,
508 			   ALE_PORT_HOST, ALE_SUPER, 0,
509 			   ALE_MCAST_BLOCK_LEARN_FWD);
510 }
511 
cpsw_init_host_port_switch(struct cpsw_common * cpsw)512 static void cpsw_init_host_port_switch(struct cpsw_common *cpsw)
513 {
514 	int vlan = cpsw->data.default_vlan;
515 
516 	writel(CPSW_FIFO_NORMAL_MODE, &cpsw->host_port_regs->tx_in_ctl);
517 
518 	writel(vlan, &cpsw->host_port_regs->port_vlan);
519 
520 	cpsw_ale_add_vlan(cpsw->ale, vlan, ALE_ALL_PORTS,
521 			  ALE_ALL_PORTS, ALE_ALL_PORTS,
522 			  ALE_PORT_1 | ALE_PORT_2);
523 
524 	cpsw_init_stp_ale_entry(cpsw);
525 
526 	cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_P0_UNI_FLOOD, 1);
527 	dev_dbg(cpsw->dev, "Set P0_UNI_FLOOD\n");
528 	cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_PORT_NOLEARN, 0);
529 }
530 
cpsw_init_host_port_dual_mac(struct cpsw_common * cpsw)531 static void cpsw_init_host_port_dual_mac(struct cpsw_common *cpsw)
532 {
533 	int vlan = cpsw->data.default_vlan;
534 
535 	writel(CPSW_FIFO_DUAL_MAC_MODE, &cpsw->host_port_regs->tx_in_ctl);
536 
537 	cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_P0_UNI_FLOOD, 0);
538 	dev_dbg(cpsw->dev, "unset P0_UNI_FLOOD\n");
539 
540 	writel(vlan, &cpsw->host_port_regs->port_vlan);
541 
542 	cpsw_ale_add_vlan(cpsw->ale, vlan, ALE_ALL_PORTS, ALE_ALL_PORTS, 0, 0);
543 	/* learning make no sense in dual_mac mode */
544 	cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_PORT_NOLEARN, 1);
545 }
546 
cpsw_init_host_port(struct cpsw_priv * priv)547 static void cpsw_init_host_port(struct cpsw_priv *priv)
548 {
549 	struct cpsw_common *cpsw = priv->cpsw;
550 	u32 control_reg;
551 
552 	/* soft reset the controller and initialize ale */
553 	soft_reset("cpsw", &cpsw->regs->soft_reset);
554 	cpsw_ale_start(cpsw->ale);
555 
556 	/* switch to vlan unaware mode */
557 	cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_VLAN_AWARE,
558 			     CPSW_ALE_VLAN_AWARE);
559 	control_reg = readl(&cpsw->regs->control);
560 	control_reg |= CPSW_VLAN_AWARE | CPSW_RX_VLAN_ENCAP;
561 	writel(control_reg, &cpsw->regs->control);
562 
563 	/* setup host port priority mapping */
564 	writel_relaxed(CPDMA_TX_PRIORITY_MAP,
565 		       &cpsw->host_port_regs->cpdma_tx_pri_map);
566 	writel_relaxed(0, &cpsw->host_port_regs->cpdma_rx_chan_map);
567 
568 	/* disable priority elevation */
569 	writel_relaxed(0, &cpsw->regs->ptype);
570 
571 	/* enable statistics collection only on all ports */
572 	writel_relaxed(0x7, &cpsw->regs->stat_port_en);
573 
574 	/* Enable internal fifo flow control */
575 	writel(0x7, &cpsw->regs->flow_control);
576 
577 	if (cpsw_is_switch_en(cpsw))
578 		cpsw_init_host_port_switch(cpsw);
579 	else
580 		cpsw_init_host_port_dual_mac(cpsw);
581 
582 	cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM,
583 			     ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
584 }
585 
cpsw_port_add_dual_emac_def_ale_entries(struct cpsw_priv * priv,struct cpsw_slave * slave)586 static void cpsw_port_add_dual_emac_def_ale_entries(struct cpsw_priv *priv,
587 						    struct cpsw_slave *slave)
588 {
589 	u32 port_mask = 1 << priv->emac_port | ALE_PORT_HOST;
590 	struct cpsw_common *cpsw = priv->cpsw;
591 	u32 reg;
592 
593 	reg = (cpsw->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
594 	       CPSW2_PORT_VLAN;
595 	slave_write(slave, slave->port_vlan, reg);
596 
597 	cpsw_ale_add_vlan(cpsw->ale, slave->port_vlan, port_mask,
598 			  port_mask, port_mask, 0);
599 	cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
600 			   ALE_PORT_HOST, ALE_VLAN, slave->port_vlan,
601 			   ALE_MCAST_FWD);
602 	cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr,
603 			   HOST_PORT_NUM, ALE_VLAN |
604 			   ALE_SECURE, slave->port_vlan);
605 	cpsw_ale_control_set(cpsw->ale, priv->emac_port,
606 			     ALE_PORT_DROP_UNKNOWN_VLAN, 1);
607 	/* learning make no sense in dual_mac mode */
608 	cpsw_ale_control_set(cpsw->ale, priv->emac_port,
609 			     ALE_PORT_NOLEARN, 1);
610 }
611 
cpsw_port_add_switch_def_ale_entries(struct cpsw_priv * priv,struct cpsw_slave * slave)612 static void cpsw_port_add_switch_def_ale_entries(struct cpsw_priv *priv,
613 						 struct cpsw_slave *slave)
614 {
615 	u32 port_mask = 1 << priv->emac_port | ALE_PORT_HOST;
616 	struct cpsw_common *cpsw = priv->cpsw;
617 	u32 reg;
618 
619 	cpsw_ale_control_set(cpsw->ale, priv->emac_port,
620 			     ALE_PORT_DROP_UNKNOWN_VLAN, 0);
621 	cpsw_ale_control_set(cpsw->ale, priv->emac_port,
622 			     ALE_PORT_NOLEARN, 0);
623 	/* disabling SA_UPDATE required to make stp work, without this setting
624 	 * Host MAC addresses will jump between ports.
625 	 * As per TRM MAC address can be defined as unicast supervisory (super)
626 	 * by setting both (ALE_BLOCKED | ALE_SECURE) which should prevent
627 	 * SA_UPDATE, but HW seems works incorrectly and setting ALE_SECURE
628 	 * causes STP packets to be dropped due to ingress filter
629 	 *	if (source address found) and (secure) and
630 	 *	   (receive port number != port_number))
631 	 *	   then discard the packet
632 	 */
633 	cpsw_ale_control_set(cpsw->ale, priv->emac_port,
634 			     ALE_PORT_NO_SA_UPDATE, 1);
635 
636 	cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
637 			   port_mask, ALE_VLAN, slave->port_vlan,
638 			   ALE_MCAST_FWD_2);
639 	cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr,
640 			   HOST_PORT_NUM, ALE_VLAN, slave->port_vlan);
641 
642 	reg = (cpsw->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
643 	       CPSW2_PORT_VLAN;
644 	slave_write(slave, slave->port_vlan, reg);
645 }
646 
cpsw_adjust_link(struct net_device * ndev)647 static void cpsw_adjust_link(struct net_device *ndev)
648 {
649 	struct cpsw_priv *priv = netdev_priv(ndev);
650 	struct cpsw_common *cpsw = priv->cpsw;
651 	struct cpsw_slave *slave;
652 	struct phy_device *phy;
653 	u32 mac_control = 0;
654 
655 	slave = &cpsw->slaves[priv->emac_port - 1];
656 	phy = slave->phy;
657 
658 	if (!phy)
659 		return;
660 
661 	if (phy->link) {
662 		mac_control = CPSW_SL_CTL_GMII_EN;
663 
664 		if (phy->speed == 1000)
665 			mac_control |= CPSW_SL_CTL_GIG;
666 		if (phy->duplex)
667 			mac_control |= CPSW_SL_CTL_FULLDUPLEX;
668 
669 		/* set speed_in input in case RMII mode is used in 100Mbps */
670 		if (phy->speed == 100)
671 			mac_control |= CPSW_SL_CTL_IFCTL_A;
672 		/* in band mode only works in 10Mbps RGMII mode */
673 		else if ((phy->speed == 10) && phy_interface_is_rgmii(phy))
674 			mac_control |= CPSW_SL_CTL_EXT_EN; /* In Band mode */
675 
676 		if (priv->rx_pause)
677 			mac_control |= CPSW_SL_CTL_RX_FLOW_EN;
678 
679 		if (priv->tx_pause)
680 			mac_control |= CPSW_SL_CTL_TX_FLOW_EN;
681 
682 		if (mac_control != slave->mac_control)
683 			cpsw_sl_ctl_set(slave->mac_sl, mac_control);
684 
685 		/* enable forwarding */
686 		cpsw_ale_control_set(cpsw->ale, priv->emac_port,
687 				     ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
688 
689 		netif_tx_wake_all_queues(ndev);
690 
691 		if (priv->shp_cfg_speed &&
692 		    priv->shp_cfg_speed != slave->phy->speed &&
693 		    !cpsw_shp_is_off(priv))
694 			dev_warn(priv->dev, "Speed was changed, CBS shaper speeds are changed!");
695 	} else {
696 		netif_tx_stop_all_queues(ndev);
697 
698 		mac_control = 0;
699 		/* disable forwarding */
700 		cpsw_ale_control_set(cpsw->ale, priv->emac_port,
701 				     ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
702 
703 		cpsw_sl_wait_for_idle(slave->mac_sl, 100);
704 
705 		cpsw_sl_ctl_reset(slave->mac_sl);
706 	}
707 
708 	if (mac_control != slave->mac_control)
709 		phy_print_status(phy);
710 
711 	slave->mac_control = mac_control;
712 
713 	if (phy->link && cpsw_need_resplit(cpsw))
714 		cpsw_split_res(cpsw);
715 }
716 
cpsw_slave_open(struct cpsw_slave * slave,struct cpsw_priv * priv)717 static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
718 {
719 	struct cpsw_common *cpsw = priv->cpsw;
720 	struct phy_device *phy;
721 
722 	cpsw_sl_reset(slave->mac_sl, 100);
723 	cpsw_sl_ctl_reset(slave->mac_sl);
724 
725 	/* setup priority mapping */
726 	cpsw_sl_reg_write(slave->mac_sl, CPSW_SL_RX_PRI_MAP,
727 			  RX_PRIORITY_MAPPING);
728 
729 	switch (cpsw->version) {
730 	case CPSW_VERSION_1:
731 		slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
732 		/* Increase RX FIFO size to 5 for supporting fullduplex
733 		 * flow control mode
734 		 */
735 		slave_write(slave,
736 			    (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) |
737 			    CPSW_MAX_BLKS_RX, CPSW1_MAX_BLKS);
738 		break;
739 	case CPSW_VERSION_2:
740 	case CPSW_VERSION_3:
741 	case CPSW_VERSION_4:
742 		slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
743 		/* Increase RX FIFO size to 5 for supporting fullduplex
744 		 * flow control mode
745 		 */
746 		slave_write(slave,
747 			    (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) |
748 			    CPSW_MAX_BLKS_RX, CPSW2_MAX_BLKS);
749 		break;
750 	}
751 
752 	/* setup max packet size, and mac address */
753 	cpsw_sl_reg_write(slave->mac_sl, CPSW_SL_RX_MAXLEN,
754 			  cpsw->rx_packet_max);
755 	cpsw_set_slave_mac(slave, priv);
756 
757 	slave->mac_control = 0;	/* no link yet */
758 
759 	if (cpsw_is_switch_en(cpsw))
760 		cpsw_port_add_switch_def_ale_entries(priv, slave);
761 	else
762 		cpsw_port_add_dual_emac_def_ale_entries(priv, slave);
763 
764 	if (!slave->data->phy_node)
765 		dev_err(priv->dev, "no phy found on slave %d\n",
766 			slave->slave_num);
767 	phy = of_phy_connect(priv->ndev, slave->data->phy_node,
768 			     &cpsw_adjust_link, 0, slave->data->phy_if);
769 	if (!phy) {
770 		dev_err(priv->dev, "phy \"%pOF\" not found on slave %d\n",
771 			slave->data->phy_node,
772 			slave->slave_num);
773 		return;
774 	}
775 
776 	phy->mac_managed_pm = true;
777 
778 	slave->phy = phy;
779 
780 	phy_attached_info(slave->phy);
781 
782 	phy_start(slave->phy);
783 
784 	/* Configure GMII_SEL register */
785 	phy_set_mode_ext(slave->data->ifphy, PHY_MODE_ETHERNET,
786 			 slave->data->phy_if);
787 }
788 
cpsw_ndo_stop(struct net_device * ndev)789 static int cpsw_ndo_stop(struct net_device *ndev)
790 {
791 	struct cpsw_priv *priv = netdev_priv(ndev);
792 	struct cpsw_common *cpsw = priv->cpsw;
793 	struct cpsw_slave *slave;
794 
795 	cpsw_info(priv, ifdown, "shutting down ndev\n");
796 	slave = &cpsw->slaves[priv->emac_port - 1];
797 	if (slave->phy)
798 		phy_stop(slave->phy);
799 
800 	netif_tx_stop_all_queues(priv->ndev);
801 
802 	if (slave->phy) {
803 		phy_disconnect(slave->phy);
804 		slave->phy = NULL;
805 	}
806 
807 	__hw_addr_ref_unsync_dev(&ndev->mc, ndev, cpsw_purge_all_mc);
808 
809 	if (cpsw->usage_count <= 1) {
810 		napi_disable(&cpsw->napi_rx);
811 		napi_disable(&cpsw->napi_tx);
812 		cpts_unregister(cpsw->cpts);
813 		cpsw_intr_disable(cpsw);
814 		cpdma_ctlr_stop(cpsw->dma);
815 		cpsw_ale_stop(cpsw->ale);
816 		cpsw_destroy_xdp_rxqs(cpsw);
817 	}
818 
819 	if (cpsw_need_resplit(cpsw))
820 		cpsw_split_res(cpsw);
821 
822 	cpsw->usage_count--;
823 	pm_runtime_put_sync(cpsw->dev);
824 	return 0;
825 }
826 
cpsw_ndo_open(struct net_device * ndev)827 static int cpsw_ndo_open(struct net_device *ndev)
828 {
829 	struct cpsw_priv *priv = netdev_priv(ndev);
830 	struct cpsw_common *cpsw = priv->cpsw;
831 	int ret;
832 
833 	dev_info(priv->dev, "starting ndev. mode: %s\n",
834 		 cpsw_is_switch_en(cpsw) ? "switch" : "dual_mac");
835 	ret = pm_runtime_get_sync(cpsw->dev);
836 	if (ret < 0) {
837 		pm_runtime_put_noidle(cpsw->dev);
838 		return ret;
839 	}
840 
841 	/* Notify the stack of the actual queue counts. */
842 	ret = netif_set_real_num_tx_queues(ndev, cpsw->tx_ch_num);
843 	if (ret) {
844 		dev_err(priv->dev, "cannot set real number of tx queues\n");
845 		goto pm_cleanup;
846 	}
847 
848 	ret = netif_set_real_num_rx_queues(ndev, cpsw->rx_ch_num);
849 	if (ret) {
850 		dev_err(priv->dev, "cannot set real number of rx queues\n");
851 		goto pm_cleanup;
852 	}
853 
854 	/* Initialize host and slave ports */
855 	if (!cpsw->usage_count)
856 		cpsw_init_host_port(priv);
857 	cpsw_slave_open(&cpsw->slaves[priv->emac_port - 1], priv);
858 
859 	/* initialize shared resources for every ndev */
860 	if (!cpsw->usage_count) {
861 		/* create rxqs for both infs in dual mac as they use same pool
862 		 * and must be destroyed together when no users.
863 		 */
864 		ret = cpsw_create_xdp_rxqs(cpsw);
865 		if (ret < 0)
866 			goto err_cleanup;
867 
868 		ret = cpsw_fill_rx_channels(priv);
869 		if (ret < 0)
870 			goto err_cleanup;
871 
872 		if (cpsw->cpts) {
873 			if (cpts_register(cpsw->cpts))
874 				dev_err(priv->dev, "error registering cpts device\n");
875 			else
876 				writel(0x10, &cpsw->wr_regs->misc_en);
877 		}
878 
879 		napi_enable(&cpsw->napi_rx);
880 		napi_enable(&cpsw->napi_tx);
881 
882 		if (cpsw->tx_irq_disabled) {
883 			cpsw->tx_irq_disabled = false;
884 			enable_irq(cpsw->irqs_table[1]);
885 		}
886 
887 		if (cpsw->rx_irq_disabled) {
888 			cpsw->rx_irq_disabled = false;
889 			enable_irq(cpsw->irqs_table[0]);
890 		}
891 	}
892 
893 	cpsw_restore(priv);
894 
895 	/* Enable Interrupt pacing if configured */
896 	if (cpsw->coal_intvl != 0) {
897 		struct ethtool_coalesce coal;
898 
899 		coal.rx_coalesce_usecs = cpsw->coal_intvl;
900 		cpsw_set_coalesce(ndev, &coal, NULL, NULL);
901 	}
902 
903 	cpdma_ctlr_start(cpsw->dma);
904 	cpsw_intr_enable(cpsw);
905 	cpsw->usage_count++;
906 
907 	return 0;
908 
909 err_cleanup:
910 	cpsw_ndo_stop(ndev);
911 
912 pm_cleanup:
913 	pm_runtime_put_sync(cpsw->dev);
914 	return ret;
915 }
916 
cpsw_ndo_start_xmit(struct sk_buff * skb,struct net_device * ndev)917 static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
918 				       struct net_device *ndev)
919 {
920 	struct cpsw_priv *priv = netdev_priv(ndev);
921 	struct cpsw_common *cpsw = priv->cpsw;
922 	struct cpts *cpts = cpsw->cpts;
923 	struct netdev_queue *txq;
924 	struct cpdma_chan *txch;
925 	int ret, q_idx;
926 
927 	if (skb_put_padto(skb, READ_ONCE(priv->tx_packet_min))) {
928 		cpsw_err(priv, tx_err, "packet pad failed\n");
929 		ndev->stats.tx_dropped++;
930 		return NET_XMIT_DROP;
931 	}
932 
933 	if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
934 	    priv->tx_ts_enabled && cpts_can_timestamp(cpts, skb))
935 		skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
936 
937 	q_idx = skb_get_queue_mapping(skb);
938 	if (q_idx >= cpsw->tx_ch_num)
939 		q_idx = q_idx % cpsw->tx_ch_num;
940 
941 	txch = cpsw->txv[q_idx].ch;
942 	txq = netdev_get_tx_queue(ndev, q_idx);
943 	skb_tx_timestamp(skb);
944 	ret = cpdma_chan_submit(txch, skb, skb->data, skb->len,
945 				priv->emac_port);
946 	if (unlikely(ret != 0)) {
947 		cpsw_err(priv, tx_err, "desc submit failed\n");
948 		goto fail;
949 	}
950 
951 	/* If there is no more tx desc left free then we need to
952 	 * tell the kernel to stop sending us tx frames.
953 	 */
954 	if (unlikely(!cpdma_check_free_tx_desc(txch))) {
955 		netif_tx_stop_queue(txq);
956 
957 		/* Barrier, so that stop_queue visible to other cpus */
958 		smp_mb__after_atomic();
959 
960 		if (cpdma_check_free_tx_desc(txch))
961 			netif_tx_wake_queue(txq);
962 	}
963 
964 	return NETDEV_TX_OK;
965 fail:
966 	ndev->stats.tx_dropped++;
967 	netif_tx_stop_queue(txq);
968 
969 	/* Barrier, so that stop_queue visible to other cpus */
970 	smp_mb__after_atomic();
971 
972 	if (cpdma_check_free_tx_desc(txch))
973 		netif_tx_wake_queue(txq);
974 
975 	return NETDEV_TX_BUSY;
976 }
977 
cpsw_ndo_set_mac_address(struct net_device * ndev,void * p)978 static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
979 {
980 	struct sockaddr *addr = (struct sockaddr *)p;
981 	struct cpsw_priv *priv = netdev_priv(ndev);
982 	struct cpsw_common *cpsw = priv->cpsw;
983 	int ret, slave_no;
984 	int flags = 0;
985 	u16 vid = 0;
986 
987 	slave_no = cpsw_slave_index(cpsw, priv);
988 	if (!is_valid_ether_addr(addr->sa_data))
989 		return -EADDRNOTAVAIL;
990 
991 	ret = pm_runtime_get_sync(cpsw->dev);
992 	if (ret < 0) {
993 		pm_runtime_put_noidle(cpsw->dev);
994 		return ret;
995 	}
996 
997 	vid = cpsw->slaves[slave_no].port_vlan;
998 	flags = ALE_VLAN | ALE_SECURE;
999 
1000 	cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM,
1001 			   flags, vid);
1002 	cpsw_ale_add_ucast(cpsw->ale, addr->sa_data, HOST_PORT_NUM,
1003 			   flags, vid);
1004 
1005 	ether_addr_copy(priv->mac_addr, addr->sa_data);
1006 	eth_hw_addr_set(ndev, priv->mac_addr);
1007 	cpsw_set_slave_mac(&cpsw->slaves[slave_no], priv);
1008 
1009 	pm_runtime_put(cpsw->dev);
1010 
1011 	return 0;
1012 }
1013 
cpsw_ndo_vlan_rx_kill_vid(struct net_device * ndev,__be16 proto,u16 vid)1014 static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
1015 				     __be16 proto, u16 vid)
1016 {
1017 	struct cpsw_priv *priv = netdev_priv(ndev);
1018 	struct cpsw_common *cpsw = priv->cpsw;
1019 	int ret;
1020 	int i;
1021 
1022 	if (cpsw_is_switch_en(cpsw)) {
1023 		dev_dbg(cpsw->dev, "ndo del vlan is called in switch mode\n");
1024 		return 0;
1025 	}
1026 
1027 	if (vid == cpsw->data.default_vlan)
1028 		return 0;
1029 
1030 	ret = pm_runtime_get_sync(cpsw->dev);
1031 	if (ret < 0) {
1032 		pm_runtime_put_noidle(cpsw->dev);
1033 		return ret;
1034 	}
1035 
1036 	/* reset the return code as pm_runtime_get_sync() can return
1037 	 * non zero values as well.
1038 	 */
1039 	ret = 0;
1040 	for (i = 0; i < cpsw->data.slaves; i++) {
1041 		if (cpsw->slaves[i].ndev &&
1042 		    vid == cpsw->slaves[i].port_vlan) {
1043 			ret = -EINVAL;
1044 			goto err;
1045 		}
1046 	}
1047 
1048 	dev_dbg(priv->dev, "removing vlanid %d from vlan filter\n", vid);
1049 	ret = cpsw_ale_del_vlan(cpsw->ale, vid, 0);
1050 	if (ret)
1051 		dev_err(priv->dev, "cpsw_ale_del_vlan() failed: ret %d\n", ret);
1052 	ret = cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr,
1053 				 HOST_PORT_NUM, ALE_VLAN, vid);
1054 	if (ret)
1055 		dev_err(priv->dev, "cpsw_ale_del_ucast() failed: ret %d\n",
1056 			ret);
1057 	ret = cpsw_ale_del_mcast(cpsw->ale, priv->ndev->broadcast,
1058 				 0, ALE_VLAN, vid);
1059 	if (ret)
1060 		dev_err(priv->dev, "cpsw_ale_del_mcast failed. ret %d\n",
1061 			ret);
1062 	cpsw_ale_flush_multicast(cpsw->ale, ALE_PORT_HOST, vid);
1063 	ret = 0;
1064 err:
1065 	pm_runtime_put(cpsw->dev);
1066 	return ret;
1067 }
1068 
cpsw_ndo_get_phys_port_name(struct net_device * ndev,char * name,size_t len)1069 static int cpsw_ndo_get_phys_port_name(struct net_device *ndev, char *name,
1070 				       size_t len)
1071 {
1072 	struct cpsw_priv *priv = netdev_priv(ndev);
1073 	int err;
1074 
1075 	err = snprintf(name, len, "p%d", priv->emac_port);
1076 
1077 	if (err >= len)
1078 		return -EINVAL;
1079 
1080 	return 0;
1081 }
1082 
1083 #ifdef CONFIG_NET_POLL_CONTROLLER
cpsw_ndo_poll_controller(struct net_device * ndev)1084 static void cpsw_ndo_poll_controller(struct net_device *ndev)
1085 {
1086 	struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
1087 
1088 	cpsw_intr_disable(cpsw);
1089 	cpsw_rx_interrupt(cpsw->irqs_table[0], cpsw);
1090 	cpsw_tx_interrupt(cpsw->irqs_table[1], cpsw);
1091 	cpsw_intr_enable(cpsw);
1092 }
1093 #endif
1094 
cpsw_ndo_xdp_xmit(struct net_device * ndev,int n,struct xdp_frame ** frames,u32 flags)1095 static int cpsw_ndo_xdp_xmit(struct net_device *ndev, int n,
1096 			     struct xdp_frame **frames, u32 flags)
1097 {
1098 	struct cpsw_priv *priv = netdev_priv(ndev);
1099 	struct xdp_frame *xdpf;
1100 	int i, nxmit = 0;
1101 
1102 	if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
1103 		return -EINVAL;
1104 
1105 	for (i = 0; i < n; i++) {
1106 		xdpf = frames[i];
1107 		if (xdpf->len < READ_ONCE(priv->tx_packet_min))
1108 			break;
1109 
1110 		if (cpsw_xdp_tx_frame(priv, xdpf, NULL, priv->emac_port))
1111 			break;
1112 		nxmit++;
1113 	}
1114 
1115 	return nxmit;
1116 }
1117 
cpsw_get_port_parent_id(struct net_device * ndev,struct netdev_phys_item_id * ppid)1118 static int cpsw_get_port_parent_id(struct net_device *ndev,
1119 				   struct netdev_phys_item_id *ppid)
1120 {
1121 	struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
1122 
1123 	ppid->id_len = sizeof(cpsw->base_mac);
1124 	memcpy(&ppid->id, &cpsw->base_mac, ppid->id_len);
1125 
1126 	return 0;
1127 }
1128 
1129 static const struct net_device_ops cpsw_netdev_ops = {
1130 	.ndo_open		= cpsw_ndo_open,
1131 	.ndo_stop		= cpsw_ndo_stop,
1132 	.ndo_start_xmit		= cpsw_ndo_start_xmit,
1133 	.ndo_set_mac_address	= cpsw_ndo_set_mac_address,
1134 	.ndo_eth_ioctl		= cpsw_ndo_ioctl,
1135 	.ndo_validate_addr	= eth_validate_addr,
1136 	.ndo_tx_timeout		= cpsw_ndo_tx_timeout,
1137 	.ndo_set_rx_mode	= cpsw_ndo_set_rx_mode,
1138 	.ndo_set_tx_maxrate	= cpsw_ndo_set_tx_maxrate,
1139 #ifdef CONFIG_NET_POLL_CONTROLLER
1140 	.ndo_poll_controller	= cpsw_ndo_poll_controller,
1141 #endif
1142 	.ndo_vlan_rx_add_vid	= cpsw_ndo_vlan_rx_add_vid,
1143 	.ndo_vlan_rx_kill_vid	= cpsw_ndo_vlan_rx_kill_vid,
1144 	.ndo_setup_tc           = cpsw_ndo_setup_tc,
1145 	.ndo_get_phys_port_name = cpsw_ndo_get_phys_port_name,
1146 	.ndo_bpf		= cpsw_ndo_bpf,
1147 	.ndo_xdp_xmit		= cpsw_ndo_xdp_xmit,
1148 	.ndo_get_port_parent_id	= cpsw_get_port_parent_id,
1149 };
1150 
cpsw_get_drvinfo(struct net_device * ndev,struct ethtool_drvinfo * info)1151 static void cpsw_get_drvinfo(struct net_device *ndev,
1152 			     struct ethtool_drvinfo *info)
1153 {
1154 	struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
1155 	struct platform_device *pdev;
1156 
1157 	pdev = to_platform_device(cpsw->dev);
1158 	strlcpy(info->driver, "cpsw-switch", sizeof(info->driver));
1159 	strlcpy(info->version, "2.0", sizeof(info->version));
1160 	strlcpy(info->bus_info, pdev->name, sizeof(info->bus_info));
1161 }
1162 
cpsw_set_pauseparam(struct net_device * ndev,struct ethtool_pauseparam * pause)1163 static int cpsw_set_pauseparam(struct net_device *ndev,
1164 			       struct ethtool_pauseparam *pause)
1165 {
1166 	struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
1167 	struct cpsw_priv *priv = netdev_priv(ndev);
1168 	int slave_no;
1169 
1170 	slave_no = cpsw_slave_index(cpsw, priv);
1171 	if (!cpsw->slaves[slave_no].phy)
1172 		return -EINVAL;
1173 
1174 	if (!phy_validate_pause(cpsw->slaves[slave_no].phy, pause))
1175 		return -EINVAL;
1176 
1177 	priv->rx_pause = pause->rx_pause ? true : false;
1178 	priv->tx_pause = pause->tx_pause ? true : false;
1179 
1180 	phy_set_asym_pause(cpsw->slaves[slave_no].phy,
1181 			   priv->rx_pause, priv->tx_pause);
1182 
1183 	return 0;
1184 }
1185 
cpsw_set_channels(struct net_device * ndev,struct ethtool_channels * chs)1186 static int cpsw_set_channels(struct net_device *ndev,
1187 			     struct ethtool_channels *chs)
1188 {
1189 	return cpsw_set_channels_common(ndev, chs, cpsw_rx_handler);
1190 }
1191 
1192 static const struct ethtool_ops cpsw_ethtool_ops = {
1193 	.supported_coalesce_params = ETHTOOL_COALESCE_RX_USECS,
1194 	.get_drvinfo		= cpsw_get_drvinfo,
1195 	.get_msglevel		= cpsw_get_msglevel,
1196 	.set_msglevel		= cpsw_set_msglevel,
1197 	.get_link		= ethtool_op_get_link,
1198 	.get_ts_info		= cpsw_get_ts_info,
1199 	.get_coalesce		= cpsw_get_coalesce,
1200 	.set_coalesce		= cpsw_set_coalesce,
1201 	.get_sset_count		= cpsw_get_sset_count,
1202 	.get_strings		= cpsw_get_strings,
1203 	.get_ethtool_stats	= cpsw_get_ethtool_stats,
1204 	.get_pauseparam		= cpsw_get_pauseparam,
1205 	.set_pauseparam		= cpsw_set_pauseparam,
1206 	.get_wol		= cpsw_get_wol,
1207 	.set_wol		= cpsw_set_wol,
1208 	.get_regs_len		= cpsw_get_regs_len,
1209 	.get_regs		= cpsw_get_regs,
1210 	.begin			= cpsw_ethtool_op_begin,
1211 	.complete		= cpsw_ethtool_op_complete,
1212 	.get_channels		= cpsw_get_channels,
1213 	.set_channels		= cpsw_set_channels,
1214 	.get_link_ksettings	= cpsw_get_link_ksettings,
1215 	.set_link_ksettings	= cpsw_set_link_ksettings,
1216 	.get_eee		= cpsw_get_eee,
1217 	.set_eee		= cpsw_set_eee,
1218 	.nway_reset		= cpsw_nway_reset,
1219 	.get_ringparam		= cpsw_get_ringparam,
1220 	.set_ringparam		= cpsw_set_ringparam,
1221 };
1222 
cpsw_probe_dt(struct cpsw_common * cpsw)1223 static int cpsw_probe_dt(struct cpsw_common *cpsw)
1224 {
1225 	struct device_node *node = cpsw->dev->of_node, *tmp_node, *port_np;
1226 	struct cpsw_platform_data *data = &cpsw->data;
1227 	struct device *dev = cpsw->dev;
1228 	int ret;
1229 	u32 prop;
1230 
1231 	if (!node)
1232 		return -EINVAL;
1233 
1234 	tmp_node = of_get_child_by_name(node, "ethernet-ports");
1235 	if (!tmp_node)
1236 		return -ENOENT;
1237 	data->slaves = of_get_child_count(tmp_node);
1238 	if (data->slaves != CPSW_SLAVE_PORTS_NUM) {
1239 		of_node_put(tmp_node);
1240 		return -ENOENT;
1241 	}
1242 
1243 	data->active_slave = 0;
1244 	data->channels = CPSW_MAX_QUEUES;
1245 	data->dual_emac = true;
1246 	data->bd_ram_size = CPSW_BD_RAM_SIZE;
1247 	data->mac_control = 0;
1248 
1249 	data->slave_data = devm_kcalloc(dev, CPSW_SLAVE_PORTS_NUM,
1250 					sizeof(struct cpsw_slave_data),
1251 					GFP_KERNEL);
1252 	if (!data->slave_data) {
1253 		of_node_put(tmp_node);
1254 		return -ENOMEM;
1255 	}
1256 
1257 	/* Populate all the child nodes here...
1258 	 */
1259 	ret = devm_of_platform_populate(dev);
1260 	/* We do not want to force this, as in some cases may not have child */
1261 	if (ret)
1262 		dev_warn(dev, "Doesn't have any child node\n");
1263 
1264 	for_each_child_of_node(tmp_node, port_np) {
1265 		struct cpsw_slave_data *slave_data;
1266 		u32 port_id;
1267 
1268 		ret = of_property_read_u32(port_np, "reg", &port_id);
1269 		if (ret < 0) {
1270 			dev_err(dev, "%pOF error reading port_id %d\n",
1271 				port_np, ret);
1272 			goto err_node_put;
1273 		}
1274 
1275 		if (!port_id || port_id > CPSW_SLAVE_PORTS_NUM) {
1276 			dev_err(dev, "%pOF has invalid port_id %u\n",
1277 				port_np, port_id);
1278 			ret = -EINVAL;
1279 			goto err_node_put;
1280 		}
1281 
1282 		slave_data = &data->slave_data[port_id - 1];
1283 
1284 		slave_data->disabled = !of_device_is_available(port_np);
1285 		if (slave_data->disabled)
1286 			continue;
1287 
1288 		slave_data->slave_node = port_np;
1289 		slave_data->ifphy = devm_of_phy_get(dev, port_np, NULL);
1290 		if (IS_ERR(slave_data->ifphy)) {
1291 			ret = PTR_ERR(slave_data->ifphy);
1292 			dev_err(dev, "%pOF: Error retrieving port phy: %d\n",
1293 				port_np, ret);
1294 			goto err_node_put;
1295 		}
1296 
1297 		if (of_phy_is_fixed_link(port_np)) {
1298 			ret = of_phy_register_fixed_link(port_np);
1299 			if (ret) {
1300 				if (ret != -EPROBE_DEFER)
1301 					dev_err(dev, "%pOF failed to register fixed-link phy: %d\n",
1302 						port_np, ret);
1303 				goto err_node_put;
1304 			}
1305 			slave_data->phy_node = of_node_get(port_np);
1306 		} else {
1307 			slave_data->phy_node =
1308 				of_parse_phandle(port_np, "phy-handle", 0);
1309 		}
1310 
1311 		if (!slave_data->phy_node) {
1312 			dev_err(dev, "%pOF no phy found\n", port_np);
1313 			ret = -ENODEV;
1314 			goto err_node_put;
1315 		}
1316 
1317 		ret = of_get_phy_mode(port_np, &slave_data->phy_if);
1318 		if (ret) {
1319 			dev_err(dev, "%pOF read phy-mode err %d\n",
1320 				port_np, ret);
1321 			goto err_node_put;
1322 		}
1323 
1324 		ret = of_get_mac_address(port_np, slave_data->mac_addr);
1325 		if (ret) {
1326 			ret = ti_cm_get_macid(dev, port_id - 1,
1327 					      slave_data->mac_addr);
1328 			if (ret)
1329 				goto err_node_put;
1330 		}
1331 
1332 		if (of_property_read_u32(port_np, "ti,dual-emac-pvid",
1333 					 &prop)) {
1334 			dev_err(dev, "%pOF Missing dual_emac_res_vlan in DT.\n",
1335 				port_np);
1336 			slave_data->dual_emac_res_vlan = port_id;
1337 			dev_err(dev, "%pOF Using %d as Reserved VLAN\n",
1338 				port_np, slave_data->dual_emac_res_vlan);
1339 		} else {
1340 			slave_data->dual_emac_res_vlan = prop;
1341 		}
1342 	}
1343 
1344 	of_node_put(tmp_node);
1345 	return 0;
1346 
1347 err_node_put:
1348 	of_node_put(port_np);
1349 	of_node_put(tmp_node);
1350 	return ret;
1351 }
1352 
cpsw_remove_dt(struct cpsw_common * cpsw)1353 static void cpsw_remove_dt(struct cpsw_common *cpsw)
1354 {
1355 	struct cpsw_platform_data *data = &cpsw->data;
1356 	int i = 0;
1357 
1358 	for (i = 0; i < cpsw->data.slaves; i++) {
1359 		struct cpsw_slave_data *slave_data = &data->slave_data[i];
1360 		struct device_node *port_np = slave_data->phy_node;
1361 
1362 		if (port_np) {
1363 			if (of_phy_is_fixed_link(port_np))
1364 				of_phy_deregister_fixed_link(port_np);
1365 
1366 			of_node_put(port_np);
1367 		}
1368 	}
1369 }
1370 
cpsw_create_ports(struct cpsw_common * cpsw)1371 static int cpsw_create_ports(struct cpsw_common *cpsw)
1372 {
1373 	struct cpsw_platform_data *data = &cpsw->data;
1374 	struct net_device *ndev, *napi_ndev = NULL;
1375 	struct device *dev = cpsw->dev;
1376 	struct cpsw_priv *priv;
1377 	int ret = 0, i = 0;
1378 
1379 	for (i = 0; i < cpsw->data.slaves; i++) {
1380 		struct cpsw_slave_data *slave_data = &data->slave_data[i];
1381 
1382 		if (slave_data->disabled)
1383 			continue;
1384 
1385 		ndev = devm_alloc_etherdev_mqs(dev, sizeof(struct cpsw_priv),
1386 					       CPSW_MAX_QUEUES,
1387 					       CPSW_MAX_QUEUES);
1388 		if (!ndev) {
1389 			dev_err(dev, "error allocating net_device\n");
1390 			return -ENOMEM;
1391 		}
1392 
1393 		priv = netdev_priv(ndev);
1394 		priv->cpsw = cpsw;
1395 		priv->ndev = ndev;
1396 		priv->dev  = dev;
1397 		priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
1398 		priv->emac_port = i + 1;
1399 		priv->tx_packet_min = CPSW_MIN_PACKET_SIZE;
1400 
1401 		if (is_valid_ether_addr(slave_data->mac_addr)) {
1402 			ether_addr_copy(priv->mac_addr, slave_data->mac_addr);
1403 			dev_info(cpsw->dev, "Detected MACID = %pM\n",
1404 				 priv->mac_addr);
1405 		} else {
1406 			eth_random_addr(slave_data->mac_addr);
1407 			dev_info(cpsw->dev, "Random MACID = %pM\n",
1408 				 priv->mac_addr);
1409 		}
1410 		eth_hw_addr_set(ndev, slave_data->mac_addr);
1411 		ether_addr_copy(priv->mac_addr, slave_data->mac_addr);
1412 
1413 		cpsw->slaves[i].ndev = ndev;
1414 
1415 		ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER |
1416 				  NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_NETNS_LOCAL;
1417 
1418 		ndev->netdev_ops = &cpsw_netdev_ops;
1419 		ndev->ethtool_ops = &cpsw_ethtool_ops;
1420 		SET_NETDEV_DEV(ndev, dev);
1421 
1422 		if (!napi_ndev) {
1423 			/* CPSW Host port CPDMA interface is shared between
1424 			 * ports and there is only one TX and one RX IRQs
1425 			 * available for all possible TX and RX channels
1426 			 * accordingly.
1427 			 */
1428 			netif_napi_add(ndev, &cpsw->napi_rx,
1429 				       cpsw->quirk_irq ?
1430 				       cpsw_rx_poll : cpsw_rx_mq_poll,
1431 				       CPSW_POLL_WEIGHT);
1432 			netif_tx_napi_add(ndev, &cpsw->napi_tx,
1433 					  cpsw->quirk_irq ?
1434 					  cpsw_tx_poll : cpsw_tx_mq_poll,
1435 					  CPSW_POLL_WEIGHT);
1436 		}
1437 
1438 		napi_ndev = ndev;
1439 	}
1440 
1441 	return ret;
1442 }
1443 
cpsw_unregister_ports(struct cpsw_common * cpsw)1444 static void cpsw_unregister_ports(struct cpsw_common *cpsw)
1445 {
1446 	int i = 0;
1447 
1448 	for (i = 0; i < cpsw->data.slaves; i++) {
1449 		if (!cpsw->slaves[i].ndev)
1450 			continue;
1451 
1452 		unregister_netdev(cpsw->slaves[i].ndev);
1453 	}
1454 }
1455 
cpsw_register_ports(struct cpsw_common * cpsw)1456 static int cpsw_register_ports(struct cpsw_common *cpsw)
1457 {
1458 	int ret = 0, i = 0;
1459 
1460 	for (i = 0; i < cpsw->data.slaves; i++) {
1461 		if (!cpsw->slaves[i].ndev)
1462 			continue;
1463 
1464 		/* register the network device */
1465 		ret = register_netdev(cpsw->slaves[i].ndev);
1466 		if (ret) {
1467 			dev_err(cpsw->dev,
1468 				"cpsw: err registering net device%d\n", i);
1469 			cpsw->slaves[i].ndev = NULL;
1470 			break;
1471 		}
1472 	}
1473 
1474 	if (ret)
1475 		cpsw_unregister_ports(cpsw);
1476 	return ret;
1477 }
1478 
cpsw_port_dev_check(const struct net_device * ndev)1479 bool cpsw_port_dev_check(const struct net_device *ndev)
1480 {
1481 	if (ndev->netdev_ops == &cpsw_netdev_ops) {
1482 		struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
1483 
1484 		return !cpsw->data.dual_emac;
1485 	}
1486 
1487 	return false;
1488 }
1489 
cpsw_port_offload_fwd_mark_update(struct cpsw_common * cpsw)1490 static void cpsw_port_offload_fwd_mark_update(struct cpsw_common *cpsw)
1491 {
1492 	int set_val = 0;
1493 	int i;
1494 
1495 	if (!cpsw->ale_bypass &&
1496 	    (cpsw->br_members == (ALE_PORT_1 | ALE_PORT_2)))
1497 		set_val = 1;
1498 
1499 	dev_dbg(cpsw->dev, "set offload_fwd_mark %d\n", set_val);
1500 
1501 	for (i = 0; i < cpsw->data.slaves; i++) {
1502 		struct net_device *sl_ndev = cpsw->slaves[i].ndev;
1503 		struct cpsw_priv *priv = netdev_priv(sl_ndev);
1504 
1505 		priv->offload_fwd_mark = set_val;
1506 	}
1507 }
1508 
cpsw_netdevice_port_link(struct net_device * ndev,struct net_device * br_ndev,struct netlink_ext_ack * extack)1509 static int cpsw_netdevice_port_link(struct net_device *ndev,
1510 				    struct net_device *br_ndev,
1511 				    struct netlink_ext_ack *extack)
1512 {
1513 	struct cpsw_priv *priv = netdev_priv(ndev);
1514 	struct cpsw_common *cpsw = priv->cpsw;
1515 	int err;
1516 
1517 	if (!cpsw->br_members) {
1518 		cpsw->hw_bridge_dev = br_ndev;
1519 	} else {
1520 		/* This is adding the port to a second bridge, this is
1521 		 * unsupported
1522 		 */
1523 		if (cpsw->hw_bridge_dev != br_ndev)
1524 			return -EOPNOTSUPP;
1525 	}
1526 
1527 	err = switchdev_bridge_port_offload(ndev, ndev, NULL, NULL, NULL,
1528 					    false, extack);
1529 	if (err)
1530 		return err;
1531 
1532 	cpsw->br_members |= BIT(priv->emac_port);
1533 
1534 	cpsw_port_offload_fwd_mark_update(cpsw);
1535 
1536 	return NOTIFY_DONE;
1537 }
1538 
cpsw_netdevice_port_unlink(struct net_device * ndev)1539 static void cpsw_netdevice_port_unlink(struct net_device *ndev)
1540 {
1541 	struct cpsw_priv *priv = netdev_priv(ndev);
1542 	struct cpsw_common *cpsw = priv->cpsw;
1543 
1544 	switchdev_bridge_port_unoffload(ndev, NULL, NULL, NULL);
1545 
1546 	cpsw->br_members &= ~BIT(priv->emac_port);
1547 
1548 	cpsw_port_offload_fwd_mark_update(cpsw);
1549 
1550 	if (!cpsw->br_members)
1551 		cpsw->hw_bridge_dev = NULL;
1552 }
1553 
1554 /* netdev notifier */
cpsw_netdevice_event(struct notifier_block * unused,unsigned long event,void * ptr)1555 static int cpsw_netdevice_event(struct notifier_block *unused,
1556 				unsigned long event, void *ptr)
1557 {
1558 	struct netlink_ext_ack *extack = netdev_notifier_info_to_extack(ptr);
1559 	struct net_device *ndev = netdev_notifier_info_to_dev(ptr);
1560 	struct netdev_notifier_changeupper_info *info;
1561 	int ret = NOTIFY_DONE;
1562 
1563 	if (!cpsw_port_dev_check(ndev))
1564 		return NOTIFY_DONE;
1565 
1566 	switch (event) {
1567 	case NETDEV_CHANGEUPPER:
1568 		info = ptr;
1569 
1570 		if (netif_is_bridge_master(info->upper_dev)) {
1571 			if (info->linking)
1572 				ret = cpsw_netdevice_port_link(ndev,
1573 							       info->upper_dev,
1574 							       extack);
1575 			else
1576 				cpsw_netdevice_port_unlink(ndev);
1577 		}
1578 		break;
1579 	default:
1580 		return NOTIFY_DONE;
1581 	}
1582 
1583 	return notifier_from_errno(ret);
1584 }
1585 
1586 static struct notifier_block cpsw_netdevice_nb __read_mostly = {
1587 	.notifier_call = cpsw_netdevice_event,
1588 };
1589 
cpsw_register_notifiers(struct cpsw_common * cpsw)1590 static int cpsw_register_notifiers(struct cpsw_common *cpsw)
1591 {
1592 	int ret = 0;
1593 
1594 	ret = register_netdevice_notifier(&cpsw_netdevice_nb);
1595 	if (ret) {
1596 		dev_err(cpsw->dev, "can't register netdevice notifier\n");
1597 		return ret;
1598 	}
1599 
1600 	ret = cpsw_switchdev_register_notifiers(cpsw);
1601 	if (ret)
1602 		unregister_netdevice_notifier(&cpsw_netdevice_nb);
1603 
1604 	return ret;
1605 }
1606 
cpsw_unregister_notifiers(struct cpsw_common * cpsw)1607 static void cpsw_unregister_notifiers(struct cpsw_common *cpsw)
1608 {
1609 	cpsw_switchdev_unregister_notifiers(cpsw);
1610 	unregister_netdevice_notifier(&cpsw_netdevice_nb);
1611 }
1612 
1613 static const struct devlink_ops cpsw_devlink_ops = {
1614 };
1615 
cpsw_dl_switch_mode_get(struct devlink * dl,u32 id,struct devlink_param_gset_ctx * ctx)1616 static int cpsw_dl_switch_mode_get(struct devlink *dl, u32 id,
1617 				   struct devlink_param_gset_ctx *ctx)
1618 {
1619 	struct cpsw_devlink *dl_priv = devlink_priv(dl);
1620 	struct cpsw_common *cpsw = dl_priv->cpsw;
1621 
1622 	dev_dbg(cpsw->dev, "%s id:%u\n", __func__, id);
1623 
1624 	if (id != CPSW_DL_PARAM_SWITCH_MODE)
1625 		return  -EOPNOTSUPP;
1626 
1627 	ctx->val.vbool = !cpsw->data.dual_emac;
1628 
1629 	return 0;
1630 }
1631 
cpsw_dl_switch_mode_set(struct devlink * dl,u32 id,struct devlink_param_gset_ctx * ctx)1632 static int cpsw_dl_switch_mode_set(struct devlink *dl, u32 id,
1633 				   struct devlink_param_gset_ctx *ctx)
1634 {
1635 	struct cpsw_devlink *dl_priv = devlink_priv(dl);
1636 	struct cpsw_common *cpsw = dl_priv->cpsw;
1637 	int vlan = cpsw->data.default_vlan;
1638 	bool switch_en = ctx->val.vbool;
1639 	bool if_running = false;
1640 	int i;
1641 
1642 	dev_dbg(cpsw->dev, "%s id:%u\n", __func__, id);
1643 
1644 	if (id != CPSW_DL_PARAM_SWITCH_MODE)
1645 		return  -EOPNOTSUPP;
1646 
1647 	if (switch_en == !cpsw->data.dual_emac)
1648 		return 0;
1649 
1650 	if (!switch_en && cpsw->br_members) {
1651 		dev_err(cpsw->dev, "Remove ports from BR before disabling switch mode\n");
1652 		return -EINVAL;
1653 	}
1654 
1655 	rtnl_lock();
1656 
1657 	for (i = 0; i < cpsw->data.slaves; i++) {
1658 		struct cpsw_slave *slave = &cpsw->slaves[i];
1659 		struct net_device *sl_ndev = slave->ndev;
1660 
1661 		if (!sl_ndev || !netif_running(sl_ndev))
1662 			continue;
1663 
1664 		if_running = true;
1665 	}
1666 
1667 	if (!if_running) {
1668 		/* all ndevs are down */
1669 		cpsw->data.dual_emac = !switch_en;
1670 		for (i = 0; i < cpsw->data.slaves; i++) {
1671 			struct cpsw_slave *slave = &cpsw->slaves[i];
1672 			struct net_device *sl_ndev = slave->ndev;
1673 
1674 			if (!sl_ndev)
1675 				continue;
1676 
1677 			if (switch_en)
1678 				vlan = cpsw->data.default_vlan;
1679 			else
1680 				vlan = slave->data->dual_emac_res_vlan;
1681 			slave->port_vlan = vlan;
1682 		}
1683 		goto exit;
1684 	}
1685 
1686 	if (switch_en) {
1687 		dev_info(cpsw->dev, "Enable switch mode\n");
1688 
1689 		/* enable bypass - no forwarding; all traffic goes to Host */
1690 		cpsw_ale_control_set(cpsw->ale, 0, ALE_BYPASS, 1);
1691 
1692 		/* clean up ALE table */
1693 		cpsw_ale_control_set(cpsw->ale, 0, ALE_CLEAR, 1);
1694 		cpsw_ale_control_get(cpsw->ale, 0, ALE_AGEOUT);
1695 
1696 		cpsw_init_host_port_switch(cpsw);
1697 
1698 		for (i = 0; i < cpsw->data.slaves; i++) {
1699 			struct cpsw_slave *slave = &cpsw->slaves[i];
1700 			struct net_device *sl_ndev = slave->ndev;
1701 			struct cpsw_priv *priv;
1702 
1703 			if (!sl_ndev)
1704 				continue;
1705 
1706 			priv = netdev_priv(sl_ndev);
1707 			slave->port_vlan = vlan;
1708 			WRITE_ONCE(priv->tx_packet_min, CPSW_MIN_PACKET_SIZE_VLAN);
1709 			if (netif_running(sl_ndev))
1710 				cpsw_port_add_switch_def_ale_entries(priv,
1711 								     slave);
1712 		}
1713 
1714 		cpsw_ale_control_set(cpsw->ale, 0, ALE_BYPASS, 0);
1715 		cpsw->data.dual_emac = false;
1716 	} else {
1717 		dev_info(cpsw->dev, "Disable switch mode\n");
1718 
1719 		/* enable bypass - no forwarding; all traffic goes to Host */
1720 		cpsw_ale_control_set(cpsw->ale, 0, ALE_BYPASS, 1);
1721 
1722 		cpsw_ale_control_set(cpsw->ale, 0, ALE_CLEAR, 1);
1723 		cpsw_ale_control_get(cpsw->ale, 0, ALE_AGEOUT);
1724 
1725 		cpsw_init_host_port_dual_mac(cpsw);
1726 
1727 		for (i = 0; i < cpsw->data.slaves; i++) {
1728 			struct cpsw_slave *slave = &cpsw->slaves[i];
1729 			struct net_device *sl_ndev = slave->ndev;
1730 			struct cpsw_priv *priv;
1731 
1732 			if (!sl_ndev)
1733 				continue;
1734 
1735 			priv = netdev_priv(slave->ndev);
1736 			slave->port_vlan = slave->data->dual_emac_res_vlan;
1737 			WRITE_ONCE(priv->tx_packet_min, CPSW_MIN_PACKET_SIZE);
1738 			cpsw_port_add_dual_emac_def_ale_entries(priv, slave);
1739 		}
1740 
1741 		cpsw_ale_control_set(cpsw->ale, 0, ALE_BYPASS, 0);
1742 		cpsw->data.dual_emac = true;
1743 	}
1744 exit:
1745 	rtnl_unlock();
1746 
1747 	return 0;
1748 }
1749 
cpsw_dl_ale_ctrl_get(struct devlink * dl,u32 id,struct devlink_param_gset_ctx * ctx)1750 static int cpsw_dl_ale_ctrl_get(struct devlink *dl, u32 id,
1751 				struct devlink_param_gset_ctx *ctx)
1752 {
1753 	struct cpsw_devlink *dl_priv = devlink_priv(dl);
1754 	struct cpsw_common *cpsw = dl_priv->cpsw;
1755 
1756 	dev_dbg(cpsw->dev, "%s id:%u\n", __func__, id);
1757 
1758 	switch (id) {
1759 	case CPSW_DL_PARAM_ALE_BYPASS:
1760 		ctx->val.vbool = cpsw_ale_control_get(cpsw->ale, 0, ALE_BYPASS);
1761 		break;
1762 	default:
1763 		return -EOPNOTSUPP;
1764 	}
1765 
1766 	return 0;
1767 }
1768 
cpsw_dl_ale_ctrl_set(struct devlink * dl,u32 id,struct devlink_param_gset_ctx * ctx)1769 static int cpsw_dl_ale_ctrl_set(struct devlink *dl, u32 id,
1770 				struct devlink_param_gset_ctx *ctx)
1771 {
1772 	struct cpsw_devlink *dl_priv = devlink_priv(dl);
1773 	struct cpsw_common *cpsw = dl_priv->cpsw;
1774 	int ret = -EOPNOTSUPP;
1775 
1776 	dev_dbg(cpsw->dev, "%s id:%u\n", __func__, id);
1777 
1778 	switch (id) {
1779 	case CPSW_DL_PARAM_ALE_BYPASS:
1780 		ret = cpsw_ale_control_set(cpsw->ale, 0, ALE_BYPASS,
1781 					   ctx->val.vbool);
1782 		if (!ret) {
1783 			cpsw->ale_bypass = ctx->val.vbool;
1784 			cpsw_port_offload_fwd_mark_update(cpsw);
1785 		}
1786 		break;
1787 	default:
1788 		return -EOPNOTSUPP;
1789 	}
1790 
1791 	return 0;
1792 }
1793 
1794 static const struct devlink_param cpsw_devlink_params[] = {
1795 	DEVLINK_PARAM_DRIVER(CPSW_DL_PARAM_SWITCH_MODE,
1796 			     "switch_mode", DEVLINK_PARAM_TYPE_BOOL,
1797 			     BIT(DEVLINK_PARAM_CMODE_RUNTIME),
1798 			     cpsw_dl_switch_mode_get, cpsw_dl_switch_mode_set,
1799 			     NULL),
1800 	DEVLINK_PARAM_DRIVER(CPSW_DL_PARAM_ALE_BYPASS,
1801 			     "ale_bypass", DEVLINK_PARAM_TYPE_BOOL,
1802 			     BIT(DEVLINK_PARAM_CMODE_RUNTIME),
1803 			     cpsw_dl_ale_ctrl_get, cpsw_dl_ale_ctrl_set, NULL),
1804 };
1805 
cpsw_register_devlink(struct cpsw_common * cpsw)1806 static int cpsw_register_devlink(struct cpsw_common *cpsw)
1807 {
1808 	struct device *dev = cpsw->dev;
1809 	struct cpsw_devlink *dl_priv;
1810 	int ret = 0;
1811 
1812 	cpsw->devlink = devlink_alloc(&cpsw_devlink_ops, sizeof(*dl_priv), dev);
1813 	if (!cpsw->devlink)
1814 		return -ENOMEM;
1815 
1816 	dl_priv = devlink_priv(cpsw->devlink);
1817 	dl_priv->cpsw = cpsw;
1818 
1819 	ret = devlink_register(cpsw->devlink);
1820 	if (ret) {
1821 		dev_err(dev, "DL reg fail ret:%d\n", ret);
1822 		goto dl_free;
1823 	}
1824 
1825 	ret = devlink_params_register(cpsw->devlink, cpsw_devlink_params,
1826 				      ARRAY_SIZE(cpsw_devlink_params));
1827 	if (ret) {
1828 		dev_err(dev, "DL params reg fail ret:%d\n", ret);
1829 		goto dl_unreg;
1830 	}
1831 
1832 	devlink_params_publish(cpsw->devlink);
1833 	return ret;
1834 
1835 dl_unreg:
1836 	devlink_unregister(cpsw->devlink);
1837 dl_free:
1838 	devlink_free(cpsw->devlink);
1839 	return ret;
1840 }
1841 
cpsw_unregister_devlink(struct cpsw_common * cpsw)1842 static void cpsw_unregister_devlink(struct cpsw_common *cpsw)
1843 {
1844 	devlink_params_unpublish(cpsw->devlink);
1845 	devlink_params_unregister(cpsw->devlink, cpsw_devlink_params,
1846 				  ARRAY_SIZE(cpsw_devlink_params));
1847 	devlink_unregister(cpsw->devlink);
1848 	devlink_free(cpsw->devlink);
1849 }
1850 
1851 static const struct of_device_id cpsw_of_mtable[] = {
1852 	{ .compatible = "ti,cpsw-switch"},
1853 	{ .compatible = "ti,am335x-cpsw-switch"},
1854 	{ .compatible = "ti,am4372-cpsw-switch"},
1855 	{ .compatible = "ti,dra7-cpsw-switch"},
1856 	{ /* sentinel */ },
1857 };
1858 MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
1859 
1860 static const struct soc_device_attribute cpsw_soc_devices[] = {
1861 	{ .family = "AM33xx", .revision = "ES1.0"},
1862 	{ /* sentinel */ }
1863 };
1864 
cpsw_probe(struct platform_device * pdev)1865 static int cpsw_probe(struct platform_device *pdev)
1866 {
1867 	const struct soc_device_attribute *soc;
1868 	struct device *dev = &pdev->dev;
1869 	struct cpsw_common *cpsw;
1870 	struct resource *ss_res;
1871 	struct gpio_descs *mode;
1872 	void __iomem *ss_regs;
1873 	int ret = 0, ch;
1874 	struct clk *clk;
1875 	int irq;
1876 
1877 	cpsw = devm_kzalloc(dev, sizeof(struct cpsw_common), GFP_KERNEL);
1878 	if (!cpsw)
1879 		return -ENOMEM;
1880 
1881 	cpsw_slave_index = cpsw_slave_index_priv;
1882 
1883 	cpsw->dev = dev;
1884 
1885 	cpsw->slaves = devm_kcalloc(dev,
1886 				    CPSW_SLAVE_PORTS_NUM,
1887 				    sizeof(struct cpsw_slave),
1888 				    GFP_KERNEL);
1889 	if (!cpsw->slaves)
1890 		return -ENOMEM;
1891 
1892 	mode = devm_gpiod_get_array_optional(dev, "mode", GPIOD_OUT_LOW);
1893 	if (IS_ERR(mode)) {
1894 		ret = PTR_ERR(mode);
1895 		dev_err(dev, "gpio request failed, ret %d\n", ret);
1896 		return ret;
1897 	}
1898 
1899 	clk = devm_clk_get(dev, "fck");
1900 	if (IS_ERR(clk)) {
1901 		ret = PTR_ERR(clk);
1902 		dev_err(dev, "fck is not found %d\n", ret);
1903 		return ret;
1904 	}
1905 	cpsw->bus_freq_mhz = clk_get_rate(clk) / 1000000;
1906 
1907 	ss_regs = devm_platform_get_and_ioremap_resource(pdev, 0, &ss_res);
1908 	if (IS_ERR(ss_regs)) {
1909 		ret = PTR_ERR(ss_regs);
1910 		return ret;
1911 	}
1912 	cpsw->regs = ss_regs;
1913 
1914 	irq = platform_get_irq_byname(pdev, "rx");
1915 	if (irq < 0)
1916 		return irq;
1917 	cpsw->irqs_table[0] = irq;
1918 
1919 	irq = platform_get_irq_byname(pdev, "tx");
1920 	if (irq < 0)
1921 		return irq;
1922 	cpsw->irqs_table[1] = irq;
1923 
1924 	irq = platform_get_irq_byname(pdev, "misc");
1925 	if (irq <= 0)
1926 		return irq;
1927 	cpsw->misc_irq = irq;
1928 
1929 	platform_set_drvdata(pdev, cpsw);
1930 	/* This may be required here for child devices. */
1931 	pm_runtime_enable(dev);
1932 
1933 	/* Need to enable clocks with runtime PM api to access module
1934 	 * registers
1935 	 */
1936 	ret = pm_runtime_get_sync(dev);
1937 	if (ret < 0) {
1938 		pm_runtime_put_noidle(dev);
1939 		pm_runtime_disable(dev);
1940 		return ret;
1941 	}
1942 
1943 	ret = cpsw_probe_dt(cpsw);
1944 	if (ret)
1945 		goto clean_dt_ret;
1946 
1947 	soc = soc_device_match(cpsw_soc_devices);
1948 	if (soc)
1949 		cpsw->quirk_irq = true;
1950 
1951 	cpsw->rx_packet_max = rx_packet_max;
1952 	cpsw->descs_pool_size = descs_pool_size;
1953 	eth_random_addr(cpsw->base_mac);
1954 
1955 	ret = cpsw_init_common(cpsw, ss_regs, ale_ageout,
1956 			       (u32 __force)ss_res->start + CPSW2_BD_OFFSET,
1957 			       descs_pool_size);
1958 	if (ret)
1959 		goto clean_dt_ret;
1960 
1961 	cpsw->wr_regs = cpsw->version == CPSW_VERSION_1 ?
1962 			ss_regs + CPSW1_WR_OFFSET :
1963 			ss_regs + CPSW2_WR_OFFSET;
1964 
1965 	ch = cpsw->quirk_irq ? 0 : 7;
1966 	cpsw->txv[0].ch = cpdma_chan_create(cpsw->dma, ch, cpsw_tx_handler, 0);
1967 	if (IS_ERR(cpsw->txv[0].ch)) {
1968 		dev_err(dev, "error initializing tx dma channel\n");
1969 		ret = PTR_ERR(cpsw->txv[0].ch);
1970 		goto clean_cpts;
1971 	}
1972 
1973 	cpsw->rxv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_rx_handler, 1);
1974 	if (IS_ERR(cpsw->rxv[0].ch)) {
1975 		dev_err(dev, "error initializing rx dma channel\n");
1976 		ret = PTR_ERR(cpsw->rxv[0].ch);
1977 		goto clean_cpts;
1978 	}
1979 	cpsw_split_res(cpsw);
1980 
1981 	/* setup netdevs */
1982 	ret = cpsw_create_ports(cpsw);
1983 	if (ret)
1984 		goto clean_unregister_netdev;
1985 
1986 	/* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
1987 	 * MISC IRQs which are always kept disabled with this driver so
1988 	 * we will not request them.
1989 	 *
1990 	 * If anyone wants to implement support for those, make sure to
1991 	 * first request and append them to irqs_table array.
1992 	 */
1993 
1994 	ret = devm_request_irq(dev, cpsw->irqs_table[0], cpsw_rx_interrupt,
1995 			       0, dev_name(dev), cpsw);
1996 	if (ret < 0) {
1997 		dev_err(dev, "error attaching irq (%d)\n", ret);
1998 		goto clean_unregister_netdev;
1999 	}
2000 
2001 	ret = devm_request_irq(dev, cpsw->irqs_table[1], cpsw_tx_interrupt,
2002 			       0, dev_name(dev), cpsw);
2003 	if (ret < 0) {
2004 		dev_err(dev, "error attaching irq (%d)\n", ret);
2005 		goto clean_unregister_netdev;
2006 	}
2007 
2008 	if (!cpsw->cpts)
2009 		goto skip_cpts;
2010 
2011 	ret = devm_request_irq(dev, cpsw->misc_irq, cpsw_misc_interrupt,
2012 			       0, dev_name(&pdev->dev), cpsw);
2013 	if (ret < 0) {
2014 		dev_err(dev, "error attaching misc irq (%d)\n", ret);
2015 		goto clean_unregister_netdev;
2016 	}
2017 
2018 	/* Enable misc CPTS evnt_pend IRQ */
2019 	cpts_set_irqpoll(cpsw->cpts, false);
2020 
2021 skip_cpts:
2022 	ret = cpsw_register_notifiers(cpsw);
2023 	if (ret)
2024 		goto clean_unregister_netdev;
2025 
2026 	ret = cpsw_register_devlink(cpsw);
2027 	if (ret)
2028 		goto clean_unregister_notifiers;
2029 
2030 	ret = cpsw_register_ports(cpsw);
2031 	if (ret)
2032 		goto clean_unregister_notifiers;
2033 
2034 	dev_notice(dev, "initialized (regs %pa, pool size %d) hw_ver:%08X %d.%d (%d)\n",
2035 		   &ss_res->start, descs_pool_size,
2036 		   cpsw->version, CPSW_MAJOR_VERSION(cpsw->version),
2037 		   CPSW_MINOR_VERSION(cpsw->version),
2038 		   CPSW_RTL_VERSION(cpsw->version));
2039 
2040 	pm_runtime_put(dev);
2041 
2042 	return 0;
2043 
2044 clean_unregister_notifiers:
2045 	cpsw_unregister_notifiers(cpsw);
2046 clean_unregister_netdev:
2047 	cpsw_unregister_ports(cpsw);
2048 clean_cpts:
2049 	cpts_release(cpsw->cpts);
2050 	cpdma_ctlr_destroy(cpsw->dma);
2051 clean_dt_ret:
2052 	cpsw_remove_dt(cpsw);
2053 	pm_runtime_put_sync(dev);
2054 	pm_runtime_disable(dev);
2055 	return ret;
2056 }
2057 
cpsw_remove(struct platform_device * pdev)2058 static int cpsw_remove(struct platform_device *pdev)
2059 {
2060 	struct cpsw_common *cpsw = platform_get_drvdata(pdev);
2061 	int ret;
2062 
2063 	ret = pm_runtime_get_sync(&pdev->dev);
2064 	if (ret < 0) {
2065 		pm_runtime_put_noidle(&pdev->dev);
2066 		return ret;
2067 	}
2068 
2069 	cpsw_unregister_notifiers(cpsw);
2070 	cpsw_unregister_devlink(cpsw);
2071 	cpsw_unregister_ports(cpsw);
2072 
2073 	cpts_release(cpsw->cpts);
2074 	cpdma_ctlr_destroy(cpsw->dma);
2075 	cpsw_remove_dt(cpsw);
2076 	pm_runtime_put_sync(&pdev->dev);
2077 	pm_runtime_disable(&pdev->dev);
2078 	return 0;
2079 }
2080 
cpsw_suspend(struct device * dev)2081 static int __maybe_unused cpsw_suspend(struct device *dev)
2082 {
2083 	struct cpsw_common *cpsw = dev_get_drvdata(dev);
2084 	int i;
2085 
2086 	rtnl_lock();
2087 
2088 	for (i = 0; i < cpsw->data.slaves; i++) {
2089 		struct net_device *ndev = cpsw->slaves[i].ndev;
2090 
2091 		if (!(ndev && netif_running(ndev)))
2092 			continue;
2093 
2094 		cpsw_ndo_stop(ndev);
2095 	}
2096 
2097 	rtnl_unlock();
2098 
2099 	/* Select sleep pin state */
2100 	pinctrl_pm_select_sleep_state(dev);
2101 
2102 	return 0;
2103 }
2104 
cpsw_resume(struct device * dev)2105 static int __maybe_unused cpsw_resume(struct device *dev)
2106 {
2107 	struct cpsw_common *cpsw = dev_get_drvdata(dev);
2108 	int i;
2109 
2110 	/* Select default pin state */
2111 	pinctrl_pm_select_default_state(dev);
2112 
2113 	/* shut up ASSERT_RTNL() warning in netif_set_real_num_tx/rx_queues */
2114 	rtnl_lock();
2115 
2116 	for (i = 0; i < cpsw->data.slaves; i++) {
2117 		struct net_device *ndev = cpsw->slaves[i].ndev;
2118 
2119 		if (!(ndev && netif_running(ndev)))
2120 			continue;
2121 
2122 		cpsw_ndo_open(ndev);
2123 	}
2124 
2125 	rtnl_unlock();
2126 
2127 	return 0;
2128 }
2129 
2130 static SIMPLE_DEV_PM_OPS(cpsw_pm_ops, cpsw_suspend, cpsw_resume);
2131 
2132 static struct platform_driver cpsw_driver = {
2133 	.driver = {
2134 		.name	 = "cpsw-switch",
2135 		.pm	 = &cpsw_pm_ops,
2136 		.of_match_table = cpsw_of_mtable,
2137 	},
2138 	.probe = cpsw_probe,
2139 	.remove = cpsw_remove,
2140 };
2141 
2142 module_platform_driver(cpsw_driver);
2143 
2144 MODULE_LICENSE("GPL");
2145 MODULE_DESCRIPTION("TI CPSW switchdev Ethernet driver");
2146