xref: /openbmc/linux/net/dsa/slave.c (revision b7b14ec1ebef35d22f3f4087816468f22c987f75)
1 /*
2  * net/dsa/slave.c - Slave device handling
3  * Copyright (c) 2008-2009 Marvell Semiconductor
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  */
10 
11 #include <linux/list.h>
12 #include <linux/etherdevice.h>
13 #include <linux/netdevice.h>
14 #include <linux/phy.h>
15 #include <linux/phy_fixed.h>
16 #include <linux/phylink.h>
17 #include <linux/of_net.h>
18 #include <linux/of_mdio.h>
19 #include <linux/mdio.h>
20 #include <net/rtnetlink.h>
21 #include <net/pkt_cls.h>
22 #include <net/tc_act/tc_mirred.h>
23 #include <linux/if_bridge.h>
24 #include <linux/netpoll.h>
25 #include <linux/ptp_classify.h>
26 
27 #include "dsa_priv.h"
28 
29 static bool dsa_slave_dev_check(struct net_device *dev);
30 
31 /* slave mii_bus handling ***************************************************/
32 static int dsa_slave_phy_read(struct mii_bus *bus, int addr, int reg)
33 {
34 	struct dsa_switch *ds = bus->priv;
35 
36 	if (ds->phys_mii_mask & (1 << addr))
37 		return ds->ops->phy_read(ds, addr, reg);
38 
39 	return 0xffff;
40 }
41 
42 static int dsa_slave_phy_write(struct mii_bus *bus, int addr, int reg, u16 val)
43 {
44 	struct dsa_switch *ds = bus->priv;
45 
46 	if (ds->phys_mii_mask & (1 << addr))
47 		return ds->ops->phy_write(ds, addr, reg, val);
48 
49 	return 0;
50 }
51 
52 void dsa_slave_mii_bus_init(struct dsa_switch *ds)
53 {
54 	ds->slave_mii_bus->priv = (void *)ds;
55 	ds->slave_mii_bus->name = "dsa slave smi";
56 	ds->slave_mii_bus->read = dsa_slave_phy_read;
57 	ds->slave_mii_bus->write = dsa_slave_phy_write;
58 	snprintf(ds->slave_mii_bus->id, MII_BUS_ID_SIZE, "dsa-%d.%d",
59 		 ds->dst->index, ds->index);
60 	ds->slave_mii_bus->parent = ds->dev;
61 	ds->slave_mii_bus->phy_mask = ~ds->phys_mii_mask;
62 }
63 
64 
65 /* slave device handling ****************************************************/
66 static int dsa_slave_get_iflink(const struct net_device *dev)
67 {
68 	return dsa_slave_to_master(dev)->ifindex;
69 }
70 
71 static int dsa_slave_open(struct net_device *dev)
72 {
73 	struct net_device *master = dsa_slave_to_master(dev);
74 	struct dsa_port *dp = dsa_slave_to_port(dev);
75 	int err;
76 
77 	if (!(master->flags & IFF_UP))
78 		return -ENETDOWN;
79 
80 	if (!ether_addr_equal(dev->dev_addr, master->dev_addr)) {
81 		err = dev_uc_add(master, dev->dev_addr);
82 		if (err < 0)
83 			goto out;
84 	}
85 
86 	if (dev->flags & IFF_ALLMULTI) {
87 		err = dev_set_allmulti(master, 1);
88 		if (err < 0)
89 			goto del_unicast;
90 	}
91 	if (dev->flags & IFF_PROMISC) {
92 		err = dev_set_promiscuity(master, 1);
93 		if (err < 0)
94 			goto clear_allmulti;
95 	}
96 
97 	err = dsa_port_enable(dp, dev->phydev);
98 	if (err)
99 		goto clear_promisc;
100 
101 	phylink_start(dp->pl);
102 
103 	return 0;
104 
105 clear_promisc:
106 	if (dev->flags & IFF_PROMISC)
107 		dev_set_promiscuity(master, -1);
108 clear_allmulti:
109 	if (dev->flags & IFF_ALLMULTI)
110 		dev_set_allmulti(master, -1);
111 del_unicast:
112 	if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
113 		dev_uc_del(master, dev->dev_addr);
114 out:
115 	return err;
116 }
117 
118 static int dsa_slave_close(struct net_device *dev)
119 {
120 	struct net_device *master = dsa_slave_to_master(dev);
121 	struct dsa_port *dp = dsa_slave_to_port(dev);
122 
123 	phylink_stop(dp->pl);
124 
125 	dsa_port_disable(dp, dev->phydev);
126 
127 	dev_mc_unsync(master, dev);
128 	dev_uc_unsync(master, dev);
129 	if (dev->flags & IFF_ALLMULTI)
130 		dev_set_allmulti(master, -1);
131 	if (dev->flags & IFF_PROMISC)
132 		dev_set_promiscuity(master, -1);
133 
134 	if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
135 		dev_uc_del(master, dev->dev_addr);
136 
137 	return 0;
138 }
139 
140 static void dsa_slave_change_rx_flags(struct net_device *dev, int change)
141 {
142 	struct net_device *master = dsa_slave_to_master(dev);
143 	if (dev->flags & IFF_UP) {
144 		if (change & IFF_ALLMULTI)
145 			dev_set_allmulti(master,
146 					 dev->flags & IFF_ALLMULTI ? 1 : -1);
147 		if (change & IFF_PROMISC)
148 			dev_set_promiscuity(master,
149 					    dev->flags & IFF_PROMISC ? 1 : -1);
150 	}
151 }
152 
153 static void dsa_slave_set_rx_mode(struct net_device *dev)
154 {
155 	struct net_device *master = dsa_slave_to_master(dev);
156 
157 	dev_mc_sync(master, dev);
158 	dev_uc_sync(master, dev);
159 }
160 
161 static int dsa_slave_set_mac_address(struct net_device *dev, void *a)
162 {
163 	struct net_device *master = dsa_slave_to_master(dev);
164 	struct sockaddr *addr = a;
165 	int err;
166 
167 	if (!is_valid_ether_addr(addr->sa_data))
168 		return -EADDRNOTAVAIL;
169 
170 	if (!(dev->flags & IFF_UP))
171 		goto out;
172 
173 	if (!ether_addr_equal(addr->sa_data, master->dev_addr)) {
174 		err = dev_uc_add(master, addr->sa_data);
175 		if (err < 0)
176 			return err;
177 	}
178 
179 	if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
180 		dev_uc_del(master, dev->dev_addr);
181 
182 out:
183 	ether_addr_copy(dev->dev_addr, addr->sa_data);
184 
185 	return 0;
186 }
187 
188 struct dsa_slave_dump_ctx {
189 	struct net_device *dev;
190 	struct sk_buff *skb;
191 	struct netlink_callback *cb;
192 	int idx;
193 };
194 
195 static int
196 dsa_slave_port_fdb_do_dump(const unsigned char *addr, u16 vid,
197 			   bool is_static, void *data)
198 {
199 	struct dsa_slave_dump_ctx *dump = data;
200 	u32 portid = NETLINK_CB(dump->cb->skb).portid;
201 	u32 seq = dump->cb->nlh->nlmsg_seq;
202 	struct nlmsghdr *nlh;
203 	struct ndmsg *ndm;
204 
205 	if (dump->idx < dump->cb->args[2])
206 		goto skip;
207 
208 	nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
209 			sizeof(*ndm), NLM_F_MULTI);
210 	if (!nlh)
211 		return -EMSGSIZE;
212 
213 	ndm = nlmsg_data(nlh);
214 	ndm->ndm_family  = AF_BRIDGE;
215 	ndm->ndm_pad1    = 0;
216 	ndm->ndm_pad2    = 0;
217 	ndm->ndm_flags   = NTF_SELF;
218 	ndm->ndm_type    = 0;
219 	ndm->ndm_ifindex = dump->dev->ifindex;
220 	ndm->ndm_state   = is_static ? NUD_NOARP : NUD_REACHABLE;
221 
222 	if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, addr))
223 		goto nla_put_failure;
224 
225 	if (vid && nla_put_u16(dump->skb, NDA_VLAN, vid))
226 		goto nla_put_failure;
227 
228 	nlmsg_end(dump->skb, nlh);
229 
230 skip:
231 	dump->idx++;
232 	return 0;
233 
234 nla_put_failure:
235 	nlmsg_cancel(dump->skb, nlh);
236 	return -EMSGSIZE;
237 }
238 
239 static int
240 dsa_slave_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
241 		   struct net_device *dev, struct net_device *filter_dev,
242 		   int *idx)
243 {
244 	struct dsa_port *dp = dsa_slave_to_port(dev);
245 	struct dsa_slave_dump_ctx dump = {
246 		.dev = dev,
247 		.skb = skb,
248 		.cb = cb,
249 		.idx = *idx,
250 	};
251 	int err;
252 
253 	err = dsa_port_fdb_dump(dp, dsa_slave_port_fdb_do_dump, &dump);
254 	*idx = dump.idx;
255 
256 	return err;
257 }
258 
259 static int dsa_slave_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
260 {
261 	struct dsa_slave_priv *p = netdev_priv(dev);
262 	struct dsa_switch *ds = p->dp->ds;
263 	int port = p->dp->index;
264 
265 	/* Pass through to switch driver if it supports timestamping */
266 	switch (cmd) {
267 	case SIOCGHWTSTAMP:
268 		if (ds->ops->port_hwtstamp_get)
269 			return ds->ops->port_hwtstamp_get(ds, port, ifr);
270 		break;
271 	case SIOCSHWTSTAMP:
272 		if (ds->ops->port_hwtstamp_set)
273 			return ds->ops->port_hwtstamp_set(ds, port, ifr);
274 		break;
275 	}
276 
277 	return phylink_mii_ioctl(p->dp->pl, ifr, cmd);
278 }
279 
280 static int dsa_slave_port_attr_set(struct net_device *dev,
281 				   const struct switchdev_attr *attr,
282 				   struct switchdev_trans *trans)
283 {
284 	struct dsa_port *dp = dsa_slave_to_port(dev);
285 	int ret;
286 
287 	switch (attr->id) {
288 	case SWITCHDEV_ATTR_ID_PORT_STP_STATE:
289 		ret = dsa_port_set_state(dp, attr->u.stp_state, trans);
290 		break;
291 	case SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING:
292 		ret = dsa_port_vlan_filtering(dp, attr->u.vlan_filtering,
293 					      trans);
294 		break;
295 	case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME:
296 		ret = dsa_port_ageing_time(dp, attr->u.ageing_time, trans);
297 		break;
298 	case SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS:
299 		ret = dsa_port_pre_bridge_flags(dp, attr->u.brport_flags,
300 						trans);
301 		break;
302 	case SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS:
303 		ret = dsa_port_bridge_flags(dp, attr->u.brport_flags, trans);
304 		break;
305 	default:
306 		ret = -EOPNOTSUPP;
307 		break;
308 	}
309 
310 	return ret;
311 }
312 
313 static int dsa_slave_port_obj_add(struct net_device *dev,
314 				  const struct switchdev_obj *obj,
315 				  struct switchdev_trans *trans)
316 {
317 	struct dsa_port *dp = dsa_slave_to_port(dev);
318 	int err;
319 
320 	/* For the prepare phase, ensure the full set of changes is feasable in
321 	 * one go in order to signal a failure properly. If an operation is not
322 	 * supported, return -EOPNOTSUPP.
323 	 */
324 
325 	switch (obj->id) {
326 	case SWITCHDEV_OBJ_ID_PORT_MDB:
327 		err = dsa_port_mdb_add(dp, SWITCHDEV_OBJ_PORT_MDB(obj), trans);
328 		break;
329 	case SWITCHDEV_OBJ_ID_HOST_MDB:
330 		/* DSA can directly translate this to a normal MDB add,
331 		 * but on the CPU port.
332 		 */
333 		err = dsa_port_mdb_add(dp->cpu_dp, SWITCHDEV_OBJ_PORT_MDB(obj),
334 				       trans);
335 		break;
336 	case SWITCHDEV_OBJ_ID_PORT_VLAN:
337 		err = dsa_port_vlan_add(dp, SWITCHDEV_OBJ_PORT_VLAN(obj),
338 					trans);
339 		break;
340 	default:
341 		err = -EOPNOTSUPP;
342 		break;
343 	}
344 
345 	return err;
346 }
347 
348 static int dsa_slave_port_obj_del(struct net_device *dev,
349 				  const struct switchdev_obj *obj)
350 {
351 	struct dsa_port *dp = dsa_slave_to_port(dev);
352 	int err;
353 
354 	switch (obj->id) {
355 	case SWITCHDEV_OBJ_ID_PORT_MDB:
356 		err = dsa_port_mdb_del(dp, SWITCHDEV_OBJ_PORT_MDB(obj));
357 		break;
358 	case SWITCHDEV_OBJ_ID_HOST_MDB:
359 		/* DSA can directly translate this to a normal MDB add,
360 		 * but on the CPU port.
361 		 */
362 		err = dsa_port_mdb_del(dp->cpu_dp, SWITCHDEV_OBJ_PORT_MDB(obj));
363 		break;
364 	case SWITCHDEV_OBJ_ID_PORT_VLAN:
365 		err = dsa_port_vlan_del(dp, SWITCHDEV_OBJ_PORT_VLAN(obj));
366 		break;
367 	default:
368 		err = -EOPNOTSUPP;
369 		break;
370 	}
371 
372 	return err;
373 }
374 
375 static int dsa_slave_get_port_parent_id(struct net_device *dev,
376 					struct netdev_phys_item_id *ppid)
377 {
378 	struct dsa_port *dp = dsa_slave_to_port(dev);
379 	struct dsa_switch *ds = dp->ds;
380 	struct dsa_switch_tree *dst = ds->dst;
381 
382 	ppid->id_len = sizeof(dst->index);
383 	memcpy(&ppid->id, &dst->index, ppid->id_len);
384 
385 	return 0;
386 }
387 
388 static inline netdev_tx_t dsa_slave_netpoll_send_skb(struct net_device *dev,
389 						     struct sk_buff *skb)
390 {
391 #ifdef CONFIG_NET_POLL_CONTROLLER
392 	struct dsa_slave_priv *p = netdev_priv(dev);
393 
394 	if (p->netpoll)
395 		netpoll_send_skb(p->netpoll, skb);
396 #else
397 	BUG();
398 #endif
399 	return NETDEV_TX_OK;
400 }
401 
402 static void dsa_skb_tx_timestamp(struct dsa_slave_priv *p,
403 				 struct sk_buff *skb)
404 {
405 	struct dsa_switch *ds = p->dp->ds;
406 	struct sk_buff *clone;
407 	unsigned int type;
408 
409 	type = ptp_classify_raw(skb);
410 	if (type == PTP_CLASS_NONE)
411 		return;
412 
413 	if (!ds->ops->port_txtstamp)
414 		return;
415 
416 	clone = skb_clone_sk(skb);
417 	if (!clone)
418 		return;
419 
420 	if (ds->ops->port_txtstamp(ds, p->dp->index, clone, type))
421 		return;
422 
423 	kfree_skb(clone);
424 }
425 
426 static netdev_tx_t dsa_slave_xmit(struct sk_buff *skb, struct net_device *dev)
427 {
428 	struct dsa_slave_priv *p = netdev_priv(dev);
429 	struct pcpu_sw_netstats *s;
430 	struct sk_buff *nskb;
431 
432 	s = this_cpu_ptr(p->stats64);
433 	u64_stats_update_begin(&s->syncp);
434 	s->tx_packets++;
435 	s->tx_bytes += skb->len;
436 	u64_stats_update_end(&s->syncp);
437 
438 	/* Identify PTP protocol packets, clone them, and pass them to the
439 	 * switch driver
440 	 */
441 	dsa_skb_tx_timestamp(p, skb);
442 
443 	/* Transmit function may have to reallocate the original SKB,
444 	 * in which case it must have freed it. Only free it here on error.
445 	 */
446 	nskb = p->xmit(skb, dev);
447 	if (!nskb) {
448 		kfree_skb(skb);
449 		return NETDEV_TX_OK;
450 	}
451 
452 	/* SKB for netpoll still need to be mangled with the protocol-specific
453 	 * tag to be successfully transmitted
454 	 */
455 	if (unlikely(netpoll_tx_running(dev)))
456 		return dsa_slave_netpoll_send_skb(dev, nskb);
457 
458 	/* Queue the SKB for transmission on the parent interface, but
459 	 * do not modify its EtherType
460 	 */
461 	nskb->dev = dsa_slave_to_master(dev);
462 	dev_queue_xmit(nskb);
463 
464 	return NETDEV_TX_OK;
465 }
466 
467 /* ethtool operations *******************************************************/
468 
469 static void dsa_slave_get_drvinfo(struct net_device *dev,
470 				  struct ethtool_drvinfo *drvinfo)
471 {
472 	strlcpy(drvinfo->driver, "dsa", sizeof(drvinfo->driver));
473 	strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
474 	strlcpy(drvinfo->bus_info, "platform", sizeof(drvinfo->bus_info));
475 }
476 
477 static int dsa_slave_get_regs_len(struct net_device *dev)
478 {
479 	struct dsa_port *dp = dsa_slave_to_port(dev);
480 	struct dsa_switch *ds = dp->ds;
481 
482 	if (ds->ops->get_regs_len)
483 		return ds->ops->get_regs_len(ds, dp->index);
484 
485 	return -EOPNOTSUPP;
486 }
487 
488 static void
489 dsa_slave_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *_p)
490 {
491 	struct dsa_port *dp = dsa_slave_to_port(dev);
492 	struct dsa_switch *ds = dp->ds;
493 
494 	if (ds->ops->get_regs)
495 		ds->ops->get_regs(ds, dp->index, regs, _p);
496 }
497 
498 static int dsa_slave_nway_reset(struct net_device *dev)
499 {
500 	struct dsa_port *dp = dsa_slave_to_port(dev);
501 
502 	return phylink_ethtool_nway_reset(dp->pl);
503 }
504 
505 static int dsa_slave_get_eeprom_len(struct net_device *dev)
506 {
507 	struct dsa_port *dp = dsa_slave_to_port(dev);
508 	struct dsa_switch *ds = dp->ds;
509 
510 	if (ds->cd && ds->cd->eeprom_len)
511 		return ds->cd->eeprom_len;
512 
513 	if (ds->ops->get_eeprom_len)
514 		return ds->ops->get_eeprom_len(ds);
515 
516 	return 0;
517 }
518 
519 static int dsa_slave_get_eeprom(struct net_device *dev,
520 				struct ethtool_eeprom *eeprom, u8 *data)
521 {
522 	struct dsa_port *dp = dsa_slave_to_port(dev);
523 	struct dsa_switch *ds = dp->ds;
524 
525 	if (ds->ops->get_eeprom)
526 		return ds->ops->get_eeprom(ds, eeprom, data);
527 
528 	return -EOPNOTSUPP;
529 }
530 
531 static int dsa_slave_set_eeprom(struct net_device *dev,
532 				struct ethtool_eeprom *eeprom, u8 *data)
533 {
534 	struct dsa_port *dp = dsa_slave_to_port(dev);
535 	struct dsa_switch *ds = dp->ds;
536 
537 	if (ds->ops->set_eeprom)
538 		return ds->ops->set_eeprom(ds, eeprom, data);
539 
540 	return -EOPNOTSUPP;
541 }
542 
543 static void dsa_slave_get_strings(struct net_device *dev,
544 				  uint32_t stringset, uint8_t *data)
545 {
546 	struct dsa_port *dp = dsa_slave_to_port(dev);
547 	struct dsa_switch *ds = dp->ds;
548 
549 	if (stringset == ETH_SS_STATS) {
550 		int len = ETH_GSTRING_LEN;
551 
552 		strncpy(data, "tx_packets", len);
553 		strncpy(data + len, "tx_bytes", len);
554 		strncpy(data + 2 * len, "rx_packets", len);
555 		strncpy(data + 3 * len, "rx_bytes", len);
556 		if (ds->ops->get_strings)
557 			ds->ops->get_strings(ds, dp->index, stringset,
558 					     data + 4 * len);
559 	}
560 }
561 
562 static void dsa_slave_get_ethtool_stats(struct net_device *dev,
563 					struct ethtool_stats *stats,
564 					uint64_t *data)
565 {
566 	struct dsa_port *dp = dsa_slave_to_port(dev);
567 	struct dsa_slave_priv *p = netdev_priv(dev);
568 	struct dsa_switch *ds = dp->ds;
569 	struct pcpu_sw_netstats *s;
570 	unsigned int start;
571 	int i;
572 
573 	for_each_possible_cpu(i) {
574 		u64 tx_packets, tx_bytes, rx_packets, rx_bytes;
575 
576 		s = per_cpu_ptr(p->stats64, i);
577 		do {
578 			start = u64_stats_fetch_begin_irq(&s->syncp);
579 			tx_packets = s->tx_packets;
580 			tx_bytes = s->tx_bytes;
581 			rx_packets = s->rx_packets;
582 			rx_bytes = s->rx_bytes;
583 		} while (u64_stats_fetch_retry_irq(&s->syncp, start));
584 		data[0] += tx_packets;
585 		data[1] += tx_bytes;
586 		data[2] += rx_packets;
587 		data[3] += rx_bytes;
588 	}
589 	if (ds->ops->get_ethtool_stats)
590 		ds->ops->get_ethtool_stats(ds, dp->index, data + 4);
591 }
592 
593 static int dsa_slave_get_sset_count(struct net_device *dev, int sset)
594 {
595 	struct dsa_port *dp = dsa_slave_to_port(dev);
596 	struct dsa_switch *ds = dp->ds;
597 
598 	if (sset == ETH_SS_STATS) {
599 		int count;
600 
601 		count = 4;
602 		if (ds->ops->get_sset_count)
603 			count += ds->ops->get_sset_count(ds, dp->index, sset);
604 
605 		return count;
606 	}
607 
608 	return -EOPNOTSUPP;
609 }
610 
611 static void dsa_slave_get_wol(struct net_device *dev, struct ethtool_wolinfo *w)
612 {
613 	struct dsa_port *dp = dsa_slave_to_port(dev);
614 	struct dsa_switch *ds = dp->ds;
615 
616 	phylink_ethtool_get_wol(dp->pl, w);
617 
618 	if (ds->ops->get_wol)
619 		ds->ops->get_wol(ds, dp->index, w);
620 }
621 
622 static int dsa_slave_set_wol(struct net_device *dev, struct ethtool_wolinfo *w)
623 {
624 	struct dsa_port *dp = dsa_slave_to_port(dev);
625 	struct dsa_switch *ds = dp->ds;
626 	int ret = -EOPNOTSUPP;
627 
628 	phylink_ethtool_set_wol(dp->pl, w);
629 
630 	if (ds->ops->set_wol)
631 		ret = ds->ops->set_wol(ds, dp->index, w);
632 
633 	return ret;
634 }
635 
636 static int dsa_slave_set_eee(struct net_device *dev, struct ethtool_eee *e)
637 {
638 	struct dsa_port *dp = dsa_slave_to_port(dev);
639 	struct dsa_switch *ds = dp->ds;
640 	int ret;
641 
642 	/* Port's PHY and MAC both need to be EEE capable */
643 	if (!dev->phydev || !dp->pl)
644 		return -ENODEV;
645 
646 	if (!ds->ops->set_mac_eee)
647 		return -EOPNOTSUPP;
648 
649 	ret = ds->ops->set_mac_eee(ds, dp->index, e);
650 	if (ret)
651 		return ret;
652 
653 	return phylink_ethtool_set_eee(dp->pl, e);
654 }
655 
656 static int dsa_slave_get_eee(struct net_device *dev, struct ethtool_eee *e)
657 {
658 	struct dsa_port *dp = dsa_slave_to_port(dev);
659 	struct dsa_switch *ds = dp->ds;
660 	int ret;
661 
662 	/* Port's PHY and MAC both need to be EEE capable */
663 	if (!dev->phydev || !dp->pl)
664 		return -ENODEV;
665 
666 	if (!ds->ops->get_mac_eee)
667 		return -EOPNOTSUPP;
668 
669 	ret = ds->ops->get_mac_eee(ds, dp->index, e);
670 	if (ret)
671 		return ret;
672 
673 	return phylink_ethtool_get_eee(dp->pl, e);
674 }
675 
676 static int dsa_slave_get_link_ksettings(struct net_device *dev,
677 					struct ethtool_link_ksettings *cmd)
678 {
679 	struct dsa_port *dp = dsa_slave_to_port(dev);
680 
681 	return phylink_ethtool_ksettings_get(dp->pl, cmd);
682 }
683 
684 static int dsa_slave_set_link_ksettings(struct net_device *dev,
685 					const struct ethtool_link_ksettings *cmd)
686 {
687 	struct dsa_port *dp = dsa_slave_to_port(dev);
688 
689 	return phylink_ethtool_ksettings_set(dp->pl, cmd);
690 }
691 
692 #ifdef CONFIG_NET_POLL_CONTROLLER
693 static int dsa_slave_netpoll_setup(struct net_device *dev,
694 				   struct netpoll_info *ni)
695 {
696 	struct net_device *master = dsa_slave_to_master(dev);
697 	struct dsa_slave_priv *p = netdev_priv(dev);
698 	struct netpoll *netpoll;
699 	int err = 0;
700 
701 	netpoll = kzalloc(sizeof(*netpoll), GFP_KERNEL);
702 	if (!netpoll)
703 		return -ENOMEM;
704 
705 	err = __netpoll_setup(netpoll, master);
706 	if (err) {
707 		kfree(netpoll);
708 		goto out;
709 	}
710 
711 	p->netpoll = netpoll;
712 out:
713 	return err;
714 }
715 
716 static void dsa_slave_netpoll_cleanup(struct net_device *dev)
717 {
718 	struct dsa_slave_priv *p = netdev_priv(dev);
719 	struct netpoll *netpoll = p->netpoll;
720 
721 	if (!netpoll)
722 		return;
723 
724 	p->netpoll = NULL;
725 
726 	__netpoll_free(netpoll);
727 }
728 
729 static void dsa_slave_poll_controller(struct net_device *dev)
730 {
731 }
732 #endif
733 
734 static int dsa_slave_get_phys_port_name(struct net_device *dev,
735 					char *name, size_t len)
736 {
737 	struct dsa_port *dp = dsa_slave_to_port(dev);
738 
739 	if (snprintf(name, len, "p%d", dp->index) >= len)
740 		return -EINVAL;
741 
742 	return 0;
743 }
744 
745 static struct dsa_mall_tc_entry *
746 dsa_slave_mall_tc_entry_find(struct net_device *dev, unsigned long cookie)
747 {
748 	struct dsa_slave_priv *p = netdev_priv(dev);
749 	struct dsa_mall_tc_entry *mall_tc_entry;
750 
751 	list_for_each_entry(mall_tc_entry, &p->mall_tc_list, list)
752 		if (mall_tc_entry->cookie == cookie)
753 			return mall_tc_entry;
754 
755 	return NULL;
756 }
757 
758 static int dsa_slave_add_cls_matchall(struct net_device *dev,
759 				      struct tc_cls_matchall_offload *cls,
760 				      bool ingress)
761 {
762 	struct dsa_port *dp = dsa_slave_to_port(dev);
763 	struct dsa_slave_priv *p = netdev_priv(dev);
764 	struct dsa_mall_tc_entry *mall_tc_entry;
765 	__be16 protocol = cls->common.protocol;
766 	struct dsa_switch *ds = dp->ds;
767 	struct net_device *to_dev;
768 	const struct tc_action *a;
769 	struct dsa_port *to_dp;
770 	int err = -EOPNOTSUPP;
771 
772 	if (!ds->ops->port_mirror_add)
773 		return err;
774 
775 	if (!tcf_exts_has_one_action(cls->exts))
776 		return err;
777 
778 	a = tcf_exts_first_action(cls->exts);
779 
780 	if (is_tcf_mirred_egress_mirror(a) && protocol == htons(ETH_P_ALL)) {
781 		struct dsa_mall_mirror_tc_entry *mirror;
782 
783 		to_dev = tcf_mirred_dev(a);
784 		if (!to_dev)
785 			return -EINVAL;
786 
787 		if (!dsa_slave_dev_check(to_dev))
788 			return -EOPNOTSUPP;
789 
790 		mall_tc_entry = kzalloc(sizeof(*mall_tc_entry), GFP_KERNEL);
791 		if (!mall_tc_entry)
792 			return -ENOMEM;
793 
794 		mall_tc_entry->cookie = cls->cookie;
795 		mall_tc_entry->type = DSA_PORT_MALL_MIRROR;
796 		mirror = &mall_tc_entry->mirror;
797 
798 		to_dp = dsa_slave_to_port(to_dev);
799 
800 		mirror->to_local_port = to_dp->index;
801 		mirror->ingress = ingress;
802 
803 		err = ds->ops->port_mirror_add(ds, dp->index, mirror, ingress);
804 		if (err) {
805 			kfree(mall_tc_entry);
806 			return err;
807 		}
808 
809 		list_add_tail(&mall_tc_entry->list, &p->mall_tc_list);
810 	}
811 
812 	return 0;
813 }
814 
815 static void dsa_slave_del_cls_matchall(struct net_device *dev,
816 				       struct tc_cls_matchall_offload *cls)
817 {
818 	struct dsa_port *dp = dsa_slave_to_port(dev);
819 	struct dsa_mall_tc_entry *mall_tc_entry;
820 	struct dsa_switch *ds = dp->ds;
821 
822 	if (!ds->ops->port_mirror_del)
823 		return;
824 
825 	mall_tc_entry = dsa_slave_mall_tc_entry_find(dev, cls->cookie);
826 	if (!mall_tc_entry)
827 		return;
828 
829 	list_del(&mall_tc_entry->list);
830 
831 	switch (mall_tc_entry->type) {
832 	case DSA_PORT_MALL_MIRROR:
833 		ds->ops->port_mirror_del(ds, dp->index, &mall_tc_entry->mirror);
834 		break;
835 	default:
836 		WARN_ON(1);
837 	}
838 
839 	kfree(mall_tc_entry);
840 }
841 
842 static int dsa_slave_setup_tc_cls_matchall(struct net_device *dev,
843 					   struct tc_cls_matchall_offload *cls,
844 					   bool ingress)
845 {
846 	if (cls->common.chain_index)
847 		return -EOPNOTSUPP;
848 
849 	switch (cls->command) {
850 	case TC_CLSMATCHALL_REPLACE:
851 		return dsa_slave_add_cls_matchall(dev, cls, ingress);
852 	case TC_CLSMATCHALL_DESTROY:
853 		dsa_slave_del_cls_matchall(dev, cls);
854 		return 0;
855 	default:
856 		return -EOPNOTSUPP;
857 	}
858 }
859 
860 static int dsa_slave_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
861 				       void *cb_priv, bool ingress)
862 {
863 	struct net_device *dev = cb_priv;
864 
865 	if (!tc_can_offload(dev))
866 		return -EOPNOTSUPP;
867 
868 	switch (type) {
869 	case TC_SETUP_CLSMATCHALL:
870 		return dsa_slave_setup_tc_cls_matchall(dev, type_data, ingress);
871 	default:
872 		return -EOPNOTSUPP;
873 	}
874 }
875 
876 static int dsa_slave_setup_tc_block_cb_ig(enum tc_setup_type type,
877 					  void *type_data, void *cb_priv)
878 {
879 	return dsa_slave_setup_tc_block_cb(type, type_data, cb_priv, true);
880 }
881 
882 static int dsa_slave_setup_tc_block_cb_eg(enum tc_setup_type type,
883 					  void *type_data, void *cb_priv)
884 {
885 	return dsa_slave_setup_tc_block_cb(type, type_data, cb_priv, false);
886 }
887 
888 static int dsa_slave_setup_tc_block(struct net_device *dev,
889 				    struct tc_block_offload *f)
890 {
891 	tc_setup_cb_t *cb;
892 
893 	if (f->binder_type == TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS)
894 		cb = dsa_slave_setup_tc_block_cb_ig;
895 	else if (f->binder_type == TCF_BLOCK_BINDER_TYPE_CLSACT_EGRESS)
896 		cb = dsa_slave_setup_tc_block_cb_eg;
897 	else
898 		return -EOPNOTSUPP;
899 
900 	switch (f->command) {
901 	case TC_BLOCK_BIND:
902 		return tcf_block_cb_register(f->block, cb, dev, dev, f->extack);
903 	case TC_BLOCK_UNBIND:
904 		tcf_block_cb_unregister(f->block, cb, dev);
905 		return 0;
906 	default:
907 		return -EOPNOTSUPP;
908 	}
909 }
910 
911 static int dsa_slave_setup_tc(struct net_device *dev, enum tc_setup_type type,
912 			      void *type_data)
913 {
914 	switch (type) {
915 	case TC_SETUP_BLOCK:
916 		return dsa_slave_setup_tc_block(dev, type_data);
917 	default:
918 		return -EOPNOTSUPP;
919 	}
920 }
921 
922 static void dsa_slave_get_stats64(struct net_device *dev,
923 				  struct rtnl_link_stats64 *stats)
924 {
925 	struct dsa_slave_priv *p = netdev_priv(dev);
926 	struct pcpu_sw_netstats *s;
927 	unsigned int start;
928 	int i;
929 
930 	netdev_stats_to_stats64(stats, &dev->stats);
931 	for_each_possible_cpu(i) {
932 		u64 tx_packets, tx_bytes, rx_packets, rx_bytes;
933 
934 		s = per_cpu_ptr(p->stats64, i);
935 		do {
936 			start = u64_stats_fetch_begin_irq(&s->syncp);
937 			tx_packets = s->tx_packets;
938 			tx_bytes = s->tx_bytes;
939 			rx_packets = s->rx_packets;
940 			rx_bytes = s->rx_bytes;
941 		} while (u64_stats_fetch_retry_irq(&s->syncp, start));
942 
943 		stats->tx_packets += tx_packets;
944 		stats->tx_bytes += tx_bytes;
945 		stats->rx_packets += rx_packets;
946 		stats->rx_bytes += rx_bytes;
947 	}
948 }
949 
950 static int dsa_slave_get_rxnfc(struct net_device *dev,
951 			       struct ethtool_rxnfc *nfc, u32 *rule_locs)
952 {
953 	struct dsa_port *dp = dsa_slave_to_port(dev);
954 	struct dsa_switch *ds = dp->ds;
955 
956 	if (!ds->ops->get_rxnfc)
957 		return -EOPNOTSUPP;
958 
959 	return ds->ops->get_rxnfc(ds, dp->index, nfc, rule_locs);
960 }
961 
962 static int dsa_slave_set_rxnfc(struct net_device *dev,
963 			       struct ethtool_rxnfc *nfc)
964 {
965 	struct dsa_port *dp = dsa_slave_to_port(dev);
966 	struct dsa_switch *ds = dp->ds;
967 
968 	if (!ds->ops->set_rxnfc)
969 		return -EOPNOTSUPP;
970 
971 	return ds->ops->set_rxnfc(ds, dp->index, nfc);
972 }
973 
974 static int dsa_slave_get_ts_info(struct net_device *dev,
975 				 struct ethtool_ts_info *ts)
976 {
977 	struct dsa_slave_priv *p = netdev_priv(dev);
978 	struct dsa_switch *ds = p->dp->ds;
979 
980 	if (!ds->ops->get_ts_info)
981 		return -EOPNOTSUPP;
982 
983 	return ds->ops->get_ts_info(ds, p->dp->index, ts);
984 }
985 
986 static const struct ethtool_ops dsa_slave_ethtool_ops = {
987 	.get_drvinfo		= dsa_slave_get_drvinfo,
988 	.get_regs_len		= dsa_slave_get_regs_len,
989 	.get_regs		= dsa_slave_get_regs,
990 	.nway_reset		= dsa_slave_nway_reset,
991 	.get_link		= ethtool_op_get_link,
992 	.get_eeprom_len		= dsa_slave_get_eeprom_len,
993 	.get_eeprom		= dsa_slave_get_eeprom,
994 	.set_eeprom		= dsa_slave_set_eeprom,
995 	.get_strings		= dsa_slave_get_strings,
996 	.get_ethtool_stats	= dsa_slave_get_ethtool_stats,
997 	.get_sset_count		= dsa_slave_get_sset_count,
998 	.set_wol		= dsa_slave_set_wol,
999 	.get_wol		= dsa_slave_get_wol,
1000 	.set_eee		= dsa_slave_set_eee,
1001 	.get_eee		= dsa_slave_get_eee,
1002 	.get_link_ksettings	= dsa_slave_get_link_ksettings,
1003 	.set_link_ksettings	= dsa_slave_set_link_ksettings,
1004 	.get_rxnfc		= dsa_slave_get_rxnfc,
1005 	.set_rxnfc		= dsa_slave_set_rxnfc,
1006 	.get_ts_info		= dsa_slave_get_ts_info,
1007 };
1008 
1009 /* legacy way, bypassing the bridge *****************************************/
1010 int dsa_legacy_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
1011 		       struct net_device *dev,
1012 		       const unsigned char *addr, u16 vid,
1013 		       u16 flags,
1014 		       struct netlink_ext_ack *extack)
1015 {
1016 	struct dsa_port *dp = dsa_slave_to_port(dev);
1017 
1018 	return dsa_port_fdb_add(dp, addr, vid);
1019 }
1020 
1021 int dsa_legacy_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
1022 		       struct net_device *dev,
1023 		       const unsigned char *addr, u16 vid)
1024 {
1025 	struct dsa_port *dp = dsa_slave_to_port(dev);
1026 
1027 	return dsa_port_fdb_del(dp, addr, vid);
1028 }
1029 
1030 static const struct net_device_ops dsa_slave_netdev_ops = {
1031 	.ndo_open	 	= dsa_slave_open,
1032 	.ndo_stop		= dsa_slave_close,
1033 	.ndo_start_xmit		= dsa_slave_xmit,
1034 	.ndo_change_rx_flags	= dsa_slave_change_rx_flags,
1035 	.ndo_set_rx_mode	= dsa_slave_set_rx_mode,
1036 	.ndo_set_mac_address	= dsa_slave_set_mac_address,
1037 	.ndo_fdb_add		= dsa_legacy_fdb_add,
1038 	.ndo_fdb_del		= dsa_legacy_fdb_del,
1039 	.ndo_fdb_dump		= dsa_slave_fdb_dump,
1040 	.ndo_do_ioctl		= dsa_slave_ioctl,
1041 	.ndo_get_iflink		= dsa_slave_get_iflink,
1042 #ifdef CONFIG_NET_POLL_CONTROLLER
1043 	.ndo_netpoll_setup	= dsa_slave_netpoll_setup,
1044 	.ndo_netpoll_cleanup	= dsa_slave_netpoll_cleanup,
1045 	.ndo_poll_controller	= dsa_slave_poll_controller,
1046 #endif
1047 	.ndo_get_phys_port_name	= dsa_slave_get_phys_port_name,
1048 	.ndo_setup_tc		= dsa_slave_setup_tc,
1049 	.ndo_get_stats64	= dsa_slave_get_stats64,
1050 	.ndo_get_port_parent_id	= dsa_slave_get_port_parent_id,
1051 };
1052 
1053 static const struct switchdev_ops dsa_slave_switchdev_ops = {
1054 	.switchdev_port_attr_set	= dsa_slave_port_attr_set,
1055 };
1056 
1057 static struct device_type dsa_type = {
1058 	.name	= "dsa",
1059 };
1060 
1061 static void dsa_slave_phylink_validate(struct net_device *dev,
1062 				       unsigned long *supported,
1063 				       struct phylink_link_state *state)
1064 {
1065 	struct dsa_port *dp = dsa_slave_to_port(dev);
1066 	struct dsa_switch *ds = dp->ds;
1067 
1068 	if (!ds->ops->phylink_validate)
1069 		return;
1070 
1071 	ds->ops->phylink_validate(ds, dp->index, supported, state);
1072 }
1073 
1074 static int dsa_slave_phylink_mac_link_state(struct net_device *dev,
1075 					    struct phylink_link_state *state)
1076 {
1077 	struct dsa_port *dp = dsa_slave_to_port(dev);
1078 	struct dsa_switch *ds = dp->ds;
1079 
1080 	/* Only called for SGMII and 802.3z */
1081 	if (!ds->ops->phylink_mac_link_state)
1082 		return -EOPNOTSUPP;
1083 
1084 	return ds->ops->phylink_mac_link_state(ds, dp->index, state);
1085 }
1086 
1087 static void dsa_slave_phylink_mac_config(struct net_device *dev,
1088 					 unsigned int mode,
1089 					 const struct phylink_link_state *state)
1090 {
1091 	struct dsa_port *dp = dsa_slave_to_port(dev);
1092 	struct dsa_switch *ds = dp->ds;
1093 
1094 	if (!ds->ops->phylink_mac_config)
1095 		return;
1096 
1097 	ds->ops->phylink_mac_config(ds, dp->index, mode, state);
1098 }
1099 
1100 static void dsa_slave_phylink_mac_an_restart(struct net_device *dev)
1101 {
1102 	struct dsa_port *dp = dsa_slave_to_port(dev);
1103 	struct dsa_switch *ds = dp->ds;
1104 
1105 	if (!ds->ops->phylink_mac_an_restart)
1106 		return;
1107 
1108 	ds->ops->phylink_mac_an_restart(ds, dp->index);
1109 }
1110 
1111 static void dsa_slave_phylink_mac_link_down(struct net_device *dev,
1112 					    unsigned int mode,
1113 					    phy_interface_t interface)
1114 {
1115 	struct dsa_port *dp = dsa_slave_to_port(dev);
1116 	struct dsa_switch *ds = dp->ds;
1117 
1118 	if (!ds->ops->phylink_mac_link_down) {
1119 		if (ds->ops->adjust_link && dev->phydev)
1120 			ds->ops->adjust_link(ds, dp->index, dev->phydev);
1121 		return;
1122 	}
1123 
1124 	ds->ops->phylink_mac_link_down(ds, dp->index, mode, interface);
1125 }
1126 
1127 static void dsa_slave_phylink_mac_link_up(struct net_device *dev,
1128 					  unsigned int mode,
1129 					  phy_interface_t interface,
1130 					  struct phy_device *phydev)
1131 {
1132 	struct dsa_port *dp = dsa_slave_to_port(dev);
1133 	struct dsa_switch *ds = dp->ds;
1134 
1135 	if (!ds->ops->phylink_mac_link_up) {
1136 		if (ds->ops->adjust_link && dev->phydev)
1137 			ds->ops->adjust_link(ds, dp->index, dev->phydev);
1138 		return;
1139 	}
1140 
1141 	ds->ops->phylink_mac_link_up(ds, dp->index, mode, interface, phydev);
1142 }
1143 
1144 static const struct phylink_mac_ops dsa_slave_phylink_mac_ops = {
1145 	.validate = dsa_slave_phylink_validate,
1146 	.mac_link_state = dsa_slave_phylink_mac_link_state,
1147 	.mac_config = dsa_slave_phylink_mac_config,
1148 	.mac_an_restart = dsa_slave_phylink_mac_an_restart,
1149 	.mac_link_down = dsa_slave_phylink_mac_link_down,
1150 	.mac_link_up = dsa_slave_phylink_mac_link_up,
1151 };
1152 
1153 void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up)
1154 {
1155 	const struct dsa_port *dp = dsa_to_port(ds, port);
1156 
1157 	phylink_mac_change(dp->pl, up);
1158 }
1159 EXPORT_SYMBOL_GPL(dsa_port_phylink_mac_change);
1160 
1161 static void dsa_slave_phylink_fixed_state(struct net_device *dev,
1162 					  struct phylink_link_state *state)
1163 {
1164 	struct dsa_port *dp = dsa_slave_to_port(dev);
1165 	struct dsa_switch *ds = dp->ds;
1166 
1167 	/* No need to check that this operation is valid, the callback would
1168 	 * not be called if it was not.
1169 	 */
1170 	ds->ops->phylink_fixed_state(ds, dp->index, state);
1171 }
1172 
1173 /* slave device setup *******************************************************/
1174 static int dsa_slave_phy_connect(struct net_device *slave_dev, int addr)
1175 {
1176 	struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1177 	struct dsa_switch *ds = dp->ds;
1178 
1179 	slave_dev->phydev = mdiobus_get_phy(ds->slave_mii_bus, addr);
1180 	if (!slave_dev->phydev) {
1181 		netdev_err(slave_dev, "no phy at %d\n", addr);
1182 		return -ENODEV;
1183 	}
1184 
1185 	return phylink_connect_phy(dp->pl, slave_dev->phydev);
1186 }
1187 
1188 static int dsa_slave_phy_setup(struct net_device *slave_dev)
1189 {
1190 	struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1191 	struct device_node *port_dn = dp->dn;
1192 	struct dsa_switch *ds = dp->ds;
1193 	u32 phy_flags = 0;
1194 	int mode, ret;
1195 
1196 	mode = of_get_phy_mode(port_dn);
1197 	if (mode < 0)
1198 		mode = PHY_INTERFACE_MODE_NA;
1199 
1200 	dp->pl = phylink_create(slave_dev, of_fwnode_handle(port_dn), mode,
1201 				&dsa_slave_phylink_mac_ops);
1202 	if (IS_ERR(dp->pl)) {
1203 		netdev_err(slave_dev,
1204 			   "error creating PHYLINK: %ld\n", PTR_ERR(dp->pl));
1205 		return PTR_ERR(dp->pl);
1206 	}
1207 
1208 	/* Register only if the switch provides such a callback, since this
1209 	 * callback takes precedence over polling the link GPIO in PHYLINK
1210 	 * (see phylink_get_fixed_state).
1211 	 */
1212 	if (ds->ops->phylink_fixed_state)
1213 		phylink_fixed_state_cb(dp->pl, dsa_slave_phylink_fixed_state);
1214 
1215 	if (ds->ops->get_phy_flags)
1216 		phy_flags = ds->ops->get_phy_flags(ds, dp->index);
1217 
1218 	ret = phylink_of_phy_connect(dp->pl, port_dn, phy_flags);
1219 	if (ret == -ENODEV) {
1220 		/* We could not connect to a designated PHY or SFP, so use the
1221 		 * switch internal MDIO bus instead
1222 		 */
1223 		ret = dsa_slave_phy_connect(slave_dev, dp->index);
1224 		if (ret) {
1225 			netdev_err(slave_dev,
1226 				   "failed to connect to port %d: %d\n",
1227 				   dp->index, ret);
1228 			phylink_destroy(dp->pl);
1229 			return ret;
1230 		}
1231 	}
1232 
1233 	return 0;
1234 }
1235 
1236 static struct lock_class_key dsa_slave_netdev_xmit_lock_key;
1237 static void dsa_slave_set_lockdep_class_one(struct net_device *dev,
1238 					    struct netdev_queue *txq,
1239 					    void *_unused)
1240 {
1241 	lockdep_set_class(&txq->_xmit_lock,
1242 			  &dsa_slave_netdev_xmit_lock_key);
1243 }
1244 
1245 int dsa_slave_suspend(struct net_device *slave_dev)
1246 {
1247 	struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1248 
1249 	if (!netif_running(slave_dev))
1250 		return 0;
1251 
1252 	netif_device_detach(slave_dev);
1253 
1254 	rtnl_lock();
1255 	phylink_stop(dp->pl);
1256 	rtnl_unlock();
1257 
1258 	return 0;
1259 }
1260 
1261 int dsa_slave_resume(struct net_device *slave_dev)
1262 {
1263 	struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1264 
1265 	if (!netif_running(slave_dev))
1266 		return 0;
1267 
1268 	netif_device_attach(slave_dev);
1269 
1270 	rtnl_lock();
1271 	phylink_start(dp->pl);
1272 	rtnl_unlock();
1273 
1274 	return 0;
1275 }
1276 
1277 static void dsa_slave_notify(struct net_device *dev, unsigned long val)
1278 {
1279 	struct net_device *master = dsa_slave_to_master(dev);
1280 	struct dsa_port *dp = dsa_slave_to_port(dev);
1281 	struct dsa_notifier_register_info rinfo = {
1282 		.switch_number = dp->ds->index,
1283 		.port_number = dp->index,
1284 		.master = master,
1285 		.info.dev = dev,
1286 	};
1287 
1288 	call_dsa_notifiers(val, dev, &rinfo.info);
1289 }
1290 
1291 int dsa_slave_create(struct dsa_port *port)
1292 {
1293 	const struct dsa_port *cpu_dp = port->cpu_dp;
1294 	struct net_device *master = cpu_dp->master;
1295 	struct dsa_switch *ds = port->ds;
1296 	const char *name = port->name;
1297 	struct net_device *slave_dev;
1298 	struct dsa_slave_priv *p;
1299 	int ret;
1300 
1301 	if (!ds->num_tx_queues)
1302 		ds->num_tx_queues = 1;
1303 
1304 	slave_dev = alloc_netdev_mqs(sizeof(struct dsa_slave_priv), name,
1305 				     NET_NAME_UNKNOWN, ether_setup,
1306 				     ds->num_tx_queues, 1);
1307 	if (slave_dev == NULL)
1308 		return -ENOMEM;
1309 
1310 	slave_dev->features = master->vlan_features | NETIF_F_HW_TC;
1311 	slave_dev->hw_features |= NETIF_F_HW_TC;
1312 	slave_dev->ethtool_ops = &dsa_slave_ethtool_ops;
1313 	eth_hw_addr_inherit(slave_dev, master);
1314 	slave_dev->priv_flags |= IFF_NO_QUEUE;
1315 	slave_dev->netdev_ops = &dsa_slave_netdev_ops;
1316 	slave_dev->switchdev_ops = &dsa_slave_switchdev_ops;
1317 	slave_dev->min_mtu = 0;
1318 	slave_dev->max_mtu = ETH_MAX_MTU;
1319 	SET_NETDEV_DEVTYPE(slave_dev, &dsa_type);
1320 
1321 	netdev_for_each_tx_queue(slave_dev, dsa_slave_set_lockdep_class_one,
1322 				 NULL);
1323 
1324 	SET_NETDEV_DEV(slave_dev, port->ds->dev);
1325 	slave_dev->dev.of_node = port->dn;
1326 	slave_dev->vlan_features = master->vlan_features;
1327 
1328 	p = netdev_priv(slave_dev);
1329 	p->stats64 = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1330 	if (!p->stats64) {
1331 		free_netdev(slave_dev);
1332 		return -ENOMEM;
1333 	}
1334 	p->dp = port;
1335 	INIT_LIST_HEAD(&p->mall_tc_list);
1336 	p->xmit = cpu_dp->tag_ops->xmit;
1337 	port->slave = slave_dev;
1338 
1339 	netif_carrier_off(slave_dev);
1340 
1341 	ret = dsa_slave_phy_setup(slave_dev);
1342 	if (ret) {
1343 		netdev_err(master, "error %d setting up slave phy\n", ret);
1344 		goto out_free;
1345 	}
1346 
1347 	dsa_slave_notify(slave_dev, DSA_PORT_REGISTER);
1348 
1349 	ret = register_netdev(slave_dev);
1350 	if (ret) {
1351 		netdev_err(master, "error %d registering interface %s\n",
1352 			   ret, slave_dev->name);
1353 		goto out_phy;
1354 	}
1355 
1356 	return 0;
1357 
1358 out_phy:
1359 	rtnl_lock();
1360 	phylink_disconnect_phy(p->dp->pl);
1361 	rtnl_unlock();
1362 	phylink_destroy(p->dp->pl);
1363 out_free:
1364 	free_percpu(p->stats64);
1365 	free_netdev(slave_dev);
1366 	port->slave = NULL;
1367 	return ret;
1368 }
1369 
1370 void dsa_slave_destroy(struct net_device *slave_dev)
1371 {
1372 	struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1373 	struct dsa_slave_priv *p = netdev_priv(slave_dev);
1374 
1375 	netif_carrier_off(slave_dev);
1376 	rtnl_lock();
1377 	phylink_disconnect_phy(dp->pl);
1378 	rtnl_unlock();
1379 
1380 	dsa_slave_notify(slave_dev, DSA_PORT_UNREGISTER);
1381 	unregister_netdev(slave_dev);
1382 	phylink_destroy(dp->pl);
1383 	free_percpu(p->stats64);
1384 	free_netdev(slave_dev);
1385 }
1386 
1387 static bool dsa_slave_dev_check(struct net_device *dev)
1388 {
1389 	return dev->netdev_ops == &dsa_slave_netdev_ops;
1390 }
1391 
1392 static int dsa_slave_changeupper(struct net_device *dev,
1393 				 struct netdev_notifier_changeupper_info *info)
1394 {
1395 	struct dsa_port *dp = dsa_slave_to_port(dev);
1396 	int err = NOTIFY_DONE;
1397 
1398 	if (netif_is_bridge_master(info->upper_dev)) {
1399 		if (info->linking) {
1400 			err = dsa_port_bridge_join(dp, info->upper_dev);
1401 			err = notifier_from_errno(err);
1402 		} else {
1403 			dsa_port_bridge_leave(dp, info->upper_dev);
1404 			err = NOTIFY_OK;
1405 		}
1406 	}
1407 
1408 	return err;
1409 }
1410 
1411 static int dsa_slave_netdevice_event(struct notifier_block *nb,
1412 				     unsigned long event, void *ptr)
1413 {
1414 	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1415 
1416 	if (!dsa_slave_dev_check(dev))
1417 		return NOTIFY_DONE;
1418 
1419 	if (event == NETDEV_CHANGEUPPER)
1420 		return dsa_slave_changeupper(dev, ptr);
1421 
1422 	return NOTIFY_DONE;
1423 }
1424 
1425 struct dsa_switchdev_event_work {
1426 	struct work_struct work;
1427 	struct switchdev_notifier_fdb_info fdb_info;
1428 	struct net_device *dev;
1429 	unsigned long event;
1430 };
1431 
1432 static void dsa_slave_switchdev_event_work(struct work_struct *work)
1433 {
1434 	struct dsa_switchdev_event_work *switchdev_work =
1435 		container_of(work, struct dsa_switchdev_event_work, work);
1436 	struct net_device *dev = switchdev_work->dev;
1437 	struct switchdev_notifier_fdb_info *fdb_info;
1438 	struct dsa_port *dp = dsa_slave_to_port(dev);
1439 	int err;
1440 
1441 	rtnl_lock();
1442 	switch (switchdev_work->event) {
1443 	case SWITCHDEV_FDB_ADD_TO_DEVICE:
1444 		fdb_info = &switchdev_work->fdb_info;
1445 		if (!fdb_info->added_by_user)
1446 			break;
1447 
1448 		err = dsa_port_fdb_add(dp, fdb_info->addr, fdb_info->vid);
1449 		if (err) {
1450 			netdev_dbg(dev, "fdb add failed err=%d\n", err);
1451 			break;
1452 		}
1453 		fdb_info->offloaded = true;
1454 		call_switchdev_notifiers(SWITCHDEV_FDB_OFFLOADED, dev,
1455 					 &fdb_info->info, NULL);
1456 		break;
1457 
1458 	case SWITCHDEV_FDB_DEL_TO_DEVICE:
1459 		fdb_info = &switchdev_work->fdb_info;
1460 		if (!fdb_info->added_by_user)
1461 			break;
1462 
1463 		err = dsa_port_fdb_del(dp, fdb_info->addr, fdb_info->vid);
1464 		if (err) {
1465 			netdev_dbg(dev, "fdb del failed err=%d\n", err);
1466 			dev_close(dev);
1467 		}
1468 		break;
1469 	}
1470 	rtnl_unlock();
1471 
1472 	kfree(switchdev_work->fdb_info.addr);
1473 	kfree(switchdev_work);
1474 	dev_put(dev);
1475 }
1476 
1477 static int
1478 dsa_slave_switchdev_fdb_work_init(struct dsa_switchdev_event_work *
1479 				  switchdev_work,
1480 				  const struct switchdev_notifier_fdb_info *
1481 				  fdb_info)
1482 {
1483 	memcpy(&switchdev_work->fdb_info, fdb_info,
1484 	       sizeof(switchdev_work->fdb_info));
1485 	switchdev_work->fdb_info.addr = kzalloc(ETH_ALEN, GFP_ATOMIC);
1486 	if (!switchdev_work->fdb_info.addr)
1487 		return -ENOMEM;
1488 	ether_addr_copy((u8 *)switchdev_work->fdb_info.addr,
1489 			fdb_info->addr);
1490 	return 0;
1491 }
1492 
1493 /* Called under rcu_read_lock() */
1494 static int dsa_slave_switchdev_event(struct notifier_block *unused,
1495 				     unsigned long event, void *ptr)
1496 {
1497 	struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
1498 	struct dsa_switchdev_event_work *switchdev_work;
1499 
1500 	if (!dsa_slave_dev_check(dev))
1501 		return NOTIFY_DONE;
1502 
1503 	switchdev_work = kzalloc(sizeof(*switchdev_work), GFP_ATOMIC);
1504 	if (!switchdev_work)
1505 		return NOTIFY_BAD;
1506 
1507 	INIT_WORK(&switchdev_work->work,
1508 		  dsa_slave_switchdev_event_work);
1509 	switchdev_work->dev = dev;
1510 	switchdev_work->event = event;
1511 
1512 	switch (event) {
1513 	case SWITCHDEV_FDB_ADD_TO_DEVICE: /* fall through */
1514 	case SWITCHDEV_FDB_DEL_TO_DEVICE:
1515 		if (dsa_slave_switchdev_fdb_work_init(switchdev_work, ptr))
1516 			goto err_fdb_work_init;
1517 		dev_hold(dev);
1518 		break;
1519 	default:
1520 		kfree(switchdev_work);
1521 		return NOTIFY_DONE;
1522 	}
1523 
1524 	dsa_schedule_work(&switchdev_work->work);
1525 	return NOTIFY_OK;
1526 
1527 err_fdb_work_init:
1528 	kfree(switchdev_work);
1529 	return NOTIFY_BAD;
1530 }
1531 
1532 static int
1533 dsa_slave_switchdev_port_obj_event(unsigned long event,
1534 			struct net_device *netdev,
1535 			struct switchdev_notifier_port_obj_info *port_obj_info)
1536 {
1537 	int err = -EOPNOTSUPP;
1538 
1539 	switch (event) {
1540 	case SWITCHDEV_PORT_OBJ_ADD:
1541 		err = dsa_slave_port_obj_add(netdev, port_obj_info->obj,
1542 					     port_obj_info->trans);
1543 		break;
1544 	case SWITCHDEV_PORT_OBJ_DEL:
1545 		err = dsa_slave_port_obj_del(netdev, port_obj_info->obj);
1546 		break;
1547 	}
1548 
1549 	port_obj_info->handled = true;
1550 	return notifier_from_errno(err);
1551 }
1552 
1553 static int dsa_slave_switchdev_blocking_event(struct notifier_block *unused,
1554 					      unsigned long event, void *ptr)
1555 {
1556 	struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
1557 
1558 	if (!dsa_slave_dev_check(dev))
1559 		return NOTIFY_DONE;
1560 
1561 	switch (event) {
1562 	case SWITCHDEV_PORT_OBJ_ADD: /* fall through */
1563 	case SWITCHDEV_PORT_OBJ_DEL:
1564 		return dsa_slave_switchdev_port_obj_event(event, dev, ptr);
1565 	}
1566 
1567 	return NOTIFY_DONE;
1568 }
1569 
1570 static struct notifier_block dsa_slave_nb __read_mostly = {
1571 	.notifier_call  = dsa_slave_netdevice_event,
1572 };
1573 
1574 static struct notifier_block dsa_slave_switchdev_notifier = {
1575 	.notifier_call = dsa_slave_switchdev_event,
1576 };
1577 
1578 static struct notifier_block dsa_slave_switchdev_blocking_notifier = {
1579 	.notifier_call = dsa_slave_switchdev_blocking_event,
1580 };
1581 
1582 int dsa_slave_register_notifier(void)
1583 {
1584 	struct notifier_block *nb;
1585 	int err;
1586 
1587 	err = register_netdevice_notifier(&dsa_slave_nb);
1588 	if (err)
1589 		return err;
1590 
1591 	err = register_switchdev_notifier(&dsa_slave_switchdev_notifier);
1592 	if (err)
1593 		goto err_switchdev_nb;
1594 
1595 	nb = &dsa_slave_switchdev_blocking_notifier;
1596 	err = register_switchdev_blocking_notifier(nb);
1597 	if (err)
1598 		goto err_switchdev_blocking_nb;
1599 
1600 	return 0;
1601 
1602 err_switchdev_blocking_nb:
1603 	unregister_switchdev_notifier(&dsa_slave_switchdev_notifier);
1604 err_switchdev_nb:
1605 	unregister_netdevice_notifier(&dsa_slave_nb);
1606 	return err;
1607 }
1608 
1609 void dsa_slave_unregister_notifier(void)
1610 {
1611 	struct notifier_block *nb;
1612 	int err;
1613 
1614 	nb = &dsa_slave_switchdev_blocking_notifier;
1615 	err = unregister_switchdev_blocking_notifier(nb);
1616 	if (err)
1617 		pr_err("DSA: failed to unregister switchdev blocking notifier (%d)\n", err);
1618 
1619 	err = unregister_switchdev_notifier(&dsa_slave_switchdev_notifier);
1620 	if (err)
1621 		pr_err("DSA: failed to unregister switchdev notifier (%d)\n", err);
1622 
1623 	err = unregister_netdevice_notifier(&dsa_slave_nb);
1624 	if (err)
1625 		pr_err("DSA: failed to unregister slave notifier (%d)\n", err);
1626 }
1627