blob: 979042a64d1ad2cd72522d367a90337520a7dfa5 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Vivien Didelota40c1752017-05-19 17:00:44 -04002/*
3 * Handling of a single switch port
4 *
5 * Copyright (c) 2017 Savoir-faire Linux Inc.
6 * Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Vivien Didelota40c1752017-05-19 17:00:44 -04007 */
8
9#include <linux/if_bridge.h>
Vivien Didelotcfbed322017-05-19 17:00:45 -040010#include <linux/notifier.h>
Vivien Didelot57ab1ca2017-10-26 10:50:07 -040011#include <linux/of_mdio.h>
12#include <linux/of_net.h>
Vivien Didelota40c1752017-05-19 17:00:44 -040013
14#include "dsa_priv.h"
15
Vladimir Oltean886f8e22021-01-29 03:00:04 +020016/**
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.
21 *
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.
27 */
Andrew Lunnbb9f603172017-11-09 23:11:01 +010028static int dsa_port_notify(const struct dsa_port *dp, unsigned long e, void *v)
Vivien Didelotcfbed322017-05-19 17:00:45 -040029{
Vladimir Oltean886f8e22021-01-29 03:00:04 +020030 return dsa_tree_notify(dp->ds->dst, e, v);
Vivien Didelotcfbed322017-05-19 17:00:45 -040031}
32
Vladimir Oltean9264e4a2021-08-08 17:35:25 +030033static void dsa_port_notify_bridge_fdb_flush(const struct dsa_port *dp)
34{
35 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
36 struct switchdev_notifier_fdb_info info = {
37 /* flush all VLANs */
38 .vid = 0,
39 };
40
41 /* When the port becomes standalone it has already left the bridge.
42 * Don't notify the bridge in that case.
43 */
44 if (!brport_dev)
45 return;
46
47 call_switchdev_notifiers(SWITCHDEV_FDB_FLUSH_TO_BRIDGE,
48 brport_dev, &info.info, NULL);
49}
50
Vladimir Oltean045c45d2021-08-08 17:35:23 +030051static void dsa_port_fast_age(const struct dsa_port *dp)
52{
53 struct dsa_switch *ds = dp->ds;
54
55 if (!ds->ops->port_fast_age)
56 return;
57
58 ds->ops->port_fast_age(ds, dp->index);
Vladimir Oltean9264e4a2021-08-08 17:35:25 +030059
60 dsa_port_notify_bridge_fdb_flush(dp);
Vladimir Oltean045c45d2021-08-08 17:35:23 +030061}
62
Vladimir Olteana4ffe092021-08-09 01:56:48 +030063static bool dsa_port_can_configure_learning(struct dsa_port *dp)
64{
65 struct switchdev_brport_flags flags = {
66 .mask = BR_LEARNING,
67 };
68 struct dsa_switch *ds = dp->ds;
69 int err;
70
71 if (!ds->ops->port_bridge_flags || !ds->ops->port_pre_bridge_flags)
72 return false;
73
74 err = ds->ops->port_pre_bridge_flags(ds, dp->index, flags, NULL);
75 return !err;
76}
77
Vladimir Oltean39f32102021-08-08 14:16:37 +030078int dsa_port_set_state(struct dsa_port *dp, u8 state, bool do_fast_age)
Vivien Didelota40c1752017-05-19 17:00:44 -040079{
80 struct dsa_switch *ds = dp->ds;
81 int port = dp->index;
82
Vladimir Olteanbae33f22021-01-09 02:01:50 +020083 if (!ds->ops->port_stp_state_set)
84 return -EOPNOTSUPP;
Vivien Didelota40c1752017-05-19 17:00:44 -040085
Vladimir Olteanbae33f22021-01-09 02:01:50 +020086 ds->ops->port_stp_state_set(ds, port, state);
Vivien Didelota40c1752017-05-19 17:00:44 -040087
Vladimir Olteana4ffe092021-08-09 01:56:48 +030088 if (!dsa_port_can_configure_learning(dp) ||
89 (do_fast_age && dp->learning)) {
Vivien Didelota40c1752017-05-19 17:00:44 -040090 /* 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.
Vladimir Oltean39f32102021-08-08 14:16:37 +030093 * Ports that were standalone before the STP state change don't
94 * need to fast age the FDB, since address learning is off in
95 * standalone mode.
Vivien Didelota40c1752017-05-19 17:00:44 -040096 */
97
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))
Vladimir Oltean045c45d2021-08-08 17:35:23 +0300103 dsa_port_fast_age(dp);
Vivien Didelota40c1752017-05-19 17:00:44 -0400104 }
105
106 dp->stp_state = state;
107
108 return 0;
109}
110
Vladimir Oltean39f32102021-08-08 14:16:37 +0300111static void dsa_port_set_state_now(struct dsa_port *dp, u8 state,
112 bool do_fast_age)
Vivien Didelota40c1752017-05-19 17:00:44 -0400113{
114 int err;
115
Vladimir Oltean39f32102021-08-08 14:16:37 +0300116 err = dsa_port_set_state(dp, state, do_fast_age);
Vivien Didelota40c1752017-05-19 17:00:44 -0400117 if (err)
118 pr_err("DSA: failed to set STP state %u (%d)\n", state, err);
119}
Vivien Didelotcfbed322017-05-19 17:00:45 -0400120
Russell King8640f8d2020-03-03 15:01:46 +0000121int dsa_port_enable_rt(struct dsa_port *dp, struct phy_device *phy)
Vivien Didelotfb8a6a22017-09-22 19:01:56 -0400122{
Vivien Didelotfb8a6a22017-09-22 19:01:56 -0400123 struct dsa_switch *ds = dp->ds;
124 int port = dp->index;
125 int err;
126
127 if (ds->ops->port_enable) {
128 err = ds->ops->port_enable(ds, port, phy);
129 if (err)
130 return err;
131 }
132
Russell King9c2054a2019-02-20 10:32:52 +0000133 if (!dp->bridge_dev)
Vladimir Oltean39f32102021-08-08 14:16:37 +0300134 dsa_port_set_state_now(dp, BR_STATE_FORWARDING, false);
Vivien Didelotfb8a6a22017-09-22 19:01:56 -0400135
Russell King8640f8d2020-03-03 15:01:46 +0000136 if (dp->pl)
137 phylink_start(dp->pl);
138
Vivien Didelotfb8a6a22017-09-22 19:01:56 -0400139 return 0;
140}
141
Russell King8640f8d2020-03-03 15:01:46 +0000142int dsa_port_enable(struct dsa_port *dp, struct phy_device *phy)
143{
144 int err;
145
146 rtnl_lock();
147 err = dsa_port_enable_rt(dp, phy);
148 rtnl_unlock();
149
150 return err;
151}
152
153void dsa_port_disable_rt(struct dsa_port *dp)
Vivien Didelotfb8a6a22017-09-22 19:01:56 -0400154{
155 struct dsa_switch *ds = dp->ds;
156 int port = dp->index;
157
Russell King8640f8d2020-03-03 15:01:46 +0000158 if (dp->pl)
159 phylink_stop(dp->pl);
160
Russell King9c2054a2019-02-20 10:32:52 +0000161 if (!dp->bridge_dev)
Vladimir Oltean39f32102021-08-08 14:16:37 +0300162 dsa_port_set_state_now(dp, BR_STATE_DISABLED, false);
Vivien Didelotfb8a6a22017-09-22 19:01:56 -0400163
164 if (ds->ops->port_disable)
Andrew Lunn75104db2019-02-24 20:44:43 +0100165 ds->ops->port_disable(ds, port);
Vivien Didelotfb8a6a22017-09-22 19:01:56 -0400166}
167
Russell King8640f8d2020-03-03 15:01:46 +0000168void dsa_port_disable(struct dsa_port *dp)
169{
170 rtnl_lock();
171 dsa_port_disable_rt(dp);
172 rtnl_unlock();
173}
174
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200175static int dsa_port_inherit_brport_flags(struct dsa_port *dp,
176 struct netlink_ext_ack *extack)
Vladimir Oltean5e38c152021-02-12 17:15:54 +0200177{
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200178 const unsigned long mask = BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
179 BR_BCAST_FLOOD;
180 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
181 int flag, err;
Vladimir Oltean5e38c152021-02-12 17:15:54 +0200182
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200183 for_each_set_bit(flag, &mask, 32) {
184 struct switchdev_brport_flags flags = {0};
Vladimir Oltean5e38c152021-02-12 17:15:54 +0200185
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200186 flags.mask = BIT(flag);
Vladimir Oltean5e38c152021-02-12 17:15:54 +0200187
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200188 if (br_port_flag_is_set(brport_dev, BIT(flag)))
189 flags.val = BIT(flag);
Vladimir Olteane18f4c12021-02-12 17:15:55 +0200190
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200191 err = dsa_port_bridge_flags(dp, flags, extack);
192 if (err && err != -EOPNOTSUPP)
193 return err;
Vladimir Oltean5e38c152021-02-12 17:15:54 +0200194 }
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200195
196 return 0;
197}
198
199static void dsa_port_clear_brport_flags(struct dsa_port *dp)
200{
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 |
203 BR_BCAST_FLOOD;
204 int flag, err;
205
206 for_each_set_bit(flag, &mask, 32) {
207 struct switchdev_brport_flags flags = {0};
208
209 flags.mask = BIT(flag);
210 flags.val = val & BIT(flag);
211
212 err = dsa_port_bridge_flags(dp, flags, NULL);
213 if (err && err != -EOPNOTSUPP)
214 dev_err(dp->ds->dev,
215 "failed to clear bridge port flag %lu: %pe\n",
216 flags.val, ERR_PTR(err));
217 }
218}
219
Vladimir Oltean4e51bf42021-07-21 19:24:03 +0300220static int dsa_port_switchdev_sync_attrs(struct dsa_port *dp,
221 struct netlink_ext_ack *extack)
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200222{
Vladimir Oltean010e2692021-03-23 01:51:50 +0200223 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
224 struct net_device *br = dp->bridge_dev;
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200225 int err;
226
227 err = dsa_port_inherit_brport_flags(dp, extack);
228 if (err)
229 return err;
230
Vladimir Oltean39f32102021-08-08 14:16:37 +0300231 err = dsa_port_set_state(dp, br_port_get_stp_state(brport_dev), false);
Vladimir Oltean010e2692021-03-23 01:51:50 +0200232 if (err && err != -EOPNOTSUPP)
233 return err;
234
235 err = dsa_port_vlan_filtering(dp, br_vlan_enabled(br), extack);
236 if (err && err != -EOPNOTSUPP)
237 return err;
238
Vladimir Oltean010e2692021-03-23 01:51:50 +0200239 err = dsa_port_ageing_time(dp, br_get_ageing_time(br));
240 if (err && err != -EOPNOTSUPP)
241 return err;
242
Vladimir Oltean74918942021-06-27 14:54:29 +0300243 return 0;
244}
245
246static void dsa_port_switchdev_unsync_attrs(struct dsa_port *dp)
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200247{
248 /* Configure the port for standalone mode (no address learning,
249 * flood everything).
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
257 * port ever left.
258 */
259 dsa_port_clear_brport_flags(dp);
260
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
263 */
Vladimir Oltean39f32102021-08-08 14:16:37 +0300264 dsa_port_set_state_now(dp, BR_STATE_FORWARDING, true);
Vladimir Oltean010e2692021-03-23 01:51:50 +0200265
266 /* VLAN filtering is handled by dsa_switch_bridge_leave */
267
Vladimir Oltean010e2692021-03-23 01:51:50 +0200268 /* 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.
270 */
Vladimir Oltean5e38c152021-02-12 17:15:54 +0200271}
272
Vladimir Oltean123abc062021-07-22 18:55:40 +0300273static int dsa_tree_find_bridge_num(struct dsa_switch_tree *dst,
274 struct net_device *bridge_dev)
275{
276 struct dsa_port *dp;
277
278 /* When preparing the offload for a port, it will have a valid
279 * dp->bridge_dev pointer but a not yet valid dp->bridge_num.
280 * However there might be other ports having the same dp->bridge_dev
281 * and a valid dp->bridge_num, so just ignore this port.
282 */
283 list_for_each_entry(dp, &dst->ports, list)
284 if (dp->bridge_dev == bridge_dev && dp->bridge_num != -1)
285 return dp->bridge_num;
286
287 return -1;
288}
289
290static void dsa_port_bridge_tx_fwd_unoffload(struct dsa_port *dp,
291 struct net_device *bridge_dev)
292{
293 struct dsa_switch_tree *dst = dp->ds->dst;
294 int bridge_num = dp->bridge_num;
295 struct dsa_switch *ds = dp->ds;
296
297 /* No bridge TX forwarding offload => do nothing */
298 if (!ds->ops->port_bridge_tx_fwd_unoffload || dp->bridge_num == -1)
299 return;
300
301 dp->bridge_num = -1;
302
303 /* Check if the bridge is still in use, otherwise it is time
304 * to clean it up so we can reuse this bridge_num later.
305 */
306 if (!dsa_tree_find_bridge_num(dst, bridge_dev))
307 clear_bit(bridge_num, &dst->fwd_offloading_bridges);
308
309 /* Notify the chips only once the offload has been deactivated, so
310 * that they can update their configuration accordingly.
311 */
312 ds->ops->port_bridge_tx_fwd_unoffload(ds, dp->index, bridge_dev,
313 bridge_num);
314}
315
316static bool dsa_port_bridge_tx_fwd_offload(struct dsa_port *dp,
317 struct net_device *bridge_dev)
318{
319 struct dsa_switch_tree *dst = dp->ds->dst;
320 struct dsa_switch *ds = dp->ds;
321 int bridge_num, err;
322
323 if (!ds->ops->port_bridge_tx_fwd_offload)
324 return false;
325
326 bridge_num = dsa_tree_find_bridge_num(dst, bridge_dev);
327 if (bridge_num < 0) {
328 /* First port that offloads TX forwarding for this bridge */
329 bridge_num = find_first_zero_bit(&dst->fwd_offloading_bridges,
330 DSA_MAX_NUM_OFFLOADING_BRIDGES);
331 if (bridge_num >= ds->num_fwd_offloading_bridges)
332 return false;
333
334 set_bit(bridge_num, &dst->fwd_offloading_bridges);
335 }
336
337 dp->bridge_num = bridge_num;
338
339 /* Notify the driver */
340 err = ds->ops->port_bridge_tx_fwd_offload(ds, dp->index, bridge_dev,
341 bridge_num);
342 if (err) {
343 dsa_port_bridge_tx_fwd_unoffload(dp, bridge_dev);
344 return false;
345 }
346
347 return true;
348}
349
Vladimir Oltean2afc5262021-03-23 01:51:48 +0200350int dsa_port_bridge_join(struct dsa_port *dp, struct net_device *br,
351 struct netlink_ext_ack *extack)
Vivien Didelotcfbed322017-05-19 17:00:45 -0400352{
353 struct dsa_notifier_bridge_info info = {
Vladimir Olteanf66a6a62020-05-10 19:37:41 +0300354 .tree_index = dp->ds->dst->index,
Vivien Didelotcfbed322017-05-19 17:00:45 -0400355 .sw_index = dp->ds->index,
356 .port = dp->index,
357 .br = br,
358 };
Vladimir Oltean2f5dc002021-07-21 19:24:01 +0300359 struct net_device *dev = dp->slave;
360 struct net_device *brport_dev;
Vladimir Oltean123abc062021-07-22 18:55:40 +0300361 bool tx_fwd_offload;
Vivien Didelotcfbed322017-05-19 17:00:45 -0400362 int err;
363
Russell Kingc1388062019-02-20 15:35:06 -0800364 /* Here the interface is already bridged. Reflect the current
365 * configuration so that drivers can program their chips accordingly.
Vivien Didelotcfbed322017-05-19 17:00:45 -0400366 */
367 dp->bridge_dev = br;
368
Vladimir Oltean2f5dc002021-07-21 19:24:01 +0300369 brport_dev = dsa_port_to_bridge_port(dp);
370
Vladimir Olteanf66a6a62020-05-10 19:37:41 +0300371 err = dsa_broadcast(DSA_NOTIFIER_BRIDGE_JOIN, &info);
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200372 if (err)
373 goto out_rollback;
Vivien Didelotcfbed322017-05-19 17:00:45 -0400374
Vladimir Oltean123abc062021-07-22 18:55:40 +0300375 tx_fwd_offload = dsa_port_bridge_tx_fwd_offload(dp, br);
376
Vladimir Oltean4e51bf42021-07-21 19:24:03 +0300377 err = switchdev_bridge_port_offload(brport_dev, dev, dp,
378 &dsa_slave_switchdev_notifier,
379 &dsa_slave_switchdev_blocking_notifier,
Vladimir Oltean123abc062021-07-22 18:55:40 +0300380 tx_fwd_offload, extack);
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200381 if (err)
382 goto out_rollback_unbridge;
Vivien Didelotcfbed322017-05-19 17:00:45 -0400383
Vladimir Oltean4e51bf42021-07-21 19:24:03 +0300384 err = dsa_port_switchdev_sync_attrs(dp, extack);
Vladimir Oltean2f5dc002021-07-21 19:24:01 +0300385 if (err)
386 goto out_rollback_unoffload;
387
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200388 return 0;
389
Vladimir Oltean2f5dc002021-07-21 19:24:01 +0300390out_rollback_unoffload:
Vladimir Oltean4e51bf42021-07-21 19:24:03 +0300391 switchdev_bridge_port_unoffload(brport_dev, dp,
392 &dsa_slave_switchdev_notifier,
393 &dsa_slave_switchdev_blocking_notifier);
Vladimir Oltean5961d6a2021-03-23 01:51:49 +0200394out_rollback_unbridge:
395 dsa_broadcast(DSA_NOTIFIER_BRIDGE_LEAVE, &info);
396out_rollback:
397 dp->bridge_dev = NULL;
Vivien Didelotcfbed322017-05-19 17:00:45 -0400398 return err;
399}
400
Vladimir Oltean4e51bf42021-07-21 19:24:03 +0300401void dsa_port_pre_bridge_leave(struct dsa_port *dp, struct net_device *br)
Vladimir Oltean74918942021-06-27 14:54:29 +0300402{
Vladimir Oltean2f5dc002021-07-21 19:24:01 +0300403 struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
404
Vladimir Oltean4e51bf42021-07-21 19:24:03 +0300405 switchdev_bridge_port_unoffload(brport_dev, dp,
406 &dsa_slave_switchdev_notifier,
407 &dsa_slave_switchdev_blocking_notifier);
Vladimir Oltean74918942021-06-27 14:54:29 +0300408}
409
Vivien Didelotcfbed322017-05-19 17:00:45 -0400410void dsa_port_bridge_leave(struct dsa_port *dp, struct net_device *br)
411{
412 struct dsa_notifier_bridge_info info = {
Vladimir Olteanf66a6a62020-05-10 19:37:41 +0300413 .tree_index = dp->ds->dst->index,
Vivien Didelotcfbed322017-05-19 17:00:45 -0400414 .sw_index = dp->ds->index,
415 .port = dp->index,
416 .br = br,
417 };
418 int err;
419
420 /* Here the port is already unbridged. Reflect the current configuration
421 * so that drivers can program their chips accordingly.
422 */
423 dp->bridge_dev = NULL;
424
Vladimir Oltean123abc062021-07-22 18:55:40 +0300425 dsa_port_bridge_tx_fwd_unoffload(dp, br);
426
Vladimir Olteanf66a6a62020-05-10 19:37:41 +0300427 err = dsa_broadcast(DSA_NOTIFIER_BRIDGE_LEAVE, &info);
Vivien Didelotcfbed322017-05-19 17:00:45 -0400428 if (err)
Vladimir Olteanab974622021-08-11 16:46:05 +0300429 dev_err(dp->ds->dev,
430 "port %d failed to notify DSA_NOTIFIER_BRIDGE_LEAVE: %pe\n",
431 dp->index, ERR_PTR(err));
Vivien Didelotcfbed322017-05-19 17:00:45 -0400432
Vladimir Oltean74918942021-06-27 14:54:29 +0300433 dsa_port_switchdev_unsync_attrs(dp);
Vivien Didelotcfbed322017-05-19 17:00:45 -0400434}
Vivien Didelot4d61d302017-05-19 17:00:46 -0400435
Tobias Waldekranz058102a2021-01-13 09:42:53 +0100436int dsa_port_lag_change(struct dsa_port *dp,
437 struct netdev_lag_lower_state_info *linfo)
438{
439 struct dsa_notifier_lag_info info = {
440 .sw_index = dp->ds->index,
441 .port = dp->index,
442 };
443 bool tx_enabled;
444
445 if (!dp->lag_dev)
446 return 0;
447
448 /* On statically configured aggregates (e.g. loadbalance
449 * without LACP) ports will always be tx_enabled, even if the
450 * link is down. Thus we require both link_up and tx_enabled
451 * in order to include it in the tx set.
452 */
453 tx_enabled = linfo->link_up && linfo->tx_enabled;
454
455 if (tx_enabled == dp->lag_tx_enabled)
456 return 0;
457
458 dp->lag_tx_enabled = tx_enabled;
459
460 return dsa_port_notify(dp, DSA_NOTIFIER_LAG_CHANGE, &info);
461}
462
463int dsa_port_lag_join(struct dsa_port *dp, struct net_device *lag,
Vladimir Oltean2afc5262021-03-23 01:51:48 +0200464 struct netdev_lag_upper_info *uinfo,
465 struct netlink_ext_ack *extack)
Tobias Waldekranz058102a2021-01-13 09:42:53 +0100466{
467 struct dsa_notifier_lag_info info = {
468 .sw_index = dp->ds->index,
469 .port = dp->index,
470 .lag = lag,
471 .info = uinfo,
472 };
Vladimir Oltean185c9a72021-03-23 01:51:47 +0200473 struct net_device *bridge_dev;
Tobias Waldekranz058102a2021-01-13 09:42:53 +0100474 int err;
475
476 dsa_lag_map(dp->ds->dst, lag);
477 dp->lag_dev = lag;
478
479 err = dsa_port_notify(dp, DSA_NOTIFIER_LAG_JOIN, &info);
Vladimir Oltean185c9a72021-03-23 01:51:47 +0200480 if (err)
481 goto err_lag_join;
Tobias Waldekranz058102a2021-01-13 09:42:53 +0100482
Vladimir Oltean185c9a72021-03-23 01:51:47 +0200483 bridge_dev = netdev_master_upper_dev_get(lag);
484 if (!bridge_dev || !netif_is_bridge_master(bridge_dev))
485 return 0;
486
Vladimir Oltean2afc5262021-03-23 01:51:48 +0200487 err = dsa_port_bridge_join(dp, bridge_dev, extack);
Vladimir Oltean185c9a72021-03-23 01:51:47 +0200488 if (err)
489 goto err_bridge_join;
490
491 return 0;
492
493err_bridge_join:
494 dsa_port_notify(dp, DSA_NOTIFIER_LAG_LEAVE, &info);
495err_lag_join:
496 dp->lag_dev = NULL;
497 dsa_lag_unmap(dp->ds->dst, lag);
Tobias Waldekranz058102a2021-01-13 09:42:53 +0100498 return err;
499}
500
Vladimir Oltean4e51bf42021-07-21 19:24:03 +0300501void dsa_port_pre_lag_leave(struct dsa_port *dp, struct net_device *lag)
Vladimir Oltean74918942021-06-27 14:54:29 +0300502{
503 if (dp->bridge_dev)
Vladimir Oltean4e51bf42021-07-21 19:24:03 +0300504 dsa_port_pre_bridge_leave(dp, dp->bridge_dev);
Vladimir Oltean74918942021-06-27 14:54:29 +0300505}
506
Tobias Waldekranz058102a2021-01-13 09:42:53 +0100507void dsa_port_lag_leave(struct dsa_port *dp, struct net_device *lag)
508{
509 struct dsa_notifier_lag_info info = {
510 .sw_index = dp->ds->index,
511 .port = dp->index,
512 .lag = lag,
513 };
514 int err;
515
516 if (!dp->lag_dev)
517 return;
518
519 /* Port might have been part of a LAG that in turn was
520 * attached to a bridge.
521 */
522 if (dp->bridge_dev)
523 dsa_port_bridge_leave(dp, dp->bridge_dev);
524
525 dp->lag_tx_enabled = false;
526 dp->lag_dev = NULL;
527
528 err = dsa_port_notify(dp, DSA_NOTIFIER_LAG_LEAVE, &info);
529 if (err)
Vladimir Olteanab974622021-08-11 16:46:05 +0300530 dev_err(dp->ds->dev,
531 "port %d failed to notify DSA_NOTIFIER_LAG_LEAVE: %pe\n",
532 dp->index, ERR_PTR(err));
Tobias Waldekranz058102a2021-01-13 09:42:53 +0100533
534 dsa_lag_unmap(dp->ds->dst, lag);
535}
536
Vladimir Olteanadb256e2020-09-21 03:10:28 +0300537/* Must be called under rcu_read_lock() */
Vladimir Oltean8f5d16f2019-04-28 21:45:44 +0300538static bool dsa_port_can_apply_vlan_filtering(struct dsa_port *dp,
Vladimir Oltean89153ed2021-02-13 22:43:19 +0200539 bool vlan_filtering,
540 struct netlink_ext_ack *extack)
Vladimir Oltean8f5d16f2019-04-28 21:45:44 +0300541{
542 struct dsa_switch *ds = dp->ds;
Vladimir Olteanadb256e2020-09-21 03:10:28 +0300543 int err, i;
544
545 /* VLAN awareness was off, so the question is "can we turn it on".
546 * We may have had 8021q uppers, those need to go. Make sure we don't
547 * enter an inconsistent state: deny changing the VLAN awareness state
548 * as long as we have 8021q uppers.
549 */
550 if (vlan_filtering && dsa_is_user_port(ds, dp->index)) {
551 struct net_device *upper_dev, *slave = dp->slave;
552 struct net_device *br = dp->bridge_dev;
553 struct list_head *iter;
554
555 netdev_for_each_upper_dev_rcu(slave, upper_dev, iter) {
556 struct bridge_vlan_info br_info;
557 u16 vid;
558
559 if (!is_vlan_dev(upper_dev))
560 continue;
561
562 vid = vlan_dev_vlan_id(upper_dev);
563
564 /* br_vlan_get_info() returns -EINVAL or -ENOENT if the
565 * device, respectively the VID is not found, returning
566 * 0 means success, which is a failure for us here.
567 */
568 err = br_vlan_get_info(br, vid, &br_info);
569 if (err == 0) {
Vladimir Oltean89153ed2021-02-13 22:43:19 +0200570 NL_SET_ERR_MSG_MOD(extack,
571 "Must first remove VLAN uppers having VIDs also present in bridge");
Vladimir Olteanadb256e2020-09-21 03:10:28 +0300572 return false;
573 }
574 }
575 }
Vladimir Oltean8f5d16f2019-04-28 21:45:44 +0300576
577 if (!ds->vlan_filtering_is_global)
578 return true;
579
580 /* For cases where enabling/disabling VLAN awareness is global to the
581 * switch, we need to handle the case where multiple bridges span
582 * different ports of the same switch device and one of them has a
583 * different setting than what is being requested.
584 */
585 for (i = 0; i < ds->num_ports; i++) {
586 struct net_device *other_bridge;
587
588 other_bridge = dsa_to_port(ds, i)->bridge_dev;
589 if (!other_bridge)
590 continue;
591 /* If it's the same bridge, it also has same
592 * vlan_filtering setting => no need to check
593 */
594 if (other_bridge == dp->bridge_dev)
595 continue;
596 if (br_vlan_enabled(other_bridge) != vlan_filtering) {
Vladimir Oltean89153ed2021-02-13 22:43:19 +0200597 NL_SET_ERR_MSG_MOD(extack,
598 "VLAN filtering is a global setting");
Vladimir Oltean8f5d16f2019-04-28 21:45:44 +0300599 return false;
600 }
601 }
602 return true;
603}
604
Vladimir Oltean89153ed2021-02-13 22:43:19 +0200605int dsa_port_vlan_filtering(struct dsa_port *dp, bool vlan_filtering,
606 struct netlink_ext_ack *extack)
Vivien Didelot4d61d302017-05-19 17:00:46 -0400607{
608 struct dsa_switch *ds = dp->ds;
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200609 bool apply;
Vladimir Oltean33162e92019-04-28 21:45:43 +0300610 int err;
Vivien Didelot4d61d302017-05-19 17:00:46 -0400611
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200612 if (!ds->ops->port_vlan_filtering)
613 return -EOPNOTSUPP;
Vladimir Olteanadb256e2020-09-21 03:10:28 +0300614
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200615 /* We are called from dsa_slave_switchdev_blocking_event(),
616 * which is not under rcu_read_lock(), unlike
617 * dsa_slave_switchdev_event().
618 */
619 rcu_read_lock();
Vladimir Oltean89153ed2021-02-13 22:43:19 +0200620 apply = dsa_port_can_apply_vlan_filtering(dp, vlan_filtering, extack);
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200621 rcu_read_unlock();
622 if (!apply)
623 return -EINVAL;
Vladimir Oltean8f5d16f2019-04-28 21:45:44 +0300624
Vladimir Olteanec9121e2019-04-28 21:45:51 +0300625 if (dsa_port_is_vlan_filtering(dp) == vlan_filtering)
626 return 0;
627
Vladimir Oltean89153ed2021-02-13 22:43:19 +0200628 err = ds->ops->port_vlan_filtering(ds, dp->index, vlan_filtering,
629 extack);
Vladimir Oltean8f5d16f2019-04-28 21:45:44 +0300630 if (err)
631 return err;
632
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200633 if (ds->vlan_filtering_is_global)
634 ds->vlan_filtering = vlan_filtering;
635 else
636 dp->vlan_filtering = vlan_filtering;
Vladimir Oltean2e554a72020-10-03 01:06:46 +0300637
Vivien Didelot4d61d302017-05-19 17:00:46 -0400638 return 0;
639}
Vivien Didelotd87bd942017-05-19 17:00:47 -0400640
Russell King54a0ed02020-05-12 20:20:25 +0300641/* This enforces legacy behavior for switch drivers which assume they can't
642 * receive VLAN configuration when enslaved to a bridge with vlan_filtering=0
643 */
644bool dsa_port_skip_vlan_configuration(struct dsa_port *dp)
645{
646 struct dsa_switch *ds = dp->ds;
647
648 if (!dp->bridge_dev)
649 return false;
650
651 return (!ds->configure_vlan_while_not_filtering &&
652 !br_vlan_enabled(dp->bridge_dev));
653}
654
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200655int dsa_port_ageing_time(struct dsa_port *dp, clock_t ageing_clock)
Vivien Didelotd87bd942017-05-19 17:00:47 -0400656{
657 unsigned long ageing_jiffies = clock_t_to_jiffies(ageing_clock);
658 unsigned int ageing_time = jiffies_to_msecs(ageing_jiffies);
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200659 struct dsa_notifier_ageing_time_info info;
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200660 int err;
Vivien Didelotd87bd942017-05-19 17:00:47 -0400661
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200662 info.ageing_time = ageing_time;
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200663
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200664 err = dsa_port_notify(dp, DSA_NOTIFIER_AGEING_TIME, &info);
665 if (err)
666 return err;
Vivien Didelotd87bd942017-05-19 17:00:47 -0400667
Vivien Didelotd87bd942017-05-19 17:00:47 -0400668 dp->ageing_time = ageing_time;
Vivien Didelotd87bd942017-05-19 17:00:47 -0400669
Vladimir Oltean77b61362021-01-09 02:01:51 +0200670 return 0;
Vivien Didelotd87bd942017-05-19 17:00:47 -0400671}
Vivien Didelotd1cffff2017-05-19 17:00:48 -0400672
Vladimir Olteane18f4c12021-02-12 17:15:55 +0200673int dsa_port_pre_bridge_flags(const struct dsa_port *dp,
Vladimir Olteana8b659e2021-02-12 17:15:56 +0200674 struct switchdev_brport_flags flags,
675 struct netlink_ext_ack *extack)
Florian Fainelliea870052019-02-20 16:58:22 -0800676{
677 struct dsa_switch *ds = dp->ds;
678
Vladimir Olteana8b659e2021-02-12 17:15:56 +0200679 if (!ds->ops->port_pre_bridge_flags)
Florian Fainelliea870052019-02-20 16:58:22 -0800680 return -EINVAL;
681
Vladimir Olteana8b659e2021-02-12 17:15:56 +0200682 return ds->ops->port_pre_bridge_flags(ds, dp->index, flags, extack);
Florian Fainelliea870052019-02-20 16:58:22 -0800683}
684
Vladimir Oltean045c45d2021-08-08 17:35:23 +0300685int dsa_port_bridge_flags(struct dsa_port *dp,
Vladimir Olteana8b659e2021-02-12 17:15:56 +0200686 struct switchdev_brport_flags flags,
687 struct netlink_ext_ack *extack)
Russell King57652792019-02-20 15:35:04 -0800688{
689 struct dsa_switch *ds = dp->ds;
Vladimir Oltean045c45d2021-08-08 17:35:23 +0300690 int err;
Russell King57652792019-02-20 15:35:04 -0800691
Vladimir Olteana8b659e2021-02-12 17:15:56 +0200692 if (!ds->ops->port_bridge_flags)
Oleksij Rempel70a7c482021-04-21 15:05:40 +0200693 return -EOPNOTSUPP;
Russell King57652792019-02-20 15:35:04 -0800694
Vladimir Oltean045c45d2021-08-08 17:35:23 +0300695 err = ds->ops->port_bridge_flags(ds, dp->index, flags, extack);
696 if (err)
697 return err;
698
699 if (flags.mask & BR_LEARNING) {
700 bool learning = flags.val & BR_LEARNING;
701
702 if (learning == dp->learning)
703 return 0;
704
Vladimir Olteanbee7c572021-08-09 01:56:49 +0300705 if ((dp->learning && !learning) &&
706 (dp->stp_state == BR_STATE_LEARNING ||
707 dp->stp_state == BR_STATE_FORWARDING))
Vladimir Oltean045c45d2021-08-08 17:35:23 +0300708 dsa_port_fast_age(dp);
709
710 dp->learning = learning;
711 }
712
713 return 0;
Russell King57652792019-02-20 15:35:04 -0800714}
715
Vladimir Olteanbfcb8132020-03-27 21:55:42 +0200716int dsa_port_mtu_change(struct dsa_port *dp, int new_mtu,
Vladimir Oltean88faba22021-06-21 19:42:18 +0300717 bool targeted_match)
Vladimir Olteanbfcb8132020-03-27 21:55:42 +0200718{
719 struct dsa_notifier_mtu_info info = {
720 .sw_index = dp->ds->index,
Vladimir Oltean88faba22021-06-21 19:42:18 +0300721 .targeted_match = targeted_match,
Vladimir Olteanbfcb8132020-03-27 21:55:42 +0200722 .port = dp->index,
723 .mtu = new_mtu,
724 };
725
726 return dsa_port_notify(dp, DSA_NOTIFIER_MTU, &info);
727}
728
Arkadi Sharshevsky2acf4e62017-08-06 16:15:41 +0300729int dsa_port_fdb_add(struct dsa_port *dp, const unsigned char *addr,
730 u16 vid)
Vivien Didelotd1cffff2017-05-19 17:00:48 -0400731{
Vivien Didelot685fb6a2017-05-19 17:00:53 -0400732 struct dsa_notifier_fdb_info info = {
733 .sw_index = dp->ds->index,
734 .port = dp->index,
Arkadi Sharshevsky2acf4e62017-08-06 16:15:41 +0300735 .addr = addr,
736 .vid = vid,
Vivien Didelot685fb6a2017-05-19 17:00:53 -0400737 };
Vivien Didelotd1cffff2017-05-19 17:00:48 -0400738
Vivien Didelot685fb6a2017-05-19 17:00:53 -0400739 return dsa_port_notify(dp, DSA_NOTIFIER_FDB_ADD, &info);
Vivien Didelotd1cffff2017-05-19 17:00:48 -0400740}
741
Arkadi Sharshevsky2acf4e62017-08-06 16:15:41 +0300742int dsa_port_fdb_del(struct dsa_port *dp, const unsigned char *addr,
743 u16 vid)
Vivien Didelotd1cffff2017-05-19 17:00:48 -0400744{
Vivien Didelot685fb6a2017-05-19 17:00:53 -0400745 struct dsa_notifier_fdb_info info = {
746 .sw_index = dp->ds->index,
747 .port = dp->index,
Arkadi Sharshevsky2acf4e62017-08-06 16:15:41 +0300748 .addr = addr,
749 .vid = vid,
750
Vivien Didelot685fb6a2017-05-19 17:00:53 -0400751 };
Vivien Didelotd1cffff2017-05-19 17:00:48 -0400752
Vivien Didelot685fb6a2017-05-19 17:00:53 -0400753 return dsa_port_notify(dp, DSA_NOTIFIER_FDB_DEL, &info);
Vivien Didelotd1cffff2017-05-19 17:00:48 -0400754}
755
Vladimir Oltean3dc80af2021-06-29 17:06:51 +0300756int dsa_port_host_fdb_add(struct dsa_port *dp, const unsigned char *addr,
757 u16 vid)
758{
759 struct dsa_notifier_fdb_info info = {
760 .sw_index = dp->ds->index,
761 .port = dp->index,
762 .addr = addr,
763 .vid = vid,
764 };
Vladimir Oltean26ee7b02021-06-29 17:06:53 +0300765 struct dsa_port *cpu_dp = dp->cpu_dp;
766 int err;
767
768 err = dev_uc_add(cpu_dp->master, addr);
769 if (err)
770 return err;
Vladimir Oltean3dc80af2021-06-29 17:06:51 +0300771
772 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_FDB_ADD, &info);
773}
774
775int dsa_port_host_fdb_del(struct dsa_port *dp, const unsigned char *addr,
776 u16 vid)
777{
778 struct dsa_notifier_fdb_info info = {
779 .sw_index = dp->ds->index,
780 .port = dp->index,
781 .addr = addr,
782 .vid = vid,
783 };
Vladimir Oltean26ee7b02021-06-29 17:06:53 +0300784 struct dsa_port *cpu_dp = dp->cpu_dp;
785 int err;
786
787 err = dev_uc_del(cpu_dp->master, addr);
788 if (err)
789 return err;
Vladimir Oltean3dc80af2021-06-29 17:06:51 +0300790
791 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_FDB_DEL, &info);
792}
793
Vivien Didelotde40fc52017-09-20 19:32:14 -0400794int dsa_port_fdb_dump(struct dsa_port *dp, dsa_fdb_dump_cb_t *cb, void *data)
795{
796 struct dsa_switch *ds = dp->ds;
797 int port = dp->index;
798
799 if (!ds->ops->port_fdb_dump)
800 return -EOPNOTSUPP;
801
802 return ds->ops->port_fdb_dump(ds, port, cb, data);
803}
804
Andrew Lunnbb9f603172017-11-09 23:11:01 +0100805int dsa_port_mdb_add(const struct dsa_port *dp,
Vladimir Olteanffb68fc2021-01-09 02:01:48 +0200806 const struct switchdev_obj_port_mdb *mdb)
Vivien Didelot3a9afea2017-05-19 17:00:49 -0400807{
Vivien Didelot8ae5bcd2017-05-19 17:00:54 -0400808 struct dsa_notifier_mdb_info info = {
809 .sw_index = dp->ds->index,
810 .port = dp->index,
Vivien Didelot8ae5bcd2017-05-19 17:00:54 -0400811 .mdb = mdb,
812 };
Vivien Didelot3a9afea2017-05-19 17:00:49 -0400813
Vivien Didelot8ae5bcd2017-05-19 17:00:54 -0400814 return dsa_port_notify(dp, DSA_NOTIFIER_MDB_ADD, &info);
Vivien Didelot3a9afea2017-05-19 17:00:49 -0400815}
816
Andrew Lunnbb9f603172017-11-09 23:11:01 +0100817int dsa_port_mdb_del(const struct dsa_port *dp,
Vivien Didelot3a9afea2017-05-19 17:00:49 -0400818 const struct switchdev_obj_port_mdb *mdb)
819{
Vivien Didelot8ae5bcd2017-05-19 17:00:54 -0400820 struct dsa_notifier_mdb_info info = {
821 .sw_index = dp->ds->index,
822 .port = dp->index,
823 .mdb = mdb,
824 };
Vivien Didelot3a9afea2017-05-19 17:00:49 -0400825
Vivien Didelot8ae5bcd2017-05-19 17:00:54 -0400826 return dsa_port_notify(dp, DSA_NOTIFIER_MDB_DEL, &info);
Vivien Didelot3a9afea2017-05-19 17:00:49 -0400827}
828
Vladimir Olteanb8e997c2021-06-29 17:06:49 +0300829int dsa_port_host_mdb_add(const struct dsa_port *dp,
830 const struct switchdev_obj_port_mdb *mdb)
831{
832 struct dsa_notifier_mdb_info info = {
833 .sw_index = dp->ds->index,
834 .port = dp->index,
835 .mdb = mdb,
836 };
Vladimir Oltean26ee7b02021-06-29 17:06:53 +0300837 struct dsa_port *cpu_dp = dp->cpu_dp;
838 int err;
839
840 err = dev_mc_add(cpu_dp->master, mdb->addr);
841 if (err)
842 return err;
Vladimir Olteanb8e997c2021-06-29 17:06:49 +0300843
844 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_MDB_ADD, &info);
845}
846
847int dsa_port_host_mdb_del(const struct dsa_port *dp,
848 const struct switchdev_obj_port_mdb *mdb)
849{
850 struct dsa_notifier_mdb_info info = {
851 .sw_index = dp->ds->index,
852 .port = dp->index,
853 .mdb = mdb,
854 };
Vladimir Oltean26ee7b02021-06-29 17:06:53 +0300855 struct dsa_port *cpu_dp = dp->cpu_dp;
856 int err;
857
858 err = dev_mc_del(cpu_dp->master, mdb->addr);
859 if (err)
860 return err;
Vladimir Olteanb8e997c2021-06-29 17:06:49 +0300861
862 return dsa_port_notify(dp, DSA_NOTIFIER_HOST_MDB_DEL, &info);
863}
864
Vivien Didelot076e7132017-05-19 17:00:50 -0400865int dsa_port_vlan_add(struct dsa_port *dp,
Vladimir Oltean31046a52021-02-13 22:43:18 +0200866 const struct switchdev_obj_port_vlan *vlan,
867 struct netlink_ext_ack *extack)
Vivien Didelot076e7132017-05-19 17:00:50 -0400868{
Vivien Didelotd0c627b2017-05-19 17:00:55 -0400869 struct dsa_notifier_vlan_info info = {
870 .sw_index = dp->ds->index,
871 .port = dp->index,
Vivien Didelotd0c627b2017-05-19 17:00:55 -0400872 .vlan = vlan,
Vladimir Oltean31046a52021-02-13 22:43:18 +0200873 .extack = extack,
Vivien Didelotd0c627b2017-05-19 17:00:55 -0400874 };
Vivien Didelot076e7132017-05-19 17:00:50 -0400875
Vivien Didelotc5335d72019-08-25 13:25:18 -0400876 return dsa_port_notify(dp, DSA_NOTIFIER_VLAN_ADD, &info);
Vivien Didelot076e7132017-05-19 17:00:50 -0400877}
878
879int dsa_port_vlan_del(struct dsa_port *dp,
880 const struct switchdev_obj_port_vlan *vlan)
881{
Vivien Didelotd0c627b2017-05-19 17:00:55 -0400882 struct dsa_notifier_vlan_info info = {
883 .sw_index = dp->ds->index,
884 .port = dp->index,
885 .vlan = vlan,
886 };
Vivien Didelot076e7132017-05-19 17:00:50 -0400887
Vivien Didelotc5335d72019-08-25 13:25:18 -0400888 return dsa_port_notify(dp, DSA_NOTIFIER_VLAN_DEL, &info);
Vivien Didelot076e7132017-05-19 17:00:50 -0400889}
Vivien Didelot57ab1ca2017-10-26 10:50:07 -0400890
Horatiu Vulturc595c432021-02-16 22:42:04 +0100891int dsa_port_mrp_add(const struct dsa_port *dp,
892 const struct switchdev_obj_mrp *mrp)
893{
894 struct dsa_notifier_mrp_info info = {
895 .sw_index = dp->ds->index,
896 .port = dp->index,
897 .mrp = mrp,
898 };
899
900 return dsa_port_notify(dp, DSA_NOTIFIER_MRP_ADD, &info);
901}
902
903int dsa_port_mrp_del(const struct dsa_port *dp,
904 const struct switchdev_obj_mrp *mrp)
905{
906 struct dsa_notifier_mrp_info info = {
907 .sw_index = dp->ds->index,
908 .port = dp->index,
909 .mrp = mrp,
910 };
911
912 return dsa_port_notify(dp, DSA_NOTIFIER_MRP_DEL, &info);
913}
914
915int dsa_port_mrp_add_ring_role(const struct dsa_port *dp,
916 const struct switchdev_obj_ring_role_mrp *mrp)
917{
918 struct dsa_notifier_mrp_ring_role_info info = {
919 .sw_index = dp->ds->index,
920 .port = dp->index,
921 .mrp = mrp,
922 };
923
924 return dsa_port_notify(dp, DSA_NOTIFIER_MRP_ADD_RING_ROLE, &info);
925}
926
927int dsa_port_mrp_del_ring_role(const struct dsa_port *dp,
928 const struct switchdev_obj_ring_role_mrp *mrp)
929{
930 struct dsa_notifier_mrp_ring_role_info info = {
931 .sw_index = dp->ds->index,
932 .port = dp->index,
933 .mrp = mrp,
934 };
935
936 return dsa_port_notify(dp, DSA_NOTIFIER_MRP_DEL_RING_ROLE, &info);
937}
938
Vladimir Oltean53da0eb2021-01-29 03:00:06 +0200939void dsa_port_set_tag_protocol(struct dsa_port *cpu_dp,
940 const struct dsa_device_ops *tag_ops)
941{
Vladimir Oltean53da0eb2021-01-29 03:00:06 +0200942 cpu_dp->rcv = tag_ops->rcv;
943 cpu_dp->tag_ops = tag_ops;
944}
945
Florian Fainelli6207a782018-04-25 12:12:51 -0700946static struct phy_device *dsa_port_get_phy_device(struct dsa_port *dp)
947{
948 struct device_node *phy_dn;
949 struct phy_device *phydev;
950
951 phy_dn = of_parse_phandle(dp->dn, "phy-handle", 0);
952 if (!phy_dn)
953 return NULL;
954
955 phydev = of_phy_find_device(phy_dn);
956 if (!phydev) {
957 of_node_put(phy_dn);
958 return ERR_PTR(-EPROBE_DEFER);
959 }
960
Wen Yang9919a362019-02-25 15:22:19 +0800961 of_node_put(phy_dn);
Florian Fainelli6207a782018-04-25 12:12:51 -0700962 return phydev;
963}
964
Florian Fainelli8ae67492019-12-16 10:32:47 -0800965static void dsa_port_phylink_validate(struct phylink_config *config,
966 unsigned long *supported,
967 struct phylink_link_state *state)
Ioana Ciornei77373d42019-05-28 20:38:15 +0300968{
969 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
970 struct dsa_switch *ds = dp->ds;
971
972 if (!ds->ops->phylink_validate)
973 return;
974
975 ds->ops->phylink_validate(ds, dp->index, supported, state);
976}
Ioana Ciornei77373d42019-05-28 20:38:15 +0300977
Florian Fainelli8ae67492019-12-16 10:32:47 -0800978static void dsa_port_phylink_mac_pcs_get_state(struct phylink_config *config,
979 struct phylink_link_state *state)
Ioana Ciornei77373d42019-05-28 20:38:15 +0300980{
981 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
982 struct dsa_switch *ds = dp->ds;
Russell King87615c962020-03-14 10:15:28 +0000983 int err;
Ioana Ciornei77373d42019-05-28 20:38:15 +0300984
Russell Kingd46b7e42019-11-21 00:36:22 +0000985 /* Only called for inband modes */
986 if (!ds->ops->phylink_mac_link_state) {
987 state->link = 0;
988 return;
989 }
Ioana Ciornei77373d42019-05-28 20:38:15 +0300990
Russell King87615c962020-03-14 10:15:28 +0000991 err = ds->ops->phylink_mac_link_state(ds, dp->index, state);
992 if (err < 0) {
993 dev_err(ds->dev, "p%d: phylink_mac_link_state() failed: %d\n",
994 dp->index, err);
Russell Kingd46b7e42019-11-21 00:36:22 +0000995 state->link = 0;
Russell King87615c962020-03-14 10:15:28 +0000996 }
Ioana Ciornei77373d42019-05-28 20:38:15 +0300997}
Ioana Ciornei77373d42019-05-28 20:38:15 +0300998
Florian Fainelli8ae67492019-12-16 10:32:47 -0800999static void dsa_port_phylink_mac_config(struct phylink_config *config,
1000 unsigned int mode,
1001 const struct phylink_link_state *state)
Ioana Ciornei77373d42019-05-28 20:38:15 +03001002{
1003 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1004 struct dsa_switch *ds = dp->ds;
1005
1006 if (!ds->ops->phylink_mac_config)
1007 return;
1008
1009 ds->ops->phylink_mac_config(ds, dp->index, mode, state);
1010}
Ioana Ciornei77373d42019-05-28 20:38:15 +03001011
Florian Fainelli8ae67492019-12-16 10:32:47 -08001012static void dsa_port_phylink_mac_an_restart(struct phylink_config *config)
Ioana Ciornei77373d42019-05-28 20:38:15 +03001013{
1014 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
1015 struct dsa_switch *ds = dp->ds;
1016
1017 if (!ds->ops->phylink_mac_an_restart)
1018 return;
1019
1020 ds->ops->phylink_mac_an_restart(ds, dp->index);
1021}
Ioana Ciornei77373d42019-05-28 20:38:15 +03001022
Florian Fainelli8ae67492019-12-16 10:32:47 -08001023static void dsa_port_phylink_mac_link_down(struct phylink_config *config,
1024 unsigned int mode,
1025 phy_interface_t interface)
Ioana Ciornei77373d42019-05-28 20:38:15 +03001026{
1027 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
Ioana Ciornei0e279212019-05-28 20:38:16 +03001028 struct phy_device *phydev = NULL;
Ioana Ciornei77373d42019-05-28 20:38:15 +03001029 struct dsa_switch *ds = dp->ds;
1030
Ioana Ciornei0e279212019-05-28 20:38:16 +03001031 if (dsa_is_user_port(ds, dp->index))
1032 phydev = dp->slave->phydev;
1033
Ioana Ciornei77373d42019-05-28 20:38:15 +03001034 if (!ds->ops->phylink_mac_link_down) {
Ioana Ciornei0e279212019-05-28 20:38:16 +03001035 if (ds->ops->adjust_link && phydev)
1036 ds->ops->adjust_link(ds, dp->index, phydev);
Ioana Ciornei77373d42019-05-28 20:38:15 +03001037 return;
1038 }
1039
1040 ds->ops->phylink_mac_link_down(ds, dp->index, mode, interface);
1041}
Ioana Ciornei77373d42019-05-28 20:38:15 +03001042
Florian Fainelli8ae67492019-12-16 10:32:47 -08001043static void dsa_port_phylink_mac_link_up(struct phylink_config *config,
Russell King91a208f2020-02-26 10:23:41 +00001044 struct phy_device *phydev,
Florian Fainelli8ae67492019-12-16 10:32:47 -08001045 unsigned int mode,
1046 phy_interface_t interface,
Russell King91a208f2020-02-26 10:23:41 +00001047 int speed, int duplex,
1048 bool tx_pause, bool rx_pause)
Ioana Ciornei77373d42019-05-28 20:38:15 +03001049{
1050 struct dsa_port *dp = container_of(config, struct dsa_port, pl_config);
Ioana Ciornei77373d42019-05-28 20:38:15 +03001051 struct dsa_switch *ds = dp->ds;
1052
1053 if (!ds->ops->phylink_mac_link_up) {
Ioana Ciornei0e279212019-05-28 20:38:16 +03001054 if (ds->ops->adjust_link && phydev)
1055 ds->ops->adjust_link(ds, dp->index, phydev);
Ioana Ciornei77373d42019-05-28 20:38:15 +03001056 return;
1057 }
1058
Russell King5b502a72020-02-26 10:23:46 +00001059 ds->ops->phylink_mac_link_up(ds, dp->index, mode, interface, phydev,
1060 speed, duplex, tx_pause, rx_pause);
Ioana Ciornei77373d42019-05-28 20:38:15 +03001061}
Ioana Ciornei77373d42019-05-28 20:38:15 +03001062
1063const struct phylink_mac_ops dsa_port_phylink_mac_ops = {
1064 .validate = dsa_port_phylink_validate,
Russell Kingd46b7e42019-11-21 00:36:22 +00001065 .mac_pcs_get_state = dsa_port_phylink_mac_pcs_get_state,
Ioana Ciornei77373d42019-05-28 20:38:15 +03001066 .mac_config = dsa_port_phylink_mac_config,
1067 .mac_an_restart = dsa_port_phylink_mac_an_restart,
1068 .mac_link_down = dsa_port_phylink_mac_link_down,
1069 .mac_link_up = dsa_port_phylink_mac_link_up,
1070};
1071
Sebastian Reichel33615362018-01-23 16:03:46 +01001072static int dsa_port_setup_phy_of(struct dsa_port *dp, bool enable)
1073{
Sebastian Reichel33615362018-01-23 16:03:46 +01001074 struct dsa_switch *ds = dp->ds;
1075 struct phy_device *phydev;
1076 int port = dp->index;
1077 int err = 0;
1078
Florian Fainelli6207a782018-04-25 12:12:51 -07001079 phydev = dsa_port_get_phy_device(dp);
1080 if (!phydev)
Sebastian Reichel33615362018-01-23 16:03:46 +01001081 return 0;
1082
Florian Fainelli6207a782018-04-25 12:12:51 -07001083 if (IS_ERR(phydev))
1084 return PTR_ERR(phydev);
Sebastian Reichel33615362018-01-23 16:03:46 +01001085
1086 if (enable) {
Sebastian Reichel33615362018-01-23 16:03:46 +01001087 err = genphy_resume(phydev);
1088 if (err < 0)
1089 goto err_put_dev;
1090
1091 err = genphy_read_status(phydev);
1092 if (err < 0)
1093 goto err_put_dev;
1094 } else {
1095 err = genphy_suspend(phydev);
1096 if (err < 0)
1097 goto err_put_dev;
1098 }
1099
1100 if (ds->ops->adjust_link)
1101 ds->ops->adjust_link(ds, port, phydev);
1102
1103 dev_dbg(ds->dev, "enabled port's phy: %s", phydev_name(phydev));
1104
1105err_put_dev:
1106 put_device(&phydev->mdio.dev);
Sebastian Reichel33615362018-01-23 16:03:46 +01001107 return err;
1108}
1109
1110static int dsa_port_fixed_link_register_of(struct dsa_port *dp)
Vivien Didelot57ab1ca2017-10-26 10:50:07 -04001111{
1112 struct device_node *dn = dp->dn;
1113 struct dsa_switch *ds = dp->ds;
1114 struct phy_device *phydev;
1115 int port = dp->index;
Andrew Lunn0c65b2b2019-11-04 02:40:33 +01001116 phy_interface_t mode;
Vivien Didelot57ab1ca2017-10-26 10:50:07 -04001117 int err;
1118
Sebastian Reichel33615362018-01-23 16:03:46 +01001119 err = of_phy_register_fixed_link(dn);
1120 if (err) {
1121 dev_err(ds->dev,
1122 "failed to register the fixed PHY of port %d\n",
1123 port);
1124 return err;
Vivien Didelot57ab1ca2017-10-26 10:50:07 -04001125 }
1126
Sebastian Reichel33615362018-01-23 16:03:46 +01001127 phydev = of_phy_find_device(dn);
1128
Andrew Lunn0c65b2b2019-11-04 02:40:33 +01001129 err = of_get_phy_mode(dn, &mode);
1130 if (err)
Sebastian Reichel33615362018-01-23 16:03:46 +01001131 mode = PHY_INTERFACE_MODE_NA;
1132 phydev->interface = mode;
1133
Sebastian Reichel33615362018-01-23 16:03:46 +01001134 genphy_read_status(phydev);
1135
1136 if (ds->ops->adjust_link)
1137 ds->ops->adjust_link(ds, port, phydev);
1138
1139 put_device(&phydev->mdio.dev);
1140
Vivien Didelot57ab1ca2017-10-26 10:50:07 -04001141 return 0;
1142}
1143
Ioana Ciornei0e279212019-05-28 20:38:16 +03001144static int dsa_port_phylink_register(struct dsa_port *dp)
1145{
1146 struct dsa_switch *ds = dp->ds;
1147 struct device_node *port_dn = dp->dn;
Andrew Lunn0c65b2b2019-11-04 02:40:33 +01001148 phy_interface_t mode;
1149 int err;
Ioana Ciornei0e279212019-05-28 20:38:16 +03001150
Andrew Lunn0c65b2b2019-11-04 02:40:33 +01001151 err = of_get_phy_mode(port_dn, &mode);
1152 if (err)
Ioana Ciornei0e279212019-05-28 20:38:16 +03001153 mode = PHY_INTERFACE_MODE_NA;
1154
1155 dp->pl_config.dev = ds->dev;
1156 dp->pl_config.type = PHYLINK_DEV;
Vladimir Oltean787cac32020-01-06 03:34:12 +02001157 dp->pl_config.pcs_poll = ds->pcs_poll;
Ioana Ciornei0e279212019-05-28 20:38:16 +03001158
1159 dp->pl = phylink_create(&dp->pl_config, of_fwnode_handle(port_dn),
1160 mode, &dsa_port_phylink_mac_ops);
1161 if (IS_ERR(dp->pl)) {
1162 pr_err("error creating PHYLINK: %ld\n", PTR_ERR(dp->pl));
1163 return PTR_ERR(dp->pl);
1164 }
1165
1166 err = phylink_of_phy_connect(dp->pl, port_dn, 0);
Florian Fainelli2131fba2019-06-10 12:31:49 -07001167 if (err && err != -ENODEV) {
Ioana Ciornei0e279212019-05-28 20:38:16 +03001168 pr_err("could not attach to PHY: %d\n", err);
1169 goto err_phy_connect;
1170 }
1171
Ioana Ciornei0e279212019-05-28 20:38:16 +03001172 return 0;
1173
1174err_phy_connect:
1175 phylink_destroy(dp->pl);
1176 return err;
1177}
1178
Sebastian Reichel33615362018-01-23 16:03:46 +01001179int dsa_port_link_register_of(struct dsa_port *dp)
Vivien Didelot57ab1ca2017-10-26 10:50:07 -04001180{
Ioana Ciornei0e279212019-05-28 20:38:16 +03001181 struct dsa_switch *ds = dp->ds;
Andrew Lunna20f9972020-03-11 16:24:24 +01001182 struct device_node *phy_np;
Andrew Lunn3be98b22020-04-14 02:34:39 +02001183 int port = dp->index;
Ioana Ciornei0e279212019-05-28 20:38:16 +03001184
Andrew Lunna20f9972020-03-11 16:24:24 +01001185 if (!ds->ops->adjust_link) {
1186 phy_np = of_parse_phandle(dp->dn, "phy-handle", 0);
Andrew Lunn3be98b22020-04-14 02:34:39 +02001187 if (of_phy_is_fixed_link(dp->dn) || phy_np) {
1188 if (ds->ops->phylink_mac_link_down)
1189 ds->ops->phylink_mac_link_down(ds, port,
1190 MLO_AN_FIXED, PHY_INTERFACE_MODE_NA);
Andrew Lunna20f9972020-03-11 16:24:24 +01001191 return dsa_port_phylink_register(dp);
Andrew Lunn3be98b22020-04-14 02:34:39 +02001192 }
Andrew Lunna20f9972020-03-11 16:24:24 +01001193 return 0;
1194 }
Ioana Ciornei0e279212019-05-28 20:38:16 +03001195
1196 dev_warn(ds->dev,
1197 "Using legacy PHYLIB callbacks. Please migrate to PHYLINK!\n");
1198
Sebastian Reichel33615362018-01-23 16:03:46 +01001199 if (of_phy_is_fixed_link(dp->dn))
1200 return dsa_port_fixed_link_register_of(dp);
1201 else
1202 return dsa_port_setup_phy_of(dp, true);
1203}
Vivien Didelot57ab1ca2017-10-26 10:50:07 -04001204
Sebastian Reichel33615362018-01-23 16:03:46 +01001205void dsa_port_link_unregister_of(struct dsa_port *dp)
1206{
Ioana Ciornei0e279212019-05-28 20:38:16 +03001207 struct dsa_switch *ds = dp->ds;
1208
Andrew Lunna20f9972020-03-11 16:24:24 +01001209 if (!ds->ops->adjust_link && dp->pl) {
Ioana Ciornei0e279212019-05-28 20:38:16 +03001210 rtnl_lock();
1211 phylink_disconnect_phy(dp->pl);
1212 rtnl_unlock();
1213 phylink_destroy(dp->pl);
Andrew Lunna20f9972020-03-11 16:24:24 +01001214 dp->pl = NULL;
Ioana Ciornei0e279212019-05-28 20:38:16 +03001215 return;
1216 }
1217
Sebastian Reichel33615362018-01-23 16:03:46 +01001218 if (of_phy_is_fixed_link(dp->dn))
1219 of_phy_deregister_fixed_link(dp->dn);
1220 else
1221 dsa_port_setup_phy_of(dp, false);
Vivien Didelot57ab1ca2017-10-26 10:50:07 -04001222}
Florian Fainellicf963572018-04-25 12:12:52 -07001223
1224int dsa_port_get_phy_strings(struct dsa_port *dp, uint8_t *data)
1225{
1226 struct phy_device *phydev;
1227 int ret = -EOPNOTSUPP;
1228
1229 if (of_phy_is_fixed_link(dp->dn))
1230 return ret;
1231
1232 phydev = dsa_port_get_phy_device(dp);
1233 if (IS_ERR_OR_NULL(phydev))
1234 return ret;
1235
1236 ret = phy_ethtool_get_strings(phydev, data);
1237 put_device(&phydev->mdio.dev);
1238
1239 return ret;
1240}
1241EXPORT_SYMBOL_GPL(dsa_port_get_phy_strings);
1242
1243int dsa_port_get_ethtool_phy_stats(struct dsa_port *dp, uint64_t *data)
1244{
1245 struct phy_device *phydev;
1246 int ret = -EOPNOTSUPP;
1247
1248 if (of_phy_is_fixed_link(dp->dn))
1249 return ret;
1250
1251 phydev = dsa_port_get_phy_device(dp);
1252 if (IS_ERR_OR_NULL(phydev))
1253 return ret;
1254
1255 ret = phy_ethtool_get_stats(phydev, NULL, data);
1256 put_device(&phydev->mdio.dev);
1257
1258 return ret;
1259}
1260EXPORT_SYMBOL_GPL(dsa_port_get_ethtool_phy_stats);
1261
1262int dsa_port_get_phy_sset_count(struct dsa_port *dp)
1263{
1264 struct phy_device *phydev;
1265 int ret = -EOPNOTSUPP;
1266
1267 if (of_phy_is_fixed_link(dp->dn))
1268 return ret;
1269
1270 phydev = dsa_port_get_phy_device(dp);
1271 if (IS_ERR_OR_NULL(phydev))
1272 return ret;
1273
1274 ret = phy_ethtool_get_sset_count(phydev);
1275 put_device(&phydev->mdio.dev);
1276
1277 return ret;
1278}
1279EXPORT_SYMBOL_GPL(dsa_port_get_phy_sset_count);
George McCollister18596f52021-02-09 19:02:12 -06001280
1281int dsa_port_hsr_join(struct dsa_port *dp, struct net_device *hsr)
1282{
1283 struct dsa_notifier_hsr_info info = {
1284 .sw_index = dp->ds->index,
1285 .port = dp->index,
1286 .hsr = hsr,
1287 };
1288 int err;
1289
1290 dp->hsr_dev = hsr;
1291
1292 err = dsa_port_notify(dp, DSA_NOTIFIER_HSR_JOIN, &info);
1293 if (err)
1294 dp->hsr_dev = NULL;
1295
1296 return err;
1297}
1298
1299void dsa_port_hsr_leave(struct dsa_port *dp, struct net_device *hsr)
1300{
1301 struct dsa_notifier_hsr_info info = {
1302 .sw_index = dp->ds->index,
1303 .port = dp->index,
1304 .hsr = hsr,
1305 };
1306 int err;
1307
1308 dp->hsr_dev = NULL;
1309
1310 err = dsa_port_notify(dp, DSA_NOTIFIER_HSR_LEAVE, &info);
1311 if (err)
Vladimir Olteanab974622021-08-11 16:46:05 +03001312 dev_err(dp->ds->dev,
1313 "port %d failed to notify DSA_NOTIFIER_HSR_LEAVE: %pe\n",
1314 dp->index, ERR_PTR(err));
George McCollister18596f52021-02-09 19:02:12 -06001315}
Vladimir Olteanc64b9c02021-07-19 20:14:52 +03001316
Vladimir Oltean724395f2021-08-11 16:46:06 +03001317int dsa_port_tag_8021q_vlan_add(struct dsa_port *dp, u16 vid, bool broadcast)
Vladimir Olteanc64b9c02021-07-19 20:14:52 +03001318{
1319 struct dsa_notifier_tag_8021q_vlan_info info = {
1320 .tree_index = dp->ds->dst->index,
1321 .sw_index = dp->ds->index,
1322 .port = dp->index,
1323 .vid = vid,
1324 };
1325
Vladimir Oltean724395f2021-08-11 16:46:06 +03001326 if (broadcast)
1327 return dsa_broadcast(DSA_NOTIFIER_TAG_8021Q_VLAN_ADD, &info);
1328
1329 return dsa_port_notify(dp, DSA_NOTIFIER_TAG_8021Q_VLAN_ADD, &info);
Vladimir Olteanc64b9c02021-07-19 20:14:52 +03001330}
1331
Vladimir Oltean724395f2021-08-11 16:46:06 +03001332void dsa_port_tag_8021q_vlan_del(struct dsa_port *dp, u16 vid, bool broadcast)
Vladimir Olteanc64b9c02021-07-19 20:14:52 +03001333{
1334 struct dsa_notifier_tag_8021q_vlan_info info = {
1335 .tree_index = dp->ds->dst->index,
1336 .sw_index = dp->ds->index,
1337 .port = dp->index,
1338 .vid = vid,
1339 };
1340 int err;
1341
Vladimir Oltean724395f2021-08-11 16:46:06 +03001342 if (broadcast)
1343 err = dsa_broadcast(DSA_NOTIFIER_TAG_8021Q_VLAN_DEL, &info);
1344 else
1345 err = dsa_port_notify(dp, DSA_NOTIFIER_TAG_8021Q_VLAN_DEL, &info);
Vladimir Olteanc64b9c02021-07-19 20:14:52 +03001346 if (err)
Vladimir Olteanab974622021-08-11 16:46:05 +03001347 dev_err(dp->ds->dev,
1348 "port %d failed to notify tag_8021q VLAN %d deletion: %pe\n",
1349 dp->index, vid, ERR_PTR(err));
Vladimir Olteanc64b9c02021-07-19 20:14:52 +03001350}