1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Handling of a single switch port
5 * Copyright (c) 2017 Savoir-faire Linux Inc.
9 #include <linux/if_bridge.h>
10 #include <linux/netdevice.h>
11 #include <linux/notifier.h>
12 #include <linux/of_mdio.h>
13 #include <linux/of_net.h>
18 * dsa_port_notify - Notify the switching fabric of changes to a port
19 * @dp: port on which change occurred
20 * @e: event, must be of type DSA_NOTIFIER_*
21 * @v: event-specific value.
23 * Notify all switches in the DSA tree that this port's switch belongs to,
24 * including this switch itself, of an event. Allows the other switches to
25 * reconfigure themselves for cross-chip operations. Can also be used to
26 * reconfigure ports without net_devices (CPU ports, DSA links) whenever
27 * a user port's state changes.
29 static int dsa_port_notify(const struct dsa_port *dp, unsigned long e, void *v)
31 return dsa_tree_notify(dp->ds->dst, e, v);
34 static void dsa_port_notify_bridge_fdb_flush(const struct dsa_port *dp, u16 vid)
36 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
37 struct switchdev_notifier_fdb_info info = {
41 /* When the port becomes standalone it has already left the bridge.
42 * Don't notify the bridge in that case.
47 call_switchdev_notifiers(SWITCHDEV_FDB_FLUSH_TO_BRIDGE,
48 brport_dev, &info.info, NULL);
51 static void dsa_port_fast_age(const struct dsa_port *dp)
53 struct dsa_switch *ds = dp->ds;
55 if (!ds->ops->port_fast_age)
58 ds->ops->port_fast_age(ds, dp->index);
61 dsa_port_notify_bridge_fdb_flush(dp, 0);
64 static int dsa_port_vlan_fast_age(const struct dsa_port *dp, u16 vid)
66 struct dsa_switch *ds = dp->ds;
69 if (!ds->ops->port_vlan_fast_age)
72 err = ds->ops->port_vlan_fast_age(ds, dp->index, vid);
75 dsa_port_notify_bridge_fdb_flush(dp, vid);
80 static int dsa_port_msti_fast_age(const struct dsa_port *dp, u16 msti)
82 DECLARE_BITMAP(vids, VLAN_N_VID) = { 0 };
85 err = br_mst_get_info(dsa_port_bridge_dev_get(dp), msti, vids);
89 for_each_set_bit(vid, vids, VLAN_N_VID) {
90 err = dsa_port_vlan_fast_age(dp, vid);
98 static bool dsa_port_can_configure_learning(struct dsa_port *dp)
100 struct switchdev_brport_flags flags = {
103 struct dsa_switch *ds = dp->ds;
106 if (!ds->ops->port_bridge_flags || !ds->ops->port_pre_bridge_flags)
109 err = ds->ops->port_pre_bridge_flags(ds, dp->index, flags, NULL);
113 int dsa_port_set_state(struct dsa_port *dp, u8 state, bool do_fast_age)
115 struct dsa_switch *ds = dp->ds;
116 int port = dp->index;
118 if (!ds->ops->port_stp_state_set)
121 ds->ops->port_stp_state_set(ds, port, state);
123 if (!dsa_port_can_configure_learning(dp) ||
124 (do_fast_age && dp->learning)) {
125 /* Fast age FDB entries or flush appropriate forwarding database
126 * for the given port, if we are moving it from Learning or
127 * Forwarding state, to Disabled or Blocking or Listening state.
128 * Ports that were standalone before the STP state change don't
129 * need to fast age the FDB, since address learning is off in
133 if ((dp->stp_state == BR_STATE_LEARNING ||
134 dp->stp_state == BR_STATE_FORWARDING) &&
135 (state == BR_STATE_DISABLED ||
136 state == BR_STATE_BLOCKING ||
137 state == BR_STATE_LISTENING))
138 dsa_port_fast_age(dp);
141 dp->stp_state = state;
146 static void dsa_port_set_state_now(struct dsa_port *dp, u8 state,
149 struct dsa_switch *ds = dp->ds;
152 err = dsa_port_set_state(dp, state, do_fast_age);
153 if (err && err != -EOPNOTSUPP) {
154 dev_err(ds->dev, "port %d failed to set STP state %u: %pe\n",
155 dp->index, state, ERR_PTR(err));
159 int dsa_port_set_mst_state(struct dsa_port *dp,
160 const struct switchdev_mst_state *state,
161 struct netlink_ext_ack *extack)
163 struct dsa_switch *ds = dp->ds;
167 if (!ds->ops->port_mst_state_set)
170 err = br_mst_get_state(dsa_port_to_bridge_port(dp), state->msti,
175 err = ds->ops->port_mst_state_set(ds, dp->index, state);
179 if (!(dp->learning &&
180 (prev_state == BR_STATE_LEARNING ||
181 prev_state == BR_STATE_FORWARDING) &&
182 (state->state == BR_STATE_DISABLED ||
183 state->state == BR_STATE_BLOCKING ||
184 state->state == BR_STATE_LISTENING)))
187 err = dsa_port_msti_fast_age(dp, state->msti);
189 NL_SET_ERR_MSG_MOD(extack,
190 "Unable to flush associated VLANs");
195 int dsa_port_enable_rt(struct dsa_port *dp, struct phy_device *phy)
197 struct dsa_switch *ds = dp->ds;
198 int port = dp->index;
201 if (ds->ops->port_enable) {
202 err = ds->ops->port_enable(ds, port, phy);
208 dsa_port_set_state_now(dp, BR_STATE_FORWARDING, false);
211 phylink_start(dp->pl);
216 int dsa_port_enable(struct dsa_port *dp, struct phy_device *phy)
221 err = dsa_port_enable_rt(dp, phy);
227 void dsa_port_disable_rt(struct dsa_port *dp)
229 struct dsa_switch *ds = dp->ds;
230 int port = dp->index;
233 phylink_stop(dp->pl);
236 dsa_port_set_state_now(dp, BR_STATE_DISABLED, false);
238 if (ds->ops->port_disable)
239 ds->ops->port_disable(ds, port);
242 void dsa_port_disable(struct dsa_port *dp)
245 dsa_port_disable_rt(dp);
249 static void dsa_port_reset_vlan_filtering(struct dsa_port *dp,
250 struct dsa_bridge bridge)
252 struct netlink_ext_ack extack = {0};
253 bool change_vlan_filtering = false;
254 struct dsa_switch *ds = dp->ds;
255 struct dsa_port *other_dp;
259 if (ds->needs_standalone_vlan_filtering &&
260 !br_vlan_enabled(bridge.dev)) {
261 change_vlan_filtering = true;
262 vlan_filtering = true;
263 } else if (!ds->needs_standalone_vlan_filtering &&
264 br_vlan_enabled(bridge.dev)) {
265 change_vlan_filtering = true;
266 vlan_filtering = false;
269 /* If the bridge was vlan_filtering, the bridge core doesn't trigger an
270 * event for changing vlan_filtering setting upon slave ports leaving
271 * it. That is a good thing, because that lets us handle it and also
272 * handle the case where the switch's vlan_filtering setting is global
273 * (not per port). When that happens, the correct moment to trigger the
274 * vlan_filtering callback is only when the last port leaves the last
277 if (change_vlan_filtering && ds->vlan_filtering_is_global) {
278 dsa_switch_for_each_port(other_dp, ds) {
279 struct net_device *br = dsa_port_bridge_dev_get(other_dp);
281 if (br && br_vlan_enabled(br)) {
282 change_vlan_filtering = false;
288 if (!change_vlan_filtering)
291 err = dsa_port_vlan_filtering(dp, vlan_filtering, &extack);
293 dev_err(ds->dev, "port %d: %s\n", dp->index,
296 if (err && err != -EOPNOTSUPP) {
298 "port %d failed to reset VLAN filtering to %d: %pe\n",
299 dp->index, vlan_filtering, ERR_PTR(err));
303 static int dsa_port_inherit_brport_flags(struct dsa_port *dp,
304 struct netlink_ext_ack *extack)
306 const unsigned long mask = BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
307 BR_BCAST_FLOOD | BR_PORT_LOCKED;
308 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
311 for_each_set_bit(flag, &mask, 32) {
312 struct switchdev_brport_flags flags = {0};
314 flags.mask = BIT(flag);
316 if (br_port_flag_is_set(brport_dev, BIT(flag)))
317 flags.val = BIT(flag);
319 err = dsa_port_bridge_flags(dp, flags, extack);
320 if (err && err != -EOPNOTSUPP)
327 static void dsa_port_clear_brport_flags(struct dsa_port *dp)
329 const unsigned long val = BR_FLOOD | BR_MCAST_FLOOD | BR_BCAST_FLOOD;
330 const unsigned long mask = BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
331 BR_BCAST_FLOOD | BR_PORT_LOCKED;
334 for_each_set_bit(flag, &mask, 32) {
335 struct switchdev_brport_flags flags = {0};
337 flags.mask = BIT(flag);
338 flags.val = val & BIT(flag);
340 err = dsa_port_bridge_flags(dp, flags, NULL);
341 if (err && err != -EOPNOTSUPP)
343 "failed to clear bridge port flag %lu: %pe\n",
344 flags.val, ERR_PTR(err));
348 static int dsa_port_switchdev_sync_attrs(struct dsa_port *dp,
349 struct netlink_ext_ack *extack)
351 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
352 struct net_device *br = dsa_port_bridge_dev_get(dp);
355 err = dsa_port_inherit_brport_flags(dp, extack);
359 err = dsa_port_set_state(dp, br_port_get_stp_state(brport_dev), false);
360 if (err && err != -EOPNOTSUPP)
363 err = dsa_port_vlan_filtering(dp, br_vlan_enabled(br), extack);
364 if (err && err != -EOPNOTSUPP)
367 err = dsa_port_ageing_time(dp, br_get_ageing_time(br));
368 if (err && err != -EOPNOTSUPP)
374 static void dsa_port_switchdev_unsync_attrs(struct dsa_port *dp,
375 struct dsa_bridge bridge)
377 /* Configure the port for standalone mode (no address learning,
379 * The bridge only emits SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS events
380 * when the user requests it through netlink or sysfs, but not
381 * automatically at port join or leave, so we need to handle resetting
382 * the brport flags ourselves. But we even prefer it that way, because
383 * otherwise, some setups might never get the notification they need,
384 * for example, when a port leaves a LAG that offloads the bridge,
385 * it becomes standalone, but as far as the bridge is concerned, no
388 dsa_port_clear_brport_flags(dp);
390 /* Port left the bridge, put in BR_STATE_DISABLED by the bridge layer,
391 * so allow it to be in BR_STATE_FORWARDING to be kept functional
393 dsa_port_set_state_now(dp, BR_STATE_FORWARDING, true);
395 dsa_port_reset_vlan_filtering(dp, bridge);
397 /* Ageing time may be global to the switch chip, so don't change it
398 * here because we have no good reason (or value) to change it to.
402 static int dsa_port_bridge_create(struct dsa_port *dp,
403 struct net_device *br,
404 struct netlink_ext_ack *extack)
406 struct dsa_switch *ds = dp->ds;
407 struct dsa_bridge *bridge;
409 bridge = dsa_tree_bridge_find(ds->dst, br);
411 refcount_inc(&bridge->refcount);
416 bridge = kzalloc(sizeof(*bridge), GFP_KERNEL);
420 refcount_set(&bridge->refcount, 1);
424 bridge->num = dsa_bridge_num_get(br, ds->max_num_bridges);
425 if (ds->max_num_bridges && !bridge->num) {
426 NL_SET_ERR_MSG_MOD(extack,
427 "Range of offloadable bridges exceeded");
437 static void dsa_port_bridge_destroy(struct dsa_port *dp,
438 const struct net_device *br)
440 struct dsa_bridge *bridge = dp->bridge;
444 if (!refcount_dec_and_test(&bridge->refcount))
448 dsa_bridge_num_put(br, bridge->num);
453 static bool dsa_port_supports_mst(struct dsa_port *dp)
455 struct dsa_switch *ds = dp->ds;
457 return ds->ops->vlan_msti_set &&
458 ds->ops->port_mst_state_set &&
459 ds->ops->port_vlan_fast_age &&
460 dsa_port_can_configure_learning(dp);
463 int dsa_port_bridge_join(struct dsa_port *dp, struct net_device *br,
464 struct netlink_ext_ack *extack)
466 struct dsa_notifier_bridge_info info = {
470 struct net_device *dev = dp->slave;
471 struct net_device *brport_dev;
474 if (br_mst_enabled(br) && !dsa_port_supports_mst(dp))
477 /* Here the interface is already bridged. Reflect the current
478 * configuration so that drivers can program their chips accordingly.
480 err = dsa_port_bridge_create(dp, br, extack);
484 brport_dev = dsa_port_to_bridge_port(dp);
486 info.bridge = *dp->bridge;
487 err = dsa_broadcast(DSA_NOTIFIER_BRIDGE_JOIN, &info);
491 /* Drivers which support bridge TX forwarding should set this */
492 dp->bridge->tx_fwd_offload = info.tx_fwd_offload;
494 err = switchdev_bridge_port_offload(brport_dev, dev, dp,
495 &dsa_slave_switchdev_notifier,
496 &dsa_slave_switchdev_blocking_notifier,
497 dp->bridge->tx_fwd_offload, extack);
499 goto out_rollback_unbridge;
501 err = dsa_port_switchdev_sync_attrs(dp, extack);
503 goto out_rollback_unoffload;
507 out_rollback_unoffload:
508 switchdev_bridge_port_unoffload(brport_dev, dp,
509 &dsa_slave_switchdev_notifier,
510 &dsa_slave_switchdev_blocking_notifier);
511 dsa_flush_workqueue();
512 out_rollback_unbridge:
513 dsa_broadcast(DSA_NOTIFIER_BRIDGE_LEAVE, &info);
515 dsa_port_bridge_destroy(dp, br);
519 void dsa_port_pre_bridge_leave(struct dsa_port *dp, struct net_device *br)
521 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
523 /* Don't try to unoffload something that is not offloaded */
527 switchdev_bridge_port_unoffload(brport_dev, dp,
528 &dsa_slave_switchdev_notifier,
529 &dsa_slave_switchdev_blocking_notifier);
531 dsa_flush_workqueue();
534 void dsa_port_bridge_leave(struct dsa_port *dp, struct net_device *br)
536 struct dsa_notifier_bridge_info info = {
541 /* If the port could not be offloaded to begin with, then
542 * there is nothing to do.
547 info.bridge = *dp->bridge;
549 /* Here the port is already unbridged. Reflect the current configuration
550 * so that drivers can program their chips accordingly.
552 dsa_port_bridge_destroy(dp, br);
554 err = dsa_broadcast(DSA_NOTIFIER_BRIDGE_LEAVE, &info);
557 "port %d failed to notify DSA_NOTIFIER_BRIDGE_LEAVE: %pe\n",
558 dp->index, ERR_PTR(err));
560 dsa_port_switchdev_unsync_attrs(dp, info.bridge);
563 int dsa_port_lag_change(struct dsa_port *dp,
564 struct netdev_lag_lower_state_info *linfo)
566 struct dsa_notifier_lag_info info = {
574 /* On statically configured aggregates (e.g. loadbalance
575 * without LACP) ports will always be tx_enabled, even if the
576 * link is down. Thus we require both link_up and tx_enabled
577 * in order to include it in the tx set.
579 tx_enabled = linfo->link_up && linfo->tx_enabled;
581 if (tx_enabled == dp->lag_tx_enabled)
584 dp->lag_tx_enabled = tx_enabled;
586 return dsa_port_notify(dp, DSA_NOTIFIER_LAG_CHANGE, &info);
589 static int dsa_port_lag_create(struct dsa_port *dp,
590 struct net_device *lag_dev)
592 struct dsa_switch *ds = dp->ds;
595 lag = dsa_tree_lag_find(ds->dst, lag_dev);
597 refcount_inc(&lag->refcount);
602 lag = kzalloc(sizeof(*lag), GFP_KERNEL);
606 refcount_set(&lag->refcount, 1);
607 mutex_init(&lag->fdb_lock);
608 INIT_LIST_HEAD(&lag->fdbs);
610 dsa_lag_map(ds->dst, lag);
616 static void dsa_port_lag_destroy(struct dsa_port *dp)
618 struct dsa_lag *lag = dp->lag;
621 dp->lag_tx_enabled = false;
623 if (!refcount_dec_and_test(&lag->refcount))
626 WARN_ON(!list_empty(&lag->fdbs));
627 dsa_lag_unmap(dp->ds->dst, lag);
631 int dsa_port_lag_join(struct dsa_port *dp, struct net_device *lag_dev,
632 struct netdev_lag_upper_info *uinfo,
633 struct netlink_ext_ack *extack)
635 struct dsa_notifier_lag_info info = {
640 struct net_device *bridge_dev;
643 err = dsa_port_lag_create(dp, lag_dev);
648 err = dsa_port_notify(dp, DSA_NOTIFIER_LAG_JOIN, &info);
652 bridge_dev = netdev_master_upper_dev_get(lag_dev);
653 if (!bridge_dev || !netif_is_bridge_master(bridge_dev))
656 err = dsa_port_bridge_join(dp, bridge_dev, extack);
658 goto err_bridge_join;
663 dsa_port_notify(dp, DSA_NOTIFIER_LAG_LEAVE, &info);
665 dsa_port_lag_destroy(dp);
670 void dsa_port_pre_lag_leave(struct dsa_port *dp, struct net_device *lag_dev)
672 struct net_device *br = dsa_port_bridge_dev_get(dp);
675 dsa_port_pre_bridge_leave(dp, br);
678 void dsa_port_lag_leave(struct dsa_port *dp, struct net_device *lag_dev)
680 struct net_device *br = dsa_port_bridge_dev_get(dp);
681 struct dsa_notifier_lag_info info = {
689 /* Port might have been part of a LAG that in turn was
690 * attached to a bridge.
693 dsa_port_bridge_leave(dp, br);
697 dsa_port_lag_destroy(dp);
699 err = dsa_port_notify(dp, DSA_NOTIFIER_LAG_LEAVE, &info);
702 "port %d failed to notify DSA_NOTIFIER_LAG_LEAVE: %pe\n",
703 dp->index, ERR_PTR(err));
706 /* Must be called under rcu_read_lock() */
707 static bool dsa_port_can_apply_vlan_filtering(struct dsa_port *dp,
709 struct netlink_ext_ack *extack)
711 struct dsa_switch *ds = dp->ds;
712 struct dsa_port *other_dp;
715 /* VLAN awareness was off, so the question is "can we turn it on".
716 * We may have had 8021q uppers, those need to go. Make sure we don't
717 * enter an inconsistent state: deny changing the VLAN awareness state
718 * as long as we have 8021q uppers.
720 if (vlan_filtering && dsa_port_is_user(dp)) {
721 struct net_device *br = dsa_port_bridge_dev_get(dp);
722 struct net_device *upper_dev, *slave = dp->slave;
723 struct list_head *iter;
725 netdev_for_each_upper_dev_rcu(slave, upper_dev, iter) {
726 struct bridge_vlan_info br_info;
729 if (!is_vlan_dev(upper_dev))
732 vid = vlan_dev_vlan_id(upper_dev);
734 /* br_vlan_get_info() returns -EINVAL or -ENOENT if the
735 * device, respectively the VID is not found, returning
736 * 0 means success, which is a failure for us here.
738 err = br_vlan_get_info(br, vid, &br_info);
740 NL_SET_ERR_MSG_MOD(extack,
741 "Must first remove VLAN uppers having VIDs also present in bridge");
747 if (!ds->vlan_filtering_is_global)
750 /* For cases where enabling/disabling VLAN awareness is global to the
751 * switch, we need to handle the case where multiple bridges span
752 * different ports of the same switch device and one of them has a
753 * different setting than what is being requested.
755 dsa_switch_for_each_port(other_dp, ds) {
756 struct net_device *other_br = dsa_port_bridge_dev_get(other_dp);
758 /* If it's the same bridge, it also has same
759 * vlan_filtering setting => no need to check
761 if (!other_br || other_br == dsa_port_bridge_dev_get(dp))
764 if (br_vlan_enabled(other_br) != vlan_filtering) {
765 NL_SET_ERR_MSG_MOD(extack,
766 "VLAN filtering is a global setting");
773 int dsa_port_vlan_filtering(struct dsa_port *dp, bool vlan_filtering,
774 struct netlink_ext_ack *extack)
776 bool old_vlan_filtering = dsa_port_is_vlan_filtering(dp);
777 struct dsa_switch *ds = dp->ds;
781 if (!ds->ops->port_vlan_filtering)
784 /* We are called from dsa_slave_switchdev_blocking_event(),
785 * which is not under rcu_read_lock(), unlike
786 * dsa_slave_switchdev_event().
789 apply = dsa_port_can_apply_vlan_filtering(dp, vlan_filtering, extack);
794 if (dsa_port_is_vlan_filtering(dp) == vlan_filtering)
797 err = ds->ops->port_vlan_filtering(ds, dp->index, vlan_filtering,
802 if (ds->vlan_filtering_is_global) {
803 struct dsa_port *other_dp;
805 ds->vlan_filtering = vlan_filtering;
807 dsa_switch_for_each_user_port(other_dp, ds) {
808 struct net_device *slave = other_dp->slave;
810 /* We might be called in the unbind path, so not
811 * all slave devices might still be registered.
816 err = dsa_slave_manage_vlan_filtering(slave,
822 dp->vlan_filtering = vlan_filtering;
824 err = dsa_slave_manage_vlan_filtering(dp->slave,
833 ds->ops->port_vlan_filtering(ds, dp->index, old_vlan_filtering, NULL);
835 if (ds->vlan_filtering_is_global)
836 ds->vlan_filtering = old_vlan_filtering;
838 dp->vlan_filtering = old_vlan_filtering;
843 /* This enforces legacy behavior for switch drivers which assume they can't
844 * receive VLAN configuration when enslaved to a bridge with vlan_filtering=0
846 bool dsa_port_skip_vlan_configuration(struct dsa_port *dp)
848 struct net_device *br = dsa_port_bridge_dev_get(dp);
849 struct dsa_switch *ds = dp->ds;
854 return !ds->configure_vlan_while_not_filtering && !br_vlan_enabled(br);
857 int dsa_port_ageing_time(struct dsa_port *dp, clock_t ageing_clock)
859 unsigned long ageing_jiffies = clock_t_to_jiffies(ageing_clock);
860 unsigned int ageing_time = jiffies_to_msecs(ageing_jiffies);
861 struct dsa_notifier_ageing_time_info info;
864 info.ageing_time = ageing_time;
866 err = dsa_port_notify(dp, DSA_NOTIFIER_AGEING_TIME, &info);
870 dp->ageing_time = ageing_time;
875 int dsa_port_mst_enable(struct dsa_port *dp, bool on,
876 struct netlink_ext_ack *extack)
878 if (on && !dsa_port_supports_mst(dp)) {
879 NL_SET_ERR_MSG_MOD(extack, "Hardware does not support MST");
886 int dsa_port_pre_bridge_flags(const struct dsa_port *dp,
887 struct switchdev_brport_flags flags,
888 struct netlink_ext_ack *extack)
890 struct dsa_switch *ds = dp->ds;
892 if (!ds->ops->port_pre_bridge_flags)
895 return ds->ops->port_pre_bridge_flags(ds, dp->index, flags, extack);
898 int dsa_port_bridge_flags(struct dsa_port *dp,
899 struct switchdev_brport_flags flags,
900 struct netlink_ext_ack *extack)
902 struct dsa_switch *ds = dp->ds;
905 if (!ds->ops->port_bridge_flags)
908 err = ds->ops->port_bridge_flags(ds, dp->index, flags, extack);
912 if (flags.mask & BR_LEARNING) {
913 bool learning = flags.val & BR_LEARNING;
915 if (learning == dp->learning)
918 if ((dp->learning && !learning) &&
919 (dp->stp_state == BR_STATE_LEARNING ||
920 dp->stp_state == BR_STATE_FORWARDING))
921 dsa_port_fast_age(dp);
923 dp->learning = learning;
929 void dsa_port_set_host_flood(struct dsa_port *dp, bool uc, bool mc)
931 struct dsa_switch *ds = dp->ds;
933 if (ds->ops->port_set_host_flood)
934 ds->ops->port_set_host_flood(ds, dp->index, uc, mc);
937 int dsa_port_vlan_msti(struct dsa_port *dp,
938 const struct switchdev_vlan_msti *msti)
940 struct dsa_switch *ds = dp->ds;
942 if (!ds->ops->vlan_msti_set)
945 return ds->ops->vlan_msti_set(ds, *dp->bridge, msti);
948 int dsa_port_mtu_change(struct dsa_port *dp, int new_mtu)
950 struct dsa_notifier_mtu_info info = {
955 return dsa_port_notify(dp, DSA_NOTIFIER_MTU, &info);
958 int dsa_port_fdb_add(struct dsa_port *dp, const unsigned char *addr,
961 struct dsa_notifier_fdb_info info = {
966 .type = DSA_DB_BRIDGE,
967 .bridge = *dp->bridge,
971 /* Refcounting takes bridge.num as a key, and should be global for all
972 * bridges in the absence of FDB isolation, and per bridge otherwise.
973 * Force the bridge.num to zero here in the absence of FDB isolation.
975 if (!dp->ds->fdb_isolation)
976 info.db.bridge.num = 0;
978 return dsa_port_notify(dp, DSA_NOTIFIER_FDB_ADD, &info);
981 int dsa_port_fdb_del(struct dsa_port *dp, const unsigned char *addr,
984 struct dsa_notifier_fdb_info info = {
989 .type = DSA_DB_BRIDGE,
990 .bridge = *dp->bridge,
994 if (!dp->ds->fdb_isolation)
995 info.db.bridge.num = 0;
997 return dsa_port_notify(dp, DSA_NOTIFIER_FDB_DEL, &info);
1000 static int dsa_port_host_fdb_add(struct dsa_port *dp,
1001 const unsigned char *addr, u16 vid,
1004 struct dsa_notifier_fdb_info info = {
1011 if (!dp->ds->fdb_isolation)
1012 info.db.bridge.num = 0;
1014 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_FDB_ADD, &info);
1017 int dsa_port_standalone_host_fdb_add(struct dsa_port *dp,
1018 const unsigned char *addr, u16 vid)
1020 struct dsa_db db = {
1021 .type = DSA_DB_PORT,
1025 return dsa_port_host_fdb_add(dp, addr, vid, db);
1028 int dsa_port_bridge_host_fdb_add(struct dsa_port *dp,
1029 const unsigned char *addr, u16 vid)
1031 struct net_device *master = dsa_port_to_master(dp);
1032 struct dsa_db db = {
1033 .type = DSA_DB_BRIDGE,
1034 .bridge = *dp->bridge,
1038 /* Avoid a call to __dev_set_promiscuity() on the master, which
1039 * requires rtnl_lock(), since we can't guarantee that is held here,
1040 * and we can't take it either.
1042 if (master->priv_flags & IFF_UNICAST_FLT) {
1043 err = dev_uc_add(master, addr);
1048 return dsa_port_host_fdb_add(dp, addr, vid, db);
1051 static int dsa_port_host_fdb_del(struct dsa_port *dp,
1052 const unsigned char *addr, u16 vid,
1055 struct dsa_notifier_fdb_info info = {
1062 if (!dp->ds->fdb_isolation)
1063 info.db.bridge.num = 0;
1065 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_FDB_DEL, &info);
1068 int dsa_port_standalone_host_fdb_del(struct dsa_port *dp,
1069 const unsigned char *addr, u16 vid)
1071 struct dsa_db db = {
1072 .type = DSA_DB_PORT,
1076 return dsa_port_host_fdb_del(dp, addr, vid, db);
1079 int dsa_port_bridge_host_fdb_del(struct dsa_port *dp,
1080 const unsigned char *addr, u16 vid)
1082 struct net_device *master = dsa_port_to_master(dp);
1083 struct dsa_db db = {
1084 .type = DSA_DB_BRIDGE,
1085 .bridge = *dp->bridge,
1089 if (master->priv_flags & IFF_UNICAST_FLT) {
1090 err = dev_uc_del(master, addr);
1095 return dsa_port_host_fdb_del(dp, addr, vid, db);
1098 int dsa_port_lag_fdb_add(struct dsa_port *dp, const unsigned char *addr,
1101 struct dsa_notifier_lag_fdb_info info = {
1106 .type = DSA_DB_BRIDGE,
1107 .bridge = *dp->bridge,
1111 if (!dp->ds->fdb_isolation)
1112 info.db.bridge.num = 0;
1114 return dsa_port_notify(dp, DSA_NOTIFIER_LAG_FDB_ADD, &info);
1117 int dsa_port_lag_fdb_del(struct dsa_port *dp, const unsigned char *addr,
1120 struct dsa_notifier_lag_fdb_info info = {
1125 .type = DSA_DB_BRIDGE,
1126 .bridge = *dp->bridge,
1130 if (!dp->ds->fdb_isolation)
1131 info.db.bridge.num = 0;
1133 return dsa_port_notify(dp, DSA_NOTIFIER_LAG_FDB_DEL, &info);
1136 int dsa_port_fdb_dump(struct dsa_port *dp, dsa_fdb_dump_cb_t *cb, void *data)
1138 struct dsa_switch *ds = dp->ds;
1139 int port = dp->index;
1141 if (!ds->ops->port_fdb_dump)
1144 return ds->ops->port_fdb_dump(ds, port, cb, data);
1147 int dsa_port_mdb_add(const struct dsa_port *dp,
1148 const struct switchdev_obj_port_mdb *mdb)
1150 struct dsa_notifier_mdb_info info = {
1154 .type = DSA_DB_BRIDGE,
1155 .bridge = *dp->bridge,
1159 if (!dp->ds->fdb_isolation)
1160 info.db.bridge.num = 0;
1162 return dsa_port_notify(dp, DSA_NOTIFIER_MDB_ADD, &info);
1165 int dsa_port_mdb_del(const struct dsa_port *dp,
1166 const struct switchdev_obj_port_mdb *mdb)
1168 struct dsa_notifier_mdb_info info = {
1172 .type = DSA_DB_BRIDGE,
1173 .bridge = *dp->bridge,
1177 if (!dp->ds->fdb_isolation)
1178 info.db.bridge.num = 0;
1180 return dsa_port_notify(dp, DSA_NOTIFIER_MDB_DEL, &info);
1183 static int dsa_port_host_mdb_add(const struct dsa_port *dp,
1184 const struct switchdev_obj_port_mdb *mdb,
1187 struct dsa_notifier_mdb_info info = {
1193 if (!dp->ds->fdb_isolation)
1194 info.db.bridge.num = 0;
1196 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_MDB_ADD, &info);
1199 int dsa_port_standalone_host_mdb_add(const struct dsa_port *dp,
1200 const struct switchdev_obj_port_mdb *mdb)
1202 struct dsa_db db = {
1203 .type = DSA_DB_PORT,
1207 return dsa_port_host_mdb_add(dp, mdb, db);
1210 int dsa_port_bridge_host_mdb_add(const struct dsa_port *dp,
1211 const struct switchdev_obj_port_mdb *mdb)
1213 struct net_device *master = dsa_port_to_master(dp);
1214 struct dsa_db db = {
1215 .type = DSA_DB_BRIDGE,
1216 .bridge = *dp->bridge,
1220 err = dev_mc_add(master, mdb->addr);
1224 return dsa_port_host_mdb_add(dp, mdb, db);
1227 static int dsa_port_host_mdb_del(const struct dsa_port *dp,
1228 const struct switchdev_obj_port_mdb *mdb,
1231 struct dsa_notifier_mdb_info info = {
1237 if (!dp->ds->fdb_isolation)
1238 info.db.bridge.num = 0;
1240 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_MDB_DEL, &info);
1243 int dsa_port_standalone_host_mdb_del(const struct dsa_port *dp,
1244 const struct switchdev_obj_port_mdb *mdb)
1246 struct dsa_db db = {
1247 .type = DSA_DB_PORT,
1251 return dsa_port_host_mdb_del(dp, mdb, db);
1254 int dsa_port_bridge_host_mdb_del(const struct dsa_port *dp,
1255 const struct switchdev_obj_port_mdb *mdb)
1257 struct net_device *master = dsa_port_to_master(dp);
1258 struct dsa_db db = {
1259 .type = DSA_DB_BRIDGE,
1260 .bridge = *dp->bridge,
1264 err = dev_mc_del(master, mdb->addr);
1268 return dsa_port_host_mdb_del(dp, mdb, db);
1271 int dsa_port_vlan_add(struct dsa_port *dp,
1272 const struct switchdev_obj_port_vlan *vlan,
1273 struct netlink_ext_ack *extack)
1275 struct dsa_notifier_vlan_info info = {
1281 return dsa_port_notify(dp, DSA_NOTIFIER_VLAN_ADD, &info);
1284 int dsa_port_vlan_del(struct dsa_port *dp,
1285 const struct switchdev_obj_port_vlan *vlan)
1287 struct dsa_notifier_vlan_info info = {
1292 return dsa_port_notify(dp, DSA_NOTIFIER_VLAN_DEL, &info);
1295 int dsa_port_host_vlan_add(struct dsa_port *dp,
1296 const struct switchdev_obj_port_vlan *vlan,
1297 struct netlink_ext_ack *extack)
1299 struct net_device *master = dsa_port_to_master(dp);
1300 struct dsa_notifier_vlan_info info = {
1307 err = dsa_port_notify(dp, DSA_NOTIFIER_HOST_VLAN_ADD, &info);
1308 if (err && err != -EOPNOTSUPP)
1311 vlan_vid_add(master, htons(ETH_P_8021Q), vlan->vid);
1316 int dsa_port_host_vlan_del(struct dsa_port *dp,
1317 const struct switchdev_obj_port_vlan *vlan)
1319 struct net_device *master = dsa_port_to_master(dp);
1320 struct dsa_notifier_vlan_info info = {
1326 err = dsa_port_notify(dp, DSA_NOTIFIER_HOST_VLAN_DEL, &info);
1327 if (err && err != -EOPNOTSUPP)
1330 vlan_vid_del(master, htons(ETH_P_8021Q), vlan->vid);
1335 int dsa_port_mrp_add(const struct dsa_port *dp,
1336 const struct switchdev_obj_mrp *mrp)
1338 struct dsa_switch *ds = dp->ds;
1340 if (!ds->ops->port_mrp_add)
1343 return ds->ops->port_mrp_add(ds, dp->index, mrp);
1346 int dsa_port_mrp_del(const struct dsa_port *dp,
1347 const struct switchdev_obj_mrp *mrp)
1349 struct dsa_switch *ds = dp->ds;
1351 if (!ds->ops->port_mrp_del)
1354 return ds->ops->port_mrp_del(ds, dp->index, mrp);
1357 int dsa_port_mrp_add_ring_role(const struct dsa_port *dp,
1358 const struct switchdev_obj_ring_role_mrp *mrp)
1360 struct dsa_switch *ds = dp->ds;
1362 if (!ds->ops->port_mrp_add_ring_role)
1365 return ds->ops->port_mrp_add_ring_role(ds, dp->index, mrp);
1368 int dsa_port_mrp_del_ring_role(const struct dsa_port *dp,
1369 const struct switchdev_obj_ring_role_mrp *mrp)
1371 struct dsa_switch *ds = dp->ds;
1373 if (!ds->ops->port_mrp_del_ring_role)
1376 return ds->ops->port_mrp_del_ring_role(ds, dp->index, mrp);
1379 static int dsa_port_assign_master(struct dsa_port *dp,
1380 struct net_device *master,
1381 struct netlink_ext_ack *extack,
1384 struct dsa_switch *ds = dp->ds;
1385 int port = dp->index, err;
1387 err = ds->ops->port_change_master(ds, port, master, extack);
1388 if (err && !fail_on_err)
1389 dev_err(ds->dev, "port %d failed to assign master %s: %pe\n",
1390 port, master->name, ERR_PTR(err));
1392 if (err && fail_on_err)
1395 dp->cpu_dp = master->dsa_ptr;
1396 dp->cpu_port_in_lag = netif_is_lag_master(master);
1401 /* Change the dp->cpu_dp affinity for a user port. Note that both cross-chip
1402 * notifiers and drivers have implicit assumptions about user-to-CPU-port
1403 * mappings, so we unfortunately cannot delay the deletion of the objects
1404 * (switchdev, standalone addresses, standalone VLANs) on the old CPU port
1405 * until the new CPU port has been set up. So we need to completely tear down
1406 * the old CPU port before changing it, and restore it on errors during the
1407 * bringup of the new one.
1409 int dsa_port_change_master(struct dsa_port *dp, struct net_device *master,
1410 struct netlink_ext_ack *extack)
1412 struct net_device *bridge_dev = dsa_port_bridge_dev_get(dp);
1413 struct net_device *old_master = dsa_port_to_master(dp);
1414 struct net_device *dev = dp->slave;
1415 struct dsa_switch *ds = dp->ds;
1416 bool vlan_filtering;
1419 /* Bridges may hold host FDB, MDB and VLAN objects. These need to be
1420 * migrated, so dynamically unoffload and later reoffload the bridge
1424 dsa_port_pre_bridge_leave(dp, bridge_dev);
1425 dsa_port_bridge_leave(dp, bridge_dev);
1428 /* The port might still be VLAN filtering even if it's no longer
1429 * under a bridge, either due to ds->vlan_filtering_is_global or
1430 * ds->needs_standalone_vlan_filtering. In turn this means VLANs
1433 vlan_filtering = dsa_port_is_vlan_filtering(dp);
1434 if (vlan_filtering) {
1435 err = dsa_slave_manage_vlan_filtering(dev, false);
1437 NL_SET_ERR_MSG_MOD(extack,
1438 "Failed to remove standalone VLANs");
1439 goto rewind_old_bridge;
1443 /* Standalone addresses, and addresses of upper interfaces like
1444 * VLAN, LAG, HSR need to be migrated.
1446 dsa_slave_unsync_ha(dev);
1448 err = dsa_port_assign_master(dp, master, extack, true);
1450 goto rewind_old_addrs;
1452 dsa_slave_sync_ha(dev);
1454 if (vlan_filtering) {
1455 err = dsa_slave_manage_vlan_filtering(dev, true);
1457 NL_SET_ERR_MSG_MOD(extack,
1458 "Failed to restore standalone VLANs");
1459 goto rewind_new_addrs;
1464 err = dsa_port_bridge_join(dp, bridge_dev, extack);
1465 if (err && err == -EOPNOTSUPP) {
1466 NL_SET_ERR_MSG_MOD(extack,
1467 "Failed to reoffload bridge");
1468 goto rewind_new_vlan;
1476 dsa_slave_manage_vlan_filtering(dev, false);
1479 dsa_slave_unsync_ha(dev);
1481 dsa_port_assign_master(dp, old_master, NULL, false);
1483 /* Restore the objects on the old CPU port */
1485 dsa_slave_sync_ha(dev);
1487 if (vlan_filtering) {
1488 tmp = dsa_slave_manage_vlan_filtering(dev, true);
1491 "port %d failed to restore standalone VLANs: %pe\n",
1492 dp->index, ERR_PTR(tmp));
1498 tmp = dsa_port_bridge_join(dp, bridge_dev, extack);
1501 "port %d failed to rejoin bridge %s: %pe\n",
1502 dp->index, bridge_dev->name, ERR_PTR(tmp));
1509 void dsa_port_set_tag_protocol(struct dsa_port *cpu_dp,
1510 const struct dsa_device_ops *tag_ops)
1512 cpu_dp->rcv = tag_ops->rcv;
1513 cpu_dp->tag_ops = tag_ops;
1516 static struct phy_device *dsa_port_get_phy_device(struct dsa_port *dp)
1518 struct device_node *phy_dn;
1519 struct phy_device *phydev;
1521 phy_dn = of_parse_phandle(dp->dn, "phy-handle", 0);
1525 phydev = of_phy_find_device(phy_dn);
1527 of_node_put(phy_dn);
1528 return ERR_PTR(-EPROBE_DEFER);
1531 of_node_put(phy_dn);
1535 static void dsa_port_phylink_validate(struct phylink_config *config,
1536 unsigned long *supported,
1537 struct phylink_link_state *state)
1539 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1540 struct dsa_switch *ds = dp->ds;
1542 if (!ds->ops->phylink_validate) {
1543 if (config->mac_capabilities)
1544 phylink_generic_validate(config, supported, state);
1548 ds->ops->phylink_validate(ds, dp->index, supported, state);
1551 static void dsa_port_phylink_mac_pcs_get_state(struct phylink_config *config,
1552 struct phylink_link_state *state)
1554 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1555 struct dsa_switch *ds = dp->ds;
1558 /* Only called for inband modes */
1559 if (!ds->ops->phylink_mac_link_state) {
1564 err = ds->ops->phylink_mac_link_state(ds, dp->index, state);
1566 dev_err(ds->dev, "p%d: phylink_mac_link_state() failed: %d\n",
1572 static struct phylink_pcs *
1573 dsa_port_phylink_mac_select_pcs(struct phylink_config *config,
1574 phy_interface_t interface)
1576 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1577 struct phylink_pcs *pcs = ERR_PTR(-EOPNOTSUPP);
1578 struct dsa_switch *ds = dp->ds;
1580 if (ds->ops->phylink_mac_select_pcs)
1581 pcs = ds->ops->phylink_mac_select_pcs(ds, dp->index, interface);
1586 static void dsa_port_phylink_mac_config(struct phylink_config *config,
1588 const struct phylink_link_state *state)
1590 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1591 struct dsa_switch *ds = dp->ds;
1593 if (!ds->ops->phylink_mac_config)
1596 ds->ops->phylink_mac_config(ds, dp->index, mode, state);
1599 static void dsa_port_phylink_mac_an_restart(struct phylink_config *config)
1601 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1602 struct dsa_switch *ds = dp->ds;
1604 if (!ds->ops->phylink_mac_an_restart)
1607 ds->ops->phylink_mac_an_restart(ds, dp->index);
1610 static void dsa_port_phylink_mac_link_down(struct phylink_config *config,
1612 phy_interface_t interface)
1614 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1615 struct phy_device *phydev = NULL;
1616 struct dsa_switch *ds = dp->ds;
1618 if (dsa_port_is_user(dp))
1619 phydev = dp->slave->phydev;
1621 if (!ds->ops->phylink_mac_link_down) {
1622 if (ds->ops->adjust_link && phydev)
1623 ds->ops->adjust_link(ds, dp->index, phydev);
1627 ds->ops->phylink_mac_link_down(ds, dp->index, mode, interface);
1630 static void dsa_port_phylink_mac_link_up(struct phylink_config *config,
1631 struct phy_device *phydev,
1633 phy_interface_t interface,
1634 int speed, int duplex,
1635 bool tx_pause, bool rx_pause)
1637 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1638 struct dsa_switch *ds = dp->ds;
1640 if (!ds->ops->phylink_mac_link_up) {
1641 if (ds->ops->adjust_link && phydev)
1642 ds->ops->adjust_link(ds, dp->index, phydev);
1646 ds->ops->phylink_mac_link_up(ds, dp->index, mode, interface, phydev,
1647 speed, duplex, tx_pause, rx_pause);
1650 static const struct phylink_mac_ops dsa_port_phylink_mac_ops = {
1651 .validate = dsa_port_phylink_validate,
1652 .mac_select_pcs = dsa_port_phylink_mac_select_pcs,
1653 .mac_pcs_get_state = dsa_port_phylink_mac_pcs_get_state,
1654 .mac_config = dsa_port_phylink_mac_config,
1655 .mac_an_restart = dsa_port_phylink_mac_an_restart,
1656 .mac_link_down = dsa_port_phylink_mac_link_down,
1657 .mac_link_up = dsa_port_phylink_mac_link_up,
1660 int dsa_port_phylink_create(struct dsa_port *dp)
1662 struct dsa_switch *ds = dp->ds;
1663 phy_interface_t mode;
1667 err = of_get_phy_mode(dp->dn, &mode);
1669 mode = PHY_INTERFACE_MODE_NA;
1671 /* Presence of phylink_mac_link_state or phylink_mac_an_restart is
1672 * an indicator of a legacy phylink driver.
1674 if (ds->ops->phylink_mac_link_state ||
1675 ds->ops->phylink_mac_an_restart)
1676 dp->pl_config.legacy_pre_march2020 = true;
1678 if (ds->ops->phylink_get_caps)
1679 ds->ops->phylink_get_caps(ds, dp->index, &dp->pl_config);
1681 pl = phylink_create(&dp->pl_config, of_fwnode_handle(dp->dn),
1682 mode, &dsa_port_phylink_mac_ops);
1684 pr_err("error creating PHYLINK: %ld\n", PTR_ERR(dp->pl));
1693 void dsa_port_phylink_destroy(struct dsa_port *dp)
1695 phylink_destroy(dp->pl);
1699 static int dsa_shared_port_setup_phy_of(struct dsa_port *dp, bool enable)
1701 struct dsa_switch *ds = dp->ds;
1702 struct phy_device *phydev;
1703 int port = dp->index;
1706 phydev = dsa_port_get_phy_device(dp);
1711 return PTR_ERR(phydev);
1714 err = genphy_resume(phydev);
1718 err = genphy_read_status(phydev);
1722 err = genphy_suspend(phydev);
1727 if (ds->ops->adjust_link)
1728 ds->ops->adjust_link(ds, port, phydev);
1730 dev_dbg(ds->dev, "enabled port's phy: %s", phydev_name(phydev));
1733 put_device(&phydev->mdio.dev);
1737 static int dsa_shared_port_fixed_link_register_of(struct dsa_port *dp)
1739 struct device_node *dn = dp->dn;
1740 struct dsa_switch *ds = dp->ds;
1741 struct phy_device *phydev;
1742 int port = dp->index;
1743 phy_interface_t mode;
1746 err = of_phy_register_fixed_link(dn);
1749 "failed to register the fixed PHY of port %d\n",
1754 phydev = of_phy_find_device(dn);
1756 err = of_get_phy_mode(dn, &mode);
1758 mode = PHY_INTERFACE_MODE_NA;
1759 phydev->interface = mode;
1761 genphy_read_status(phydev);
1763 if (ds->ops->adjust_link)
1764 ds->ops->adjust_link(ds, port, phydev);
1766 put_device(&phydev->mdio.dev);
1771 static int dsa_shared_port_phylink_register(struct dsa_port *dp)
1773 struct dsa_switch *ds = dp->ds;
1774 struct device_node *port_dn = dp->dn;
1777 dp->pl_config.dev = ds->dev;
1778 dp->pl_config.type = PHYLINK_DEV;
1780 err = dsa_port_phylink_create(dp);
1784 err = phylink_of_phy_connect(dp->pl, port_dn, 0);
1785 if (err && err != -ENODEV) {
1786 pr_err("could not attach to PHY: %d\n", err);
1787 goto err_phy_connect;
1793 dsa_port_phylink_destroy(dp);
1797 /* During the initial DSA driver migration to OF, port nodes were sometimes
1798 * added to device trees with no indication of how they should operate from a
1799 * link management perspective (phy-handle, fixed-link, etc). Additionally, the
1800 * phy-mode may be absent. The interpretation of these port OF nodes depends on
1803 * User ports with no phy-handle or fixed-link are expected to connect to an
1804 * internal PHY located on the ds->slave_mii_bus at an MDIO address equal to
1805 * the port number. This description is still actively supported.
1807 * Shared (CPU and DSA) ports with no phy-handle or fixed-link are expected to
1808 * operate at the maximum speed that their phy-mode is capable of. If the
1809 * phy-mode is absent, they are expected to operate using the phy-mode
1810 * supported by the port that gives the highest link speed. It is unspecified
1811 * if the port should use flow control or not, half duplex or full duplex, or
1812 * if the phy-mode is a SERDES link, whether in-band autoneg is expected to be
1815 * In the latter case of shared ports, omitting the link management description
1816 * from the firmware node is deprecated and strongly discouraged. DSA uses
1817 * phylink, which rejects the firmware nodes of these ports for lacking
1818 * required properties.
1820 * For switches in this table, DSA will skip enforcing validation and will
1821 * later omit registering a phylink instance for the shared ports, if they lack
1822 * a fixed-link, a phy-handle, or a managed = "in-band-status" property.
1823 * It becomes the responsibility of the driver to ensure that these ports
1824 * operate at the maximum speed (whatever this means) and will interoperate
1825 * with the DSA master or other cascade port, since phylink methods will not be
1828 * If you are considering expanding this table for newly introduced switches,
1829 * think again. It is OK to remove switches from this table if there aren't DT
1830 * blobs in circulation which rely on defaulting the shared ports.
1832 static const char * const dsa_switches_apply_workarounds[] = {
1833 #if IS_ENABLED(CONFIG_NET_DSA_XRS700X)
1839 #if IS_ENABLED(CONFIG_B53)
1849 "brcm,bcm53010-srab",
1850 "brcm,bcm53011-srab",
1851 "brcm,bcm53012-srab",
1852 "brcm,bcm53018-srab",
1853 "brcm,bcm53019-srab",
1854 "brcm,bcm5301x-srab",
1855 "brcm,bcm11360-srab",
1856 "brcm,bcm58522-srab",
1857 "brcm,bcm58525-srab",
1858 "brcm,bcm58535-srab",
1859 "brcm,bcm58622-srab",
1860 "brcm,bcm58623-srab",
1861 "brcm,bcm58625-srab",
1862 "brcm,bcm88312-srab",
1866 "brcm,bcm3384-switch",
1867 "brcm,bcm6328-switch",
1868 "brcm,bcm6368-switch",
1869 "brcm,bcm63xx-switch",
1871 #if IS_ENABLED(CONFIG_NET_DSA_BCM_SF2)
1872 "brcm,bcm7445-switch-v4.0",
1873 "brcm,bcm7278-switch-v4.0",
1874 "brcm,bcm7278-switch-v4.8",
1876 #if IS_ENABLED(CONFIG_NET_DSA_LANTIQ_GSWIP)
1877 "lantiq,xrx200-gswip",
1878 "lantiq,xrx300-gswip",
1879 "lantiq,xrx330-gswip",
1881 #if IS_ENABLED(CONFIG_NET_DSA_MV88E6060)
1882 "marvell,mv88e6060",
1884 #if IS_ENABLED(CONFIG_NET_DSA_MV88E6XXX)
1885 "marvell,mv88e6085",
1886 "marvell,mv88e6190",
1887 "marvell,mv88e6250",
1889 #if IS_ENABLED(CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON)
1890 "microchip,ksz8765",
1891 "microchip,ksz8794",
1892 "microchip,ksz8795",
1893 "microchip,ksz8863",
1894 "microchip,ksz8873",
1895 "microchip,ksz9477",
1896 "microchip,ksz9897",
1897 "microchip,ksz9893",
1898 "microchip,ksz9563",
1899 "microchip,ksz8563",
1900 "microchip,ksz9567",
1902 #if IS_ENABLED(CONFIG_NET_DSA_SMSC_LAN9303_MDIO)
1903 "smsc,lan9303-mdio",
1905 #if IS_ENABLED(CONFIG_NET_DSA_SMSC_LAN9303_I2C)
1911 static void dsa_shared_port_validate_of(struct dsa_port *dp,
1912 bool *missing_phy_mode,
1913 bool *missing_link_description)
1915 struct device_node *dn = dp->dn, *phy_np;
1916 struct dsa_switch *ds = dp->ds;
1917 phy_interface_t mode;
1919 *missing_phy_mode = false;
1920 *missing_link_description = false;
1922 if (of_get_phy_mode(dn, &mode)) {
1923 *missing_phy_mode = true;
1925 "OF node %pOF of %s port %d lacks the required \"phy-mode\" property\n",
1926 dn, dsa_port_is_cpu(dp) ? "CPU" : "DSA", dp->index);
1929 /* Note: of_phy_is_fixed_link() also returns true for
1930 * managed = "in-band-status"
1932 if (of_phy_is_fixed_link(dn))
1935 phy_np = of_parse_phandle(dn, "phy-handle", 0);
1937 of_node_put(phy_np);
1941 *missing_link_description = true;
1944 "OF node %pOF of %s port %d lacks the required \"phy-handle\", \"fixed-link\" or \"managed\" properties\n",
1945 dn, dsa_port_is_cpu(dp) ? "CPU" : "DSA", dp->index);
1948 int dsa_shared_port_link_register_of(struct dsa_port *dp)
1950 struct dsa_switch *ds = dp->ds;
1951 bool missing_link_description;
1952 bool missing_phy_mode;
1953 int port = dp->index;
1955 dsa_shared_port_validate_of(dp, &missing_phy_mode,
1956 &missing_link_description);
1958 if ((missing_phy_mode || missing_link_description) &&
1959 !of_device_compatible_match(ds->dev->of_node,
1960 dsa_switches_apply_workarounds))
1963 if (!ds->ops->adjust_link) {
1964 if (missing_link_description) {
1966 "Skipping phylink registration for %s port %d\n",
1967 dsa_port_is_cpu(dp) ? "CPU" : "DSA", dp->index);
1969 if (ds->ops->phylink_mac_link_down)
1970 ds->ops->phylink_mac_link_down(ds, port,
1971 MLO_AN_FIXED, PHY_INTERFACE_MODE_NA);
1973 return dsa_shared_port_phylink_register(dp);
1979 "Using legacy PHYLIB callbacks. Please migrate to PHYLINK!\n");
1981 if (of_phy_is_fixed_link(dp->dn))
1982 return dsa_shared_port_fixed_link_register_of(dp);
1984 return dsa_shared_port_setup_phy_of(dp, true);
1987 void dsa_shared_port_link_unregister_of(struct dsa_port *dp)
1989 struct dsa_switch *ds = dp->ds;
1991 if (!ds->ops->adjust_link && dp->pl) {
1993 phylink_disconnect_phy(dp->pl);
1995 dsa_port_phylink_destroy(dp);
1999 if (of_phy_is_fixed_link(dp->dn))
2000 of_phy_deregister_fixed_link(dp->dn);
2002 dsa_shared_port_setup_phy_of(dp, false);
2005 int dsa_port_hsr_join(struct dsa_port *dp, struct net_device *hsr)
2007 struct dsa_switch *ds = dp->ds;
2010 if (!ds->ops->port_hsr_join)
2015 err = ds->ops->port_hsr_join(ds, dp->index, hsr);
2022 void dsa_port_hsr_leave(struct dsa_port *dp, struct net_device *hsr)
2024 struct dsa_switch *ds = dp->ds;
2029 if (ds->ops->port_hsr_leave) {
2030 err = ds->ops->port_hsr_leave(ds, dp->index, hsr);
2032 dev_err(dp->ds->dev,
2033 "port %d failed to leave HSR %s: %pe\n",
2034 dp->index, hsr->name, ERR_PTR(err));
2038 int dsa_port_tag_8021q_vlan_add(struct dsa_port *dp, u16 vid, bool broadcast)
2040 struct dsa_notifier_tag_8021q_vlan_info info = {
2046 return dsa_broadcast(DSA_NOTIFIER_TAG_8021Q_VLAN_ADD, &info);
2048 return dsa_port_notify(dp, DSA_NOTIFIER_TAG_8021Q_VLAN_ADD, &info);
2051 void dsa_port_tag_8021q_vlan_del(struct dsa_port *dp, u16 vid, bool broadcast)
2053 struct dsa_notifier_tag_8021q_vlan_info info = {
2060 err = dsa_broadcast(DSA_NOTIFIER_TAG_8021Q_VLAN_DEL, &info);
2062 err = dsa_port_notify(dp, DSA_NOTIFIER_TAG_8021Q_VLAN_DEL, &info);
2064 dev_err(dp->ds->dev,
2065 "port %d failed to notify tag_8021q VLAN %d deletion: %pe\n",
2066 dp->index, vid, ERR_PTR(err));