1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * net/dsa/slave.c - Slave device handling
4 * Copyright (c) 2008-2009 Marvell Semiconductor
7 #include <linux/list.h>
8 #include <linux/etherdevice.h>
9 #include <linux/netdevice.h>
10 #include <linux/phy.h>
11 #include <linux/phy_fixed.h>
12 #include <linux/phylink.h>
13 #include <linux/of_net.h>
14 #include <linux/of_mdio.h>
15 #include <linux/mdio.h>
16 #include <net/rtnetlink.h>
17 #include <net/pkt_cls.h>
18 #include <net/tc_act/tc_mirred.h>
19 #include <linux/if_bridge.h>
20 #include <linux/netpoll.h>
21 #include <linux/ptp_classify.h>
25 /* slave mii_bus handling ***************************************************/
26 static int dsa_slave_phy_read(struct mii_bus *bus, int addr, int reg)
28 struct dsa_switch *ds = bus->priv;
30 if (ds->phys_mii_mask & (1 << addr))
31 return ds->ops->phy_read(ds, addr, reg);
36 static int dsa_slave_phy_write(struct mii_bus *bus, int addr, int reg, u16 val)
38 struct dsa_switch *ds = bus->priv;
40 if (ds->phys_mii_mask & (1 << addr))
41 return ds->ops->phy_write(ds, addr, reg, val);
46 void dsa_slave_mii_bus_init(struct dsa_switch *ds)
48 ds->slave_mii_bus->priv = (void *)ds;
49 ds->slave_mii_bus->name = "dsa slave smi";
50 ds->slave_mii_bus->read = dsa_slave_phy_read;
51 ds->slave_mii_bus->write = dsa_slave_phy_write;
52 snprintf(ds->slave_mii_bus->id, MII_BUS_ID_SIZE, "dsa-%d.%d",
53 ds->dst->index, ds->index);
54 ds->slave_mii_bus->parent = ds->dev;
55 ds->slave_mii_bus->phy_mask = ~ds->phys_mii_mask;
59 /* slave device handling ****************************************************/
60 static int dsa_slave_get_iflink(const struct net_device *dev)
62 return dsa_slave_to_master(dev)->ifindex;
65 static int dsa_slave_open(struct net_device *dev)
67 struct net_device *master = dsa_slave_to_master(dev);
68 struct dsa_port *dp = dsa_slave_to_port(dev);
71 if (!(master->flags & IFF_UP))
74 if (!ether_addr_equal(dev->dev_addr, master->dev_addr)) {
75 err = dev_uc_add(master, dev->dev_addr);
80 if (dev->flags & IFF_ALLMULTI) {
81 err = dev_set_allmulti(master, 1);
85 if (dev->flags & IFF_PROMISC) {
86 err = dev_set_promiscuity(master, 1);
91 err = dsa_port_enable_rt(dp, dev->phydev);
98 if (dev->flags & IFF_PROMISC)
99 dev_set_promiscuity(master, -1);
101 if (dev->flags & IFF_ALLMULTI)
102 dev_set_allmulti(master, -1);
104 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
105 dev_uc_del(master, dev->dev_addr);
110 static int dsa_slave_close(struct net_device *dev)
112 struct net_device *master = dsa_slave_to_master(dev);
113 struct dsa_port *dp = dsa_slave_to_port(dev);
115 dsa_port_disable_rt(dp);
117 dev_mc_unsync(master, dev);
118 dev_uc_unsync(master, dev);
119 if (dev->flags & IFF_ALLMULTI)
120 dev_set_allmulti(master, -1);
121 if (dev->flags & IFF_PROMISC)
122 dev_set_promiscuity(master, -1);
124 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
125 dev_uc_del(master, dev->dev_addr);
130 static void dsa_slave_change_rx_flags(struct net_device *dev, int change)
132 struct net_device *master = dsa_slave_to_master(dev);
133 if (dev->flags & IFF_UP) {
134 if (change & IFF_ALLMULTI)
135 dev_set_allmulti(master,
136 dev->flags & IFF_ALLMULTI ? 1 : -1);
137 if (change & IFF_PROMISC)
138 dev_set_promiscuity(master,
139 dev->flags & IFF_PROMISC ? 1 : -1);
143 static void dsa_slave_set_rx_mode(struct net_device *dev)
145 struct net_device *master = dsa_slave_to_master(dev);
147 dev_mc_sync(master, dev);
148 dev_uc_sync(master, dev);
151 static int dsa_slave_set_mac_address(struct net_device *dev, void *a)
153 struct net_device *master = dsa_slave_to_master(dev);
154 struct sockaddr *addr = a;
157 if (!is_valid_ether_addr(addr->sa_data))
158 return -EADDRNOTAVAIL;
160 if (!(dev->flags & IFF_UP))
163 if (!ether_addr_equal(addr->sa_data, master->dev_addr)) {
164 err = dev_uc_add(master, addr->sa_data);
169 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
170 dev_uc_del(master, dev->dev_addr);
173 ether_addr_copy(dev->dev_addr, addr->sa_data);
178 struct dsa_slave_dump_ctx {
179 struct net_device *dev;
181 struct netlink_callback *cb;
186 dsa_slave_port_fdb_do_dump(const unsigned char *addr, u16 vid,
187 bool is_static, void *data)
189 struct dsa_slave_dump_ctx *dump = data;
190 u32 portid = NETLINK_CB(dump->cb->skb).portid;
191 u32 seq = dump->cb->nlh->nlmsg_seq;
192 struct nlmsghdr *nlh;
195 if (dump->idx < dump->cb->args[2])
198 nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
199 sizeof(*ndm), NLM_F_MULTI);
203 ndm = nlmsg_data(nlh);
204 ndm->ndm_family = AF_BRIDGE;
207 ndm->ndm_flags = NTF_SELF;
209 ndm->ndm_ifindex = dump->dev->ifindex;
210 ndm->ndm_state = is_static ? NUD_NOARP : NUD_REACHABLE;
212 if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, addr))
213 goto nla_put_failure;
215 if (vid && nla_put_u16(dump->skb, NDA_VLAN, vid))
216 goto nla_put_failure;
218 nlmsg_end(dump->skb, nlh);
225 nlmsg_cancel(dump->skb, nlh);
230 dsa_slave_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
231 struct net_device *dev, struct net_device *filter_dev,
234 struct dsa_port *dp = dsa_slave_to_port(dev);
235 struct dsa_slave_dump_ctx dump = {
243 err = dsa_port_fdb_dump(dp, dsa_slave_port_fdb_do_dump, &dump);
249 static int dsa_slave_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
251 struct dsa_slave_priv *p = netdev_priv(dev);
252 struct dsa_switch *ds = p->dp->ds;
253 int port = p->dp->index;
255 /* Pass through to switch driver if it supports timestamping */
258 if (ds->ops->port_hwtstamp_get)
259 return ds->ops->port_hwtstamp_get(ds, port, ifr);
262 if (ds->ops->port_hwtstamp_set)
263 return ds->ops->port_hwtstamp_set(ds, port, ifr);
267 return phylink_mii_ioctl(p->dp->pl, ifr, cmd);
270 static int dsa_slave_port_attr_set(struct net_device *dev,
271 const struct switchdev_attr *attr,
272 struct switchdev_trans *trans)
274 struct dsa_port *dp = dsa_slave_to_port(dev);
278 case SWITCHDEV_ATTR_ID_PORT_STP_STATE:
279 ret = dsa_port_set_state(dp, attr->u.stp_state, trans);
281 case SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING:
282 ret = dsa_port_vlan_filtering(dp, attr->u.vlan_filtering,
285 case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME:
286 ret = dsa_port_ageing_time(dp, attr->u.ageing_time, trans);
288 case SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS:
289 ret = dsa_port_pre_bridge_flags(dp, attr->u.brport_flags,
292 case SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS:
293 ret = dsa_port_bridge_flags(dp, attr->u.brport_flags, trans);
295 case SWITCHDEV_ATTR_ID_BRIDGE_MROUTER:
296 ret = dsa_port_mrouter(dp->cpu_dp, attr->u.mrouter, trans);
306 static int dsa_slave_vlan_add(struct net_device *dev,
307 const struct switchdev_obj *obj,
308 struct switchdev_trans *trans)
310 struct dsa_port *dp = dsa_slave_to_port(dev);
311 struct switchdev_obj_port_vlan vlan;
314 if (obj->orig_dev != dev)
317 if (dsa_port_skip_vlan_configuration(dp))
320 vlan = *SWITCHDEV_OBJ_PORT_VLAN(obj);
322 err = dsa_port_vlan_add(dp, &vlan, trans);
326 /* We need the dedicated CPU port to be a member of the VLAN as well.
327 * Even though drivers often handle CPU membership in special ways,
328 * it doesn't make sense to program a PVID, so clear this flag.
330 vlan.flags &= ~BRIDGE_VLAN_INFO_PVID;
332 err = dsa_port_vlan_add(dp->cpu_dp, &vlan, trans);
339 static int dsa_slave_port_obj_add(struct net_device *dev,
340 const struct switchdev_obj *obj,
341 struct switchdev_trans *trans,
342 struct netlink_ext_ack *extack)
344 struct dsa_port *dp = dsa_slave_to_port(dev);
347 /* For the prepare phase, ensure the full set of changes is feasable in
348 * one go in order to signal a failure properly. If an operation is not
349 * supported, return -EOPNOTSUPP.
353 case SWITCHDEV_OBJ_ID_PORT_MDB:
354 if (obj->orig_dev != dev)
356 err = dsa_port_mdb_add(dp, SWITCHDEV_OBJ_PORT_MDB(obj), trans);
358 case SWITCHDEV_OBJ_ID_HOST_MDB:
359 /* DSA can directly translate this to a normal MDB add,
360 * but on the CPU port.
362 err = dsa_port_mdb_add(dp->cpu_dp, SWITCHDEV_OBJ_PORT_MDB(obj),
365 case SWITCHDEV_OBJ_ID_PORT_VLAN:
366 err = dsa_slave_vlan_add(dev, obj, trans);
376 static int dsa_slave_vlan_del(struct net_device *dev,
377 const struct switchdev_obj *obj)
379 struct dsa_port *dp = dsa_slave_to_port(dev);
381 if (obj->orig_dev != dev)
384 if (dsa_port_skip_vlan_configuration(dp))
387 /* Do not deprogram the CPU port as it may be shared with other user
388 * ports which can be members of this VLAN as well.
390 return dsa_port_vlan_del(dp, SWITCHDEV_OBJ_PORT_VLAN(obj));
393 static int dsa_slave_port_obj_del(struct net_device *dev,
394 const struct switchdev_obj *obj)
396 struct dsa_port *dp = dsa_slave_to_port(dev);
400 case SWITCHDEV_OBJ_ID_PORT_MDB:
401 if (obj->orig_dev != dev)
403 err = dsa_port_mdb_del(dp, SWITCHDEV_OBJ_PORT_MDB(obj));
405 case SWITCHDEV_OBJ_ID_HOST_MDB:
406 /* DSA can directly translate this to a normal MDB add,
407 * but on the CPU port.
409 err = dsa_port_mdb_del(dp->cpu_dp, SWITCHDEV_OBJ_PORT_MDB(obj));
411 case SWITCHDEV_OBJ_ID_PORT_VLAN:
412 err = dsa_slave_vlan_del(dev, obj);
422 static int dsa_slave_get_port_parent_id(struct net_device *dev,
423 struct netdev_phys_item_id *ppid)
425 struct dsa_port *dp = dsa_slave_to_port(dev);
426 struct dsa_switch *ds = dp->ds;
427 struct dsa_switch_tree *dst = ds->dst;
429 /* For non-legacy ports, devlink is used and it takes
430 * care of the name generation. This ndo implementation
431 * should be removed with legacy support.
436 ppid->id_len = sizeof(dst->index);
437 memcpy(&ppid->id, &dst->index, ppid->id_len);
442 static inline netdev_tx_t dsa_slave_netpoll_send_skb(struct net_device *dev,
445 #ifdef CONFIG_NET_POLL_CONTROLLER
446 struct dsa_slave_priv *p = netdev_priv(dev);
448 return netpoll_send_skb(p->netpoll, skb);
455 static void dsa_skb_tx_timestamp(struct dsa_slave_priv *p,
458 struct dsa_switch *ds = p->dp->ds;
459 struct sk_buff *clone;
462 type = ptp_classify_raw(skb);
463 if (type == PTP_CLASS_NONE)
466 if (!ds->ops->port_txtstamp)
469 clone = skb_clone_sk(skb);
473 DSA_SKB_CB(skb)->clone = clone;
475 if (ds->ops->port_txtstamp(ds, p->dp->index, clone, type))
481 netdev_tx_t dsa_enqueue_skb(struct sk_buff *skb, struct net_device *dev)
483 /* SKB for netpoll still need to be mangled with the protocol-specific
484 * tag to be successfully transmitted
486 if (unlikely(netpoll_tx_running(dev)))
487 return dsa_slave_netpoll_send_skb(dev, skb);
489 /* Queue the SKB for transmission on the parent interface, but
490 * do not modify its EtherType
492 skb->dev = dsa_slave_to_master(dev);
497 EXPORT_SYMBOL_GPL(dsa_enqueue_skb);
499 static netdev_tx_t dsa_slave_xmit(struct sk_buff *skb, struct net_device *dev)
501 struct dsa_slave_priv *p = netdev_priv(dev);
502 struct pcpu_sw_netstats *s;
503 struct sk_buff *nskb;
505 s = this_cpu_ptr(p->stats64);
506 u64_stats_update_begin(&s->syncp);
508 s->tx_bytes += skb->len;
509 u64_stats_update_end(&s->syncp);
511 DSA_SKB_CB(skb)->clone = NULL;
513 /* Identify PTP protocol packets, clone them, and pass them to the
516 dsa_skb_tx_timestamp(p, skb);
518 /* Transmit function may have to reallocate the original SKB,
519 * in which case it must have freed it. Only free it here on error.
521 nskb = p->xmit(skb, dev);
527 return dsa_enqueue_skb(nskb, dev);
530 /* ethtool operations *******************************************************/
532 static void dsa_slave_get_drvinfo(struct net_device *dev,
533 struct ethtool_drvinfo *drvinfo)
535 strlcpy(drvinfo->driver, "dsa", sizeof(drvinfo->driver));
536 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
537 strlcpy(drvinfo->bus_info, "platform", sizeof(drvinfo->bus_info));
540 static int dsa_slave_get_regs_len(struct net_device *dev)
542 struct dsa_port *dp = dsa_slave_to_port(dev);
543 struct dsa_switch *ds = dp->ds;
545 if (ds->ops->get_regs_len)
546 return ds->ops->get_regs_len(ds, dp->index);
552 dsa_slave_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *_p)
554 struct dsa_port *dp = dsa_slave_to_port(dev);
555 struct dsa_switch *ds = dp->ds;
557 if (ds->ops->get_regs)
558 ds->ops->get_regs(ds, dp->index, regs, _p);
561 static int dsa_slave_nway_reset(struct net_device *dev)
563 struct dsa_port *dp = dsa_slave_to_port(dev);
565 return phylink_ethtool_nway_reset(dp->pl);
568 static int dsa_slave_get_eeprom_len(struct net_device *dev)
570 struct dsa_port *dp = dsa_slave_to_port(dev);
571 struct dsa_switch *ds = dp->ds;
573 if (ds->cd && ds->cd->eeprom_len)
574 return ds->cd->eeprom_len;
576 if (ds->ops->get_eeprom_len)
577 return ds->ops->get_eeprom_len(ds);
582 static int dsa_slave_get_eeprom(struct net_device *dev,
583 struct ethtool_eeprom *eeprom, u8 *data)
585 struct dsa_port *dp = dsa_slave_to_port(dev);
586 struct dsa_switch *ds = dp->ds;
588 if (ds->ops->get_eeprom)
589 return ds->ops->get_eeprom(ds, eeprom, data);
594 static int dsa_slave_set_eeprom(struct net_device *dev,
595 struct ethtool_eeprom *eeprom, u8 *data)
597 struct dsa_port *dp = dsa_slave_to_port(dev);
598 struct dsa_switch *ds = dp->ds;
600 if (ds->ops->set_eeprom)
601 return ds->ops->set_eeprom(ds, eeprom, data);
606 static void dsa_slave_get_strings(struct net_device *dev,
607 uint32_t stringset, uint8_t *data)
609 struct dsa_port *dp = dsa_slave_to_port(dev);
610 struct dsa_switch *ds = dp->ds;
612 if (stringset == ETH_SS_STATS) {
613 int len = ETH_GSTRING_LEN;
615 strncpy(data, "tx_packets", len);
616 strncpy(data + len, "tx_bytes", len);
617 strncpy(data + 2 * len, "rx_packets", len);
618 strncpy(data + 3 * len, "rx_bytes", len);
619 if (ds->ops->get_strings)
620 ds->ops->get_strings(ds, dp->index, stringset,
625 static void dsa_slave_get_ethtool_stats(struct net_device *dev,
626 struct ethtool_stats *stats,
629 struct dsa_port *dp = dsa_slave_to_port(dev);
630 struct dsa_slave_priv *p = netdev_priv(dev);
631 struct dsa_switch *ds = dp->ds;
632 struct pcpu_sw_netstats *s;
636 for_each_possible_cpu(i) {
637 u64 tx_packets, tx_bytes, rx_packets, rx_bytes;
639 s = per_cpu_ptr(p->stats64, i);
641 start = u64_stats_fetch_begin_irq(&s->syncp);
642 tx_packets = s->tx_packets;
643 tx_bytes = s->tx_bytes;
644 rx_packets = s->rx_packets;
645 rx_bytes = s->rx_bytes;
646 } while (u64_stats_fetch_retry_irq(&s->syncp, start));
647 data[0] += tx_packets;
649 data[2] += rx_packets;
652 if (ds->ops->get_ethtool_stats)
653 ds->ops->get_ethtool_stats(ds, dp->index, data + 4);
656 static int dsa_slave_get_sset_count(struct net_device *dev, int sset)
658 struct dsa_port *dp = dsa_slave_to_port(dev);
659 struct dsa_switch *ds = dp->ds;
661 if (sset == ETH_SS_STATS) {
665 if (ds->ops->get_sset_count)
666 count += ds->ops->get_sset_count(ds, dp->index, sset);
674 static void dsa_slave_get_wol(struct net_device *dev, struct ethtool_wolinfo *w)
676 struct dsa_port *dp = dsa_slave_to_port(dev);
677 struct dsa_switch *ds = dp->ds;
679 phylink_ethtool_get_wol(dp->pl, w);
681 if (ds->ops->get_wol)
682 ds->ops->get_wol(ds, dp->index, w);
685 static int dsa_slave_set_wol(struct net_device *dev, struct ethtool_wolinfo *w)
687 struct dsa_port *dp = dsa_slave_to_port(dev);
688 struct dsa_switch *ds = dp->ds;
689 int ret = -EOPNOTSUPP;
691 phylink_ethtool_set_wol(dp->pl, w);
693 if (ds->ops->set_wol)
694 ret = ds->ops->set_wol(ds, dp->index, w);
699 static int dsa_slave_set_eee(struct net_device *dev, struct ethtool_eee *e)
701 struct dsa_port *dp = dsa_slave_to_port(dev);
702 struct dsa_switch *ds = dp->ds;
705 /* Port's PHY and MAC both need to be EEE capable */
706 if (!dev->phydev || !dp->pl)
709 if (!ds->ops->set_mac_eee)
712 ret = ds->ops->set_mac_eee(ds, dp->index, e);
716 return phylink_ethtool_set_eee(dp->pl, e);
719 static int dsa_slave_get_eee(struct net_device *dev, struct ethtool_eee *e)
721 struct dsa_port *dp = dsa_slave_to_port(dev);
722 struct dsa_switch *ds = dp->ds;
725 /* Port's PHY and MAC both need to be EEE capable */
726 if (!dev->phydev || !dp->pl)
729 if (!ds->ops->get_mac_eee)
732 ret = ds->ops->get_mac_eee(ds, dp->index, e);
736 return phylink_ethtool_get_eee(dp->pl, e);
739 static int dsa_slave_get_link_ksettings(struct net_device *dev,
740 struct ethtool_link_ksettings *cmd)
742 struct dsa_port *dp = dsa_slave_to_port(dev);
744 return phylink_ethtool_ksettings_get(dp->pl, cmd);
747 static int dsa_slave_set_link_ksettings(struct net_device *dev,
748 const struct ethtool_link_ksettings *cmd)
750 struct dsa_port *dp = dsa_slave_to_port(dev);
752 return phylink_ethtool_ksettings_set(dp->pl, cmd);
755 static void dsa_slave_get_pauseparam(struct net_device *dev,
756 struct ethtool_pauseparam *pause)
758 struct dsa_port *dp = dsa_slave_to_port(dev);
760 phylink_ethtool_get_pauseparam(dp->pl, pause);
763 static int dsa_slave_set_pauseparam(struct net_device *dev,
764 struct ethtool_pauseparam *pause)
766 struct dsa_port *dp = dsa_slave_to_port(dev);
768 return phylink_ethtool_set_pauseparam(dp->pl, pause);
771 #ifdef CONFIG_NET_POLL_CONTROLLER
772 static int dsa_slave_netpoll_setup(struct net_device *dev,
773 struct netpoll_info *ni)
775 struct net_device *master = dsa_slave_to_master(dev);
776 struct dsa_slave_priv *p = netdev_priv(dev);
777 struct netpoll *netpoll;
780 netpoll = kzalloc(sizeof(*netpoll), GFP_KERNEL);
784 err = __netpoll_setup(netpoll, master);
790 p->netpoll = netpoll;
795 static void dsa_slave_netpoll_cleanup(struct net_device *dev)
797 struct dsa_slave_priv *p = netdev_priv(dev);
798 struct netpoll *netpoll = p->netpoll;
805 __netpoll_free(netpoll);
808 static void dsa_slave_poll_controller(struct net_device *dev)
813 static int dsa_slave_get_phys_port_name(struct net_device *dev,
814 char *name, size_t len)
816 struct dsa_port *dp = dsa_slave_to_port(dev);
818 /* For non-legacy ports, devlink is used and it takes
819 * care of the name generation. This ndo implementation
820 * should be removed with legacy support.
825 if (snprintf(name, len, "p%d", dp->index) >= len)
831 static struct dsa_mall_tc_entry *
832 dsa_slave_mall_tc_entry_find(struct net_device *dev, unsigned long cookie)
834 struct dsa_slave_priv *p = netdev_priv(dev);
835 struct dsa_mall_tc_entry *mall_tc_entry;
837 list_for_each_entry(mall_tc_entry, &p->mall_tc_list, list)
838 if (mall_tc_entry->cookie == cookie)
839 return mall_tc_entry;
845 dsa_slave_add_cls_matchall_mirred(struct net_device *dev,
846 struct tc_cls_matchall_offload *cls,
849 struct dsa_port *dp = dsa_slave_to_port(dev);
850 struct dsa_slave_priv *p = netdev_priv(dev);
851 struct dsa_mall_mirror_tc_entry *mirror;
852 struct dsa_mall_tc_entry *mall_tc_entry;
853 struct dsa_switch *ds = dp->ds;
854 struct flow_action_entry *act;
855 struct dsa_port *to_dp;
858 if (!ds->ops->port_mirror_add)
861 if (!flow_action_basic_hw_stats_check(&cls->rule->action,
865 act = &cls->rule->action.entries[0];
870 if (!dsa_slave_dev_check(act->dev))
873 mall_tc_entry = kzalloc(sizeof(*mall_tc_entry), GFP_KERNEL);
877 mall_tc_entry->cookie = cls->cookie;
878 mall_tc_entry->type = DSA_PORT_MALL_MIRROR;
879 mirror = &mall_tc_entry->mirror;
881 to_dp = dsa_slave_to_port(act->dev);
883 mirror->to_local_port = to_dp->index;
884 mirror->ingress = ingress;
886 err = ds->ops->port_mirror_add(ds, dp->index, mirror, ingress);
888 kfree(mall_tc_entry);
892 list_add_tail(&mall_tc_entry->list, &p->mall_tc_list);
898 dsa_slave_add_cls_matchall_police(struct net_device *dev,
899 struct tc_cls_matchall_offload *cls,
902 struct netlink_ext_ack *extack = cls->common.extack;
903 struct dsa_port *dp = dsa_slave_to_port(dev);
904 struct dsa_slave_priv *p = netdev_priv(dev);
905 struct dsa_mall_policer_tc_entry *policer;
906 struct dsa_mall_tc_entry *mall_tc_entry;
907 struct dsa_switch *ds = dp->ds;
908 struct flow_action_entry *act;
911 if (!ds->ops->port_policer_add) {
912 NL_SET_ERR_MSG_MOD(extack,
913 "Policing offload not implemented");
918 NL_SET_ERR_MSG_MOD(extack,
919 "Only supported on ingress qdisc");
923 if (!flow_action_basic_hw_stats_check(&cls->rule->action,
927 list_for_each_entry(mall_tc_entry, &p->mall_tc_list, list) {
928 if (mall_tc_entry->type == DSA_PORT_MALL_POLICER) {
929 NL_SET_ERR_MSG_MOD(extack,
930 "Only one port policer allowed");
935 act = &cls->rule->action.entries[0];
937 mall_tc_entry = kzalloc(sizeof(*mall_tc_entry), GFP_KERNEL);
941 mall_tc_entry->cookie = cls->cookie;
942 mall_tc_entry->type = DSA_PORT_MALL_POLICER;
943 policer = &mall_tc_entry->policer;
944 policer->rate_bytes_per_sec = act->police.rate_bytes_ps;
945 policer->burst = act->police.burst;
947 err = ds->ops->port_policer_add(ds, dp->index, policer);
949 kfree(mall_tc_entry);
953 list_add_tail(&mall_tc_entry->list, &p->mall_tc_list);
958 static int dsa_slave_add_cls_matchall(struct net_device *dev,
959 struct tc_cls_matchall_offload *cls,
962 int err = -EOPNOTSUPP;
964 if (cls->common.protocol == htons(ETH_P_ALL) &&
965 flow_offload_has_one_action(&cls->rule->action) &&
966 cls->rule->action.entries[0].id == FLOW_ACTION_MIRRED)
967 err = dsa_slave_add_cls_matchall_mirred(dev, cls, ingress);
968 else if (flow_offload_has_one_action(&cls->rule->action) &&
969 cls->rule->action.entries[0].id == FLOW_ACTION_POLICE)
970 err = dsa_slave_add_cls_matchall_police(dev, cls, ingress);
975 static void dsa_slave_del_cls_matchall(struct net_device *dev,
976 struct tc_cls_matchall_offload *cls)
978 struct dsa_port *dp = dsa_slave_to_port(dev);
979 struct dsa_mall_tc_entry *mall_tc_entry;
980 struct dsa_switch *ds = dp->ds;
982 mall_tc_entry = dsa_slave_mall_tc_entry_find(dev, cls->cookie);
986 list_del(&mall_tc_entry->list);
988 switch (mall_tc_entry->type) {
989 case DSA_PORT_MALL_MIRROR:
990 if (ds->ops->port_mirror_del)
991 ds->ops->port_mirror_del(ds, dp->index,
992 &mall_tc_entry->mirror);
994 case DSA_PORT_MALL_POLICER:
995 if (ds->ops->port_policer_del)
996 ds->ops->port_policer_del(ds, dp->index);
1002 kfree(mall_tc_entry);
1005 static int dsa_slave_setup_tc_cls_matchall(struct net_device *dev,
1006 struct tc_cls_matchall_offload *cls,
1009 if (cls->common.chain_index)
1012 switch (cls->command) {
1013 case TC_CLSMATCHALL_REPLACE:
1014 return dsa_slave_add_cls_matchall(dev, cls, ingress);
1015 case TC_CLSMATCHALL_DESTROY:
1016 dsa_slave_del_cls_matchall(dev, cls);
1023 static int dsa_slave_add_cls_flower(struct net_device *dev,
1024 struct flow_cls_offload *cls,
1027 struct dsa_port *dp = dsa_slave_to_port(dev);
1028 struct dsa_switch *ds = dp->ds;
1029 int port = dp->index;
1031 if (!ds->ops->cls_flower_add)
1034 return ds->ops->cls_flower_add(ds, port, cls, ingress);
1037 static int dsa_slave_del_cls_flower(struct net_device *dev,
1038 struct flow_cls_offload *cls,
1041 struct dsa_port *dp = dsa_slave_to_port(dev);
1042 struct dsa_switch *ds = dp->ds;
1043 int port = dp->index;
1045 if (!ds->ops->cls_flower_del)
1048 return ds->ops->cls_flower_del(ds, port, cls, ingress);
1051 static int dsa_slave_stats_cls_flower(struct net_device *dev,
1052 struct flow_cls_offload *cls,
1055 struct dsa_port *dp = dsa_slave_to_port(dev);
1056 struct dsa_switch *ds = dp->ds;
1057 int port = dp->index;
1059 if (!ds->ops->cls_flower_stats)
1062 return ds->ops->cls_flower_stats(ds, port, cls, ingress);
1065 static int dsa_slave_setup_tc_cls_flower(struct net_device *dev,
1066 struct flow_cls_offload *cls,
1069 switch (cls->command) {
1070 case FLOW_CLS_REPLACE:
1071 return dsa_slave_add_cls_flower(dev, cls, ingress);
1072 case FLOW_CLS_DESTROY:
1073 return dsa_slave_del_cls_flower(dev, cls, ingress);
1074 case FLOW_CLS_STATS:
1075 return dsa_slave_stats_cls_flower(dev, cls, ingress);
1081 static int dsa_slave_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
1082 void *cb_priv, bool ingress)
1084 struct net_device *dev = cb_priv;
1086 if (!tc_can_offload(dev))
1090 case TC_SETUP_CLSMATCHALL:
1091 return dsa_slave_setup_tc_cls_matchall(dev, type_data, ingress);
1092 case TC_SETUP_CLSFLOWER:
1093 return dsa_slave_setup_tc_cls_flower(dev, type_data, ingress);
1099 static int dsa_slave_setup_tc_block_cb_ig(enum tc_setup_type type,
1100 void *type_data, void *cb_priv)
1102 return dsa_slave_setup_tc_block_cb(type, type_data, cb_priv, true);
1105 static int dsa_slave_setup_tc_block_cb_eg(enum tc_setup_type type,
1106 void *type_data, void *cb_priv)
1108 return dsa_slave_setup_tc_block_cb(type, type_data, cb_priv, false);
1111 static LIST_HEAD(dsa_slave_block_cb_list);
1113 static int dsa_slave_setup_tc_block(struct net_device *dev,
1114 struct flow_block_offload *f)
1116 struct flow_block_cb *block_cb;
1117 flow_setup_cb_t *cb;
1119 if (f->binder_type == FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS)
1120 cb = dsa_slave_setup_tc_block_cb_ig;
1121 else if (f->binder_type == FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS)
1122 cb = dsa_slave_setup_tc_block_cb_eg;
1126 f->driver_block_list = &dsa_slave_block_cb_list;
1128 switch (f->command) {
1129 case FLOW_BLOCK_BIND:
1130 if (flow_block_cb_is_busy(cb, dev, &dsa_slave_block_cb_list))
1133 block_cb = flow_block_cb_alloc(cb, dev, dev, NULL);
1134 if (IS_ERR(block_cb))
1135 return PTR_ERR(block_cb);
1137 flow_block_cb_add(block_cb, f);
1138 list_add_tail(&block_cb->driver_list, &dsa_slave_block_cb_list);
1140 case FLOW_BLOCK_UNBIND:
1141 block_cb = flow_block_cb_lookup(f->block, cb, dev);
1145 flow_block_cb_remove(block_cb, f);
1146 list_del(&block_cb->driver_list);
1153 static int dsa_slave_setup_tc(struct net_device *dev, enum tc_setup_type type,
1156 struct dsa_port *dp = dsa_slave_to_port(dev);
1157 struct dsa_switch *ds = dp->ds;
1159 if (type == TC_SETUP_BLOCK)
1160 return dsa_slave_setup_tc_block(dev, type_data);
1162 if (!ds->ops->port_setup_tc)
1165 return ds->ops->port_setup_tc(ds, dp->index, type, type_data);
1168 static void dsa_slave_get_stats64(struct net_device *dev,
1169 struct rtnl_link_stats64 *stats)
1171 struct dsa_slave_priv *p = netdev_priv(dev);
1172 struct pcpu_sw_netstats *s;
1176 netdev_stats_to_stats64(stats, &dev->stats);
1177 for_each_possible_cpu(i) {
1178 u64 tx_packets, tx_bytes, rx_packets, rx_bytes;
1180 s = per_cpu_ptr(p->stats64, i);
1182 start = u64_stats_fetch_begin_irq(&s->syncp);
1183 tx_packets = s->tx_packets;
1184 tx_bytes = s->tx_bytes;
1185 rx_packets = s->rx_packets;
1186 rx_bytes = s->rx_bytes;
1187 } while (u64_stats_fetch_retry_irq(&s->syncp, start));
1189 stats->tx_packets += tx_packets;
1190 stats->tx_bytes += tx_bytes;
1191 stats->rx_packets += rx_packets;
1192 stats->rx_bytes += rx_bytes;
1196 static int dsa_slave_get_rxnfc(struct net_device *dev,
1197 struct ethtool_rxnfc *nfc, u32 *rule_locs)
1199 struct dsa_port *dp = dsa_slave_to_port(dev);
1200 struct dsa_switch *ds = dp->ds;
1202 if (!ds->ops->get_rxnfc)
1205 return ds->ops->get_rxnfc(ds, dp->index, nfc, rule_locs);
1208 static int dsa_slave_set_rxnfc(struct net_device *dev,
1209 struct ethtool_rxnfc *nfc)
1211 struct dsa_port *dp = dsa_slave_to_port(dev);
1212 struct dsa_switch *ds = dp->ds;
1214 if (!ds->ops->set_rxnfc)
1217 return ds->ops->set_rxnfc(ds, dp->index, nfc);
1220 static int dsa_slave_get_ts_info(struct net_device *dev,
1221 struct ethtool_ts_info *ts)
1223 struct dsa_slave_priv *p = netdev_priv(dev);
1224 struct dsa_switch *ds = p->dp->ds;
1226 if (!ds->ops->get_ts_info)
1229 return ds->ops->get_ts_info(ds, p->dp->index, ts);
1232 static int dsa_slave_vlan_rx_add_vid(struct net_device *dev, __be16 proto,
1235 struct dsa_port *dp = dsa_slave_to_port(dev);
1236 struct bridge_vlan_info info;
1239 /* Check for a possible bridge VLAN entry now since there is no
1240 * need to emulate the switchdev prepare + commit phase.
1242 if (dp->bridge_dev) {
1243 if (dsa_port_skip_vlan_configuration(dp))
1246 /* br_vlan_get_info() returns -EINVAL or -ENOENT if the
1247 * device, respectively the VID is not found, returning
1248 * 0 means success, which is a failure for us here.
1250 ret = br_vlan_get_info(dp->bridge_dev, vid, &info);
1255 ret = dsa_port_vid_add(dp, vid, 0);
1259 ret = dsa_port_vid_add(dp->cpu_dp, vid, 0);
1266 static int dsa_slave_vlan_rx_kill_vid(struct net_device *dev, __be16 proto,
1269 struct dsa_port *dp = dsa_slave_to_port(dev);
1270 struct bridge_vlan_info info;
1273 /* Check for a possible bridge VLAN entry now since there is no
1274 * need to emulate the switchdev prepare + commit phase.
1276 if (dp->bridge_dev) {
1277 if (dsa_port_skip_vlan_configuration(dp))
1280 /* br_vlan_get_info() returns -EINVAL or -ENOENT if the
1281 * device, respectively the VID is not found, returning
1282 * 0 means success, which is a failure for us here.
1284 ret = br_vlan_get_info(dp->bridge_dev, vid, &info);
1289 /* Do not deprogram the CPU port as it may be shared with other user
1290 * ports which can be members of this VLAN as well.
1292 return dsa_port_vid_del(dp, vid);
1295 struct dsa_hw_port {
1296 struct list_head list;
1297 struct net_device *dev;
1301 static int dsa_hw_port_list_set_mtu(struct list_head *hw_port_list, int mtu)
1303 const struct dsa_hw_port *p;
1306 list_for_each_entry(p, hw_port_list, list) {
1307 if (p->dev->mtu == mtu)
1310 err = dev_set_mtu(p->dev, mtu);
1318 list_for_each_entry_continue_reverse(p, hw_port_list, list) {
1319 if (p->dev->mtu == p->old_mtu)
1322 if (dev_set_mtu(p->dev, p->old_mtu))
1323 netdev_err(p->dev, "Failed to restore MTU\n");
1329 static void dsa_hw_port_list_free(struct list_head *hw_port_list)
1331 struct dsa_hw_port *p, *n;
1333 list_for_each_entry_safe(p, n, hw_port_list, list)
1337 /* Make the hardware datapath to/from @dev limited to a common MTU */
1338 static void dsa_bridge_mtu_normalization(struct dsa_port *dp)
1340 struct list_head hw_port_list;
1341 struct dsa_switch_tree *dst;
1342 int min_mtu = ETH_MAX_MTU;
1343 struct dsa_port *other_dp;
1346 if (!dp->ds->mtu_enforcement_ingress)
1349 if (!dp->bridge_dev)
1352 INIT_LIST_HEAD(&hw_port_list);
1354 /* Populate the list of ports that are part of the same bridge
1355 * as the newly added/modified port
1357 list_for_each_entry(dst, &dsa_tree_list, list) {
1358 list_for_each_entry(other_dp, &dst->ports, list) {
1359 struct dsa_hw_port *hw_port;
1360 struct net_device *slave;
1362 if (other_dp->type != DSA_PORT_TYPE_USER)
1365 if (other_dp->bridge_dev != dp->bridge_dev)
1368 if (!other_dp->ds->mtu_enforcement_ingress)
1371 slave = other_dp->slave;
1373 if (min_mtu > slave->mtu)
1374 min_mtu = slave->mtu;
1376 hw_port = kzalloc(sizeof(*hw_port), GFP_KERNEL);
1380 hw_port->dev = slave;
1381 hw_port->old_mtu = slave->mtu;
1383 list_add(&hw_port->list, &hw_port_list);
1387 /* Attempt to configure the entire hardware bridge to the newly added
1388 * interface's MTU first, regardless of whether the intention of the
1389 * user was to raise or lower it.
1391 err = dsa_hw_port_list_set_mtu(&hw_port_list, dp->slave->mtu);
1395 /* Clearly that didn't work out so well, so just set the minimum MTU on
1396 * all hardware bridge ports now. If this fails too, then all ports will
1397 * still have their old MTU rolled back anyway.
1399 dsa_hw_port_list_set_mtu(&hw_port_list, min_mtu);
1402 dsa_hw_port_list_free(&hw_port_list);
1405 static int dsa_slave_change_mtu(struct net_device *dev, int new_mtu)
1407 struct net_device *master = dsa_slave_to_master(dev);
1408 struct dsa_port *dp = dsa_slave_to_port(dev);
1409 struct dsa_slave_priv *p = netdev_priv(dev);
1410 struct dsa_switch *ds = p->dp->ds;
1411 struct dsa_port *cpu_dp;
1412 int port = p->dp->index;
1413 int largest_mtu = 0;
1420 if (!ds->ops->port_change_mtu)
1423 for (i = 0; i < ds->num_ports; i++) {
1426 if (!dsa_is_user_port(ds, i))
1429 /* During probe, this function will be called for each slave
1430 * device, while not all of them have been allocated. That's
1431 * ok, it doesn't change what the maximum is, so ignore it.
1433 if (!dsa_to_port(ds, i)->slave)
1436 /* Pretend that we already applied the setting, which we
1437 * actually haven't (still haven't done all integrity checks)
1440 slave_mtu = new_mtu;
1442 slave_mtu = dsa_to_port(ds, i)->slave->mtu;
1444 if (largest_mtu < slave_mtu)
1445 largest_mtu = slave_mtu;
1448 cpu_dp = dsa_to_port(ds, port)->cpu_dp;
1450 mtu_limit = min_t(int, master->max_mtu, dev->max_mtu);
1451 old_master_mtu = master->mtu;
1452 new_master_mtu = largest_mtu + cpu_dp->tag_ops->overhead;
1453 if (new_master_mtu > mtu_limit)
1456 /* If the master MTU isn't over limit, there's no need to check the CPU
1457 * MTU, since that surely isn't either.
1459 cpu_mtu = largest_mtu;
1461 /* Start applying stuff */
1462 if (new_master_mtu != old_master_mtu) {
1463 err = dev_set_mtu(master, new_master_mtu);
1465 goto out_master_failed;
1467 /* We only need to propagate the MTU of the CPU port to
1468 * upstream switches.
1470 err = dsa_port_mtu_change(cpu_dp, cpu_mtu, true);
1472 goto out_cpu_failed;
1475 err = dsa_port_mtu_change(dp, new_mtu, false);
1477 goto out_port_failed;
1481 dsa_bridge_mtu_normalization(dp);
1486 if (new_master_mtu != old_master_mtu)
1487 dsa_port_mtu_change(cpu_dp, old_master_mtu -
1488 cpu_dp->tag_ops->overhead,
1491 if (new_master_mtu != old_master_mtu)
1492 dev_set_mtu(master, old_master_mtu);
1497 static const struct ethtool_ops dsa_slave_ethtool_ops = {
1498 .get_drvinfo = dsa_slave_get_drvinfo,
1499 .get_regs_len = dsa_slave_get_regs_len,
1500 .get_regs = dsa_slave_get_regs,
1501 .nway_reset = dsa_slave_nway_reset,
1502 .get_link = ethtool_op_get_link,
1503 .get_eeprom_len = dsa_slave_get_eeprom_len,
1504 .get_eeprom = dsa_slave_get_eeprom,
1505 .set_eeprom = dsa_slave_set_eeprom,
1506 .get_strings = dsa_slave_get_strings,
1507 .get_ethtool_stats = dsa_slave_get_ethtool_stats,
1508 .get_sset_count = dsa_slave_get_sset_count,
1509 .set_wol = dsa_slave_set_wol,
1510 .get_wol = dsa_slave_get_wol,
1511 .set_eee = dsa_slave_set_eee,
1512 .get_eee = dsa_slave_get_eee,
1513 .get_link_ksettings = dsa_slave_get_link_ksettings,
1514 .set_link_ksettings = dsa_slave_set_link_ksettings,
1515 .get_pauseparam = dsa_slave_get_pauseparam,
1516 .set_pauseparam = dsa_slave_set_pauseparam,
1517 .get_rxnfc = dsa_slave_get_rxnfc,
1518 .set_rxnfc = dsa_slave_set_rxnfc,
1519 .get_ts_info = dsa_slave_get_ts_info,
1522 /* legacy way, bypassing the bridge *****************************************/
1523 int dsa_legacy_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
1524 struct net_device *dev,
1525 const unsigned char *addr, u16 vid,
1527 struct netlink_ext_ack *extack)
1529 struct dsa_port *dp = dsa_slave_to_port(dev);
1531 return dsa_port_fdb_add(dp, addr, vid);
1534 int dsa_legacy_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
1535 struct net_device *dev,
1536 const unsigned char *addr, u16 vid)
1538 struct dsa_port *dp = dsa_slave_to_port(dev);
1540 return dsa_port_fdb_del(dp, addr, vid);
1543 static struct devlink_port *dsa_slave_get_devlink_port(struct net_device *dev)
1545 struct dsa_port *dp = dsa_slave_to_port(dev);
1547 return dp->ds->devlink ? &dp->devlink_port : NULL;
1550 static const struct net_device_ops dsa_slave_netdev_ops = {
1551 .ndo_open = dsa_slave_open,
1552 .ndo_stop = dsa_slave_close,
1553 .ndo_start_xmit = dsa_slave_xmit,
1554 .ndo_change_rx_flags = dsa_slave_change_rx_flags,
1555 .ndo_set_rx_mode = dsa_slave_set_rx_mode,
1556 .ndo_set_mac_address = dsa_slave_set_mac_address,
1557 .ndo_fdb_add = dsa_legacy_fdb_add,
1558 .ndo_fdb_del = dsa_legacy_fdb_del,
1559 .ndo_fdb_dump = dsa_slave_fdb_dump,
1560 .ndo_do_ioctl = dsa_slave_ioctl,
1561 .ndo_get_iflink = dsa_slave_get_iflink,
1562 #ifdef CONFIG_NET_POLL_CONTROLLER
1563 .ndo_netpoll_setup = dsa_slave_netpoll_setup,
1564 .ndo_netpoll_cleanup = dsa_slave_netpoll_cleanup,
1565 .ndo_poll_controller = dsa_slave_poll_controller,
1567 .ndo_get_phys_port_name = dsa_slave_get_phys_port_name,
1568 .ndo_setup_tc = dsa_slave_setup_tc,
1569 .ndo_get_stats64 = dsa_slave_get_stats64,
1570 .ndo_get_port_parent_id = dsa_slave_get_port_parent_id,
1571 .ndo_vlan_rx_add_vid = dsa_slave_vlan_rx_add_vid,
1572 .ndo_vlan_rx_kill_vid = dsa_slave_vlan_rx_kill_vid,
1573 .ndo_get_devlink_port = dsa_slave_get_devlink_port,
1574 .ndo_change_mtu = dsa_slave_change_mtu,
1577 static struct device_type dsa_type = {
1581 void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up)
1583 const struct dsa_port *dp = dsa_to_port(ds, port);
1586 phylink_mac_change(dp->pl, up);
1588 EXPORT_SYMBOL_GPL(dsa_port_phylink_mac_change);
1590 static void dsa_slave_phylink_fixed_state(struct phylink_config *config,
1591 struct phylink_link_state *state)
1593 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1594 struct dsa_switch *ds = dp->ds;
1596 /* No need to check that this operation is valid, the callback would
1597 * not be called if it was not.
1599 ds->ops->phylink_fixed_state(ds, dp->index, state);
1602 /* slave device setup *******************************************************/
1603 static int dsa_slave_phy_connect(struct net_device *slave_dev, int addr)
1605 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1606 struct dsa_switch *ds = dp->ds;
1608 slave_dev->phydev = mdiobus_get_phy(ds->slave_mii_bus, addr);
1609 if (!slave_dev->phydev) {
1610 netdev_err(slave_dev, "no phy at %d\n", addr);
1614 return phylink_connect_phy(dp->pl, slave_dev->phydev);
1617 static int dsa_slave_phy_setup(struct net_device *slave_dev)
1619 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1620 struct device_node *port_dn = dp->dn;
1621 struct dsa_switch *ds = dp->ds;
1622 phy_interface_t mode;
1626 ret = of_get_phy_mode(port_dn, &mode);
1628 mode = PHY_INTERFACE_MODE_NA;
1630 dp->pl_config.dev = &slave_dev->dev;
1631 dp->pl_config.type = PHYLINK_NETDEV;
1633 /* The get_fixed_state callback takes precedence over polling the
1634 * link GPIO in PHYLINK (see phylink_get_fixed_state). Only set
1635 * this if the switch provides such a callback.
1637 if (ds->ops->phylink_fixed_state) {
1638 dp->pl_config.get_fixed_state = dsa_slave_phylink_fixed_state;
1639 dp->pl_config.poll_fixed_state = true;
1642 dp->pl = phylink_create(&dp->pl_config, of_fwnode_handle(port_dn), mode,
1643 &dsa_port_phylink_mac_ops);
1644 if (IS_ERR(dp->pl)) {
1645 netdev_err(slave_dev,
1646 "error creating PHYLINK: %ld\n", PTR_ERR(dp->pl));
1647 return PTR_ERR(dp->pl);
1650 if (ds->ops->get_phy_flags)
1651 phy_flags = ds->ops->get_phy_flags(ds, dp->index);
1653 ret = phylink_of_phy_connect(dp->pl, port_dn, phy_flags);
1654 if (ret == -ENODEV && ds->slave_mii_bus) {
1655 /* We could not connect to a designated PHY or SFP, so try to
1656 * use the switch internal MDIO bus instead
1658 ret = dsa_slave_phy_connect(slave_dev, dp->index);
1660 netdev_err(slave_dev,
1661 "failed to connect to port %d: %d\n",
1663 phylink_destroy(dp->pl);
1671 static struct lock_class_key dsa_slave_netdev_xmit_lock_key;
1672 static void dsa_slave_set_lockdep_class_one(struct net_device *dev,
1673 struct netdev_queue *txq,
1676 lockdep_set_class(&txq->_xmit_lock,
1677 &dsa_slave_netdev_xmit_lock_key);
1680 int dsa_slave_suspend(struct net_device *slave_dev)
1682 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1684 if (!netif_running(slave_dev))
1687 netif_device_detach(slave_dev);
1690 phylink_stop(dp->pl);
1696 int dsa_slave_resume(struct net_device *slave_dev)
1698 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1700 if (!netif_running(slave_dev))
1703 netif_device_attach(slave_dev);
1706 phylink_start(dp->pl);
1712 static void dsa_slave_notify(struct net_device *dev, unsigned long val)
1714 struct net_device *master = dsa_slave_to_master(dev);
1715 struct dsa_port *dp = dsa_slave_to_port(dev);
1716 struct dsa_notifier_register_info rinfo = {
1717 .switch_number = dp->ds->index,
1718 .port_number = dp->index,
1723 call_dsa_notifiers(val, dev, &rinfo.info);
1726 int dsa_slave_create(struct dsa_port *port)
1728 const struct dsa_port *cpu_dp = port->cpu_dp;
1729 struct net_device *master = cpu_dp->master;
1730 struct dsa_switch *ds = port->ds;
1731 const char *name = port->name;
1732 struct net_device *slave_dev;
1733 struct dsa_slave_priv *p;
1736 if (!ds->num_tx_queues)
1737 ds->num_tx_queues = 1;
1739 slave_dev = alloc_netdev_mqs(sizeof(struct dsa_slave_priv), name,
1740 NET_NAME_UNKNOWN, ether_setup,
1741 ds->num_tx_queues, 1);
1742 if (slave_dev == NULL)
1745 slave_dev->features = master->vlan_features | NETIF_F_HW_TC;
1746 if (ds->ops->port_vlan_add && ds->ops->port_vlan_del)
1747 slave_dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
1748 slave_dev->hw_features |= NETIF_F_HW_TC;
1749 slave_dev->features |= NETIF_F_LLTX;
1750 slave_dev->ethtool_ops = &dsa_slave_ethtool_ops;
1751 if (!IS_ERR_OR_NULL(port->mac))
1752 ether_addr_copy(slave_dev->dev_addr, port->mac);
1754 eth_hw_addr_inherit(slave_dev, master);
1755 slave_dev->priv_flags |= IFF_NO_QUEUE;
1756 slave_dev->netdev_ops = &dsa_slave_netdev_ops;
1757 slave_dev->min_mtu = 0;
1758 if (ds->ops->port_max_mtu)
1759 slave_dev->max_mtu = ds->ops->port_max_mtu(ds, port->index);
1761 slave_dev->max_mtu = ETH_MAX_MTU;
1762 SET_NETDEV_DEVTYPE(slave_dev, &dsa_type);
1764 netdev_for_each_tx_queue(slave_dev, dsa_slave_set_lockdep_class_one,
1767 SET_NETDEV_DEV(slave_dev, port->ds->dev);
1768 slave_dev->dev.of_node = port->dn;
1769 slave_dev->vlan_features = master->vlan_features;
1771 p = netdev_priv(slave_dev);
1772 p->stats64 = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1774 free_netdev(slave_dev);
1778 ret = gro_cells_init(&p->gcells, slave_dev);
1783 INIT_LIST_HEAD(&p->mall_tc_list);
1784 p->xmit = cpu_dp->tag_ops->xmit;
1785 port->slave = slave_dev;
1788 ret = dsa_slave_change_mtu(slave_dev, ETH_DATA_LEN);
1791 dev_warn(ds->dev, "nonfatal error %d setting MTU on port %d\n",
1794 netif_carrier_off(slave_dev);
1796 ret = dsa_slave_phy_setup(slave_dev);
1798 netdev_err(master, "error %d setting up slave phy\n", ret);
1802 dsa_slave_notify(slave_dev, DSA_PORT_REGISTER);
1804 ret = register_netdev(slave_dev);
1806 netdev_err(master, "error %d registering interface %s\n",
1807 ret, slave_dev->name);
1815 phylink_disconnect_phy(p->dp->pl);
1817 phylink_destroy(p->dp->pl);
1819 gro_cells_destroy(&p->gcells);
1821 free_percpu(p->stats64);
1822 free_netdev(slave_dev);
1827 void dsa_slave_destroy(struct net_device *slave_dev)
1829 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1830 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1832 netif_carrier_off(slave_dev);
1834 phylink_disconnect_phy(dp->pl);
1837 dsa_slave_notify(slave_dev, DSA_PORT_UNREGISTER);
1838 unregister_netdev(slave_dev);
1839 phylink_destroy(dp->pl);
1840 gro_cells_destroy(&p->gcells);
1841 free_percpu(p->stats64);
1842 free_netdev(slave_dev);
1845 bool dsa_slave_dev_check(const struct net_device *dev)
1847 return dev->netdev_ops == &dsa_slave_netdev_ops;
1850 static int dsa_slave_changeupper(struct net_device *dev,
1851 struct netdev_notifier_changeupper_info *info)
1853 struct dsa_port *dp = dsa_slave_to_port(dev);
1854 int err = NOTIFY_DONE;
1856 if (netif_is_bridge_master(info->upper_dev)) {
1857 if (info->linking) {
1858 err = dsa_port_bridge_join(dp, info->upper_dev);
1860 dsa_bridge_mtu_normalization(dp);
1861 err = notifier_from_errno(err);
1863 dsa_port_bridge_leave(dp, info->upper_dev);
1871 static int dsa_slave_upper_vlan_check(struct net_device *dev,
1872 struct netdev_notifier_changeupper_info *
1875 struct netlink_ext_ack *ext_ack;
1876 struct net_device *slave;
1877 struct dsa_port *dp;
1879 ext_ack = netdev_notifier_info_to_extack(&info->info);
1881 if (!is_vlan_dev(dev))
1884 slave = vlan_dev_real_dev(dev);
1885 if (!dsa_slave_dev_check(slave))
1888 dp = dsa_slave_to_port(slave);
1889 if (!dp->bridge_dev)
1892 /* Deny enslaving a VLAN device into a VLAN-aware bridge */
1893 if (br_vlan_enabled(dp->bridge_dev) &&
1894 netif_is_bridge_master(info->upper_dev) && info->linking) {
1895 NL_SET_ERR_MSG_MOD(ext_ack,
1896 "Cannot enslave VLAN device into VLAN aware bridge");
1897 return notifier_from_errno(-EINVAL);
1903 static int dsa_slave_netdevice_event(struct notifier_block *nb,
1904 unsigned long event, void *ptr)
1906 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1908 if (event == NETDEV_CHANGEUPPER) {
1909 if (!dsa_slave_dev_check(dev))
1910 return dsa_slave_upper_vlan_check(dev, ptr);
1912 return dsa_slave_changeupper(dev, ptr);
1918 struct dsa_switchdev_event_work {
1919 struct work_struct work;
1920 struct switchdev_notifier_fdb_info fdb_info;
1921 struct net_device *dev;
1922 unsigned long event;
1925 static void dsa_slave_switchdev_event_work(struct work_struct *work)
1927 struct dsa_switchdev_event_work *switchdev_work =
1928 container_of(work, struct dsa_switchdev_event_work, work);
1929 struct net_device *dev = switchdev_work->dev;
1930 struct switchdev_notifier_fdb_info *fdb_info;
1931 struct dsa_port *dp = dsa_slave_to_port(dev);
1935 switch (switchdev_work->event) {
1936 case SWITCHDEV_FDB_ADD_TO_DEVICE:
1937 fdb_info = &switchdev_work->fdb_info;
1938 if (!fdb_info->added_by_user)
1941 err = dsa_port_fdb_add(dp, fdb_info->addr, fdb_info->vid);
1943 netdev_dbg(dev, "fdb add failed err=%d\n", err);
1946 fdb_info->offloaded = true;
1947 call_switchdev_notifiers(SWITCHDEV_FDB_OFFLOADED, dev,
1948 &fdb_info->info, NULL);
1951 case SWITCHDEV_FDB_DEL_TO_DEVICE:
1952 fdb_info = &switchdev_work->fdb_info;
1953 if (!fdb_info->added_by_user)
1956 err = dsa_port_fdb_del(dp, fdb_info->addr, fdb_info->vid);
1958 netdev_dbg(dev, "fdb del failed err=%d\n", err);
1965 kfree(switchdev_work->fdb_info.addr);
1966 kfree(switchdev_work);
1971 dsa_slave_switchdev_fdb_work_init(struct dsa_switchdev_event_work *
1973 const struct switchdev_notifier_fdb_info *
1976 memcpy(&switchdev_work->fdb_info, fdb_info,
1977 sizeof(switchdev_work->fdb_info));
1978 switchdev_work->fdb_info.addr = kzalloc(ETH_ALEN, GFP_ATOMIC);
1979 if (!switchdev_work->fdb_info.addr)
1981 ether_addr_copy((u8 *)switchdev_work->fdb_info.addr,
1986 /* Called under rcu_read_lock() */
1987 static int dsa_slave_switchdev_event(struct notifier_block *unused,
1988 unsigned long event, void *ptr)
1990 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
1991 struct dsa_switchdev_event_work *switchdev_work;
1994 if (event == SWITCHDEV_PORT_ATTR_SET) {
1995 err = switchdev_handle_port_attr_set(dev, ptr,
1996 dsa_slave_dev_check,
1997 dsa_slave_port_attr_set);
1998 return notifier_from_errno(err);
2001 if (!dsa_slave_dev_check(dev))
2004 switchdev_work = kzalloc(sizeof(*switchdev_work), GFP_ATOMIC);
2005 if (!switchdev_work)
2008 INIT_WORK(&switchdev_work->work,
2009 dsa_slave_switchdev_event_work);
2010 switchdev_work->dev = dev;
2011 switchdev_work->event = event;
2014 case SWITCHDEV_FDB_ADD_TO_DEVICE: /* fall through */
2015 case SWITCHDEV_FDB_DEL_TO_DEVICE:
2016 if (dsa_slave_switchdev_fdb_work_init(switchdev_work, ptr))
2017 goto err_fdb_work_init;
2021 kfree(switchdev_work);
2025 dsa_schedule_work(&switchdev_work->work);
2029 kfree(switchdev_work);
2033 static int dsa_slave_switchdev_blocking_event(struct notifier_block *unused,
2034 unsigned long event, void *ptr)
2036 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
2040 case SWITCHDEV_PORT_OBJ_ADD:
2041 err = switchdev_handle_port_obj_add(dev, ptr,
2042 dsa_slave_dev_check,
2043 dsa_slave_port_obj_add);
2044 return notifier_from_errno(err);
2045 case SWITCHDEV_PORT_OBJ_DEL:
2046 err = switchdev_handle_port_obj_del(dev, ptr,
2047 dsa_slave_dev_check,
2048 dsa_slave_port_obj_del);
2049 return notifier_from_errno(err);
2050 case SWITCHDEV_PORT_ATTR_SET:
2051 err = switchdev_handle_port_attr_set(dev, ptr,
2052 dsa_slave_dev_check,
2053 dsa_slave_port_attr_set);
2054 return notifier_from_errno(err);
2060 static struct notifier_block dsa_slave_nb __read_mostly = {
2061 .notifier_call = dsa_slave_netdevice_event,
2064 static struct notifier_block dsa_slave_switchdev_notifier = {
2065 .notifier_call = dsa_slave_switchdev_event,
2068 static struct notifier_block dsa_slave_switchdev_blocking_notifier = {
2069 .notifier_call = dsa_slave_switchdev_blocking_event,
2072 int dsa_slave_register_notifier(void)
2074 struct notifier_block *nb;
2077 err = register_netdevice_notifier(&dsa_slave_nb);
2081 err = register_switchdev_notifier(&dsa_slave_switchdev_notifier);
2083 goto err_switchdev_nb;
2085 nb = &dsa_slave_switchdev_blocking_notifier;
2086 err = register_switchdev_blocking_notifier(nb);
2088 goto err_switchdev_blocking_nb;
2092 err_switchdev_blocking_nb:
2093 unregister_switchdev_notifier(&dsa_slave_switchdev_notifier);
2095 unregister_netdevice_notifier(&dsa_slave_nb);
2099 void dsa_slave_unregister_notifier(void)
2101 struct notifier_block *nb;
2104 nb = &dsa_slave_switchdev_blocking_notifier;
2105 err = unregister_switchdev_blocking_notifier(nb);
2107 pr_err("DSA: failed to unregister switchdev blocking notifier (%d)\n", err);
2109 err = unregister_switchdev_notifier(&dsa_slave_switchdev_notifier);
2111 pr_err("DSA: failed to unregister switchdev notifier (%d)\n", err);
2113 err = unregister_netdevice_notifier(&dsa_slave_nb);
2115 pr_err("DSA: failed to unregister slave notifier (%d)\n", err);