2 * net/dsa/slave.c - Slave device handling
3 * Copyright (c) 2008-2009 Marvell Semiconductor
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.
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>
29 static bool dsa_slave_dev_check(struct net_device *dev);
31 /* slave mii_bus handling ***************************************************/
32 static int dsa_slave_phy_read(struct mii_bus *bus, int addr, int reg)
34 struct dsa_switch *ds = bus->priv;
36 if (ds->phys_mii_mask & (1 << addr))
37 return ds->ops->phy_read(ds, addr, reg);
42 static int dsa_slave_phy_write(struct mii_bus *bus, int addr, int reg, u16 val)
44 struct dsa_switch *ds = bus->priv;
46 if (ds->phys_mii_mask & (1 << addr))
47 return ds->ops->phy_write(ds, addr, reg, val);
52 void dsa_slave_mii_bus_init(struct dsa_switch *ds)
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;
65 /* slave device handling ****************************************************/
66 static int dsa_slave_get_iflink(const struct net_device *dev)
68 return dsa_slave_to_master(dev)->ifindex;
71 static int dsa_slave_open(struct net_device *dev)
73 struct net_device *master = dsa_slave_to_master(dev);
74 struct dsa_port *dp = dsa_slave_to_port(dev);
77 if (!(master->flags & IFF_UP))
80 if (!ether_addr_equal(dev->dev_addr, master->dev_addr)) {
81 err = dev_uc_add(master, dev->dev_addr);
86 if (dev->flags & IFF_ALLMULTI) {
87 err = dev_set_allmulti(master, 1);
91 if (dev->flags & IFF_PROMISC) {
92 err = dev_set_promiscuity(master, 1);
97 err = dsa_port_enable(dp, dev->phydev);
101 phylink_start(dp->pl);
106 if (dev->flags & IFF_PROMISC)
107 dev_set_promiscuity(master, -1);
109 if (dev->flags & IFF_ALLMULTI)
110 dev_set_allmulti(master, -1);
112 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
113 dev_uc_del(master, dev->dev_addr);
118 static int dsa_slave_close(struct net_device *dev)
120 struct net_device *master = dsa_slave_to_master(dev);
121 struct dsa_port *dp = dsa_slave_to_port(dev);
123 phylink_stop(dp->pl);
125 dsa_port_disable(dp);
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);
134 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
135 dev_uc_del(master, dev->dev_addr);
140 static void dsa_slave_change_rx_flags(struct net_device *dev, int change)
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);
153 static void dsa_slave_set_rx_mode(struct net_device *dev)
155 struct net_device *master = dsa_slave_to_master(dev);
157 dev_mc_sync(master, dev);
158 dev_uc_sync(master, dev);
161 static int dsa_slave_set_mac_address(struct net_device *dev, void *a)
163 struct net_device *master = dsa_slave_to_master(dev);
164 struct sockaddr *addr = a;
167 if (!is_valid_ether_addr(addr->sa_data))
168 return -EADDRNOTAVAIL;
170 if (!(dev->flags & IFF_UP))
173 if (!ether_addr_equal(addr->sa_data, master->dev_addr)) {
174 err = dev_uc_add(master, addr->sa_data);
179 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
180 dev_uc_del(master, dev->dev_addr);
183 ether_addr_copy(dev->dev_addr, addr->sa_data);
188 struct dsa_slave_dump_ctx {
189 struct net_device *dev;
191 struct netlink_callback *cb;
196 dsa_slave_port_fdb_do_dump(const unsigned char *addr, u16 vid,
197 bool is_static, void *data)
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;
205 if (dump->idx < dump->cb->args[2])
208 nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
209 sizeof(*ndm), NLM_F_MULTI);
213 ndm = nlmsg_data(nlh);
214 ndm->ndm_family = AF_BRIDGE;
217 ndm->ndm_flags = NTF_SELF;
219 ndm->ndm_ifindex = dump->dev->ifindex;
220 ndm->ndm_state = is_static ? NUD_NOARP : NUD_REACHABLE;
222 if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, addr))
223 goto nla_put_failure;
225 if (vid && nla_put_u16(dump->skb, NDA_VLAN, vid))
226 goto nla_put_failure;
228 nlmsg_end(dump->skb, nlh);
235 nlmsg_cancel(dump->skb, nlh);
240 dsa_slave_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
241 struct net_device *dev, struct net_device *filter_dev,
244 struct dsa_port *dp = dsa_slave_to_port(dev);
245 struct dsa_slave_dump_ctx dump = {
253 err = dsa_port_fdb_dump(dp, dsa_slave_port_fdb_do_dump, &dump);
259 static int dsa_slave_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
261 struct dsa_slave_priv *p = netdev_priv(dev);
262 struct dsa_switch *ds = p->dp->ds;
263 int port = p->dp->index;
265 /* Pass through to switch driver if it supports timestamping */
268 if (ds->ops->port_hwtstamp_get)
269 return ds->ops->port_hwtstamp_get(ds, port, ifr);
272 if (ds->ops->port_hwtstamp_set)
273 return ds->ops->port_hwtstamp_set(ds, port, ifr);
277 return phylink_mii_ioctl(p->dp->pl, ifr, cmd);
280 static int dsa_slave_port_attr_set(struct net_device *dev,
281 const struct switchdev_attr *attr,
282 struct switchdev_trans *trans)
284 struct dsa_port *dp = dsa_slave_to_port(dev);
288 case SWITCHDEV_ATTR_ID_PORT_STP_STATE:
289 ret = dsa_port_set_state(dp, attr->u.stp_state, trans);
291 case SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING:
292 ret = dsa_port_vlan_filtering(dp, attr->u.vlan_filtering,
295 case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME:
296 ret = dsa_port_ageing_time(dp, attr->u.ageing_time, trans);
298 case SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS:
299 ret = dsa_port_pre_bridge_flags(dp, attr->u.brport_flags,
302 case SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS:
303 ret = dsa_port_bridge_flags(dp, attr->u.brport_flags, trans);
313 static int dsa_slave_port_obj_add(struct net_device *dev,
314 const struct switchdev_obj *obj,
315 struct switchdev_trans *trans)
317 struct dsa_port *dp = dsa_slave_to_port(dev);
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.
326 case SWITCHDEV_OBJ_ID_PORT_MDB:
327 err = dsa_port_mdb_add(dp, SWITCHDEV_OBJ_PORT_MDB(obj), trans);
329 case SWITCHDEV_OBJ_ID_HOST_MDB:
330 /* DSA can directly translate this to a normal MDB add,
331 * but on the CPU port.
333 err = dsa_port_mdb_add(dp->cpu_dp, SWITCHDEV_OBJ_PORT_MDB(obj),
336 case SWITCHDEV_OBJ_ID_PORT_VLAN:
337 err = dsa_port_vlan_add(dp, SWITCHDEV_OBJ_PORT_VLAN(obj),
348 static int dsa_slave_port_obj_del(struct net_device *dev,
349 const struct switchdev_obj *obj)
351 struct dsa_port *dp = dsa_slave_to_port(dev);
355 case SWITCHDEV_OBJ_ID_PORT_MDB:
356 err = dsa_port_mdb_del(dp, SWITCHDEV_OBJ_PORT_MDB(obj));
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_del(dp->cpu_dp, SWITCHDEV_OBJ_PORT_MDB(obj));
364 case SWITCHDEV_OBJ_ID_PORT_VLAN:
365 err = dsa_port_vlan_del(dp, SWITCHDEV_OBJ_PORT_VLAN(obj));
375 static int dsa_slave_get_port_parent_id(struct net_device *dev,
376 struct netdev_phys_item_id *ppid)
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;
382 ppid->id_len = sizeof(dst->index);
383 memcpy(&ppid->id, &dst->index, ppid->id_len);
388 static inline netdev_tx_t dsa_slave_netpoll_send_skb(struct net_device *dev,
391 #ifdef CONFIG_NET_POLL_CONTROLLER
392 struct dsa_slave_priv *p = netdev_priv(dev);
395 netpoll_send_skb(p->netpoll, skb);
402 static void dsa_skb_tx_timestamp(struct dsa_slave_priv *p,
405 struct dsa_switch *ds = p->dp->ds;
406 struct sk_buff *clone;
409 type = ptp_classify_raw(skb);
410 if (type == PTP_CLASS_NONE)
413 if (!ds->ops->port_txtstamp)
416 clone = skb_clone_sk(skb);
420 if (ds->ops->port_txtstamp(ds, p->dp->index, clone, type))
426 static netdev_tx_t dsa_slave_xmit(struct sk_buff *skb, struct net_device *dev)
428 struct dsa_slave_priv *p = netdev_priv(dev);
429 struct pcpu_sw_netstats *s;
430 struct sk_buff *nskb;
432 s = this_cpu_ptr(p->stats64);
433 u64_stats_update_begin(&s->syncp);
435 s->tx_bytes += skb->len;
436 u64_stats_update_end(&s->syncp);
438 /* Identify PTP protocol packets, clone them, and pass them to the
441 dsa_skb_tx_timestamp(p, skb);
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.
446 nskb = p->xmit(skb, dev);
452 /* SKB for netpoll still need to be mangled with the protocol-specific
453 * tag to be successfully transmitted
455 if (unlikely(netpoll_tx_running(dev)))
456 return dsa_slave_netpoll_send_skb(dev, nskb);
458 /* Queue the SKB for transmission on the parent interface, but
459 * do not modify its EtherType
461 nskb->dev = dsa_slave_to_master(dev);
462 dev_queue_xmit(nskb);
467 /* ethtool operations *******************************************************/
469 static void dsa_slave_get_drvinfo(struct net_device *dev,
470 struct ethtool_drvinfo *drvinfo)
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));
477 static int dsa_slave_get_regs_len(struct net_device *dev)
479 struct dsa_port *dp = dsa_slave_to_port(dev);
480 struct dsa_switch *ds = dp->ds;
482 if (ds->ops->get_regs_len)
483 return ds->ops->get_regs_len(ds, dp->index);
489 dsa_slave_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *_p)
491 struct dsa_port *dp = dsa_slave_to_port(dev);
492 struct dsa_switch *ds = dp->ds;
494 if (ds->ops->get_regs)
495 ds->ops->get_regs(ds, dp->index, regs, _p);
498 static int dsa_slave_nway_reset(struct net_device *dev)
500 struct dsa_port *dp = dsa_slave_to_port(dev);
502 return phylink_ethtool_nway_reset(dp->pl);
505 static int dsa_slave_get_eeprom_len(struct net_device *dev)
507 struct dsa_port *dp = dsa_slave_to_port(dev);
508 struct dsa_switch *ds = dp->ds;
510 if (ds->cd && ds->cd->eeprom_len)
511 return ds->cd->eeprom_len;
513 if (ds->ops->get_eeprom_len)
514 return ds->ops->get_eeprom_len(ds);
519 static int dsa_slave_get_eeprom(struct net_device *dev,
520 struct ethtool_eeprom *eeprom, u8 *data)
522 struct dsa_port *dp = dsa_slave_to_port(dev);
523 struct dsa_switch *ds = dp->ds;
525 if (ds->ops->get_eeprom)
526 return ds->ops->get_eeprom(ds, eeprom, data);
531 static int dsa_slave_set_eeprom(struct net_device *dev,
532 struct ethtool_eeprom *eeprom, u8 *data)
534 struct dsa_port *dp = dsa_slave_to_port(dev);
535 struct dsa_switch *ds = dp->ds;
537 if (ds->ops->set_eeprom)
538 return ds->ops->set_eeprom(ds, eeprom, data);
543 static void dsa_slave_get_strings(struct net_device *dev,
544 uint32_t stringset, uint8_t *data)
546 struct dsa_port *dp = dsa_slave_to_port(dev);
547 struct dsa_switch *ds = dp->ds;
549 if (stringset == ETH_SS_STATS) {
550 int len = ETH_GSTRING_LEN;
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,
562 static void dsa_slave_get_ethtool_stats(struct net_device *dev,
563 struct ethtool_stats *stats,
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;
573 for_each_possible_cpu(i) {
574 u64 tx_packets, tx_bytes, rx_packets, rx_bytes;
576 s = per_cpu_ptr(p->stats64, i);
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;
586 data[2] += rx_packets;
589 if (ds->ops->get_ethtool_stats)
590 ds->ops->get_ethtool_stats(ds, dp->index, data + 4);
593 static int dsa_slave_get_sset_count(struct net_device *dev, int sset)
595 struct dsa_port *dp = dsa_slave_to_port(dev);
596 struct dsa_switch *ds = dp->ds;
598 if (sset == ETH_SS_STATS) {
602 if (ds->ops->get_sset_count)
603 count += ds->ops->get_sset_count(ds, dp->index, sset);
611 static void dsa_slave_get_wol(struct net_device *dev, struct ethtool_wolinfo *w)
613 struct dsa_port *dp = dsa_slave_to_port(dev);
614 struct dsa_switch *ds = dp->ds;
616 phylink_ethtool_get_wol(dp->pl, w);
618 if (ds->ops->get_wol)
619 ds->ops->get_wol(ds, dp->index, w);
622 static int dsa_slave_set_wol(struct net_device *dev, struct ethtool_wolinfo *w)
624 struct dsa_port *dp = dsa_slave_to_port(dev);
625 struct dsa_switch *ds = dp->ds;
626 int ret = -EOPNOTSUPP;
628 phylink_ethtool_set_wol(dp->pl, w);
630 if (ds->ops->set_wol)
631 ret = ds->ops->set_wol(ds, dp->index, w);
636 static int dsa_slave_set_eee(struct net_device *dev, struct ethtool_eee *e)
638 struct dsa_port *dp = dsa_slave_to_port(dev);
639 struct dsa_switch *ds = dp->ds;
642 /* Port's PHY and MAC both need to be EEE capable */
643 if (!dev->phydev || !dp->pl)
646 if (!ds->ops->set_mac_eee)
649 ret = ds->ops->set_mac_eee(ds, dp->index, e);
653 return phylink_ethtool_set_eee(dp->pl, e);
656 static int dsa_slave_get_eee(struct net_device *dev, struct ethtool_eee *e)
658 struct dsa_port *dp = dsa_slave_to_port(dev);
659 struct dsa_switch *ds = dp->ds;
662 /* Port's PHY and MAC both need to be EEE capable */
663 if (!dev->phydev || !dp->pl)
666 if (!ds->ops->get_mac_eee)
669 ret = ds->ops->get_mac_eee(ds, dp->index, e);
673 return phylink_ethtool_get_eee(dp->pl, e);
676 static int dsa_slave_get_link_ksettings(struct net_device *dev,
677 struct ethtool_link_ksettings *cmd)
679 struct dsa_port *dp = dsa_slave_to_port(dev);
681 return phylink_ethtool_ksettings_get(dp->pl, cmd);
684 static int dsa_slave_set_link_ksettings(struct net_device *dev,
685 const struct ethtool_link_ksettings *cmd)
687 struct dsa_port *dp = dsa_slave_to_port(dev);
689 return phylink_ethtool_ksettings_set(dp->pl, cmd);
692 #ifdef CONFIG_NET_POLL_CONTROLLER
693 static int dsa_slave_netpoll_setup(struct net_device *dev,
694 struct netpoll_info *ni)
696 struct net_device *master = dsa_slave_to_master(dev);
697 struct dsa_slave_priv *p = netdev_priv(dev);
698 struct netpoll *netpoll;
701 netpoll = kzalloc(sizeof(*netpoll), GFP_KERNEL);
705 err = __netpoll_setup(netpoll, master);
711 p->netpoll = netpoll;
716 static void dsa_slave_netpoll_cleanup(struct net_device *dev)
718 struct dsa_slave_priv *p = netdev_priv(dev);
719 struct netpoll *netpoll = p->netpoll;
726 __netpoll_free(netpoll);
729 static void dsa_slave_poll_controller(struct net_device *dev)
734 static int dsa_slave_get_phys_port_name(struct net_device *dev,
735 char *name, size_t len)
737 struct dsa_port *dp = dsa_slave_to_port(dev);
739 if (snprintf(name, len, "p%d", dp->index) >= len)
745 static struct dsa_mall_tc_entry *
746 dsa_slave_mall_tc_entry_find(struct net_device *dev, unsigned long cookie)
748 struct dsa_slave_priv *p = netdev_priv(dev);
749 struct dsa_mall_tc_entry *mall_tc_entry;
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;
758 static int dsa_slave_add_cls_matchall(struct net_device *dev,
759 struct tc_cls_matchall_offload *cls,
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;
772 if (!ds->ops->port_mirror_add)
775 if (!tcf_exts_has_one_action(cls->exts))
778 a = tcf_exts_first_action(cls->exts);
780 if (is_tcf_mirred_egress_mirror(a) && protocol == htons(ETH_P_ALL)) {
781 struct dsa_mall_mirror_tc_entry *mirror;
783 to_dev = tcf_mirred_dev(a);
787 if (!dsa_slave_dev_check(to_dev))
790 mall_tc_entry = kzalloc(sizeof(*mall_tc_entry), GFP_KERNEL);
794 mall_tc_entry->cookie = cls->cookie;
795 mall_tc_entry->type = DSA_PORT_MALL_MIRROR;
796 mirror = &mall_tc_entry->mirror;
798 to_dp = dsa_slave_to_port(to_dev);
800 mirror->to_local_port = to_dp->index;
801 mirror->ingress = ingress;
803 err = ds->ops->port_mirror_add(ds, dp->index, mirror, ingress);
805 kfree(mall_tc_entry);
809 list_add_tail(&mall_tc_entry->list, &p->mall_tc_list);
815 static void dsa_slave_del_cls_matchall(struct net_device *dev,
816 struct tc_cls_matchall_offload *cls)
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;
822 if (!ds->ops->port_mirror_del)
825 mall_tc_entry = dsa_slave_mall_tc_entry_find(dev, cls->cookie);
829 list_del(&mall_tc_entry->list);
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);
839 kfree(mall_tc_entry);
842 static int dsa_slave_setup_tc_cls_matchall(struct net_device *dev,
843 struct tc_cls_matchall_offload *cls,
846 if (cls->common.chain_index)
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);
860 static int dsa_slave_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
861 void *cb_priv, bool ingress)
863 struct net_device *dev = cb_priv;
865 if (!tc_can_offload(dev))
869 case TC_SETUP_CLSMATCHALL:
870 return dsa_slave_setup_tc_cls_matchall(dev, type_data, ingress);
876 static int dsa_slave_setup_tc_block_cb_ig(enum tc_setup_type type,
877 void *type_data, void *cb_priv)
879 return dsa_slave_setup_tc_block_cb(type, type_data, cb_priv, true);
882 static int dsa_slave_setup_tc_block_cb_eg(enum tc_setup_type type,
883 void *type_data, void *cb_priv)
885 return dsa_slave_setup_tc_block_cb(type, type_data, cb_priv, false);
888 static int dsa_slave_setup_tc_block(struct net_device *dev,
889 struct tc_block_offload *f)
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;
900 switch (f->command) {
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);
911 static int dsa_slave_setup_tc(struct net_device *dev, enum tc_setup_type type,
916 return dsa_slave_setup_tc_block(dev, type_data);
922 static void dsa_slave_get_stats64(struct net_device *dev,
923 struct rtnl_link_stats64 *stats)
925 struct dsa_slave_priv *p = netdev_priv(dev);
926 struct pcpu_sw_netstats *s;
930 netdev_stats_to_stats64(stats, &dev->stats);
931 for_each_possible_cpu(i) {
932 u64 tx_packets, tx_bytes, rx_packets, rx_bytes;
934 s = per_cpu_ptr(p->stats64, i);
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));
943 stats->tx_packets += tx_packets;
944 stats->tx_bytes += tx_bytes;
945 stats->rx_packets += rx_packets;
946 stats->rx_bytes += rx_bytes;
950 static int dsa_slave_get_rxnfc(struct net_device *dev,
951 struct ethtool_rxnfc *nfc, u32 *rule_locs)
953 struct dsa_port *dp = dsa_slave_to_port(dev);
954 struct dsa_switch *ds = dp->ds;
956 if (!ds->ops->get_rxnfc)
959 return ds->ops->get_rxnfc(ds, dp->index, nfc, rule_locs);
962 static int dsa_slave_set_rxnfc(struct net_device *dev,
963 struct ethtool_rxnfc *nfc)
965 struct dsa_port *dp = dsa_slave_to_port(dev);
966 struct dsa_switch *ds = dp->ds;
968 if (!ds->ops->set_rxnfc)
971 return ds->ops->set_rxnfc(ds, dp->index, nfc);
974 static int dsa_slave_get_ts_info(struct net_device *dev,
975 struct ethtool_ts_info *ts)
977 struct dsa_slave_priv *p = netdev_priv(dev);
978 struct dsa_switch *ds = p->dp->ds;
980 if (!ds->ops->get_ts_info)
983 return ds->ops->get_ts_info(ds, p->dp->index, ts);
986 static int dsa_slave_vlan_rx_add_vid(struct net_device *dev, __be16 proto,
989 struct dsa_port *dp = dsa_slave_to_port(dev);
990 struct switchdev_obj_port_vlan vlan = {
993 /* This API only allows programming tagged, non-PVID VIDs */
996 struct switchdev_trans trans;
997 struct bridge_vlan_info info;
1000 /* Check for a possible bridge VLAN entry now since there is no
1001 * need to emulate the switchdev prepare + commit phase.
1003 if (dp->bridge_dev) {
1004 /* br_vlan_get_info() returns -EINVAL or -ENOENT if the
1005 * device, respectively the VID is not found, returning
1006 * 0 means success, which is a failure for us here.
1008 ret = br_vlan_get_info(dp->bridge_dev, vid, &info);
1013 trans.ph_prepare = true;
1014 ret = dsa_port_vlan_add(dp, &vlan, &trans);
1015 if (ret == -EOPNOTSUPP)
1018 trans.ph_prepare = false;
1019 return dsa_port_vlan_add(dp, &vlan, &trans);
1022 static int dsa_slave_vlan_rx_kill_vid(struct net_device *dev, __be16 proto,
1025 struct dsa_port *dp = dsa_slave_to_port(dev);
1026 struct switchdev_obj_port_vlan vlan = {
1029 /* This API only allows programming tagged, non-PVID VIDs */
1032 struct bridge_vlan_info info;
1035 /* Check for a possible bridge VLAN entry now since there is no
1036 * need to emulate the switchdev prepare + commit phase.
1038 if (dp->bridge_dev) {
1039 /* br_vlan_get_info() returns -EINVAL or -ENOENT if the
1040 * device, respectively the VID is not found, returning
1041 * 0 means success, which is a failure for us here.
1043 ret = br_vlan_get_info(dp->bridge_dev, vid, &info);
1048 ret = dsa_port_vlan_del(dp, &vlan);
1049 if (ret == -EOPNOTSUPP)
1055 static const struct ethtool_ops dsa_slave_ethtool_ops = {
1056 .get_drvinfo = dsa_slave_get_drvinfo,
1057 .get_regs_len = dsa_slave_get_regs_len,
1058 .get_regs = dsa_slave_get_regs,
1059 .nway_reset = dsa_slave_nway_reset,
1060 .get_link = ethtool_op_get_link,
1061 .get_eeprom_len = dsa_slave_get_eeprom_len,
1062 .get_eeprom = dsa_slave_get_eeprom,
1063 .set_eeprom = dsa_slave_set_eeprom,
1064 .get_strings = dsa_slave_get_strings,
1065 .get_ethtool_stats = dsa_slave_get_ethtool_stats,
1066 .get_sset_count = dsa_slave_get_sset_count,
1067 .set_wol = dsa_slave_set_wol,
1068 .get_wol = dsa_slave_get_wol,
1069 .set_eee = dsa_slave_set_eee,
1070 .get_eee = dsa_slave_get_eee,
1071 .get_link_ksettings = dsa_slave_get_link_ksettings,
1072 .set_link_ksettings = dsa_slave_set_link_ksettings,
1073 .get_rxnfc = dsa_slave_get_rxnfc,
1074 .set_rxnfc = dsa_slave_set_rxnfc,
1075 .get_ts_info = dsa_slave_get_ts_info,
1078 /* legacy way, bypassing the bridge *****************************************/
1079 int dsa_legacy_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
1080 struct net_device *dev,
1081 const unsigned char *addr, u16 vid,
1083 struct netlink_ext_ack *extack)
1085 struct dsa_port *dp = dsa_slave_to_port(dev);
1087 return dsa_port_fdb_add(dp, addr, vid);
1090 int dsa_legacy_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
1091 struct net_device *dev,
1092 const unsigned char *addr, u16 vid)
1094 struct dsa_port *dp = dsa_slave_to_port(dev);
1096 return dsa_port_fdb_del(dp, addr, vid);
1099 static const struct net_device_ops dsa_slave_netdev_ops = {
1100 .ndo_open = dsa_slave_open,
1101 .ndo_stop = dsa_slave_close,
1102 .ndo_start_xmit = dsa_slave_xmit,
1103 .ndo_change_rx_flags = dsa_slave_change_rx_flags,
1104 .ndo_set_rx_mode = dsa_slave_set_rx_mode,
1105 .ndo_set_mac_address = dsa_slave_set_mac_address,
1106 .ndo_fdb_add = dsa_legacy_fdb_add,
1107 .ndo_fdb_del = dsa_legacy_fdb_del,
1108 .ndo_fdb_dump = dsa_slave_fdb_dump,
1109 .ndo_do_ioctl = dsa_slave_ioctl,
1110 .ndo_get_iflink = dsa_slave_get_iflink,
1111 #ifdef CONFIG_NET_POLL_CONTROLLER
1112 .ndo_netpoll_setup = dsa_slave_netpoll_setup,
1113 .ndo_netpoll_cleanup = dsa_slave_netpoll_cleanup,
1114 .ndo_poll_controller = dsa_slave_poll_controller,
1116 .ndo_get_phys_port_name = dsa_slave_get_phys_port_name,
1117 .ndo_setup_tc = dsa_slave_setup_tc,
1118 .ndo_get_stats64 = dsa_slave_get_stats64,
1119 .ndo_get_port_parent_id = dsa_slave_get_port_parent_id,
1120 .ndo_vlan_rx_add_vid = dsa_slave_vlan_rx_add_vid,
1121 .ndo_vlan_rx_kill_vid = dsa_slave_vlan_rx_kill_vid,
1124 static struct device_type dsa_type = {
1128 static void dsa_slave_phylink_validate(struct net_device *dev,
1129 unsigned long *supported,
1130 struct phylink_link_state *state)
1132 struct dsa_port *dp = dsa_slave_to_port(dev);
1133 struct dsa_switch *ds = dp->ds;
1135 if (!ds->ops->phylink_validate)
1138 ds->ops->phylink_validate(ds, dp->index, supported, state);
1141 static int dsa_slave_phylink_mac_link_state(struct net_device *dev,
1142 struct phylink_link_state *state)
1144 struct dsa_port *dp = dsa_slave_to_port(dev);
1145 struct dsa_switch *ds = dp->ds;
1147 /* Only called for SGMII and 802.3z */
1148 if (!ds->ops->phylink_mac_link_state)
1151 return ds->ops->phylink_mac_link_state(ds, dp->index, state);
1154 static void dsa_slave_phylink_mac_config(struct net_device *dev,
1156 const struct phylink_link_state *state)
1158 struct dsa_port *dp = dsa_slave_to_port(dev);
1159 struct dsa_switch *ds = dp->ds;
1161 if (!ds->ops->phylink_mac_config)
1164 ds->ops->phylink_mac_config(ds, dp->index, mode, state);
1167 static void dsa_slave_phylink_mac_an_restart(struct net_device *dev)
1169 struct dsa_port *dp = dsa_slave_to_port(dev);
1170 struct dsa_switch *ds = dp->ds;
1172 if (!ds->ops->phylink_mac_an_restart)
1175 ds->ops->phylink_mac_an_restart(ds, dp->index);
1178 static void dsa_slave_phylink_mac_link_down(struct net_device *dev,
1180 phy_interface_t interface)
1182 struct dsa_port *dp = dsa_slave_to_port(dev);
1183 struct dsa_switch *ds = dp->ds;
1185 if (!ds->ops->phylink_mac_link_down) {
1186 if (ds->ops->adjust_link && dev->phydev)
1187 ds->ops->adjust_link(ds, dp->index, dev->phydev);
1191 ds->ops->phylink_mac_link_down(ds, dp->index, mode, interface);
1194 static void dsa_slave_phylink_mac_link_up(struct net_device *dev,
1196 phy_interface_t interface,
1197 struct phy_device *phydev)
1199 struct dsa_port *dp = dsa_slave_to_port(dev);
1200 struct dsa_switch *ds = dp->ds;
1202 if (!ds->ops->phylink_mac_link_up) {
1203 if (ds->ops->adjust_link && dev->phydev)
1204 ds->ops->adjust_link(ds, dp->index, dev->phydev);
1208 ds->ops->phylink_mac_link_up(ds, dp->index, mode, interface, phydev);
1211 static const struct phylink_mac_ops dsa_slave_phylink_mac_ops = {
1212 .validate = dsa_slave_phylink_validate,
1213 .mac_link_state = dsa_slave_phylink_mac_link_state,
1214 .mac_config = dsa_slave_phylink_mac_config,
1215 .mac_an_restart = dsa_slave_phylink_mac_an_restart,
1216 .mac_link_down = dsa_slave_phylink_mac_link_down,
1217 .mac_link_up = dsa_slave_phylink_mac_link_up,
1220 void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up)
1222 const struct dsa_port *dp = dsa_to_port(ds, port);
1224 phylink_mac_change(dp->pl, up);
1226 EXPORT_SYMBOL_GPL(dsa_port_phylink_mac_change);
1228 static void dsa_slave_phylink_fixed_state(struct net_device *dev,
1229 struct phylink_link_state *state)
1231 struct dsa_port *dp = dsa_slave_to_port(dev);
1232 struct dsa_switch *ds = dp->ds;
1234 /* No need to check that this operation is valid, the callback would
1235 * not be called if it was not.
1237 ds->ops->phylink_fixed_state(ds, dp->index, state);
1240 /* slave device setup *******************************************************/
1241 static int dsa_slave_phy_connect(struct net_device *slave_dev, int addr)
1243 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1244 struct dsa_switch *ds = dp->ds;
1246 slave_dev->phydev = mdiobus_get_phy(ds->slave_mii_bus, addr);
1247 if (!slave_dev->phydev) {
1248 netdev_err(slave_dev, "no phy at %d\n", addr);
1252 return phylink_connect_phy(dp->pl, slave_dev->phydev);
1255 static int dsa_slave_phy_setup(struct net_device *slave_dev)
1257 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1258 struct device_node *port_dn = dp->dn;
1259 struct dsa_switch *ds = dp->ds;
1263 mode = of_get_phy_mode(port_dn);
1265 mode = PHY_INTERFACE_MODE_NA;
1267 dp->pl = phylink_create(slave_dev, of_fwnode_handle(port_dn), mode,
1268 &dsa_slave_phylink_mac_ops);
1269 if (IS_ERR(dp->pl)) {
1270 netdev_err(slave_dev,
1271 "error creating PHYLINK: %ld\n", PTR_ERR(dp->pl));
1272 return PTR_ERR(dp->pl);
1275 /* Register only if the switch provides such a callback, since this
1276 * callback takes precedence over polling the link GPIO in PHYLINK
1277 * (see phylink_get_fixed_state).
1279 if (ds->ops->phylink_fixed_state)
1280 phylink_fixed_state_cb(dp->pl, dsa_slave_phylink_fixed_state);
1282 if (ds->ops->get_phy_flags)
1283 phy_flags = ds->ops->get_phy_flags(ds, dp->index);
1285 ret = phylink_of_phy_connect(dp->pl, port_dn, phy_flags);
1286 if (ret == -ENODEV) {
1287 /* We could not connect to a designated PHY or SFP, so use the
1288 * switch internal MDIO bus instead
1290 ret = dsa_slave_phy_connect(slave_dev, dp->index);
1292 netdev_err(slave_dev,
1293 "failed to connect to port %d: %d\n",
1295 phylink_destroy(dp->pl);
1303 static struct lock_class_key dsa_slave_netdev_xmit_lock_key;
1304 static void dsa_slave_set_lockdep_class_one(struct net_device *dev,
1305 struct netdev_queue *txq,
1308 lockdep_set_class(&txq->_xmit_lock,
1309 &dsa_slave_netdev_xmit_lock_key);
1312 int dsa_slave_suspend(struct net_device *slave_dev)
1314 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1316 if (!netif_running(slave_dev))
1319 netif_device_detach(slave_dev);
1322 phylink_stop(dp->pl);
1328 int dsa_slave_resume(struct net_device *slave_dev)
1330 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1332 if (!netif_running(slave_dev))
1335 netif_device_attach(slave_dev);
1338 phylink_start(dp->pl);
1344 static void dsa_slave_notify(struct net_device *dev, unsigned long val)
1346 struct net_device *master = dsa_slave_to_master(dev);
1347 struct dsa_port *dp = dsa_slave_to_port(dev);
1348 struct dsa_notifier_register_info rinfo = {
1349 .switch_number = dp->ds->index,
1350 .port_number = dp->index,
1355 call_dsa_notifiers(val, dev, &rinfo.info);
1358 int dsa_slave_create(struct dsa_port *port)
1360 const struct dsa_port *cpu_dp = port->cpu_dp;
1361 struct net_device *master = cpu_dp->master;
1362 struct dsa_switch *ds = port->ds;
1363 const char *name = port->name;
1364 struct net_device *slave_dev;
1365 struct dsa_slave_priv *p;
1368 if (!ds->num_tx_queues)
1369 ds->num_tx_queues = 1;
1371 slave_dev = alloc_netdev_mqs(sizeof(struct dsa_slave_priv), name,
1372 NET_NAME_UNKNOWN, ether_setup,
1373 ds->num_tx_queues, 1);
1374 if (slave_dev == NULL)
1377 slave_dev->features = master->vlan_features | NETIF_F_HW_TC |
1378 NETIF_F_HW_VLAN_CTAG_FILTER;
1379 slave_dev->hw_features |= NETIF_F_HW_TC;
1380 slave_dev->ethtool_ops = &dsa_slave_ethtool_ops;
1381 eth_hw_addr_inherit(slave_dev, master);
1382 slave_dev->priv_flags |= IFF_NO_QUEUE;
1383 slave_dev->netdev_ops = &dsa_slave_netdev_ops;
1384 slave_dev->min_mtu = 0;
1385 slave_dev->max_mtu = ETH_MAX_MTU;
1386 SET_NETDEV_DEVTYPE(slave_dev, &dsa_type);
1388 netdev_for_each_tx_queue(slave_dev, dsa_slave_set_lockdep_class_one,
1391 SET_NETDEV_DEV(slave_dev, port->ds->dev);
1392 slave_dev->dev.of_node = port->dn;
1393 slave_dev->vlan_features = master->vlan_features;
1395 p = netdev_priv(slave_dev);
1396 p->stats64 = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1398 free_netdev(slave_dev);
1402 INIT_LIST_HEAD(&p->mall_tc_list);
1403 p->xmit = cpu_dp->tag_ops->xmit;
1404 port->slave = slave_dev;
1406 netif_carrier_off(slave_dev);
1408 ret = dsa_slave_phy_setup(slave_dev);
1410 netdev_err(master, "error %d setting up slave phy\n", ret);
1414 dsa_slave_notify(slave_dev, DSA_PORT_REGISTER);
1416 ret = register_netdev(slave_dev);
1418 netdev_err(master, "error %d registering interface %s\n",
1419 ret, slave_dev->name);
1427 phylink_disconnect_phy(p->dp->pl);
1429 phylink_destroy(p->dp->pl);
1431 free_percpu(p->stats64);
1432 free_netdev(slave_dev);
1437 void dsa_slave_destroy(struct net_device *slave_dev)
1439 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1440 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1442 netif_carrier_off(slave_dev);
1444 phylink_disconnect_phy(dp->pl);
1447 dsa_slave_notify(slave_dev, DSA_PORT_UNREGISTER);
1448 unregister_netdev(slave_dev);
1449 phylink_destroy(dp->pl);
1450 free_percpu(p->stats64);
1451 free_netdev(slave_dev);
1454 static bool dsa_slave_dev_check(struct net_device *dev)
1456 return dev->netdev_ops == &dsa_slave_netdev_ops;
1459 static int dsa_slave_changeupper(struct net_device *dev,
1460 struct netdev_notifier_changeupper_info *info)
1462 struct dsa_port *dp = dsa_slave_to_port(dev);
1463 int err = NOTIFY_DONE;
1465 if (netif_is_bridge_master(info->upper_dev)) {
1466 if (info->linking) {
1467 err = dsa_port_bridge_join(dp, info->upper_dev);
1468 err = notifier_from_errno(err);
1470 dsa_port_bridge_leave(dp, info->upper_dev);
1478 static int dsa_slave_upper_vlan_check(struct net_device *dev,
1479 struct netdev_notifier_changeupper_info *
1482 struct netlink_ext_ack *ext_ack;
1483 struct net_device *slave;
1484 struct dsa_port *dp;
1486 ext_ack = netdev_notifier_info_to_extack(&info->info);
1488 if (!is_vlan_dev(dev))
1491 slave = vlan_dev_real_dev(dev);
1492 if (!dsa_slave_dev_check(slave))
1495 dp = dsa_slave_to_port(slave);
1496 if (!dp->bridge_dev)
1499 /* Deny enslaving a VLAN device into a VLAN-aware bridge */
1500 if (br_vlan_enabled(dp->bridge_dev) &&
1501 netif_is_bridge_master(info->upper_dev) && info->linking) {
1502 NL_SET_ERR_MSG_MOD(ext_ack,
1503 "Cannot enslave VLAN device into VLAN aware bridge");
1504 return notifier_from_errno(-EINVAL);
1510 static int dsa_slave_netdevice_event(struct notifier_block *nb,
1511 unsigned long event, void *ptr)
1513 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1515 if (event == NETDEV_CHANGEUPPER) {
1516 if (!dsa_slave_dev_check(dev))
1517 return dsa_slave_upper_vlan_check(dev, ptr);
1519 return dsa_slave_changeupper(dev, ptr);
1526 dsa_slave_switchdev_port_attr_set_event(struct net_device *netdev,
1527 struct switchdev_notifier_port_attr_info *port_attr_info)
1531 err = dsa_slave_port_attr_set(netdev, port_attr_info->attr,
1532 port_attr_info->trans);
1534 port_attr_info->handled = true;
1535 return notifier_from_errno(err);
1538 struct dsa_switchdev_event_work {
1539 struct work_struct work;
1540 struct switchdev_notifier_fdb_info fdb_info;
1541 struct net_device *dev;
1542 unsigned long event;
1545 static void dsa_slave_switchdev_event_work(struct work_struct *work)
1547 struct dsa_switchdev_event_work *switchdev_work =
1548 container_of(work, struct dsa_switchdev_event_work, work);
1549 struct net_device *dev = switchdev_work->dev;
1550 struct switchdev_notifier_fdb_info *fdb_info;
1551 struct dsa_port *dp = dsa_slave_to_port(dev);
1555 switch (switchdev_work->event) {
1556 case SWITCHDEV_FDB_ADD_TO_DEVICE:
1557 fdb_info = &switchdev_work->fdb_info;
1558 if (!fdb_info->added_by_user)
1561 err = dsa_port_fdb_add(dp, fdb_info->addr, fdb_info->vid);
1563 netdev_dbg(dev, "fdb add failed err=%d\n", err);
1566 fdb_info->offloaded = true;
1567 call_switchdev_notifiers(SWITCHDEV_FDB_OFFLOADED, dev,
1568 &fdb_info->info, NULL);
1571 case SWITCHDEV_FDB_DEL_TO_DEVICE:
1572 fdb_info = &switchdev_work->fdb_info;
1573 if (!fdb_info->added_by_user)
1576 err = dsa_port_fdb_del(dp, fdb_info->addr, fdb_info->vid);
1578 netdev_dbg(dev, "fdb del failed err=%d\n", err);
1585 kfree(switchdev_work->fdb_info.addr);
1586 kfree(switchdev_work);
1591 dsa_slave_switchdev_fdb_work_init(struct dsa_switchdev_event_work *
1593 const struct switchdev_notifier_fdb_info *
1596 memcpy(&switchdev_work->fdb_info, fdb_info,
1597 sizeof(switchdev_work->fdb_info));
1598 switchdev_work->fdb_info.addr = kzalloc(ETH_ALEN, GFP_ATOMIC);
1599 if (!switchdev_work->fdb_info.addr)
1601 ether_addr_copy((u8 *)switchdev_work->fdb_info.addr,
1606 /* Called under rcu_read_lock() */
1607 static int dsa_slave_switchdev_event(struct notifier_block *unused,
1608 unsigned long event, void *ptr)
1610 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
1611 struct dsa_switchdev_event_work *switchdev_work;
1613 if (!dsa_slave_dev_check(dev))
1616 if (event == SWITCHDEV_PORT_ATTR_SET)
1617 return dsa_slave_switchdev_port_attr_set_event(dev, ptr);
1619 switchdev_work = kzalloc(sizeof(*switchdev_work), GFP_ATOMIC);
1620 if (!switchdev_work)
1623 INIT_WORK(&switchdev_work->work,
1624 dsa_slave_switchdev_event_work);
1625 switchdev_work->dev = dev;
1626 switchdev_work->event = event;
1629 case SWITCHDEV_FDB_ADD_TO_DEVICE: /* fall through */
1630 case SWITCHDEV_FDB_DEL_TO_DEVICE:
1631 if (dsa_slave_switchdev_fdb_work_init(switchdev_work, ptr))
1632 goto err_fdb_work_init;
1636 kfree(switchdev_work);
1640 dsa_schedule_work(&switchdev_work->work);
1644 kfree(switchdev_work);
1649 dsa_slave_switchdev_port_obj_event(unsigned long event,
1650 struct net_device *netdev,
1651 struct switchdev_notifier_port_obj_info *port_obj_info)
1653 int err = -EOPNOTSUPP;
1656 case SWITCHDEV_PORT_OBJ_ADD:
1657 err = dsa_slave_port_obj_add(netdev, port_obj_info->obj,
1658 port_obj_info->trans);
1660 case SWITCHDEV_PORT_OBJ_DEL:
1661 err = dsa_slave_port_obj_del(netdev, port_obj_info->obj);
1665 port_obj_info->handled = true;
1666 return notifier_from_errno(err);
1669 static int dsa_slave_switchdev_blocking_event(struct notifier_block *unused,
1670 unsigned long event, void *ptr)
1672 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
1674 if (!dsa_slave_dev_check(dev))
1678 case SWITCHDEV_PORT_OBJ_ADD: /* fall through */
1679 case SWITCHDEV_PORT_OBJ_DEL:
1680 return dsa_slave_switchdev_port_obj_event(event, dev, ptr);
1681 case SWITCHDEV_PORT_ATTR_SET:
1682 return dsa_slave_switchdev_port_attr_set_event(dev, ptr);
1688 static struct notifier_block dsa_slave_nb __read_mostly = {
1689 .notifier_call = dsa_slave_netdevice_event,
1692 static struct notifier_block dsa_slave_switchdev_notifier = {
1693 .notifier_call = dsa_slave_switchdev_event,
1696 static struct notifier_block dsa_slave_switchdev_blocking_notifier = {
1697 .notifier_call = dsa_slave_switchdev_blocking_event,
1700 int dsa_slave_register_notifier(void)
1702 struct notifier_block *nb;
1705 err = register_netdevice_notifier(&dsa_slave_nb);
1709 err = register_switchdev_notifier(&dsa_slave_switchdev_notifier);
1711 goto err_switchdev_nb;
1713 nb = &dsa_slave_switchdev_blocking_notifier;
1714 err = register_switchdev_blocking_notifier(nb);
1716 goto err_switchdev_blocking_nb;
1720 err_switchdev_blocking_nb:
1721 unregister_switchdev_notifier(&dsa_slave_switchdev_notifier);
1723 unregister_netdevice_notifier(&dsa_slave_nb);
1727 void dsa_slave_unregister_notifier(void)
1729 struct notifier_block *nb;
1732 nb = &dsa_slave_switchdev_blocking_notifier;
1733 err = unregister_switchdev_blocking_notifier(nb);
1735 pr_err("DSA: failed to unregister switchdev blocking notifier (%d)\n", err);
1737 err = unregister_switchdev_notifier(&dsa_slave_switchdev_notifier);
1739 pr_err("DSA: failed to unregister switchdev notifier (%d)\n", err);
1741 err = unregister_netdevice_notifier(&dsa_slave_nb);
1743 pr_err("DSA: failed to unregister slave notifier (%d)\n", err);