Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * include/net/dsa.h - Driver for Distributed Switch Architecture switch chips
4 * Copyright (c) 2008-2009 Marvell Semiconductor
5 */
6
7#ifndef __LINUX_NET_DSA_H
8#define __LINUX_NET_DSA_H
9
10#include <linux/if.h>
11#include <linux/if_ether.h>
12#include <linux/list.h>
13#include <linux/notifier.h>
14#include <linux/timer.h>
15#include <linux/workqueue.h>
16#include <linux/of.h>
17#include <linux/ethtool.h>
18#include <linux/net_tstamp.h>
19#include <linux/phy.h>
20#include <linux/platform_data/dsa.h>
21#include <linux/phylink.h>
22#include <net/devlink.h>
23#include <net/switchdev.h>
24
25struct dsa_8021q_context;
26struct tc_action;
27struct phy_device;
28struct fixed_phy_status;
29struct phylink_link_state;
30
31#define DSA_TAG_PROTO_NONE_VALUE 0
32#define DSA_TAG_PROTO_BRCM_VALUE 1
33#define DSA_TAG_PROTO_BRCM_PREPEND_VALUE 2
34#define DSA_TAG_PROTO_DSA_VALUE 3
35#define DSA_TAG_PROTO_EDSA_VALUE 4
36#define DSA_TAG_PROTO_GSWIP_VALUE 5
37#define DSA_TAG_PROTO_KSZ9477_VALUE 6
38#define DSA_TAG_PROTO_KSZ9893_VALUE 7
39#define DSA_TAG_PROTO_LAN9303_VALUE 8
40#define DSA_TAG_PROTO_MTK_VALUE 9
41#define DSA_TAG_PROTO_QCA_VALUE 10
42#define DSA_TAG_PROTO_TRAILER_VALUE 11
43#define DSA_TAG_PROTO_8021Q_VALUE 12
44#define DSA_TAG_PROTO_SJA1105_VALUE 13
45#define DSA_TAG_PROTO_KSZ8795_VALUE 14
46#define DSA_TAG_PROTO_OCELOT_VALUE 15
47#define DSA_TAG_PROTO_AR9331_VALUE 16
48#define DSA_TAG_PROTO_RTL4_A_VALUE 17
49#define DSA_TAG_PROTO_HELLCREEK_VALUE 18
50#define DSA_TAG_PROTO_XRS700X_VALUE 19
51#define DSA_TAG_PROTO_OCELOT_8021Q_VALUE 20
52#define DSA_TAG_PROTO_SEVILLE_VALUE 21
53#define DSA_TAG_PROTO_BRCM_LEGACY_VALUE 22
54#define DSA_TAG_PROTO_SJA1110_VALUE 23
55#define DSA_TAG_PROTO_RTL8_4_VALUE 24
56#define DSA_TAG_PROTO_RTL8_4T_VALUE 25
57#define DSA_TAG_PROTO_RZN1_A5PSW_VALUE 26
58#define DSA_TAG_PROTO_LAN937X_VALUE 27
59
60enum dsa_tag_protocol {
61 DSA_TAG_PROTO_NONE = DSA_TAG_PROTO_NONE_VALUE,
62 DSA_TAG_PROTO_BRCM = DSA_TAG_PROTO_BRCM_VALUE,
63 DSA_TAG_PROTO_BRCM_LEGACY = DSA_TAG_PROTO_BRCM_LEGACY_VALUE,
64 DSA_TAG_PROTO_BRCM_PREPEND = DSA_TAG_PROTO_BRCM_PREPEND_VALUE,
65 DSA_TAG_PROTO_DSA = DSA_TAG_PROTO_DSA_VALUE,
66 DSA_TAG_PROTO_EDSA = DSA_TAG_PROTO_EDSA_VALUE,
67 DSA_TAG_PROTO_GSWIP = DSA_TAG_PROTO_GSWIP_VALUE,
68 DSA_TAG_PROTO_KSZ9477 = DSA_TAG_PROTO_KSZ9477_VALUE,
69 DSA_TAG_PROTO_KSZ9893 = DSA_TAG_PROTO_KSZ9893_VALUE,
70 DSA_TAG_PROTO_LAN9303 = DSA_TAG_PROTO_LAN9303_VALUE,
71 DSA_TAG_PROTO_MTK = DSA_TAG_PROTO_MTK_VALUE,
72 DSA_TAG_PROTO_QCA = DSA_TAG_PROTO_QCA_VALUE,
73 DSA_TAG_PROTO_TRAILER = DSA_TAG_PROTO_TRAILER_VALUE,
74 DSA_TAG_PROTO_8021Q = DSA_TAG_PROTO_8021Q_VALUE,
75 DSA_TAG_PROTO_SJA1105 = DSA_TAG_PROTO_SJA1105_VALUE,
76 DSA_TAG_PROTO_KSZ8795 = DSA_TAG_PROTO_KSZ8795_VALUE,
77 DSA_TAG_PROTO_OCELOT = DSA_TAG_PROTO_OCELOT_VALUE,
78 DSA_TAG_PROTO_AR9331 = DSA_TAG_PROTO_AR9331_VALUE,
79 DSA_TAG_PROTO_RTL4_A = DSA_TAG_PROTO_RTL4_A_VALUE,
80 DSA_TAG_PROTO_HELLCREEK = DSA_TAG_PROTO_HELLCREEK_VALUE,
81 DSA_TAG_PROTO_XRS700X = DSA_TAG_PROTO_XRS700X_VALUE,
82 DSA_TAG_PROTO_OCELOT_8021Q = DSA_TAG_PROTO_OCELOT_8021Q_VALUE,
83 DSA_TAG_PROTO_SEVILLE = DSA_TAG_PROTO_SEVILLE_VALUE,
84 DSA_TAG_PROTO_SJA1110 = DSA_TAG_PROTO_SJA1110_VALUE,
85 DSA_TAG_PROTO_RTL8_4 = DSA_TAG_PROTO_RTL8_4_VALUE,
86 DSA_TAG_PROTO_RTL8_4T = DSA_TAG_PROTO_RTL8_4T_VALUE,
87 DSA_TAG_PROTO_RZN1_A5PSW = DSA_TAG_PROTO_RZN1_A5PSW_VALUE,
88 DSA_TAG_PROTO_LAN937X = DSA_TAG_PROTO_LAN937X_VALUE,
89};
90
91struct dsa_switch;
92
93struct dsa_device_ops {
94 struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev);
95 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev);
96 void (*flow_dissect)(const struct sk_buff *skb, __be16 *proto,
97 int *offset);
98 int (*connect)(struct dsa_switch *ds);
99 void (*disconnect)(struct dsa_switch *ds);
100 unsigned int needed_headroom;
101 unsigned int needed_tailroom;
102 const char *name;
103 enum dsa_tag_protocol proto;
104 /* Some tagging protocols either mangle or shift the destination MAC
105 * address, in which case the DSA master would drop packets on ingress
106 * if what it understands out of the destination MAC address is not in
107 * its RX filter.
108 */
109 bool promisc_on_master;
110};
111
112struct dsa_lag {
113 struct net_device *dev;
114 unsigned int id;
115 struct mutex fdb_lock;
116 struct list_head fdbs;
117 refcount_t refcount;
118};
119
120struct dsa_switch_tree {
121 struct list_head list;
122
123 /* List of switch ports */
124 struct list_head ports;
125
126 /* Notifier chain for switch-wide events */
127 struct raw_notifier_head nh;
128
129 /* Tree identifier */
130 unsigned int index;
131
132 /* Number of switches attached to this tree */
133 struct kref refcount;
134
135 /* Maps offloaded LAG netdevs to a zero-based linear ID for
136 * drivers that need it.
137 */
138 struct dsa_lag **lags;
139
140 /* Tagging protocol operations */
141 const struct dsa_device_ops *tag_ops;
142
143 /* Default tagging protocol preferred by the switches in this
144 * tree.
145 */
146 enum dsa_tag_protocol default_proto;
147
148 /* Has this tree been applied to the hardware? */
149 bool setup;
150
151 /*
152 * Configuration data for the platform device that owns
153 * this dsa switch tree instance.
154 */
155 struct dsa_platform_data *pd;
156
157 /* List of DSA links composing the routing table */
158 struct list_head rtable;
159
160 /* Length of "lags" array */
161 unsigned int lags_len;
162
163 /* Track the largest switch index within a tree */
164 unsigned int last_switch;
165};
166
167/* LAG IDs are one-based, the dst->lags array is zero-based */
168#define dsa_lags_foreach_id(_id, _dst) \
169 for ((_id) = 1; (_id) <= (_dst)->lags_len; (_id)++) \
170 if ((_dst)->lags[(_id) - 1])
171
172#define dsa_lag_foreach_port(_dp, _dst, _lag) \
173 list_for_each_entry((_dp), &(_dst)->ports, list) \
174 if (dsa_port_offloads_lag((_dp), (_lag)))
175
176#define dsa_hsr_foreach_port(_dp, _ds, _hsr) \
177 list_for_each_entry((_dp), &(_ds)->dst->ports, list) \
178 if ((_dp)->ds == (_ds) && (_dp)->hsr_dev == (_hsr))
179
180static inline struct dsa_lag *dsa_lag_by_id(struct dsa_switch_tree *dst,
181 unsigned int id)
182{
183 /* DSA LAG IDs are one-based, dst->lags is zero-based */
184 return dst->lags[id - 1];
185}
186
187static inline int dsa_lag_id(struct dsa_switch_tree *dst,
188 struct net_device *lag_dev)
189{
190 unsigned int id;
191
192 dsa_lags_foreach_id(id, dst) {
193 struct dsa_lag *lag = dsa_lag_by_id(dst, id);
194
195 if (lag->dev == lag_dev)
196 return lag->id;
197 }
198
199 return -ENODEV;
200}
201
202/* TC matchall action types */
203enum dsa_port_mall_action_type {
204 DSA_PORT_MALL_MIRROR,
205 DSA_PORT_MALL_POLICER,
206};
207
208/* TC mirroring entry */
209struct dsa_mall_mirror_tc_entry {
210 u8 to_local_port;
211 bool ingress;
212};
213
214/* TC port policer entry */
215struct dsa_mall_policer_tc_entry {
216 u32 burst;
217 u64 rate_bytes_per_sec;
218};
219
220/* TC matchall entry */
221struct dsa_mall_tc_entry {
222 struct list_head list;
223 unsigned long cookie;
224 enum dsa_port_mall_action_type type;
225 union {
226 struct dsa_mall_mirror_tc_entry mirror;
227 struct dsa_mall_policer_tc_entry policer;
228 };
229};
230
231struct dsa_bridge {
232 struct net_device *dev;
233 unsigned int num;
234 bool tx_fwd_offload;
235 refcount_t refcount;
236};
237
238struct dsa_port {
239 /* A CPU port is physically connected to a master device.
240 * A user port exposed to userspace has a slave device.
241 */
242 union {
243 struct net_device *master;
244 struct net_device *slave;
245 };
246
247 /* Copy of the tagging protocol operations, for quicker access
248 * in the data path. Valid only for the CPU ports.
249 */
250 const struct dsa_device_ops *tag_ops;
251
252 /* Copies for faster access in master receive hot path */
253 struct dsa_switch_tree *dst;
254 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev);
255
256 struct dsa_switch *ds;
257
258 unsigned int index;
259
260 enum {
261 DSA_PORT_TYPE_UNUSED = 0,
262 DSA_PORT_TYPE_CPU,
263 DSA_PORT_TYPE_DSA,
264 DSA_PORT_TYPE_USER,
265 } type;
266
267 const char *name;
268 struct dsa_port *cpu_dp;
269 u8 mac[ETH_ALEN];
270
271 u8 stp_state;
272
273 /* Warning: the following bit fields are not atomic, and updating them
274 * can only be done from code paths where concurrency is not possible
275 * (probe time or under rtnl_lock).
276 */
277 u8 vlan_filtering:1;
278
279 /* Managed by DSA on user ports and by drivers on CPU and DSA ports */
280 u8 learning:1;
281
282 u8 lag_tx_enabled:1;
283
284 /* Master state bits, valid only on CPU ports */
285 u8 master_admin_up:1;
286 u8 master_oper_up:1;
287
288 /* Valid only on user ports */
289 u8 cpu_port_in_lag:1;
290
291 u8 setup:1;
292
293 struct device_node *dn;
294 unsigned int ageing_time;
295
296 struct dsa_bridge *bridge;
297 struct devlink_port devlink_port;
298 struct phylink *pl;
299 struct phylink_config pl_config;
300 struct dsa_lag *lag;
301 struct net_device *hsr_dev;
302
303 struct list_head list;
304
305 /*
306 * Original copy of the master netdev ethtool_ops
307 */
308 const struct ethtool_ops *orig_ethtool_ops;
309
310 /* List of MAC addresses that must be forwarded on this port.
311 * These are only valid on CPU ports and DSA links.
312 */
313 struct mutex addr_lists_lock;
314 struct list_head fdbs;
315 struct list_head mdbs;
316
317 /* List of VLANs that CPU and DSA ports are members of. */
318 struct mutex vlans_lock;
319 struct list_head vlans;
320};
321
322/* TODO: ideally DSA ports would have a single dp->link_dp member,
323 * and no dst->rtable nor this struct dsa_link would be needed,
324 * but this would require some more complex tree walking,
325 * so keep it stupid at the moment and list them all.
326 */
327struct dsa_link {
328 struct dsa_port *dp;
329 struct dsa_port *link_dp;
330 struct list_head list;
331};
332
333enum dsa_db_type {
334 DSA_DB_PORT,
335 DSA_DB_LAG,
336 DSA_DB_BRIDGE,
337};
338
339struct dsa_db {
340 enum dsa_db_type type;
341
342 union {
343 const struct dsa_port *dp;
344 struct dsa_lag lag;
345 struct dsa_bridge bridge;
346 };
347};
348
349struct dsa_mac_addr {
350 unsigned char addr[ETH_ALEN];
351 u16 vid;
352 refcount_t refcount;
353 struct list_head list;
354 struct dsa_db db;
355};
356
357struct dsa_vlan {
358 u16 vid;
359 refcount_t refcount;
360 struct list_head list;
361};
362
363struct dsa_switch {
364 struct device *dev;
365
366 /*
367 * Parent switch tree, and switch index.
368 */
369 struct dsa_switch_tree *dst;
370 unsigned int index;
371
372 /* Warning: the following bit fields are not atomic, and updating them
373 * can only be done from code paths where concurrency is not possible
374 * (probe time or under rtnl_lock).
375 */
376 u32 setup:1;
377
378 /* Disallow bridge core from requesting different VLAN awareness
379 * settings on ports if not hardware-supported
380 */
381 u32 vlan_filtering_is_global:1;
382
383 /* Keep VLAN filtering enabled on ports not offloading any upper */
384 u32 needs_standalone_vlan_filtering:1;
385
386 /* Pass .port_vlan_add and .port_vlan_del to drivers even for bridges
387 * that have vlan_filtering=0. All drivers should ideally set this (and
388 * then the option would get removed), but it is unknown whether this
389 * would break things or not.
390 */
391 u32 configure_vlan_while_not_filtering:1;
392
393 /* If the switch driver always programs the CPU port as egress tagged
394 * despite the VLAN configuration indicating otherwise, then setting
395 * @untag_bridge_pvid will force the DSA receive path to pop the
396 * bridge's default_pvid VLAN tagged frames to offer a consistent
397 * behavior between a vlan_filtering=0 and vlan_filtering=1 bridge
398 * device.
399 */
400 u32 untag_bridge_pvid:1;
401
402 /* Let DSA manage the FDB entries towards the
403 * CPU, based on the software bridge database.
404 */
405 u32 assisted_learning_on_cpu_port:1;
406
407 /* In case vlan_filtering_is_global is set, the VLAN awareness state
408 * should be retrieved from here and not from the per-port settings.
409 */
410 u32 vlan_filtering:1;
411
412 /* For switches that only have the MRU configurable. To ensure the
413 * configured MTU is not exceeded, normalization of MRU on all bridged
414 * interfaces is needed.
415 */
416 u32 mtu_enforcement_ingress:1;
417
418 /* Drivers that isolate the FDBs of multiple bridges must set this
419 * to true to receive the bridge as an argument in .port_fdb_{add,del}
420 * and .port_mdb_{add,del}. Otherwise, the bridge.num will always be
421 * passed as zero.
422 */
423 u32 fdb_isolation:1;
424
425 /* Listener for switch fabric events */
426 struct notifier_block nb;
427
428 /*
429 * Give the switch driver somewhere to hang its private data
430 * structure.
431 */
432 void *priv;
433
434 void *tagger_data;
435
436 /*
437 * Configuration data for this switch.
438 */
439 struct dsa_chip_data *cd;
440
441 /*
442 * The switch operations.
443 */
444 const struct dsa_switch_ops *ops;
445
446 /*
447 * Slave mii_bus and devices for the individual ports.
448 */
449 u32 phys_mii_mask;
450 struct mii_bus *slave_mii_bus;
451
452 /* Ageing Time limits in msecs */
453 unsigned int ageing_time_min;
454 unsigned int ageing_time_max;
455
456 /* Storage for drivers using tag_8021q */
457 struct dsa_8021q_context *tag_8021q_ctx;
458
459 /* devlink used to represent this switch device */
460 struct devlink *devlink;
461
462 /* Number of switch port queues */
463 unsigned int num_tx_queues;
464
465 /* Drivers that benefit from having an ID associated with each
466 * offloaded LAG should set this to the maximum number of
467 * supported IDs. DSA will then maintain a mapping of _at
468 * least_ these many IDs, accessible to drivers via
469 * dsa_lag_id().
470 */
471 unsigned int num_lag_ids;
472
473 /* Drivers that support bridge forwarding offload or FDB isolation
474 * should set this to the maximum number of bridges spanning the same
475 * switch tree (or all trees, in the case of cross-tree bridging
476 * support) that can be offloaded.
477 */
478 unsigned int max_num_bridges;
479
480 unsigned int num_ports;
481};
482
483static inline struct dsa_port *dsa_to_port(struct dsa_switch *ds, int p)
484{
485 struct dsa_switch_tree *dst = ds->dst;
486 struct dsa_port *dp;
487
488 list_for_each_entry(dp, &dst->ports, list)
489 if (dp->ds == ds && dp->index == p)
490 return dp;
491
492 return NULL;
493}
494
495static inline bool dsa_port_is_dsa(struct dsa_port *port)
496{
497 return port->type == DSA_PORT_TYPE_DSA;
498}
499
500static inline bool dsa_port_is_cpu(struct dsa_port *port)
501{
502 return port->type == DSA_PORT_TYPE_CPU;
503}
504
505static inline bool dsa_port_is_user(struct dsa_port *dp)
506{
507 return dp->type == DSA_PORT_TYPE_USER;
508}
509
510static inline bool dsa_port_is_unused(struct dsa_port *dp)
511{
512 return dp->type == DSA_PORT_TYPE_UNUSED;
513}
514
515static inline bool dsa_port_master_is_operational(struct dsa_port *dp)
516{
517 return dsa_port_is_cpu(dp) && dp->master_admin_up &&
518 dp->master_oper_up;
519}
520
521static inline bool dsa_is_unused_port(struct dsa_switch *ds, int p)
522{
523 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_UNUSED;
524}
525
526static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p)
527{
528 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_CPU;
529}
530
531static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p)
532{
533 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_DSA;
534}
535
536static inline bool dsa_is_user_port(struct dsa_switch *ds, int p)
537{
538 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_USER;
539}
540
541#define dsa_tree_for_each_user_port(_dp, _dst) \
542 list_for_each_entry((_dp), &(_dst)->ports, list) \
543 if (dsa_port_is_user((_dp)))
544
545#define dsa_tree_for_each_user_port_continue_reverse(_dp, _dst) \
546 list_for_each_entry_continue_reverse((_dp), &(_dst)->ports, list) \
547 if (dsa_port_is_user((_dp)))
548
549#define dsa_tree_for_each_cpu_port(_dp, _dst) \
550 list_for_each_entry((_dp), &(_dst)->ports, list) \
551 if (dsa_port_is_cpu((_dp)))
552
553#define dsa_switch_for_each_port(_dp, _ds) \
554 list_for_each_entry((_dp), &(_ds)->dst->ports, list) \
555 if ((_dp)->ds == (_ds))
556
557#define dsa_switch_for_each_port_safe(_dp, _next, _ds) \
558 list_for_each_entry_safe((_dp), (_next), &(_ds)->dst->ports, list) \
559 if ((_dp)->ds == (_ds))
560
561#define dsa_switch_for_each_port_continue_reverse(_dp, _ds) \
562 list_for_each_entry_continue_reverse((_dp), &(_ds)->dst->ports, list) \
563 if ((_dp)->ds == (_ds))
564
565#define dsa_switch_for_each_available_port(_dp, _ds) \
566 dsa_switch_for_each_port((_dp), (_ds)) \
567 if (!dsa_port_is_unused((_dp)))
568
569#define dsa_switch_for_each_user_port(_dp, _ds) \
570 dsa_switch_for_each_port((_dp), (_ds)) \
571 if (dsa_port_is_user((_dp)))
572
573#define dsa_switch_for_each_cpu_port(_dp, _ds) \
574 dsa_switch_for_each_port((_dp), (_ds)) \
575 if (dsa_port_is_cpu((_dp)))
576
577#define dsa_switch_for_each_cpu_port_continue_reverse(_dp, _ds) \
578 dsa_switch_for_each_port_continue_reverse((_dp), (_ds)) \
579 if (dsa_port_is_cpu((_dp)))
580
581static inline u32 dsa_user_ports(struct dsa_switch *ds)
582{
583 struct dsa_port *dp;
584 u32 mask = 0;
585
586 dsa_switch_for_each_user_port(dp, ds)
587 mask |= BIT(dp->index);
588
589 return mask;
590}
591
592static inline u32 dsa_cpu_ports(struct dsa_switch *ds)
593{
594 struct dsa_port *cpu_dp;
595 u32 mask = 0;
596
597 dsa_switch_for_each_cpu_port(cpu_dp, ds)
598 mask |= BIT(cpu_dp->index);
599
600 return mask;
601}
602
603/* Return the local port used to reach an arbitrary switch device */
604static inline unsigned int dsa_routing_port(struct dsa_switch *ds, int device)
605{
606 struct dsa_switch_tree *dst = ds->dst;
607 struct dsa_link *dl;
608
609 list_for_each_entry(dl, &dst->rtable, list)
610 if (dl->dp->ds == ds && dl->link_dp->ds->index == device)
611 return dl->dp->index;
612
613 return ds->num_ports;
614}
615
616/* Return the local port used to reach an arbitrary switch port */
617static inline unsigned int dsa_towards_port(struct dsa_switch *ds, int device,
618 int port)
619{
620 if (device == ds->index)
621 return port;
622 else
623 return dsa_routing_port(ds, device);
624}
625
626/* Return the local port used to reach the dedicated CPU port */
627static inline unsigned int dsa_upstream_port(struct dsa_switch *ds, int port)
628{
629 const struct dsa_port *dp = dsa_to_port(ds, port);
630 const struct dsa_port *cpu_dp = dp->cpu_dp;
631
632 if (!cpu_dp)
633 return port;
634
635 return dsa_towards_port(ds, cpu_dp->ds->index, cpu_dp->index);
636}
637
638/* Return true if this is the local port used to reach the CPU port */
639static inline bool dsa_is_upstream_port(struct dsa_switch *ds, int port)
640{
641 if (dsa_is_unused_port(ds, port))
642 return false;
643
644 return port == dsa_upstream_port(ds, port);
645}
646
647/* Return true if this is a DSA port leading away from the CPU */
648static inline bool dsa_is_downstream_port(struct dsa_switch *ds, int port)
649{
650 return dsa_is_dsa_port(ds, port) && !dsa_is_upstream_port(ds, port);
651}
652
653/* Return the local port used to reach the CPU port */
654static inline unsigned int dsa_switch_upstream_port(struct dsa_switch *ds)
655{
656 struct dsa_port *dp;
657
658 dsa_switch_for_each_available_port(dp, ds) {
659 return dsa_upstream_port(ds, dp->index);
660 }
661
662 return ds->num_ports;
663}
664
665/* Return true if @upstream_ds is an upstream switch of @downstream_ds, meaning
666 * that the routing port from @downstream_ds to @upstream_ds is also the port
667 * which @downstream_ds uses to reach its dedicated CPU.
668 */
669static inline bool dsa_switch_is_upstream_of(struct dsa_switch *upstream_ds,
670 struct dsa_switch *downstream_ds)
671{
672 int routing_port;
673
674 if (upstream_ds == downstream_ds)
675 return true;
676
677 routing_port = dsa_routing_port(downstream_ds, upstream_ds->index);
678
679 return dsa_is_upstream_port(downstream_ds, routing_port);
680}
681
682static inline bool dsa_port_is_vlan_filtering(const struct dsa_port *dp)
683{
684 const struct dsa_switch *ds = dp->ds;
685
686 if (ds->vlan_filtering_is_global)
687 return ds->vlan_filtering;
688 else
689 return dp->vlan_filtering;
690}
691
692static inline unsigned int dsa_port_lag_id_get(struct dsa_port *dp)
693{
694 return dp->lag ? dp->lag->id : 0;
695}
696
697static inline struct net_device *dsa_port_lag_dev_get(struct dsa_port *dp)
698{
699 return dp->lag ? dp->lag->dev : NULL;
700}
701
702static inline bool dsa_port_offloads_lag(struct dsa_port *dp,
703 const struct dsa_lag *lag)
704{
705 return dsa_port_lag_dev_get(dp) == lag->dev;
706}
707
708static inline struct net_device *dsa_port_to_master(const struct dsa_port *dp)
709{
710 if (dp->cpu_port_in_lag)
711 return dsa_port_lag_dev_get(dp->cpu_dp);
712
713 return dp->cpu_dp->master;
714}
715
716static inline
717struct net_device *dsa_port_to_bridge_port(const struct dsa_port *dp)
718{
719 if (!dp->bridge)
720 return NULL;
721
722 if (dp->lag)
723 return dp->lag->dev;
724 else if (dp->hsr_dev)
725 return dp->hsr_dev;
726
727 return dp->slave;
728}
729
730static inline struct net_device *
731dsa_port_bridge_dev_get(const struct dsa_port *dp)
732{
733 return dp->bridge ? dp->bridge->dev : NULL;
734}
735
736static inline unsigned int dsa_port_bridge_num_get(struct dsa_port *dp)
737{
738 return dp->bridge ? dp->bridge->num : 0;
739}
740
741static inline bool dsa_port_bridge_same(const struct dsa_port *a,
742 const struct dsa_port *b)
743{
744 struct net_device *br_a = dsa_port_bridge_dev_get(a);
745 struct net_device *br_b = dsa_port_bridge_dev_get(b);
746
747 /* Standalone ports are not in the same bridge with one another */
748 return (!br_a || !br_b) ? false : (br_a == br_b);
749}
750
751static inline bool dsa_port_offloads_bridge_port(struct dsa_port *dp,
752 const struct net_device *dev)
753{
754 return dsa_port_to_bridge_port(dp) == dev;
755}
756
757static inline bool
758dsa_port_offloads_bridge_dev(struct dsa_port *dp,
759 const struct net_device *bridge_dev)
760{
761 /* DSA ports connected to a bridge, and event was emitted
762 * for the bridge.
763 */
764 return dsa_port_bridge_dev_get(dp) == bridge_dev;
765}
766
767static inline bool dsa_port_offloads_bridge(struct dsa_port *dp,
768 const struct dsa_bridge *bridge)
769{
770 return dsa_port_bridge_dev_get(dp) == bridge->dev;
771}
772
773/* Returns true if any port of this tree offloads the given net_device */
774static inline bool dsa_tree_offloads_bridge_port(struct dsa_switch_tree *dst,
775 const struct net_device *dev)
776{
777 struct dsa_port *dp;
778
779 list_for_each_entry(dp, &dst->ports, list)
780 if (dsa_port_offloads_bridge_port(dp, dev))
781 return true;
782
783 return false;
784}
785
786/* Returns true if any port of this tree offloads the given bridge */
787static inline bool
788dsa_tree_offloads_bridge_dev(struct dsa_switch_tree *dst,
789 const struct net_device *bridge_dev)
790{
791 struct dsa_port *dp;
792
793 list_for_each_entry(dp, &dst->ports, list)
794 if (dsa_port_offloads_bridge_dev(dp, bridge_dev))
795 return true;
796
797 return false;
798}
799
800static inline bool dsa_port_tree_same(const struct dsa_port *a,
801 const struct dsa_port *b)
802{
803 return a->ds->dst == b->ds->dst;
804}
805
806typedef int dsa_fdb_dump_cb_t(const unsigned char *addr, u16 vid,
807 bool is_static, void *data);
808struct dsa_switch_ops {
809 /*
810 * Tagging protocol helpers called for the CPU ports and DSA links.
811 * @get_tag_protocol retrieves the initial tagging protocol and is
812 * mandatory. Switches which can operate using multiple tagging
813 * protocols should implement @change_tag_protocol and report in
814 * @get_tag_protocol the tagger in current use.
815 */
816 enum dsa_tag_protocol (*get_tag_protocol)(struct dsa_switch *ds,
817 int port,
818 enum dsa_tag_protocol mprot);
819 int (*change_tag_protocol)(struct dsa_switch *ds,
820 enum dsa_tag_protocol proto);
821 /*
822 * Method for switch drivers to connect to the tagging protocol driver
823 * in current use. The switch driver can provide handlers for certain
824 * types of packets for switch management.
825 */
826 int (*connect_tag_protocol)(struct dsa_switch *ds,
827 enum dsa_tag_protocol proto);
828
829 int (*port_change_master)(struct dsa_switch *ds, int port,
830 struct net_device *master,
831 struct netlink_ext_ack *extack);
832
833 /* Optional switch-wide initialization and destruction methods */
834 int (*setup)(struct dsa_switch *ds);
835 void (*teardown)(struct dsa_switch *ds);
836
837 /* Per-port initialization and destruction methods. Mandatory if the
838 * driver registers devlink port regions, optional otherwise.
839 */
840 int (*port_setup)(struct dsa_switch *ds, int port);
841 void (*port_teardown)(struct dsa_switch *ds, int port);
842
843 u32 (*get_phy_flags)(struct dsa_switch *ds, int port);
844
845 /*
846 * Access to the switch's PHY registers.
847 */
848 int (*phy_read)(struct dsa_switch *ds, int port, int regnum);
849 int (*phy_write)(struct dsa_switch *ds, int port,
850 int regnum, u16 val);
851
852 /*
853 * Link state adjustment (called from libphy)
854 */
855 void (*adjust_link)(struct dsa_switch *ds, int port,
856 struct phy_device *phydev);
857 void (*fixed_link_update)(struct dsa_switch *ds, int port,
858 struct fixed_phy_status *st);
859
860 /*
861 * PHYLINK integration
862 */
863 void (*phylink_get_caps)(struct dsa_switch *ds, int port,
864 struct phylink_config *config);
865 struct phylink_pcs *(*phylink_mac_select_pcs)(struct dsa_switch *ds,
866 int port,
867 phy_interface_t iface);
868 int (*phylink_mac_link_state)(struct dsa_switch *ds, int port,
869 struct phylink_link_state *state);
870 void (*phylink_mac_config)(struct dsa_switch *ds, int port,
871 unsigned int mode,
872 const struct phylink_link_state *state);
873 void (*phylink_mac_an_restart)(struct dsa_switch *ds, int port);
874 void (*phylink_mac_link_down)(struct dsa_switch *ds, int port,
875 unsigned int mode,
876 phy_interface_t interface);
877 void (*phylink_mac_link_up)(struct dsa_switch *ds, int port,
878 unsigned int mode,
879 phy_interface_t interface,
880 struct phy_device *phydev,
881 int speed, int duplex,
882 bool tx_pause, bool rx_pause);
883 void (*phylink_fixed_state)(struct dsa_switch *ds, int port,
884 struct phylink_link_state *state);
885 /*
886 * Port statistics counters.
887 */
888 void (*get_strings)(struct dsa_switch *ds, int port,
889 u32 stringset, uint8_t *data);
890 void (*get_ethtool_stats)(struct dsa_switch *ds,
891 int port, uint64_t *data);
892 int (*get_sset_count)(struct dsa_switch *ds, int port, int sset);
893 void (*get_ethtool_phy_stats)(struct dsa_switch *ds,
894 int port, uint64_t *data);
895 void (*get_eth_phy_stats)(struct dsa_switch *ds, int port,
896 struct ethtool_eth_phy_stats *phy_stats);
897 void (*get_eth_mac_stats)(struct dsa_switch *ds, int port,
898 struct ethtool_eth_mac_stats *mac_stats);
899 void (*get_eth_ctrl_stats)(struct dsa_switch *ds, int port,
900 struct ethtool_eth_ctrl_stats *ctrl_stats);
901 void (*get_rmon_stats)(struct dsa_switch *ds, int port,
902 struct ethtool_rmon_stats *rmon_stats,
903 const struct ethtool_rmon_hist_range **ranges);
904 void (*get_stats64)(struct dsa_switch *ds, int port,
905 struct rtnl_link_stats64 *s);
906 void (*get_pause_stats)(struct dsa_switch *ds, int port,
907 struct ethtool_pause_stats *pause_stats);
908 void (*self_test)(struct dsa_switch *ds, int port,
909 struct ethtool_test *etest, u64 *data);
910
911 /*
912 * ethtool Wake-on-LAN
913 */
914 void (*get_wol)(struct dsa_switch *ds, int port,
915 struct ethtool_wolinfo *w);
916 int (*set_wol)(struct dsa_switch *ds, int port,
917 struct ethtool_wolinfo *w);
918
919 /*
920 * ethtool timestamp info
921 */
922 int (*get_ts_info)(struct dsa_switch *ds, int port,
923 struct ethtool_ts_info *ts);
924
925 /*
926 * ethtool MAC merge layer
927 */
928 int (*get_mm)(struct dsa_switch *ds, int port,
929 struct ethtool_mm_state *state);
930 int (*set_mm)(struct dsa_switch *ds, int port,
931 struct ethtool_mm_cfg *cfg,
932 struct netlink_ext_ack *extack);
933 void (*get_mm_stats)(struct dsa_switch *ds, int port,
934 struct ethtool_mm_stats *stats);
935
936 /*
937 * DCB ops
938 */
939 int (*port_get_default_prio)(struct dsa_switch *ds, int port);
940 int (*port_set_default_prio)(struct dsa_switch *ds, int port,
941 u8 prio);
942 int (*port_get_dscp_prio)(struct dsa_switch *ds, int port, u8 dscp);
943 int (*port_add_dscp_prio)(struct dsa_switch *ds, int port, u8 dscp,
944 u8 prio);
945 int (*port_del_dscp_prio)(struct dsa_switch *ds, int port, u8 dscp,
946 u8 prio);
947
948 /*
949 * Suspend and resume
950 */
951 int (*suspend)(struct dsa_switch *ds);
952 int (*resume)(struct dsa_switch *ds);
953
954 /*
955 * Port enable/disable
956 */
957 int (*port_enable)(struct dsa_switch *ds, int port,
958 struct phy_device *phy);
959 void (*port_disable)(struct dsa_switch *ds, int port);
960
961 /*
962 * Compatibility between device trees defining multiple CPU ports and
963 * drivers which are not OK to use by default the numerically smallest
964 * CPU port of a switch for its local ports. This can return NULL,
965 * meaning "don't know/don't care".
966 */
967 struct dsa_port *(*preferred_default_local_cpu_port)(struct dsa_switch *ds);
968
969 /*
970 * Port's MAC EEE settings
971 */
972 int (*set_mac_eee)(struct dsa_switch *ds, int port,
973 struct ethtool_eee *e);
974 int (*get_mac_eee)(struct dsa_switch *ds, int port,
975 struct ethtool_eee *e);
976
977 /* EEPROM access */
978 int (*get_eeprom_len)(struct dsa_switch *ds);
979 int (*get_eeprom)(struct dsa_switch *ds,
980 struct ethtool_eeprom *eeprom, u8 *data);
981 int (*set_eeprom)(struct dsa_switch *ds,
982 struct ethtool_eeprom *eeprom, u8 *data);
983
984 /*
985 * Register access.
986 */
987 int (*get_regs_len)(struct dsa_switch *ds, int port);
988 void (*get_regs)(struct dsa_switch *ds, int port,
989 struct ethtool_regs *regs, void *p);
990
991 /*
992 * Upper device tracking.
993 */
994 int (*port_prechangeupper)(struct dsa_switch *ds, int port,
995 struct netdev_notifier_changeupper_info *info);
996
997 /*
998 * Bridge integration
999 */
1000 int (*set_ageing_time)(struct dsa_switch *ds, unsigned int msecs);
1001 int (*port_bridge_join)(struct dsa_switch *ds, int port,
1002 struct dsa_bridge bridge,
1003 bool *tx_fwd_offload,
1004 struct netlink_ext_ack *extack);
1005 void (*port_bridge_leave)(struct dsa_switch *ds, int port,
1006 struct dsa_bridge bridge);
1007 void (*port_stp_state_set)(struct dsa_switch *ds, int port,
1008 u8 state);
1009 int (*port_mst_state_set)(struct dsa_switch *ds, int port,
1010 const struct switchdev_mst_state *state);
1011 void (*port_fast_age)(struct dsa_switch *ds, int port);
1012 int (*port_vlan_fast_age)(struct dsa_switch *ds, int port, u16 vid);
1013 int (*port_pre_bridge_flags)(struct dsa_switch *ds, int port,
1014 struct switchdev_brport_flags flags,
1015 struct netlink_ext_ack *extack);
1016 int (*port_bridge_flags)(struct dsa_switch *ds, int port,
1017 struct switchdev_brport_flags flags,
1018 struct netlink_ext_ack *extack);
1019 void (*port_set_host_flood)(struct dsa_switch *ds, int port,
1020 bool uc, bool mc);
1021
1022 /*
1023 * VLAN support
1024 */
1025 int (*port_vlan_filtering)(struct dsa_switch *ds, int port,
1026 bool vlan_filtering,
1027 struct netlink_ext_ack *extack);
1028 int (*port_vlan_add)(struct dsa_switch *ds, int port,
1029 const struct switchdev_obj_port_vlan *vlan,
1030 struct netlink_ext_ack *extack);
1031 int (*port_vlan_del)(struct dsa_switch *ds, int port,
1032 const struct switchdev_obj_port_vlan *vlan);
1033 int (*vlan_msti_set)(struct dsa_switch *ds, struct dsa_bridge bridge,
1034 const struct switchdev_vlan_msti *msti);
1035
1036 /*
1037 * Forwarding database
1038 */
1039 int (*port_fdb_add)(struct dsa_switch *ds, int port,
1040 const unsigned char *addr, u16 vid,
1041 struct dsa_db db);
1042 int (*port_fdb_del)(struct dsa_switch *ds, int port,
1043 const unsigned char *addr, u16 vid,
1044 struct dsa_db db);
1045 int (*port_fdb_dump)(struct dsa_switch *ds, int port,
1046 dsa_fdb_dump_cb_t *cb, void *data);
1047 int (*lag_fdb_add)(struct dsa_switch *ds, struct dsa_lag lag,
1048 const unsigned char *addr, u16 vid,
1049 struct dsa_db db);
1050 int (*lag_fdb_del)(struct dsa_switch *ds, struct dsa_lag lag,
1051 const unsigned char *addr, u16 vid,
1052 struct dsa_db db);
1053
1054 /*
1055 * Multicast database
1056 */
1057 int (*port_mdb_add)(struct dsa_switch *ds, int port,
1058 const struct switchdev_obj_port_mdb *mdb,
1059 struct dsa_db db);
1060 int (*port_mdb_del)(struct dsa_switch *ds, int port,
1061 const struct switchdev_obj_port_mdb *mdb,
1062 struct dsa_db db);
1063 /*
1064 * RXNFC
1065 */
1066 int (*get_rxnfc)(struct dsa_switch *ds, int port,
1067 struct ethtool_rxnfc *nfc, u32 *rule_locs);
1068 int (*set_rxnfc)(struct dsa_switch *ds, int port,
1069 struct ethtool_rxnfc *nfc);
1070
1071 /*
1072 * TC integration
1073 */
1074 int (*cls_flower_add)(struct dsa_switch *ds, int port,
1075 struct flow_cls_offload *cls, bool ingress);
1076 int (*cls_flower_del)(struct dsa_switch *ds, int port,
1077 struct flow_cls_offload *cls, bool ingress);
1078 int (*cls_flower_stats)(struct dsa_switch *ds, int port,
1079 struct flow_cls_offload *cls, bool ingress);
1080 int (*port_mirror_add)(struct dsa_switch *ds, int port,
1081 struct dsa_mall_mirror_tc_entry *mirror,
1082 bool ingress, struct netlink_ext_ack *extack);
1083 void (*port_mirror_del)(struct dsa_switch *ds, int port,
1084 struct dsa_mall_mirror_tc_entry *mirror);
1085 int (*port_policer_add)(struct dsa_switch *ds, int port,
1086 struct dsa_mall_policer_tc_entry *policer);
1087 void (*port_policer_del)(struct dsa_switch *ds, int port);
1088 int (*port_setup_tc)(struct dsa_switch *ds, int port,
1089 enum tc_setup_type type, void *type_data);
1090
1091 /*
1092 * Cross-chip operations
1093 */
1094 int (*crosschip_bridge_join)(struct dsa_switch *ds, int tree_index,
1095 int sw_index, int port,
1096 struct dsa_bridge bridge,
1097 struct netlink_ext_ack *extack);
1098 void (*crosschip_bridge_leave)(struct dsa_switch *ds, int tree_index,
1099 int sw_index, int port,
1100 struct dsa_bridge bridge);
1101 int (*crosschip_lag_change)(struct dsa_switch *ds, int sw_index,
1102 int port);
1103 int (*crosschip_lag_join)(struct dsa_switch *ds, int sw_index,
1104 int port, struct dsa_lag lag,
1105 struct netdev_lag_upper_info *info,
1106 struct netlink_ext_ack *extack);
1107 int (*crosschip_lag_leave)(struct dsa_switch *ds, int sw_index,
1108 int port, struct dsa_lag lag);
1109
1110 /*
1111 * PTP functionality
1112 */
1113 int (*port_hwtstamp_get)(struct dsa_switch *ds, int port,
1114 struct ifreq *ifr);
1115 int (*port_hwtstamp_set)(struct dsa_switch *ds, int port,
1116 struct ifreq *ifr);
1117 void (*port_txtstamp)(struct dsa_switch *ds, int port,
1118 struct sk_buff *skb);
1119 bool (*port_rxtstamp)(struct dsa_switch *ds, int port,
1120 struct sk_buff *skb, unsigned int type);
1121
1122 /* Devlink parameters, etc */
1123 int (*devlink_param_get)(struct dsa_switch *ds, u32 id,
1124 struct devlink_param_gset_ctx *ctx);
1125 int (*devlink_param_set)(struct dsa_switch *ds, u32 id,
1126 struct devlink_param_gset_ctx *ctx);
1127 int (*devlink_info_get)(struct dsa_switch *ds,
1128 struct devlink_info_req *req,
1129 struct netlink_ext_ack *extack);
1130 int (*devlink_sb_pool_get)(struct dsa_switch *ds,
1131 unsigned int sb_index, u16 pool_index,
1132 struct devlink_sb_pool_info *pool_info);
1133 int (*devlink_sb_pool_set)(struct dsa_switch *ds, unsigned int sb_index,
1134 u16 pool_index, u32 size,
1135 enum devlink_sb_threshold_type threshold_type,
1136 struct netlink_ext_ack *extack);
1137 int (*devlink_sb_port_pool_get)(struct dsa_switch *ds, int port,
1138 unsigned int sb_index, u16 pool_index,
1139 u32 *p_threshold);
1140 int (*devlink_sb_port_pool_set)(struct dsa_switch *ds, int port,
1141 unsigned int sb_index, u16 pool_index,
1142 u32 threshold,
1143 struct netlink_ext_ack *extack);
1144 int (*devlink_sb_tc_pool_bind_get)(struct dsa_switch *ds, int port,
1145 unsigned int sb_index, u16 tc_index,
1146 enum devlink_sb_pool_type pool_type,
1147 u16 *p_pool_index, u32 *p_threshold);
1148 int (*devlink_sb_tc_pool_bind_set)(struct dsa_switch *ds, int port,
1149 unsigned int sb_index, u16 tc_index,
1150 enum devlink_sb_pool_type pool_type,
1151 u16 pool_index, u32 threshold,
1152 struct netlink_ext_ack *extack);
1153 int (*devlink_sb_occ_snapshot)(struct dsa_switch *ds,
1154 unsigned int sb_index);
1155 int (*devlink_sb_occ_max_clear)(struct dsa_switch *ds,
1156 unsigned int sb_index);
1157 int (*devlink_sb_occ_port_pool_get)(struct dsa_switch *ds, int port,
1158 unsigned int sb_index, u16 pool_index,
1159 u32 *p_cur, u32 *p_max);
1160 int (*devlink_sb_occ_tc_port_bind_get)(struct dsa_switch *ds, int port,
1161 unsigned int sb_index, u16 tc_index,
1162 enum devlink_sb_pool_type pool_type,
1163 u32 *p_cur, u32 *p_max);
1164
1165 /*
1166 * MTU change functionality. Switches can also adjust their MRU through
1167 * this method. By MTU, one understands the SDU (L2 payload) length.
1168 * If the switch needs to account for the DSA tag on the CPU port, this
1169 * method needs to do so privately.
1170 */
1171 int (*port_change_mtu)(struct dsa_switch *ds, int port,
1172 int new_mtu);
1173 int (*port_max_mtu)(struct dsa_switch *ds, int port);
1174
1175 /*
1176 * LAG integration
1177 */
1178 int (*port_lag_change)(struct dsa_switch *ds, int port);
1179 int (*port_lag_join)(struct dsa_switch *ds, int port,
1180 struct dsa_lag lag,
1181 struct netdev_lag_upper_info *info,
1182 struct netlink_ext_ack *extack);
1183 int (*port_lag_leave)(struct dsa_switch *ds, int port,
1184 struct dsa_lag lag);
1185
1186 /*
1187 * HSR integration
1188 */
1189 int (*port_hsr_join)(struct dsa_switch *ds, int port,
1190 struct net_device *hsr);
1191 int (*port_hsr_leave)(struct dsa_switch *ds, int port,
1192 struct net_device *hsr);
1193
1194 /*
1195 * MRP integration
1196 */
1197 int (*port_mrp_add)(struct dsa_switch *ds, int port,
1198 const struct switchdev_obj_mrp *mrp);
1199 int (*port_mrp_del)(struct dsa_switch *ds, int port,
1200 const struct switchdev_obj_mrp *mrp);
1201 int (*port_mrp_add_ring_role)(struct dsa_switch *ds, int port,
1202 const struct switchdev_obj_ring_role_mrp *mrp);
1203 int (*port_mrp_del_ring_role)(struct dsa_switch *ds, int port,
1204 const struct switchdev_obj_ring_role_mrp *mrp);
1205
1206 /*
1207 * tag_8021q operations
1208 */
1209 int (*tag_8021q_vlan_add)(struct dsa_switch *ds, int port, u16 vid,
1210 u16 flags);
1211 int (*tag_8021q_vlan_del)(struct dsa_switch *ds, int port, u16 vid);
1212
1213 /*
1214 * DSA master tracking operations
1215 */
1216 void (*master_state_change)(struct dsa_switch *ds,
1217 const struct net_device *master,
1218 bool operational);
1219};
1220
1221#define DSA_DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes) \
1222 DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes, \
1223 dsa_devlink_param_get, dsa_devlink_param_set, NULL)
1224
1225int dsa_devlink_param_get(struct devlink *dl, u32 id,
1226 struct devlink_param_gset_ctx *ctx);
1227int dsa_devlink_param_set(struct devlink *dl, u32 id,
1228 struct devlink_param_gset_ctx *ctx);
1229int dsa_devlink_params_register(struct dsa_switch *ds,
1230 const struct devlink_param *params,
1231 size_t params_count);
1232void dsa_devlink_params_unregister(struct dsa_switch *ds,
1233 const struct devlink_param *params,
1234 size_t params_count);
1235int dsa_devlink_resource_register(struct dsa_switch *ds,
1236 const char *resource_name,
1237 u64 resource_size,
1238 u64 resource_id,
1239 u64 parent_resource_id,
1240 const struct devlink_resource_size_params *size_params);
1241
1242void dsa_devlink_resources_unregister(struct dsa_switch *ds);
1243
1244void dsa_devlink_resource_occ_get_register(struct dsa_switch *ds,
1245 u64 resource_id,
1246 devlink_resource_occ_get_t *occ_get,
1247 void *occ_get_priv);
1248void dsa_devlink_resource_occ_get_unregister(struct dsa_switch *ds,
1249 u64 resource_id);
1250struct devlink_region *
1251dsa_devlink_region_create(struct dsa_switch *ds,
1252 const struct devlink_region_ops *ops,
1253 u32 region_max_snapshots, u64 region_size);
1254struct devlink_region *
1255dsa_devlink_port_region_create(struct dsa_switch *ds,
1256 int port,
1257 const struct devlink_port_region_ops *ops,
1258 u32 region_max_snapshots, u64 region_size);
1259void dsa_devlink_region_destroy(struct devlink_region *region);
1260
1261struct dsa_port *dsa_port_from_netdev(struct net_device *netdev);
1262
1263struct dsa_devlink_priv {
1264 struct dsa_switch *ds;
1265};
1266
1267static inline struct dsa_switch *dsa_devlink_to_ds(struct devlink *dl)
1268{
1269 struct dsa_devlink_priv *dl_priv = devlink_priv(dl);
1270
1271 return dl_priv->ds;
1272}
1273
1274static inline
1275struct dsa_switch *dsa_devlink_port_to_ds(struct devlink_port *port)
1276{
1277 struct devlink *dl = port->devlink;
1278 struct dsa_devlink_priv *dl_priv = devlink_priv(dl);
1279
1280 return dl_priv->ds;
1281}
1282
1283static inline int dsa_devlink_port_to_port(struct devlink_port *port)
1284{
1285 return port->index;
1286}
1287
1288struct dsa_switch_driver {
1289 struct list_head list;
1290 const struct dsa_switch_ops *ops;
1291};
1292
1293bool dsa_fdb_present_in_other_db(struct dsa_switch *ds, int port,
1294 const unsigned char *addr, u16 vid,
1295 struct dsa_db db);
1296bool dsa_mdb_present_in_other_db(struct dsa_switch *ds, int port,
1297 const struct switchdev_obj_port_mdb *mdb,
1298 struct dsa_db db);
1299
1300/* Keep inline for faster access in hot path */
1301static inline bool netdev_uses_dsa(const struct net_device *dev)
1302{
1303#if IS_ENABLED(CONFIG_NET_DSA)
1304 return dev->dsa_ptr && dev->dsa_ptr->rcv;
1305#endif
1306 return false;
1307}
1308
1309/* All DSA tags that push the EtherType to the right (basically all except tail
1310 * tags, which don't break dissection) can be treated the same from the
1311 * perspective of the flow dissector.
1312 *
1313 * We need to return:
1314 * - offset: the (B - A) difference between:
1315 * A. the position of the real EtherType and
1316 * B. the current skb->data (aka ETH_HLEN bytes into the frame, aka 2 bytes
1317 * after the normal EtherType was supposed to be)
1318 * The offset in bytes is exactly equal to the tagger overhead (and half of
1319 * that, in __be16 shorts).
1320 *
1321 * - proto: the value of the real EtherType.
1322 */
1323static inline void dsa_tag_generic_flow_dissect(const struct sk_buff *skb,
1324 __be16 *proto, int *offset)
1325{
1326#if IS_ENABLED(CONFIG_NET_DSA)
1327 const struct dsa_device_ops *ops = skb->dev->dsa_ptr->tag_ops;
1328 int tag_len = ops->needed_headroom;
1329
1330 *offset = tag_len;
1331 *proto = ((__be16 *)skb->data)[(tag_len / 2) - 1];
1332#endif
1333}
1334
1335void dsa_unregister_switch(struct dsa_switch *ds);
1336int dsa_register_switch(struct dsa_switch *ds);
1337void dsa_switch_shutdown(struct dsa_switch *ds);
1338struct dsa_switch *dsa_switch_find(int tree_index, int sw_index);
1339void dsa_flush_workqueue(void);
1340#ifdef CONFIG_PM_SLEEP
1341int dsa_switch_suspend(struct dsa_switch *ds);
1342int dsa_switch_resume(struct dsa_switch *ds);
1343#else
1344static inline int dsa_switch_suspend(struct dsa_switch *ds)
1345{
1346 return 0;
1347}
1348static inline int dsa_switch_resume(struct dsa_switch *ds)
1349{
1350 return 0;
1351}
1352#endif /* CONFIG_PM_SLEEP */
1353
1354#if IS_ENABLED(CONFIG_NET_DSA)
1355bool dsa_slave_dev_check(const struct net_device *dev);
1356#else
1357static inline bool dsa_slave_dev_check(const struct net_device *dev)
1358{
1359 return false;
1360}
1361#endif
1362
1363netdev_tx_t dsa_enqueue_skb(struct sk_buff *skb, struct net_device *dev);
1364void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up);
1365
1366#endif