]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - net/dsa/switch.c
net: dsa: don't warn in dsa_port_set_state_now() when driver doesn't support it
[mirror_ubuntu-jammy-kernel.git] / net / dsa / switch.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
f515f192
VD
2/*
3 * Handling of a single switch chip, part of a switch fabric
4 *
4333d619
VD
5 * Copyright (c) 2017 Savoir-faire Linux Inc.
6 * Vivien Didelot <vivien.didelot@savoirfairelinux.com>
f515f192
VD
7 */
8
d371b7c9 9#include <linux/if_bridge.h>
f515f192
VD
10#include <linux/netdevice.h>
11#include <linux/notifier.h>
061f6a50 12#include <linux/if_vlan.h>
1faabf74 13#include <net/switchdev.h>
ea5dd34b
VD
14
15#include "dsa_priv.h"
f515f192 16
1faabf74
VD
17static unsigned int dsa_switch_fastest_ageing_time(struct dsa_switch *ds,
18 unsigned int ageing_time)
19{
20 int i;
21
22 for (i = 0; i < ds->num_ports; ++i) {
68bb8ea8 23 struct dsa_port *dp = dsa_to_port(ds, i);
1faabf74
VD
24
25 if (dp->ageing_time && dp->ageing_time < ageing_time)
26 ageing_time = dp->ageing_time;
27 }
28
29 return ageing_time;
30}
31
32static int dsa_switch_ageing_time(struct dsa_switch *ds,
33 struct dsa_notifier_ageing_time_info *info)
34{
35 unsigned int ageing_time = info->ageing_time;
77b61365
VO
36
37 if (ds->ageing_time_min && ageing_time < ds->ageing_time_min)
38 return -ERANGE;
39
40 if (ds->ageing_time_max && ageing_time > ds->ageing_time_max)
41 return -ERANGE;
1faabf74
VD
42
43 /* Program the fastest ageing time in case of multiple bridges */
44 ageing_time = dsa_switch_fastest_ageing_time(ds, ageing_time);
45
46 if (ds->ops->set_ageing_time)
47 return ds->ops->set_ageing_time(ds, ageing_time);
48
49 return 0;
50}
51
bfcb8132
VO
52static bool dsa_switch_mtu_match(struct dsa_switch *ds, int port,
53 struct dsa_notifier_mtu_info *info)
54{
88faba20
VO
55 if (ds->index == info->sw_index && port == info->port)
56 return true;
bfcb8132 57
88faba20
VO
58 /* Do not propagate to other switches in the tree if the notifier was
59 * targeted for a single switch.
60 */
61 if (info->targeted_match)
bfcb8132
VO
62 return false;
63
64 if (dsa_is_dsa_port(ds, port) || dsa_is_cpu_port(ds, port))
65 return true;
66
67 return false;
68}
69
70static int dsa_switch_mtu(struct dsa_switch *ds,
71 struct dsa_notifier_mtu_info *info)
72{
73 int port, ret;
74
75 if (!ds->ops->port_change_mtu)
76 return -EOPNOTSUPP;
77
78 for (port = 0; port < ds->num_ports; port++) {
79 if (dsa_switch_mtu_match(ds, port, info)) {
80 ret = ds->ops->port_change_mtu(ds, port, info->mtu);
81 if (ret)
82 return ret;
83 }
84 }
85
86 return 0;
87}
88
04d3a4c6
VD
89static int dsa_switch_bridge_join(struct dsa_switch *ds,
90 struct dsa_notifier_bridge_info *info)
91{
f66a6a69 92 struct dsa_switch_tree *dst = ds->dst;
e19cc13c 93 int err;
f66a6a69 94
67b5fb5d
VO
95 if (dst->index == info->tree_index && ds->index == info->sw_index) {
96 if (!ds->ops->port_bridge_join)
97 return -EOPNOTSUPP;
98
e19cc13c
VO
99 err = ds->ops->port_bridge_join(ds, info->port, info->br);
100 if (err)
101 return err;
102 }
04d3a4c6 103
f66a6a69 104 if ((dst->index != info->tree_index || ds->index != info->sw_index) &&
e19cc13c
VO
105 ds->ops->crosschip_bridge_join) {
106 err = ds->ops->crosschip_bridge_join(ds, info->tree_index,
107 info->sw_index,
108 info->port, info->br);
109 if (err)
110 return err;
111 }
04d3a4c6 112
e19cc13c 113 return dsa_tag_8021q_bridge_join(ds, info);
04d3a4c6
VD
114}
115
116static int dsa_switch_bridge_leave(struct dsa_switch *ds,
117 struct dsa_notifier_bridge_info *info)
118{
f66a6a69 119 struct dsa_switch_tree *dst = ds->dst;
89153ed6 120 struct netlink_ext_ack extack = {0};
58adf9dc
VO
121 bool change_vlan_filtering = false;
122 bool vlan_filtering;
479dc497 123 int err, port;
d371b7c9 124
f66a6a69 125 if (dst->index == info->tree_index && ds->index == info->sw_index &&
bcb9928a 126 ds->ops->port_bridge_leave)
04d3a4c6
VD
127 ds->ops->port_bridge_leave(ds, info->port, info->br);
128
f66a6a69 129 if ((dst->index != info->tree_index || ds->index != info->sw_index) &&
bcb9928a 130 ds->ops->crosschip_bridge_leave)
f66a6a69
VO
131 ds->ops->crosschip_bridge_leave(ds, info->tree_index,
132 info->sw_index, info->port,
40ef2c93 133 info->br);
04d3a4c6 134
58adf9dc
VO
135 if (ds->needs_standalone_vlan_filtering && !br_vlan_enabled(info->br)) {
136 change_vlan_filtering = true;
137 vlan_filtering = true;
138 } else if (!ds->needs_standalone_vlan_filtering &&
139 br_vlan_enabled(info->br)) {
140 change_vlan_filtering = true;
141 vlan_filtering = false;
142 }
143
d371b7c9
VO
144 /* If the bridge was vlan_filtering, the bridge core doesn't trigger an
145 * event for changing vlan_filtering setting upon slave ports leaving
146 * it. That is a good thing, because that lets us handle it and also
147 * handle the case where the switch's vlan_filtering setting is global
148 * (not per port). When that happens, the correct moment to trigger the
479dc497
VO
149 * vlan_filtering callback is only when the last port leaves the last
150 * VLAN-aware bridge.
d371b7c9 151 */
58adf9dc 152 if (change_vlan_filtering && ds->vlan_filtering_is_global) {
479dc497
VO
153 for (port = 0; port < ds->num_ports; port++) {
154 struct net_device *bridge_dev;
155
156 bridge_dev = dsa_to_port(ds, port)->bridge_dev;
157
158 if (bridge_dev && br_vlan_enabled(bridge_dev)) {
58adf9dc 159 change_vlan_filtering = false;
d371b7c9
VO
160 break;
161 }
162 }
163 }
58adf9dc
VO
164
165 if (change_vlan_filtering) {
68bb8ea8 166 err = dsa_port_vlan_filtering(dsa_to_port(ds, info->port),
58adf9dc 167 vlan_filtering, &extack);
89153ed6
VO
168 if (extack._msg)
169 dev_err(ds->dev, "port %d: %s\n", info->port,
170 extack._msg);
43a4b4db 171 if (err && err != -EOPNOTSUPP)
d371b7c9
VO
172 return err;
173 }
e19cc13c
VO
174
175 return dsa_tag_8021q_bridge_leave(ds, info);
04d3a4c6
VD
176}
177
b8e997c4
VO
178/* Matches for all upstream-facing ports (the CPU port and all upstream-facing
179 * DSA links) that sit between the targeted port on which the notifier was
180 * emitted and its dedicated CPU port.
181 */
182static bool dsa_switch_host_address_match(struct dsa_switch *ds, int port,
183 int info_sw_index, int info_port)
184{
185 struct dsa_port *targeted_dp, *cpu_dp;
186 struct dsa_switch *targeted_ds;
187
188 targeted_ds = dsa_switch_find(ds->dst->index, info_sw_index);
189 targeted_dp = dsa_to_port(targeted_ds, info_port);
190 cpu_dp = targeted_dp->cpu_dp;
191
192 if (dsa_switch_is_upstream_of(ds, targeted_ds))
193 return port == dsa_towards_port(ds, cpu_dp->ds->index,
194 cpu_dp->index);
195
196 return false;
197}
198
161ca59d
VO
199static struct dsa_mac_addr *dsa_mac_addr_find(struct list_head *addr_list,
200 const unsigned char *addr,
201 u16 vid)
202{
203 struct dsa_mac_addr *a;
204
205 list_for_each_entry(a, addr_list, list)
206 if (ether_addr_equal(a->addr, addr) && a->vid == vid)
207 return a;
208
209 return NULL;
210}
211
212static int dsa_switch_do_mdb_add(struct dsa_switch *ds, int port,
213 const struct switchdev_obj_port_mdb *mdb)
214{
215 struct dsa_port *dp = dsa_to_port(ds, port);
216 struct dsa_mac_addr *a;
217 int err;
218
219 /* No need to bother with refcounting for user ports */
220 if (!(dsa_port_is_cpu(dp) || dsa_port_is_dsa(dp)))
221 return ds->ops->port_mdb_add(ds, port, mdb);
222
223 a = dsa_mac_addr_find(&dp->mdbs, mdb->addr, mdb->vid);
224 if (a) {
225 refcount_inc(&a->refcount);
226 return 0;
227 }
228
229 a = kzalloc(sizeof(*a), GFP_KERNEL);
230 if (!a)
231 return -ENOMEM;
232
233 err = ds->ops->port_mdb_add(ds, port, mdb);
234 if (err) {
235 kfree(a);
236 return err;
237 }
238
239 ether_addr_copy(a->addr, mdb->addr);
240 a->vid = mdb->vid;
241 refcount_set(&a->refcount, 1);
242 list_add_tail(&a->list, &dp->mdbs);
243
244 return 0;
245}
246
247static int dsa_switch_do_mdb_del(struct dsa_switch *ds, int port,
248 const struct switchdev_obj_port_mdb *mdb)
249{
250 struct dsa_port *dp = dsa_to_port(ds, port);
251 struct dsa_mac_addr *a;
252 int err;
253
254 /* No need to bother with refcounting for user ports */
255 if (!(dsa_port_is_cpu(dp) || dsa_port_is_dsa(dp)))
256 return ds->ops->port_mdb_del(ds, port, mdb);
257
258 a = dsa_mac_addr_find(&dp->mdbs, mdb->addr, mdb->vid);
259 if (!a)
260 return -ENOENT;
261
262 if (!refcount_dec_and_test(&a->refcount))
263 return 0;
264
265 err = ds->ops->port_mdb_del(ds, port, mdb);
266 if (err) {
01922c18 267 refcount_set(&a->refcount, 1);
161ca59d
VO
268 return err;
269 }
270
271 list_del(&a->list);
272 kfree(a);
273
274 return 0;
275}
276
3f6e32f9
VO
277static int dsa_switch_do_fdb_add(struct dsa_switch *ds, int port,
278 const unsigned char *addr, u16 vid)
279{
280 struct dsa_port *dp = dsa_to_port(ds, port);
281 struct dsa_mac_addr *a;
282 int err;
283
284 /* No need to bother with refcounting for user ports */
285 if (!(dsa_port_is_cpu(dp) || dsa_port_is_dsa(dp)))
286 return ds->ops->port_fdb_add(ds, port, addr, vid);
287
288 a = dsa_mac_addr_find(&dp->fdbs, addr, vid);
289 if (a) {
290 refcount_inc(&a->refcount);
291 return 0;
292 }
293
294 a = kzalloc(sizeof(*a), GFP_KERNEL);
295 if (!a)
296 return -ENOMEM;
297
298 err = ds->ops->port_fdb_add(ds, port, addr, vid);
299 if (err) {
300 kfree(a);
301 return err;
302 }
303
304 ether_addr_copy(a->addr, addr);
305 a->vid = vid;
306 refcount_set(&a->refcount, 1);
307 list_add_tail(&a->list, &dp->fdbs);
308
309 return 0;
310}
311
312static int dsa_switch_do_fdb_del(struct dsa_switch *ds, int port,
313 const unsigned char *addr, u16 vid)
314{
315 struct dsa_port *dp = dsa_to_port(ds, port);
316 struct dsa_mac_addr *a;
317 int err;
318
319 /* No need to bother with refcounting for user ports */
320 if (!(dsa_port_is_cpu(dp) || dsa_port_is_dsa(dp)))
321 return ds->ops->port_fdb_del(ds, port, addr, vid);
322
323 a = dsa_mac_addr_find(&dp->fdbs, addr, vid);
324 if (!a)
325 return -ENOENT;
326
327 if (!refcount_dec_and_test(&a->refcount))
328 return 0;
329
330 err = ds->ops->port_fdb_del(ds, port, addr, vid);
331 if (err) {
01922c18 332 refcount_set(&a->refcount, 1);
3f6e32f9
VO
333 return err;
334 }
335
336 list_del(&a->list);
337 kfree(a);
338
339 return 0;
340}
341
3dc80afc
VO
342static int dsa_switch_host_fdb_add(struct dsa_switch *ds,
343 struct dsa_notifier_fdb_info *info)
344{
345 int err = 0;
346 int port;
347
348 if (!ds->ops->port_fdb_add)
349 return -EOPNOTSUPP;
350
351 for (port = 0; port < ds->num_ports; port++) {
352 if (dsa_switch_host_address_match(ds, port, info->sw_index,
353 info->port)) {
3f6e32f9 354 err = dsa_switch_do_fdb_add(ds, port, info->addr,
3dc80afc
VO
355 info->vid);
356 if (err)
357 break;
358 }
359 }
360
361 return err;
362}
363
364static int dsa_switch_host_fdb_del(struct dsa_switch *ds,
365 struct dsa_notifier_fdb_info *info)
366{
3f6e32f9
VO
367 int err = 0;
368 int port;
369
3dc80afc
VO
370 if (!ds->ops->port_fdb_del)
371 return -EOPNOTSUPP;
372
3f6e32f9
VO
373 for (port = 0; port < ds->num_ports; port++) {
374 if (dsa_switch_host_address_match(ds, port, info->sw_index,
375 info->port)) {
376 err = dsa_switch_do_fdb_del(ds, port, info->addr,
377 info->vid);
378 if (err)
379 break;
380 }
381 }
3dc80afc 382
3f6e32f9 383 return err;
3dc80afc
VO
384}
385
685fb6a4
VD
386static int dsa_switch_fdb_add(struct dsa_switch *ds,
387 struct dsa_notifier_fdb_info *info)
388{
3169241f 389 int port = dsa_towards_port(ds, info->sw_index, info->port);
685fb6a4 390
1b6dd556
AS
391 if (!ds->ops->port_fdb_add)
392 return -EOPNOTSUPP;
685fb6a4 393
3f6e32f9 394 return dsa_switch_do_fdb_add(ds, port, info->addr, info->vid);
685fb6a4
VD
395}
396
397static int dsa_switch_fdb_del(struct dsa_switch *ds,
398 struct dsa_notifier_fdb_info *info)
399{
3169241f 400 int port = dsa_towards_port(ds, info->sw_index, info->port);
685fb6a4
VD
401
402 if (!ds->ops->port_fdb_del)
403 return -EOPNOTSUPP;
404
3f6e32f9 405 return dsa_switch_do_fdb_del(ds, port, info->addr, info->vid);
685fb6a4
VD
406}
407
18596f50
GM
408static int dsa_switch_hsr_join(struct dsa_switch *ds,
409 struct dsa_notifier_hsr_info *info)
410{
411 if (ds->index == info->sw_index && ds->ops->port_hsr_join)
412 return ds->ops->port_hsr_join(ds, info->port, info->hsr);
413
414 return -EOPNOTSUPP;
415}
416
417static int dsa_switch_hsr_leave(struct dsa_switch *ds,
418 struct dsa_notifier_hsr_info *info)
419{
420 if (ds->index == info->sw_index && ds->ops->port_hsr_leave)
421 return ds->ops->port_hsr_leave(ds, info->port, info->hsr);
422
423 return -EOPNOTSUPP;
424}
425
058102a6
TW
426static int dsa_switch_lag_change(struct dsa_switch *ds,
427 struct dsa_notifier_lag_info *info)
428{
429 if (ds->index == info->sw_index && ds->ops->port_lag_change)
430 return ds->ops->port_lag_change(ds, info->port);
431
432 if (ds->index != info->sw_index && ds->ops->crosschip_lag_change)
433 return ds->ops->crosschip_lag_change(ds, info->sw_index,
434 info->port);
435
436 return 0;
437}
438
439static int dsa_switch_lag_join(struct dsa_switch *ds,
440 struct dsa_notifier_lag_info *info)
441{
442 if (ds->index == info->sw_index && ds->ops->port_lag_join)
443 return ds->ops->port_lag_join(ds, info->port, info->lag,
444 info->info);
445
446 if (ds->index != info->sw_index && ds->ops->crosschip_lag_join)
447 return ds->ops->crosschip_lag_join(ds, info->sw_index,
448 info->port, info->lag,
449 info->info);
450
b71d0987 451 return -EOPNOTSUPP;
058102a6
TW
452}
453
454static int dsa_switch_lag_leave(struct dsa_switch *ds,
455 struct dsa_notifier_lag_info *info)
456{
457 if (ds->index == info->sw_index && ds->ops->port_lag_leave)
458 return ds->ops->port_lag_leave(ds, info->port, info->lag);
459
460 if (ds->index != info->sw_index && ds->ops->crosschip_lag_leave)
461 return ds->ops->crosschip_lag_leave(ds, info->sw_index,
462 info->port, info->lag);
463
b71d0987 464 return -EOPNOTSUPP;
058102a6
TW
465}
466
ffb68fc5
VO
467static int dsa_switch_mdb_add(struct dsa_switch *ds,
468 struct dsa_notifier_mdb_info *info)
e6db98db 469{
abd49535 470 int port = dsa_towards_port(ds, info->sw_index, info->port);
e6db98db 471
a52b2da7 472 if (!ds->ops->port_mdb_add)
e6db98db
VD
473 return -EOPNOTSUPP;
474
161ca59d 475 return dsa_switch_do_mdb_add(ds, port, info->mdb);
8ae5bcdc
VD
476}
477
478static int dsa_switch_mdb_del(struct dsa_switch *ds,
479 struct dsa_notifier_mdb_info *info)
480{
161ca59d
VO
481 int port = dsa_towards_port(ds, info->sw_index, info->port);
482
8ae5bcdc
VD
483 if (!ds->ops->port_mdb_del)
484 return -EOPNOTSUPP;
485
161ca59d 486 return dsa_switch_do_mdb_del(ds, port, info->mdb);
8ae5bcdc
VD
487}
488
b8e997c4
VO
489static int dsa_switch_host_mdb_add(struct dsa_switch *ds,
490 struct dsa_notifier_mdb_info *info)
491{
492 int err = 0;
493 int port;
494
495 if (!ds->ops->port_mdb_add)
496 return -EOPNOTSUPP;
497
498 for (port = 0; port < ds->num_ports; port++) {
499 if (dsa_switch_host_address_match(ds, port, info->sw_index,
500 info->port)) {
161ca59d 501 err = dsa_switch_do_mdb_add(ds, port, info->mdb);
b8e997c4
VO
502 if (err)
503 break;
504 }
505 }
506
507 return err;
508}
509
510static int dsa_switch_host_mdb_del(struct dsa_switch *ds,
511 struct dsa_notifier_mdb_info *info)
512{
161ca59d
VO
513 int err = 0;
514 int port;
515
b8e997c4
VO
516 if (!ds->ops->port_mdb_del)
517 return -EOPNOTSUPP;
518
161ca59d
VO
519 for (port = 0; port < ds->num_ports; port++) {
520 if (dsa_switch_host_address_match(ds, port, info->sw_index,
521 info->port)) {
522 err = dsa_switch_do_mdb_del(ds, port, info->mdb);
523 if (err)
524 break;
525 }
526 }
b8e997c4 527
161ca59d 528 return err;
b8e997c4
VO
529}
530
e65d45cc
VD
531static bool dsa_switch_vlan_match(struct dsa_switch *ds, int port,
532 struct dsa_notifier_vlan_info *info)
533{
534 if (ds->index == info->sw_index && port == info->port)
535 return true;
536
7e1741b4 537 if (dsa_is_dsa_port(ds, port))
e65d45cc
VD
538 return true;
539
540 return false;
541}
542
ffb68fc5
VO
543static int dsa_switch_vlan_add(struct dsa_switch *ds,
544 struct dsa_notifier_vlan_info *info)
9c428c59
VD
545{
546 int port, err;
547
1958d581 548 if (!ds->ops->port_vlan_add)
9c428c59
VD
549 return -EOPNOTSUPP;
550
e65d45cc
VD
551 for (port = 0; port < ds->num_ports; port++) {
552 if (dsa_switch_vlan_match(ds, port, info)) {
31046a5f
VO
553 err = ds->ops->port_vlan_add(ds, port, info->vlan,
554 info->extack);
e65d45cc
VD
555 if (err)
556 return err;
557 }
9c428c59
VD
558 }
559
d0c627b8
VD
560 return 0;
561}
562
563static int dsa_switch_vlan_del(struct dsa_switch *ds,
564 struct dsa_notifier_vlan_info *info)
565{
d0c627b8
VD
566 if (!ds->ops->port_vlan_del)
567 return -EOPNOTSUPP;
568
1ca4aa9c 569 if (ds->index == info->sw_index)
e65d45cc 570 return ds->ops->port_vlan_del(ds, info->port, info->vlan);
1ca4aa9c 571
7e1741b4
VD
572 /* Do not deprogram the DSA links as they may be used as conduit
573 * for other VLAN members in the fabric.
574 */
1ca4aa9c 575 return 0;
d0c627b8
VD
576}
577
53da0eba
VO
578static int dsa_switch_change_tag_proto(struct dsa_switch *ds,
579 struct dsa_notifier_tag_proto_info *info)
580{
581 const struct dsa_device_ops *tag_ops = info->tag_ops;
582 int port, err;
583
584 if (!ds->ops->change_tag_protocol)
585 return -EOPNOTSUPP;
586
587 ASSERT_RTNL();
588
589 for (port = 0; port < ds->num_ports; port++) {
21e0b508
TW
590 if (!dsa_is_cpu_port(ds, port))
591 continue;
53da0eba 592
21e0b508
TW
593 err = ds->ops->change_tag_protocol(ds, port, tag_ops->proto);
594 if (err)
595 return err;
596
597 dsa_port_set_tag_protocol(dsa_to_port(ds, port), tag_ops);
53da0eba
VO
598 }
599
600 /* Now that changing the tag protocol can no longer fail, let's update
601 * the remaining bits which are "duplicated for faster access", and the
602 * bits that depend on the tagger, such as the MTU.
603 */
604 for (port = 0; port < ds->num_ports; port++) {
605 if (dsa_is_user_port(ds, port)) {
606 struct net_device *slave;
607
608 slave = dsa_to_port(ds, port)->slave;
609 dsa_slave_setup_tagger(slave);
610
611 /* rtnl_mutex is held in dsa_tree_change_tag_proto */
612 dsa_slave_change_mtu(slave, slave->mtu);
613 }
614 }
615
616 return 0;
617}
618
c595c433
HV
619static int dsa_switch_mrp_add(struct dsa_switch *ds,
620 struct dsa_notifier_mrp_info *info)
621{
c595c433
HV
622 if (!ds->ops->port_mrp_add)
623 return -EOPNOTSUPP;
624
f9bcdc36
VO
625 if (ds->index == info->sw_index)
626 return ds->ops->port_mrp_add(ds, info->port, info->mrp);
c595c433 627
f9bcdc36 628 return 0;
c595c433
HV
629}
630
631static int dsa_switch_mrp_del(struct dsa_switch *ds,
632 struct dsa_notifier_mrp_info *info)
633{
634 if (!ds->ops->port_mrp_del)
635 return -EOPNOTSUPP;
636
637 if (ds->index == info->sw_index)
638 return ds->ops->port_mrp_del(ds, info->port, info->mrp);
639
640 return 0;
641}
642
c595c433
HV
643static int
644dsa_switch_mrp_add_ring_role(struct dsa_switch *ds,
645 struct dsa_notifier_mrp_ring_role_info *info)
646{
39e63d09 647 if (!ds->ops->port_mrp_add_ring_role)
c595c433
HV
648 return -EOPNOTSUPP;
649
f9bcdc36
VO
650 if (ds->index == info->sw_index)
651 return ds->ops->port_mrp_add_ring_role(ds, info->port,
652 info->mrp);
c595c433 653
f9bcdc36 654 return 0;
c595c433
HV
655}
656
657static int
658dsa_switch_mrp_del_ring_role(struct dsa_switch *ds,
659 struct dsa_notifier_mrp_ring_role_info *info)
660{
39e63d09 661 if (!ds->ops->port_mrp_del_ring_role)
c595c433
HV
662 return -EOPNOTSUPP;
663
664 if (ds->index == info->sw_index)
665 return ds->ops->port_mrp_del_ring_role(ds, info->port,
666 info->mrp);
667
668 return 0;
669}
670
f515f192
VD
671static int dsa_switch_event(struct notifier_block *nb,
672 unsigned long event, void *info)
673{
674 struct dsa_switch *ds = container_of(nb, struct dsa_switch, nb);
675 int err;
676
677 switch (event) {
1faabf74
VD
678 case DSA_NOTIFIER_AGEING_TIME:
679 err = dsa_switch_ageing_time(ds, info);
680 break;
04d3a4c6
VD
681 case DSA_NOTIFIER_BRIDGE_JOIN:
682 err = dsa_switch_bridge_join(ds, info);
683 break;
684 case DSA_NOTIFIER_BRIDGE_LEAVE:
685 err = dsa_switch_bridge_leave(ds, info);
686 break;
685fb6a4
VD
687 case DSA_NOTIFIER_FDB_ADD:
688 err = dsa_switch_fdb_add(ds, info);
689 break;
690 case DSA_NOTIFIER_FDB_DEL:
691 err = dsa_switch_fdb_del(ds, info);
692 break;
3dc80afc
VO
693 case DSA_NOTIFIER_HOST_FDB_ADD:
694 err = dsa_switch_host_fdb_add(ds, info);
695 break;
696 case DSA_NOTIFIER_HOST_FDB_DEL:
697 err = dsa_switch_host_fdb_del(ds, info);
698 break;
18596f50
GM
699 case DSA_NOTIFIER_HSR_JOIN:
700 err = dsa_switch_hsr_join(ds, info);
701 break;
702 case DSA_NOTIFIER_HSR_LEAVE:
703 err = dsa_switch_hsr_leave(ds, info);
704 break;
058102a6
TW
705 case DSA_NOTIFIER_LAG_CHANGE:
706 err = dsa_switch_lag_change(ds, info);
707 break;
708 case DSA_NOTIFIER_LAG_JOIN:
709 err = dsa_switch_lag_join(ds, info);
710 break;
711 case DSA_NOTIFIER_LAG_LEAVE:
712 err = dsa_switch_lag_leave(ds, info);
713 break;
8ae5bcdc
VD
714 case DSA_NOTIFIER_MDB_ADD:
715 err = dsa_switch_mdb_add(ds, info);
716 break;
717 case DSA_NOTIFIER_MDB_DEL:
718 err = dsa_switch_mdb_del(ds, info);
719 break;
b8e997c4
VO
720 case DSA_NOTIFIER_HOST_MDB_ADD:
721 err = dsa_switch_host_mdb_add(ds, info);
722 break;
723 case DSA_NOTIFIER_HOST_MDB_DEL:
724 err = dsa_switch_host_mdb_del(ds, info);
725 break;
d0c627b8
VD
726 case DSA_NOTIFIER_VLAN_ADD:
727 err = dsa_switch_vlan_add(ds, info);
728 break;
729 case DSA_NOTIFIER_VLAN_DEL:
730 err = dsa_switch_vlan_del(ds, info);
731 break;
bfcb8132
VO
732 case DSA_NOTIFIER_MTU:
733 err = dsa_switch_mtu(ds, info);
734 break;
53da0eba
VO
735 case DSA_NOTIFIER_TAG_PROTO:
736 err = dsa_switch_change_tag_proto(ds, info);
737 break;
c595c433
HV
738 case DSA_NOTIFIER_MRP_ADD:
739 err = dsa_switch_mrp_add(ds, info);
740 break;
741 case DSA_NOTIFIER_MRP_DEL:
742 err = dsa_switch_mrp_del(ds, info);
743 break;
744 case DSA_NOTIFIER_MRP_ADD_RING_ROLE:
745 err = dsa_switch_mrp_add_ring_role(ds, info);
746 break;
747 case DSA_NOTIFIER_MRP_DEL_RING_ROLE:
748 err = dsa_switch_mrp_del_ring_role(ds, info);
749 break;
c64b9c05
VO
750 case DSA_NOTIFIER_TAG_8021Q_VLAN_ADD:
751 err = dsa_switch_tag_8021q_vlan_add(ds, info);
752 break;
753 case DSA_NOTIFIER_TAG_8021Q_VLAN_DEL:
754 err = dsa_switch_tag_8021q_vlan_del(ds, info);
755 break;
f515f192
VD
756 default:
757 err = -EOPNOTSUPP;
758 break;
759 }
760
f515f192
VD
761 if (err)
762 dev_dbg(ds->dev, "breaking chain for DSA event %lu (%d)\n",
763 event, err);
764
765 return notifier_from_errno(err);
766}
767
768int dsa_switch_register_notifier(struct dsa_switch *ds)
769{
770 ds->nb.notifier_call = dsa_switch_event;
771
772 return raw_notifier_chain_register(&ds->dst->nh, &ds->nb);
773}
774
775void dsa_switch_unregister_notifier(struct dsa_switch *ds)
776{
777 int err;
778
779 err = raw_notifier_chain_unregister(&ds->dst->nh, &ds->nb);
780 if (err)
781 dev_err(ds->dev, "failed to unregister notifier (%d)\n", err);
782}