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/notifier.h>
11 #include <linux/of_mdio.h>
12 #include <linux/of_net.h>
17 * dsa_port_notify - Notify the switching fabric of changes to a port
18 * @dp: port on which change occurred
19 * @e: event, must be of type DSA_NOTIFIER_*
20 * @v: event-specific value.
22 * Notify all switches in the DSA tree that this port's switch belongs to,
23 * including this switch itself, of an event. Allows the other switches to
24 * reconfigure themselves for cross-chip operations. Can also be used to
25 * reconfigure ports without net_devices (CPU ports, DSA links) whenever
26 * a user port's state changes.
28 static int dsa_port_notify(const struct dsa_port *dp, unsigned long e, void *v)
30 return dsa_tree_notify(dp->ds->dst, e, v);
33 static void dsa_port_notify_bridge_fdb_flush(const struct dsa_port *dp)
35 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
36 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);
60 dsa_port_notify_bridge_fdb_flush(dp);
63 static bool dsa_port_can_configure_learning(struct dsa_port *dp)
65 struct switchdev_brport_flags flags = {
68 struct dsa_switch *ds = dp->ds;
71 if (!ds->ops->port_bridge_flags || !ds->ops->port_pre_bridge_flags)
74 err = ds->ops->port_pre_bridge_flags(ds, dp->index, flags, NULL);
78 int dsa_port_set_state(struct dsa_port *dp, u8 state, bool do_fast_age)
80 struct dsa_switch *ds = dp->ds;
83 if (!ds->ops->port_stp_state_set)
86 ds->ops->port_stp_state_set(ds, port, state);
88 if (!dsa_port_can_configure_learning(dp) ||
89 (do_fast_age && dp->learning)) {
90 /* Fast age FDB entries or flush appropriate forwarding database
91 * for the given port, if we are moving it from Learning or
92 * Forwarding state, to Disabled or Blocking or Listening state.
93 * Ports that were standalone before the STP state change don't
94 * need to fast age the FDB, since address learning is off in
98 if ((dp->stp_state == BR_STATE_LEARNING ||
99 dp->stp_state == BR_STATE_FORWARDING) &&
100 (state == BR_STATE_DISABLED ||
101 state == BR_STATE_BLOCKING ||
102 state == BR_STATE_LISTENING))
103 dsa_port_fast_age(dp);
106 dp->stp_state = state;
111 static void dsa_port_set_state_now(struct dsa_port *dp, u8 state,
116 err = dsa_port_set_state(dp, state, do_fast_age);
118 pr_err("DSA: failed to set STP state %u (%d)\n", state, err);
121 int dsa_port_enable_rt(struct dsa_port *dp, struct phy_device *phy)
123 struct dsa_switch *ds = dp->ds;
124 int port = dp->index;
127 if (ds->ops->port_enable) {
128 err = ds->ops->port_enable(ds, port, phy);
134 dsa_port_set_state_now(dp, BR_STATE_FORWARDING, false);
137 phylink_start(dp->pl);
142 int dsa_port_enable(struct dsa_port *dp, struct phy_device *phy)
147 err = dsa_port_enable_rt(dp, phy);
153 void dsa_port_disable_rt(struct dsa_port *dp)
155 struct dsa_switch *ds = dp->ds;
156 int port = dp->index;
159 phylink_stop(dp->pl);
162 dsa_port_set_state_now(dp, BR_STATE_DISABLED, false);
164 if (ds->ops->port_disable)
165 ds->ops->port_disable(ds, port);
168 void dsa_port_disable(struct dsa_port *dp)
171 dsa_port_disable_rt(dp);
175 static int dsa_port_inherit_brport_flags(struct dsa_port *dp,
176 struct netlink_ext_ack *extack)
178 const unsigned long mask = BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
180 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
183 for_each_set_bit(flag, &mask, 32) {
184 struct switchdev_brport_flags flags = {0};
186 flags.mask = BIT(flag);
188 if (br_port_flag_is_set(brport_dev, BIT(flag)))
189 flags.val = BIT(flag);
191 err = dsa_port_bridge_flags(dp, flags, extack);
192 if (err && err != -EOPNOTSUPP)
199 static void dsa_port_clear_brport_flags(struct dsa_port *dp)
201 const unsigned long val = BR_FLOOD | BR_MCAST_FLOOD | BR_BCAST_FLOOD;
202 const unsigned long mask = BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
206 for_each_set_bit(flag, &mask, 32) {
207 struct switchdev_brport_flags flags = {0};
209 flags.mask = BIT(flag);
210 flags.val = val & BIT(flag);
212 err = dsa_port_bridge_flags(dp, flags, NULL);
213 if (err && err != -EOPNOTSUPP)
215 "failed to clear bridge port flag %lu: %pe\n",
216 flags.val, ERR_PTR(err));
220 static int dsa_port_switchdev_sync_attrs(struct dsa_port *dp,
221 struct netlink_ext_ack *extack)
223 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
224 struct net_device *br = dp->bridge_dev;
227 err = dsa_port_inherit_brport_flags(dp, extack);
231 err = dsa_port_set_state(dp, br_port_get_stp_state(brport_dev), false);
232 if (err && err != -EOPNOTSUPP)
235 err = dsa_port_vlan_filtering(dp, br_vlan_enabled(br), extack);
236 if (err && err != -EOPNOTSUPP)
239 err = dsa_port_ageing_time(dp, br_get_ageing_time(br));
240 if (err && err != -EOPNOTSUPP)
246 static void dsa_port_switchdev_unsync_attrs(struct dsa_port *dp)
248 /* Configure the port for standalone mode (no address learning,
250 * The bridge only emits SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS events
251 * when the user requests it through netlink or sysfs, but not
252 * automatically at port join or leave, so we need to handle resetting
253 * the brport flags ourselves. But we even prefer it that way, because
254 * otherwise, some setups might never get the notification they need,
255 * for example, when a port leaves a LAG that offloads the bridge,
256 * it becomes standalone, but as far as the bridge is concerned, no
259 dsa_port_clear_brport_flags(dp);
261 /* Port left the bridge, put in BR_STATE_DISABLED by the bridge layer,
262 * so allow it to be in BR_STATE_FORWARDING to be kept functional
264 dsa_port_set_state_now(dp, BR_STATE_FORWARDING, true);
266 /* VLAN filtering is handled by dsa_switch_bridge_leave */
268 /* Ageing time may be global to the switch chip, so don't change it
269 * here because we have no good reason (or value) to change it to.
273 static void dsa_port_bridge_tx_fwd_unoffload(struct dsa_port *dp,
274 struct net_device *bridge_dev)
276 int bridge_num = dp->bridge_num;
277 struct dsa_switch *ds = dp->ds;
279 /* No bridge TX forwarding offload => do nothing */
280 if (!ds->ops->port_bridge_tx_fwd_unoffload || dp->bridge_num == -1)
285 dsa_bridge_num_put(bridge_dev, bridge_num);
287 /* Notify the chips only once the offload has been deactivated, so
288 * that they can update their configuration accordingly.
290 ds->ops->port_bridge_tx_fwd_unoffload(ds, dp->index, bridge_dev,
294 static bool dsa_port_bridge_tx_fwd_offload(struct dsa_port *dp,
295 struct net_device *bridge_dev)
297 struct dsa_switch *ds = dp->ds;
300 if (!ds->ops->port_bridge_tx_fwd_offload)
303 bridge_num = dsa_bridge_num_get(bridge_dev,
304 ds->num_fwd_offloading_bridges);
308 dp->bridge_num = bridge_num;
310 /* Notify the driver */
311 err = ds->ops->port_bridge_tx_fwd_offload(ds, dp->index, bridge_dev,
314 dsa_port_bridge_tx_fwd_unoffload(dp, bridge_dev);
321 int dsa_port_bridge_join(struct dsa_port *dp, struct net_device *br,
322 struct netlink_ext_ack *extack)
324 struct dsa_notifier_bridge_info info = {
325 .tree_index = dp->ds->dst->index,
326 .sw_index = dp->ds->index,
330 struct net_device *dev = dp->slave;
331 struct net_device *brport_dev;
335 /* Here the interface is already bridged. Reflect the current
336 * configuration so that drivers can program their chips accordingly.
340 brport_dev = dsa_port_to_bridge_port(dp);
342 err = dsa_broadcast(DSA_NOTIFIER_BRIDGE_JOIN, &info);
346 tx_fwd_offload = dsa_port_bridge_tx_fwd_offload(dp, br);
348 err = switchdev_bridge_port_offload(brport_dev, dev, dp,
349 &dsa_slave_switchdev_notifier,
350 &dsa_slave_switchdev_blocking_notifier,
351 tx_fwd_offload, extack);
353 goto out_rollback_unbridge;
355 err = dsa_port_switchdev_sync_attrs(dp, extack);
357 goto out_rollback_unoffload;
361 out_rollback_unoffload:
362 switchdev_bridge_port_unoffload(brport_dev, dp,
363 &dsa_slave_switchdev_notifier,
364 &dsa_slave_switchdev_blocking_notifier);
365 out_rollback_unbridge:
366 dsa_broadcast(DSA_NOTIFIER_BRIDGE_LEAVE, &info);
368 dp->bridge_dev = NULL;
372 void dsa_port_pre_bridge_leave(struct dsa_port *dp, struct net_device *br)
374 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
376 /* Don't try to unoffload something that is not offloaded */
380 switchdev_bridge_port_unoffload(brport_dev, dp,
381 &dsa_slave_switchdev_notifier,
382 &dsa_slave_switchdev_blocking_notifier);
384 dsa_flush_workqueue();
387 void dsa_port_bridge_leave(struct dsa_port *dp, struct net_device *br)
389 struct dsa_notifier_bridge_info info = {
390 .tree_index = dp->ds->dst->index,
391 .sw_index = dp->ds->index,
397 /* Here the port is already unbridged. Reflect the current configuration
398 * so that drivers can program their chips accordingly.
400 dp->bridge_dev = NULL;
402 dsa_port_bridge_tx_fwd_unoffload(dp, br);
404 err = dsa_broadcast(DSA_NOTIFIER_BRIDGE_LEAVE, &info);
407 "port %d failed to notify DSA_NOTIFIER_BRIDGE_LEAVE: %pe\n",
408 dp->index, ERR_PTR(err));
410 dsa_port_switchdev_unsync_attrs(dp);
413 int dsa_port_lag_change(struct dsa_port *dp,
414 struct netdev_lag_lower_state_info *linfo)
416 struct dsa_notifier_lag_info info = {
417 .sw_index = dp->ds->index,
425 /* On statically configured aggregates (e.g. loadbalance
426 * without LACP) ports will always be tx_enabled, even if the
427 * link is down. Thus we require both link_up and tx_enabled
428 * in order to include it in the tx set.
430 tx_enabled = linfo->link_up && linfo->tx_enabled;
432 if (tx_enabled == dp->lag_tx_enabled)
435 dp->lag_tx_enabled = tx_enabled;
437 return dsa_port_notify(dp, DSA_NOTIFIER_LAG_CHANGE, &info);
440 int dsa_port_lag_join(struct dsa_port *dp, struct net_device *lag,
441 struct netdev_lag_upper_info *uinfo,
442 struct netlink_ext_ack *extack)
444 struct dsa_notifier_lag_info info = {
445 .sw_index = dp->ds->index,
450 struct net_device *bridge_dev;
453 dsa_lag_map(dp->ds->dst, lag);
456 err = dsa_port_notify(dp, DSA_NOTIFIER_LAG_JOIN, &info);
460 bridge_dev = netdev_master_upper_dev_get(lag);
461 if (!bridge_dev || !netif_is_bridge_master(bridge_dev))
464 err = dsa_port_bridge_join(dp, bridge_dev, extack);
466 goto err_bridge_join;
471 dsa_port_notify(dp, DSA_NOTIFIER_LAG_LEAVE, &info);
474 dsa_lag_unmap(dp->ds->dst, lag);
478 void dsa_port_pre_lag_leave(struct dsa_port *dp, struct net_device *lag)
481 dsa_port_pre_bridge_leave(dp, dp->bridge_dev);
484 void dsa_port_lag_leave(struct dsa_port *dp, struct net_device *lag)
486 struct dsa_notifier_lag_info info = {
487 .sw_index = dp->ds->index,
496 /* Port might have been part of a LAG that in turn was
497 * attached to a bridge.
500 dsa_port_bridge_leave(dp, dp->bridge_dev);
502 dp->lag_tx_enabled = false;
505 err = dsa_port_notify(dp, DSA_NOTIFIER_LAG_LEAVE, &info);
508 "port %d failed to notify DSA_NOTIFIER_LAG_LEAVE: %pe\n",
509 dp->index, ERR_PTR(err));
511 dsa_lag_unmap(dp->ds->dst, lag);
514 /* Must be called under rcu_read_lock() */
515 static bool dsa_port_can_apply_vlan_filtering(struct dsa_port *dp,
517 struct netlink_ext_ack *extack)
519 struct dsa_switch *ds = dp->ds;
520 struct dsa_port *other_dp;
523 /* VLAN awareness was off, so the question is "can we turn it on".
524 * We may have had 8021q uppers, those need to go. Make sure we don't
525 * enter an inconsistent state: deny changing the VLAN awareness state
526 * as long as we have 8021q uppers.
528 if (vlan_filtering && dsa_port_is_user(dp)) {
529 struct net_device *upper_dev, *slave = dp->slave;
530 struct net_device *br = dp->bridge_dev;
531 struct list_head *iter;
533 netdev_for_each_upper_dev_rcu(slave, upper_dev, iter) {
534 struct bridge_vlan_info br_info;
537 if (!is_vlan_dev(upper_dev))
540 vid = vlan_dev_vlan_id(upper_dev);
542 /* br_vlan_get_info() returns -EINVAL or -ENOENT if the
543 * device, respectively the VID is not found, returning
544 * 0 means success, which is a failure for us here.
546 err = br_vlan_get_info(br, vid, &br_info);
548 NL_SET_ERR_MSG_MOD(extack,
549 "Must first remove VLAN uppers having VIDs also present in bridge");
555 if (!ds->vlan_filtering_is_global)
558 /* For cases where enabling/disabling VLAN awareness is global to the
559 * switch, we need to handle the case where multiple bridges span
560 * different ports of the same switch device and one of them has a
561 * different setting than what is being requested.
563 dsa_switch_for_each_port(other_dp, ds) {
564 struct net_device *other_bridge;
566 other_bridge = other_dp->bridge_dev;
569 /* If it's the same bridge, it also has same
570 * vlan_filtering setting => no need to check
572 if (other_bridge == dp->bridge_dev)
574 if (br_vlan_enabled(other_bridge) != vlan_filtering) {
575 NL_SET_ERR_MSG_MOD(extack,
576 "VLAN filtering is a global setting");
583 int dsa_port_vlan_filtering(struct dsa_port *dp, bool vlan_filtering,
584 struct netlink_ext_ack *extack)
586 bool old_vlan_filtering = dsa_port_is_vlan_filtering(dp);
587 struct dsa_switch *ds = dp->ds;
591 if (!ds->ops->port_vlan_filtering)
594 /* We are called from dsa_slave_switchdev_blocking_event(),
595 * which is not under rcu_read_lock(), unlike
596 * dsa_slave_switchdev_event().
599 apply = dsa_port_can_apply_vlan_filtering(dp, vlan_filtering, extack);
604 if (dsa_port_is_vlan_filtering(dp) == vlan_filtering)
607 err = ds->ops->port_vlan_filtering(ds, dp->index, vlan_filtering,
612 if (ds->vlan_filtering_is_global) {
613 struct dsa_port *other_dp;
615 ds->vlan_filtering = vlan_filtering;
617 dsa_switch_for_each_user_port(other_dp, ds) {
618 struct net_device *slave = dp->slave;
620 /* We might be called in the unbind path, so not
621 * all slave devices might still be registered.
626 err = dsa_slave_manage_vlan_filtering(slave,
632 dp->vlan_filtering = vlan_filtering;
634 err = dsa_slave_manage_vlan_filtering(dp->slave,
643 ds->ops->port_vlan_filtering(ds, dp->index, old_vlan_filtering, NULL);
645 if (ds->vlan_filtering_is_global)
646 ds->vlan_filtering = old_vlan_filtering;
648 dp->vlan_filtering = old_vlan_filtering;
653 /* This enforces legacy behavior for switch drivers which assume they can't
654 * receive VLAN configuration when enslaved to a bridge with vlan_filtering=0
656 bool dsa_port_skip_vlan_configuration(struct dsa_port *dp)
658 struct dsa_switch *ds = dp->ds;
663 return (!ds->configure_vlan_while_not_filtering &&
664 !br_vlan_enabled(dp->bridge_dev));
667 int dsa_port_ageing_time(struct dsa_port *dp, clock_t ageing_clock)
669 unsigned long ageing_jiffies = clock_t_to_jiffies(ageing_clock);
670 unsigned int ageing_time = jiffies_to_msecs(ageing_jiffies);
671 struct dsa_notifier_ageing_time_info info;
674 info.ageing_time = ageing_time;
676 err = dsa_port_notify(dp, DSA_NOTIFIER_AGEING_TIME, &info);
680 dp->ageing_time = ageing_time;
685 int dsa_port_pre_bridge_flags(const struct dsa_port *dp,
686 struct switchdev_brport_flags flags,
687 struct netlink_ext_ack *extack)
689 struct dsa_switch *ds = dp->ds;
691 if (!ds->ops->port_pre_bridge_flags)
694 return ds->ops->port_pre_bridge_flags(ds, dp->index, flags, extack);
697 int dsa_port_bridge_flags(struct dsa_port *dp,
698 struct switchdev_brport_flags flags,
699 struct netlink_ext_ack *extack)
701 struct dsa_switch *ds = dp->ds;
704 if (!ds->ops->port_bridge_flags)
707 err = ds->ops->port_bridge_flags(ds, dp->index, flags, extack);
711 if (flags.mask & BR_LEARNING) {
712 bool learning = flags.val & BR_LEARNING;
714 if (learning == dp->learning)
717 if ((dp->learning && !learning) &&
718 (dp->stp_state == BR_STATE_LEARNING ||
719 dp->stp_state == BR_STATE_FORWARDING))
720 dsa_port_fast_age(dp);
722 dp->learning = learning;
728 int dsa_port_mtu_change(struct dsa_port *dp, int new_mtu,
731 struct dsa_notifier_mtu_info info = {
732 .sw_index = dp->ds->index,
733 .targeted_match = targeted_match,
738 return dsa_port_notify(dp, DSA_NOTIFIER_MTU, &info);
741 int dsa_port_fdb_add(struct dsa_port *dp, const unsigned char *addr,
744 struct dsa_notifier_fdb_info info = {
745 .sw_index = dp->ds->index,
751 return dsa_port_notify(dp, DSA_NOTIFIER_FDB_ADD, &info);
754 int dsa_port_fdb_del(struct dsa_port *dp, const unsigned char *addr,
757 struct dsa_notifier_fdb_info info = {
758 .sw_index = dp->ds->index,
765 return dsa_port_notify(dp, DSA_NOTIFIER_FDB_DEL, &info);
768 int dsa_port_host_fdb_add(struct dsa_port *dp, const unsigned char *addr,
771 struct dsa_notifier_fdb_info info = {
772 .sw_index = dp->ds->index,
777 struct dsa_port *cpu_dp = dp->cpu_dp;
780 err = dev_uc_add(cpu_dp->master, addr);
784 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_FDB_ADD, &info);
787 int dsa_port_host_fdb_del(struct dsa_port *dp, const unsigned char *addr,
790 struct dsa_notifier_fdb_info info = {
791 .sw_index = dp->ds->index,
796 struct dsa_port *cpu_dp = dp->cpu_dp;
799 err = dev_uc_del(cpu_dp->master, addr);
803 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_FDB_DEL, &info);
806 int dsa_port_fdb_dump(struct dsa_port *dp, dsa_fdb_dump_cb_t *cb, void *data)
808 struct dsa_switch *ds = dp->ds;
809 int port = dp->index;
811 if (!ds->ops->port_fdb_dump)
814 return ds->ops->port_fdb_dump(ds, port, cb, data);
817 int dsa_port_mdb_add(const struct dsa_port *dp,
818 const struct switchdev_obj_port_mdb *mdb)
820 struct dsa_notifier_mdb_info info = {
821 .sw_index = dp->ds->index,
826 return dsa_port_notify(dp, DSA_NOTIFIER_MDB_ADD, &info);
829 int dsa_port_mdb_del(const struct dsa_port *dp,
830 const struct switchdev_obj_port_mdb *mdb)
832 struct dsa_notifier_mdb_info info = {
833 .sw_index = dp->ds->index,
838 return dsa_port_notify(dp, DSA_NOTIFIER_MDB_DEL, &info);
841 int dsa_port_host_mdb_add(const struct dsa_port *dp,
842 const struct switchdev_obj_port_mdb *mdb)
844 struct dsa_notifier_mdb_info info = {
845 .sw_index = dp->ds->index,
849 struct dsa_port *cpu_dp = dp->cpu_dp;
852 err = dev_mc_add(cpu_dp->master, mdb->addr);
856 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_MDB_ADD, &info);
859 int dsa_port_host_mdb_del(const struct dsa_port *dp,
860 const struct switchdev_obj_port_mdb *mdb)
862 struct dsa_notifier_mdb_info info = {
863 .sw_index = dp->ds->index,
867 struct dsa_port *cpu_dp = dp->cpu_dp;
870 err = dev_mc_del(cpu_dp->master, mdb->addr);
874 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_MDB_DEL, &info);
877 int dsa_port_vlan_add(struct dsa_port *dp,
878 const struct switchdev_obj_port_vlan *vlan,
879 struct netlink_ext_ack *extack)
881 struct dsa_notifier_vlan_info info = {
882 .sw_index = dp->ds->index,
888 return dsa_port_notify(dp, DSA_NOTIFIER_VLAN_ADD, &info);
891 int dsa_port_vlan_del(struct dsa_port *dp,
892 const struct switchdev_obj_port_vlan *vlan)
894 struct dsa_notifier_vlan_info info = {
895 .sw_index = dp->ds->index,
900 return dsa_port_notify(dp, DSA_NOTIFIER_VLAN_DEL, &info);
903 int dsa_port_mrp_add(const struct dsa_port *dp,
904 const struct switchdev_obj_mrp *mrp)
906 struct dsa_notifier_mrp_info info = {
907 .sw_index = dp->ds->index,
912 return dsa_port_notify(dp, DSA_NOTIFIER_MRP_ADD, &info);
915 int dsa_port_mrp_del(const struct dsa_port *dp,
916 const struct switchdev_obj_mrp *mrp)
918 struct dsa_notifier_mrp_info info = {
919 .sw_index = dp->ds->index,
924 return dsa_port_notify(dp, DSA_NOTIFIER_MRP_DEL, &info);
927 int dsa_port_mrp_add_ring_role(const struct dsa_port *dp,
928 const struct switchdev_obj_ring_role_mrp *mrp)
930 struct dsa_notifier_mrp_ring_role_info info = {
931 .sw_index = dp->ds->index,
936 return dsa_port_notify(dp, DSA_NOTIFIER_MRP_ADD_RING_ROLE, &info);
939 int dsa_port_mrp_del_ring_role(const struct dsa_port *dp,
940 const struct switchdev_obj_ring_role_mrp *mrp)
942 struct dsa_notifier_mrp_ring_role_info info = {
943 .sw_index = dp->ds->index,
948 return dsa_port_notify(dp, DSA_NOTIFIER_MRP_DEL_RING_ROLE, &info);
951 void dsa_port_set_tag_protocol(struct dsa_port *cpu_dp,
952 const struct dsa_device_ops *tag_ops)
954 cpu_dp->rcv = tag_ops->rcv;
955 cpu_dp->tag_ops = tag_ops;
958 static struct phy_device *dsa_port_get_phy_device(struct dsa_port *dp)
960 struct device_node *phy_dn;
961 struct phy_device *phydev;
963 phy_dn = of_parse_phandle(dp->dn, "phy-handle", 0);
967 phydev = of_phy_find_device(phy_dn);
970 return ERR_PTR(-EPROBE_DEFER);
977 static void dsa_port_phylink_validate(struct phylink_config *config,
978 unsigned long *supported,
979 struct phylink_link_state *state)
981 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
982 struct dsa_switch *ds = dp->ds;
984 if (!ds->ops->phylink_validate)
987 ds->ops->phylink_validate(ds, dp->index, supported, state);
990 static void dsa_port_phylink_mac_pcs_get_state(struct phylink_config *config,
991 struct phylink_link_state *state)
993 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
994 struct dsa_switch *ds = dp->ds;
997 /* Only called for inband modes */
998 if (!ds->ops->phylink_mac_link_state) {
1003 err = ds->ops->phylink_mac_link_state(ds, dp->index, state);
1005 dev_err(ds->dev, "p%d: phylink_mac_link_state() failed: %d\n",
1011 static void dsa_port_phylink_mac_config(struct phylink_config *config,
1013 const struct phylink_link_state *state)
1015 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1016 struct dsa_switch *ds = dp->ds;
1018 if (!ds->ops->phylink_mac_config)
1021 ds->ops->phylink_mac_config(ds, dp->index, mode, state);
1024 static void dsa_port_phylink_mac_an_restart(struct phylink_config *config)
1026 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1027 struct dsa_switch *ds = dp->ds;
1029 if (!ds->ops->phylink_mac_an_restart)
1032 ds->ops->phylink_mac_an_restart(ds, dp->index);
1035 static void dsa_port_phylink_mac_link_down(struct phylink_config *config,
1037 phy_interface_t interface)
1039 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1040 struct phy_device *phydev = NULL;
1041 struct dsa_switch *ds = dp->ds;
1043 if (dsa_port_is_user(dp))
1044 phydev = dp->slave->phydev;
1046 if (!ds->ops->phylink_mac_link_down) {
1047 if (ds->ops->adjust_link && phydev)
1048 ds->ops->adjust_link(ds, dp->index, phydev);
1052 ds->ops->phylink_mac_link_down(ds, dp->index, mode, interface);
1055 static void dsa_port_phylink_mac_link_up(struct phylink_config *config,
1056 struct phy_device *phydev,
1058 phy_interface_t interface,
1059 int speed, int duplex,
1060 bool tx_pause, bool rx_pause)
1062 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1063 struct dsa_switch *ds = dp->ds;
1065 if (!ds->ops->phylink_mac_link_up) {
1066 if (ds->ops->adjust_link && phydev)
1067 ds->ops->adjust_link(ds, dp->index, phydev);
1071 ds->ops->phylink_mac_link_up(ds, dp->index, mode, interface, phydev,
1072 speed, duplex, tx_pause, rx_pause);
1075 const struct phylink_mac_ops dsa_port_phylink_mac_ops = {
1076 .validate = dsa_port_phylink_validate,
1077 .mac_pcs_get_state = dsa_port_phylink_mac_pcs_get_state,
1078 .mac_config = dsa_port_phylink_mac_config,
1079 .mac_an_restart = dsa_port_phylink_mac_an_restart,
1080 .mac_link_down = dsa_port_phylink_mac_link_down,
1081 .mac_link_up = dsa_port_phylink_mac_link_up,
1084 static int dsa_port_setup_phy_of(struct dsa_port *dp, bool enable)
1086 struct dsa_switch *ds = dp->ds;
1087 struct phy_device *phydev;
1088 int port = dp->index;
1091 phydev = dsa_port_get_phy_device(dp);
1096 return PTR_ERR(phydev);
1099 err = genphy_resume(phydev);
1103 err = genphy_read_status(phydev);
1107 err = genphy_suspend(phydev);
1112 if (ds->ops->adjust_link)
1113 ds->ops->adjust_link(ds, port, phydev);
1115 dev_dbg(ds->dev, "enabled port's phy: %s", phydev_name(phydev));
1118 put_device(&phydev->mdio.dev);
1122 static int dsa_port_fixed_link_register_of(struct dsa_port *dp)
1124 struct device_node *dn = dp->dn;
1125 struct dsa_switch *ds = dp->ds;
1126 struct phy_device *phydev;
1127 int port = dp->index;
1128 phy_interface_t mode;
1131 err = of_phy_register_fixed_link(dn);
1134 "failed to register the fixed PHY of port %d\n",
1139 phydev = of_phy_find_device(dn);
1141 err = of_get_phy_mode(dn, &mode);
1143 mode = PHY_INTERFACE_MODE_NA;
1144 phydev->interface = mode;
1146 genphy_read_status(phydev);
1148 if (ds->ops->adjust_link)
1149 ds->ops->adjust_link(ds, port, phydev);
1151 put_device(&phydev->mdio.dev);
1156 static int dsa_port_phylink_register(struct dsa_port *dp)
1158 struct dsa_switch *ds = dp->ds;
1159 struct device_node *port_dn = dp->dn;
1160 phy_interface_t mode;
1163 err = of_get_phy_mode(port_dn, &mode);
1165 mode = PHY_INTERFACE_MODE_NA;
1167 dp->pl_config.dev = ds->dev;
1168 dp->pl_config.type = PHYLINK_DEV;
1169 dp->pl_config.pcs_poll = ds->pcs_poll;
1171 if (ds->ops->phylink_get_interfaces)
1172 ds->ops->phylink_get_interfaces(ds, dp->index,
1173 dp->pl_config.supported_interfaces);
1175 dp->pl = phylink_create(&dp->pl_config, of_fwnode_handle(port_dn),
1176 mode, &dsa_port_phylink_mac_ops);
1177 if (IS_ERR(dp->pl)) {
1178 pr_err("error creating PHYLINK: %ld\n", PTR_ERR(dp->pl));
1179 return PTR_ERR(dp->pl);
1182 err = phylink_of_phy_connect(dp->pl, port_dn, 0);
1183 if (err && err != -ENODEV) {
1184 pr_err("could not attach to PHY: %d\n", err);
1185 goto err_phy_connect;
1191 phylink_destroy(dp->pl);
1195 int dsa_port_link_register_of(struct dsa_port *dp)
1197 struct dsa_switch *ds = dp->ds;
1198 struct device_node *phy_np;
1199 int port = dp->index;
1201 if (!ds->ops->adjust_link) {
1202 phy_np = of_parse_phandle(dp->dn, "phy-handle", 0);
1203 if (of_phy_is_fixed_link(dp->dn) || phy_np) {
1204 if (ds->ops->phylink_mac_link_down)
1205 ds->ops->phylink_mac_link_down(ds, port,
1206 MLO_AN_FIXED, PHY_INTERFACE_MODE_NA);
1207 return dsa_port_phylink_register(dp);
1213 "Using legacy PHYLIB callbacks. Please migrate to PHYLINK!\n");
1215 if (of_phy_is_fixed_link(dp->dn))
1216 return dsa_port_fixed_link_register_of(dp);
1218 return dsa_port_setup_phy_of(dp, true);
1221 void dsa_port_link_unregister_of(struct dsa_port *dp)
1223 struct dsa_switch *ds = dp->ds;
1225 if (!ds->ops->adjust_link && dp->pl) {
1227 phylink_disconnect_phy(dp->pl);
1229 phylink_destroy(dp->pl);
1234 if (of_phy_is_fixed_link(dp->dn))
1235 of_phy_deregister_fixed_link(dp->dn);
1237 dsa_port_setup_phy_of(dp, false);
1240 int dsa_port_get_phy_strings(struct dsa_port *dp, uint8_t *data)
1242 struct phy_device *phydev;
1243 int ret = -EOPNOTSUPP;
1245 if (of_phy_is_fixed_link(dp->dn))
1248 phydev = dsa_port_get_phy_device(dp);
1249 if (IS_ERR_OR_NULL(phydev))
1252 ret = phy_ethtool_get_strings(phydev, data);
1253 put_device(&phydev->mdio.dev);
1257 EXPORT_SYMBOL_GPL(dsa_port_get_phy_strings);
1259 int dsa_port_get_ethtool_phy_stats(struct dsa_port *dp, uint64_t *data)
1261 struct phy_device *phydev;
1262 int ret = -EOPNOTSUPP;
1264 if (of_phy_is_fixed_link(dp->dn))
1267 phydev = dsa_port_get_phy_device(dp);
1268 if (IS_ERR_OR_NULL(phydev))
1271 ret = phy_ethtool_get_stats(phydev, NULL, data);
1272 put_device(&phydev->mdio.dev);
1276 EXPORT_SYMBOL_GPL(dsa_port_get_ethtool_phy_stats);
1278 int dsa_port_get_phy_sset_count(struct dsa_port *dp)
1280 struct phy_device *phydev;
1281 int ret = -EOPNOTSUPP;
1283 if (of_phy_is_fixed_link(dp->dn))
1286 phydev = dsa_port_get_phy_device(dp);
1287 if (IS_ERR_OR_NULL(phydev))
1290 ret = phy_ethtool_get_sset_count(phydev);
1291 put_device(&phydev->mdio.dev);
1295 EXPORT_SYMBOL_GPL(dsa_port_get_phy_sset_count);
1297 int dsa_port_hsr_join(struct dsa_port *dp, struct net_device *hsr)
1299 struct dsa_notifier_hsr_info info = {
1300 .sw_index = dp->ds->index,
1308 err = dsa_port_notify(dp, DSA_NOTIFIER_HSR_JOIN, &info);
1315 void dsa_port_hsr_leave(struct dsa_port *dp, struct net_device *hsr)
1317 struct dsa_notifier_hsr_info info = {
1318 .sw_index = dp->ds->index,
1326 err = dsa_port_notify(dp, DSA_NOTIFIER_HSR_LEAVE, &info);
1328 dev_err(dp->ds->dev,
1329 "port %d failed to notify DSA_NOTIFIER_HSR_LEAVE: %pe\n",
1330 dp->index, ERR_PTR(err));
1333 int dsa_port_tag_8021q_vlan_add(struct dsa_port *dp, u16 vid, bool broadcast)
1335 struct dsa_notifier_tag_8021q_vlan_info info = {
1336 .tree_index = dp->ds->dst->index,
1337 .sw_index = dp->ds->index,
1343 return dsa_broadcast(DSA_NOTIFIER_TAG_8021Q_VLAN_ADD, &info);
1345 return dsa_port_notify(dp, DSA_NOTIFIER_TAG_8021Q_VLAN_ADD, &info);
1348 void dsa_port_tag_8021q_vlan_del(struct dsa_port *dp, u16 vid, bool broadcast)
1350 struct dsa_notifier_tag_8021q_vlan_info info = {
1351 .tree_index = dp->ds->dst->index,
1352 .sw_index = dp->ds->index,
1359 err = dsa_broadcast(DSA_NOTIFIER_TAG_8021Q_VLAN_DEL, &info);
1361 err = dsa_port_notify(dp, DSA_NOTIFIER_TAG_8021Q_VLAN_DEL, &info);
1363 dev_err(dp->ds->dev,
1364 "port %d failed to notify tag_8021q VLAN %d deletion: %pe\n",
1365 dp->index, vid, ERR_PTR(err));