1
2
3
4
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 tc_action;
26struct phy_device;
27struct fixed_phy_status;
28struct phylink_link_state;
29
30#define DSA_TAG_PROTO_NONE_VALUE 0
31#define DSA_TAG_PROTO_BRCM_VALUE 1
32#define DSA_TAG_PROTO_BRCM_PREPEND_VALUE 2
33#define DSA_TAG_PROTO_DSA_VALUE 3
34#define DSA_TAG_PROTO_EDSA_VALUE 4
35#define DSA_TAG_PROTO_GSWIP_VALUE 5
36#define DSA_TAG_PROTO_KSZ9477_VALUE 6
37#define DSA_TAG_PROTO_KSZ9893_VALUE 7
38#define DSA_TAG_PROTO_LAN9303_VALUE 8
39#define DSA_TAG_PROTO_MTK_VALUE 9
40#define DSA_TAG_PROTO_QCA_VALUE 10
41#define DSA_TAG_PROTO_TRAILER_VALUE 11
42#define DSA_TAG_PROTO_8021Q_VALUE 12
43#define DSA_TAG_PROTO_SJA1105_VALUE 13
44#define DSA_TAG_PROTO_KSZ8795_VALUE 14
45#define DSA_TAG_PROTO_OCELOT_VALUE 15
46#define DSA_TAG_PROTO_AR9331_VALUE 16
47#define DSA_TAG_PROTO_RTL4_A_VALUE 17
48#define DSA_TAG_PROTO_HELLCREEK_VALUE 18
49#define DSA_TAG_PROTO_XRS700X_VALUE 19
50#define DSA_TAG_PROTO_OCELOT_8021Q_VALUE 20
51#define DSA_TAG_PROTO_SEVILLE_VALUE 21
52#define DSA_TAG_PROTO_BRCM_LEGACY_VALUE 22
53#define DSA_TAG_PROTO_SJA1110_VALUE 23
54#define DSA_TAG_PROTO_RTL8_4_VALUE 24
55#define DSA_TAG_PROTO_RTL8_4T_VALUE 25
56
57enum dsa_tag_protocol {
58 DSA_TAG_PROTO_NONE = DSA_TAG_PROTO_NONE_VALUE,
59 DSA_TAG_PROTO_BRCM = DSA_TAG_PROTO_BRCM_VALUE,
60 DSA_TAG_PROTO_BRCM_LEGACY = DSA_TAG_PROTO_BRCM_LEGACY_VALUE,
61 DSA_TAG_PROTO_BRCM_PREPEND = DSA_TAG_PROTO_BRCM_PREPEND_VALUE,
62 DSA_TAG_PROTO_DSA = DSA_TAG_PROTO_DSA_VALUE,
63 DSA_TAG_PROTO_EDSA = DSA_TAG_PROTO_EDSA_VALUE,
64 DSA_TAG_PROTO_GSWIP = DSA_TAG_PROTO_GSWIP_VALUE,
65 DSA_TAG_PROTO_KSZ9477 = DSA_TAG_PROTO_KSZ9477_VALUE,
66 DSA_TAG_PROTO_KSZ9893 = DSA_TAG_PROTO_KSZ9893_VALUE,
67 DSA_TAG_PROTO_LAN9303 = DSA_TAG_PROTO_LAN9303_VALUE,
68 DSA_TAG_PROTO_MTK = DSA_TAG_PROTO_MTK_VALUE,
69 DSA_TAG_PROTO_QCA = DSA_TAG_PROTO_QCA_VALUE,
70 DSA_TAG_PROTO_TRAILER = DSA_TAG_PROTO_TRAILER_VALUE,
71 DSA_TAG_PROTO_8021Q = DSA_TAG_PROTO_8021Q_VALUE,
72 DSA_TAG_PROTO_SJA1105 = DSA_TAG_PROTO_SJA1105_VALUE,
73 DSA_TAG_PROTO_KSZ8795 = DSA_TAG_PROTO_KSZ8795_VALUE,
74 DSA_TAG_PROTO_OCELOT = DSA_TAG_PROTO_OCELOT_VALUE,
75 DSA_TAG_PROTO_AR9331 = DSA_TAG_PROTO_AR9331_VALUE,
76 DSA_TAG_PROTO_RTL4_A = DSA_TAG_PROTO_RTL4_A_VALUE,
77 DSA_TAG_PROTO_HELLCREEK = DSA_TAG_PROTO_HELLCREEK_VALUE,
78 DSA_TAG_PROTO_XRS700X = DSA_TAG_PROTO_XRS700X_VALUE,
79 DSA_TAG_PROTO_OCELOT_8021Q = DSA_TAG_PROTO_OCELOT_8021Q_VALUE,
80 DSA_TAG_PROTO_SEVILLE = DSA_TAG_PROTO_SEVILLE_VALUE,
81 DSA_TAG_PROTO_SJA1110 = DSA_TAG_PROTO_SJA1110_VALUE,
82 DSA_TAG_PROTO_RTL8_4 = DSA_TAG_PROTO_RTL8_4_VALUE,
83 DSA_TAG_PROTO_RTL8_4T = DSA_TAG_PROTO_RTL8_4T_VALUE,
84};
85
86struct dsa_switch;
87
88struct dsa_device_ops {
89 struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev);
90 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev);
91 void (*flow_dissect)(const struct sk_buff *skb, __be16 *proto,
92 int *offset);
93 int (*connect)(struct dsa_switch *ds);
94 void (*disconnect)(struct dsa_switch *ds);
95 unsigned int needed_headroom;
96 unsigned int needed_tailroom;
97 const char *name;
98 enum dsa_tag_protocol proto;
99
100
101
102
103
104 bool promisc_on_master;
105};
106
107
108
109
110
111
112struct dsa_netdevice_ops {
113 int (*ndo_eth_ioctl)(struct net_device *dev, struct ifreq *ifr,
114 int cmd);
115};
116
117#define DSA_TAG_DRIVER_ALIAS "dsa_tag-"
118#define MODULE_ALIAS_DSA_TAG_DRIVER(__proto) \
119 MODULE_ALIAS(DSA_TAG_DRIVER_ALIAS __stringify(__proto##_VALUE))
120
121struct dsa_lag {
122 struct net_device *dev;
123 unsigned int id;
124 struct mutex fdb_lock;
125 struct list_head fdbs;
126 refcount_t refcount;
127};
128
129struct dsa_switch_tree {
130 struct list_head list;
131
132
133 struct list_head ports;
134
135
136 struct raw_notifier_head nh;
137
138
139 unsigned int index;
140
141
142 struct kref refcount;
143
144
145
146
147 struct dsa_lag **lags;
148
149
150 const struct dsa_device_ops *tag_ops;
151
152
153
154
155 enum dsa_tag_protocol default_proto;
156
157
158 bool setup;
159
160
161
162
163
164 struct dsa_platform_data *pd;
165
166
167 struct list_head rtable;
168
169
170 unsigned int lags_len;
171
172
173 unsigned int last_switch;
174};
175
176
177#define dsa_lags_foreach_id(_id, _dst) \
178 for ((_id) = 1; (_id) <= (_dst)->lags_len; (_id)++) \
179 if ((_dst)->lags[(_id) - 1])
180
181#define dsa_lag_foreach_port(_dp, _dst, _lag) \
182 list_for_each_entry((_dp), &(_dst)->ports, list) \
183 if (dsa_port_offloads_lag((_dp), (_lag)))
184
185#define dsa_hsr_foreach_port(_dp, _ds, _hsr) \
186 list_for_each_entry((_dp), &(_ds)->dst->ports, list) \
187 if ((_dp)->ds == (_ds) && (_dp)->hsr_dev == (_hsr))
188
189static inline struct dsa_lag *dsa_lag_by_id(struct dsa_switch_tree *dst,
190 unsigned int id)
191{
192
193 return dst->lags[id - 1];
194}
195
196static inline int dsa_lag_id(struct dsa_switch_tree *dst,
197 struct net_device *lag_dev)
198{
199 unsigned int id;
200
201 dsa_lags_foreach_id(id, dst) {
202 struct dsa_lag *lag = dsa_lag_by_id(dst, id);
203
204 if (lag->dev == lag_dev)
205 return lag->id;
206 }
207
208 return -ENODEV;
209}
210
211
212enum dsa_port_mall_action_type {
213 DSA_PORT_MALL_MIRROR,
214 DSA_PORT_MALL_POLICER,
215};
216
217
218struct dsa_mall_mirror_tc_entry {
219 u8 to_local_port;
220 bool ingress;
221};
222
223
224struct dsa_mall_policer_tc_entry {
225 u32 burst;
226 u64 rate_bytes_per_sec;
227};
228
229
230struct dsa_mall_tc_entry {
231 struct list_head list;
232 unsigned long cookie;
233 enum dsa_port_mall_action_type type;
234 union {
235 struct dsa_mall_mirror_tc_entry mirror;
236 struct dsa_mall_policer_tc_entry policer;
237 };
238};
239
240struct dsa_bridge {
241 struct net_device *dev;
242 unsigned int num;
243 bool tx_fwd_offload;
244 refcount_t refcount;
245};
246
247struct dsa_port {
248
249
250
251 union {
252 struct net_device *master;
253 struct net_device *slave;
254 };
255
256
257
258
259 const struct dsa_device_ops *tag_ops;
260
261
262 struct dsa_switch_tree *dst;
263 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev);
264
265 struct dsa_switch *ds;
266
267 unsigned int index;
268
269 enum {
270 DSA_PORT_TYPE_UNUSED = 0,
271 DSA_PORT_TYPE_CPU,
272 DSA_PORT_TYPE_DSA,
273 DSA_PORT_TYPE_USER,
274 } type;
275
276 const char *name;
277 struct dsa_port *cpu_dp;
278 u8 mac[ETH_ALEN];
279
280 u8 stp_state;
281
282
283
284
285
286 u8 vlan_filtering:1;
287
288
289 u8 learning:1;
290
291 u8 lag_tx_enabled:1;
292
293 u8 devlink_port_setup:1;
294
295
296 u8 master_admin_up:1;
297 u8 master_oper_up:1;
298
299 u8 setup:1;
300
301 struct device_node *dn;
302 unsigned int ageing_time;
303
304 struct dsa_bridge *bridge;
305 struct devlink_port devlink_port;
306 struct phylink *pl;
307 struct phylink_config pl_config;
308 struct dsa_lag *lag;
309 struct net_device *hsr_dev;
310
311 struct list_head list;
312
313
314
315
316 const struct ethtool_ops *orig_ethtool_ops;
317
318
319
320
321 const struct dsa_netdevice_ops *netdev_ops;
322
323
324
325
326 struct mutex addr_lists_lock;
327 struct list_head fdbs;
328 struct list_head mdbs;
329
330
331 struct mutex vlans_lock;
332 struct list_head vlans;
333};
334
335
336
337
338
339
340struct dsa_link {
341 struct dsa_port *dp;
342 struct dsa_port *link_dp;
343 struct list_head list;
344};
345
346enum dsa_db_type {
347 DSA_DB_PORT,
348 DSA_DB_LAG,
349 DSA_DB_BRIDGE,
350};
351
352struct dsa_db {
353 enum dsa_db_type type;
354
355 union {
356 const struct dsa_port *dp;
357 struct dsa_lag lag;
358 struct dsa_bridge bridge;
359 };
360};
361
362struct dsa_mac_addr {
363 unsigned char addr[ETH_ALEN];
364 u16 vid;
365 refcount_t refcount;
366 struct list_head list;
367 struct dsa_db db;
368};
369
370struct dsa_vlan {
371 u16 vid;
372 refcount_t refcount;
373 struct list_head list;
374};
375
376struct dsa_switch {
377 struct device *dev;
378
379
380
381
382 struct dsa_switch_tree *dst;
383 unsigned int index;
384
385
386
387
388
389 u32 setup:1;
390
391
392
393
394 u32 vlan_filtering_is_global:1;
395
396
397 u32 needs_standalone_vlan_filtering:1;
398
399
400
401
402
403
404 u32 configure_vlan_while_not_filtering:1;
405
406
407
408
409
410
411
412
413 u32 untag_bridge_pvid:1;
414
415
416
417
418 u32 assisted_learning_on_cpu_port:1;
419
420
421
422
423 u32 vlan_filtering:1;
424
425
426
427
428
429 u32 mtu_enforcement_ingress:1;
430
431
432
433
434
435
436 u32 fdb_isolation:1;
437
438
439 struct notifier_block nb;
440
441
442
443
444
445 void *priv;
446
447 void *tagger_data;
448
449
450
451
452 struct dsa_chip_data *cd;
453
454
455
456
457 const struct dsa_switch_ops *ops;
458
459
460
461
462 u32 phys_mii_mask;
463 struct mii_bus *slave_mii_bus;
464
465
466 unsigned int ageing_time_min;
467 unsigned int ageing_time_max;
468
469
470 struct dsa_8021q_context *tag_8021q_ctx;
471
472
473 struct devlink *devlink;
474
475
476 unsigned int num_tx_queues;
477
478
479
480
481
482
483
484 unsigned int num_lag_ids;
485
486
487
488
489
490
491 unsigned int max_num_bridges;
492
493 unsigned int num_ports;
494};
495
496static inline struct dsa_port *dsa_to_port(struct dsa_switch *ds, int p)
497{
498 struct dsa_switch_tree *dst = ds->dst;
499 struct dsa_port *dp;
500
501 list_for_each_entry(dp, &dst->ports, list)
502 if (dp->ds == ds && dp->index == p)
503 return dp;
504
505 return NULL;
506}
507
508static inline bool dsa_port_is_dsa(struct dsa_port *port)
509{
510 return port->type == DSA_PORT_TYPE_DSA;
511}
512
513static inline bool dsa_port_is_cpu(struct dsa_port *port)
514{
515 return port->type == DSA_PORT_TYPE_CPU;
516}
517
518static inline bool dsa_port_is_user(struct dsa_port *dp)
519{
520 return dp->type == DSA_PORT_TYPE_USER;
521}
522
523static inline bool dsa_port_is_unused(struct dsa_port *dp)
524{
525 return dp->type == DSA_PORT_TYPE_UNUSED;
526}
527
528static inline bool dsa_port_master_is_operational(struct dsa_port *dp)
529{
530 return dsa_port_is_cpu(dp) && dp->master_admin_up &&
531 dp->master_oper_up;
532}
533
534static inline bool dsa_is_unused_port(struct dsa_switch *ds, int p)
535{
536 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_UNUSED;
537}
538
539static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p)
540{
541 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_CPU;
542}
543
544static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p)
545{
546 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_DSA;
547}
548
549static inline bool dsa_is_user_port(struct dsa_switch *ds, int p)
550{
551 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_USER;
552}
553
554#define dsa_tree_for_each_user_port(_dp, _dst) \
555 list_for_each_entry((_dp), &(_dst)->ports, list) \
556 if (dsa_port_is_user((_dp)))
557
558#define dsa_switch_for_each_port(_dp, _ds) \
559 list_for_each_entry((_dp), &(_ds)->dst->ports, list) \
560 if ((_dp)->ds == (_ds))
561
562#define dsa_switch_for_each_port_safe(_dp, _next, _ds) \
563 list_for_each_entry_safe((_dp), (_next), &(_ds)->dst->ports, list) \
564 if ((_dp)->ds == (_ds))
565
566#define dsa_switch_for_each_port_continue_reverse(_dp, _ds) \
567 list_for_each_entry_continue_reverse((_dp), &(_ds)->dst->ports, list) \
568 if ((_dp)->ds == (_ds))
569
570#define dsa_switch_for_each_available_port(_dp, _ds) \
571 dsa_switch_for_each_port((_dp), (_ds)) \
572 if (!dsa_port_is_unused((_dp)))
573
574#define dsa_switch_for_each_user_port(_dp, _ds) \
575 dsa_switch_for_each_port((_dp), (_ds)) \
576 if (dsa_port_is_user((_dp)))
577
578#define dsa_switch_for_each_cpu_port(_dp, _ds) \
579 dsa_switch_for_each_port((_dp), (_ds)) \
580 if (dsa_port_is_cpu((_dp)))
581
582static inline u32 dsa_user_ports(struct dsa_switch *ds)
583{
584 struct dsa_port *dp;
585 u32 mask = 0;
586
587 dsa_switch_for_each_user_port(dp, ds)
588 mask |= BIT(dp->index);
589
590 return mask;
591}
592
593
594static inline unsigned int dsa_routing_port(struct dsa_switch *ds, int device)
595{
596 struct dsa_switch_tree *dst = ds->dst;
597 struct dsa_link *dl;
598
599 list_for_each_entry(dl, &dst->rtable, list)
600 if (dl->dp->ds == ds && dl->link_dp->ds->index == device)
601 return dl->dp->index;
602
603 return ds->num_ports;
604}
605
606
607static inline unsigned int dsa_towards_port(struct dsa_switch *ds, int device,
608 int port)
609{
610 if (device == ds->index)
611 return port;
612 else
613 return dsa_routing_port(ds, device);
614}
615
616
617static inline unsigned int dsa_upstream_port(struct dsa_switch *ds, int port)
618{
619 const struct dsa_port *dp = dsa_to_port(ds, port);
620 const struct dsa_port *cpu_dp = dp->cpu_dp;
621
622 if (!cpu_dp)
623 return port;
624
625 return dsa_towards_port(ds, cpu_dp->ds->index, cpu_dp->index);
626}
627
628
629static inline bool dsa_is_upstream_port(struct dsa_switch *ds, int port)
630{
631 if (dsa_is_unused_port(ds, port))
632 return false;
633
634 return port == dsa_upstream_port(ds, port);
635}
636
637
638static inline bool dsa_is_downstream_port(struct dsa_switch *ds, int port)
639{
640 return dsa_is_dsa_port(ds, port) && !dsa_is_upstream_port(ds, port);
641}
642
643
644static inline unsigned int dsa_switch_upstream_port(struct dsa_switch *ds)
645{
646 struct dsa_port *dp;
647
648 dsa_switch_for_each_available_port(dp, ds) {
649 return dsa_upstream_port(ds, dp->index);
650 }
651
652 return ds->num_ports;
653}
654
655
656
657
658
659static inline bool dsa_switch_is_upstream_of(struct dsa_switch *upstream_ds,
660 struct dsa_switch *downstream_ds)
661{
662 int routing_port;
663
664 if (upstream_ds == downstream_ds)
665 return true;
666
667 routing_port = dsa_routing_port(downstream_ds, upstream_ds->index);
668
669 return dsa_is_upstream_port(downstream_ds, routing_port);
670}
671
672static inline bool dsa_port_is_vlan_filtering(const struct dsa_port *dp)
673{
674 const struct dsa_switch *ds = dp->ds;
675
676 if (ds->vlan_filtering_is_global)
677 return ds->vlan_filtering;
678 else
679 return dp->vlan_filtering;
680}
681
682static inline unsigned int dsa_port_lag_id_get(struct dsa_port *dp)
683{
684 return dp->lag ? dp->lag->id : 0;
685}
686
687static inline struct net_device *dsa_port_lag_dev_get(struct dsa_port *dp)
688{
689 return dp->lag ? dp->lag->dev : NULL;
690}
691
692static inline bool dsa_port_offloads_lag(struct dsa_port *dp,
693 const struct dsa_lag *lag)
694{
695 return dsa_port_lag_dev_get(dp) == lag->dev;
696}
697
698static inline
699struct net_device *dsa_port_to_bridge_port(const struct dsa_port *dp)
700{
701 if (!dp->bridge)
702 return NULL;
703
704 if (dp->lag)
705 return dp->lag->dev;
706 else if (dp->hsr_dev)
707 return dp->hsr_dev;
708
709 return dp->slave;
710}
711
712static inline struct net_device *
713dsa_port_bridge_dev_get(const struct dsa_port *dp)
714{
715 return dp->bridge ? dp->bridge->dev : NULL;
716}
717
718static inline unsigned int dsa_port_bridge_num_get(struct dsa_port *dp)
719{
720 return dp->bridge ? dp->bridge->num : 0;
721}
722
723static inline bool dsa_port_bridge_same(const struct dsa_port *a,
724 const struct dsa_port *b)
725{
726 struct net_device *br_a = dsa_port_bridge_dev_get(a);
727 struct net_device *br_b = dsa_port_bridge_dev_get(b);
728
729
730 return (!br_a || !br_b) ? false : (br_a == br_b);
731}
732
733static inline bool dsa_port_offloads_bridge_port(struct dsa_port *dp,
734 const struct net_device *dev)
735{
736 return dsa_port_to_bridge_port(dp) == dev;
737}
738
739static inline bool
740dsa_port_offloads_bridge_dev(struct dsa_port *dp,
741 const struct net_device *bridge_dev)
742{
743
744
745
746 return dsa_port_bridge_dev_get(dp) == bridge_dev;
747}
748
749static inline bool dsa_port_offloads_bridge(struct dsa_port *dp,
750 const struct dsa_bridge *bridge)
751{
752 return dsa_port_bridge_dev_get(dp) == bridge->dev;
753}
754
755
756static inline bool dsa_tree_offloads_bridge_port(struct dsa_switch_tree *dst,
757 const struct net_device *dev)
758{
759 struct dsa_port *dp;
760
761 list_for_each_entry(dp, &dst->ports, list)
762 if (dsa_port_offloads_bridge_port(dp, dev))
763 return true;
764
765 return false;
766}
767
768
769static inline bool
770dsa_tree_offloads_bridge_dev(struct dsa_switch_tree *dst,
771 const struct net_device *bridge_dev)
772{
773 struct dsa_port *dp;
774
775 list_for_each_entry(dp, &dst->ports, list)
776 if (dsa_port_offloads_bridge_dev(dp, bridge_dev))
777 return true;
778
779 return false;
780}
781
782typedef int dsa_fdb_dump_cb_t(const unsigned char *addr, u16 vid,
783 bool is_static, void *data);
784struct dsa_switch_ops {
785
786
787
788
789
790
791
792 enum dsa_tag_protocol (*get_tag_protocol)(struct dsa_switch *ds,
793 int port,
794 enum dsa_tag_protocol mprot);
795 int (*change_tag_protocol)(struct dsa_switch *ds, int port,
796 enum dsa_tag_protocol proto);
797
798
799
800
801
802 int (*connect_tag_protocol)(struct dsa_switch *ds,
803 enum dsa_tag_protocol proto);
804
805
806 int (*setup)(struct dsa_switch *ds);
807 void (*teardown)(struct dsa_switch *ds);
808
809
810
811
812 int (*port_setup)(struct dsa_switch *ds, int port);
813 void (*port_teardown)(struct dsa_switch *ds, int port);
814
815 u32 (*get_phy_flags)(struct dsa_switch *ds, int port);
816
817
818
819
820 int (*phy_read)(struct dsa_switch *ds, int port, int regnum);
821 int (*phy_write)(struct dsa_switch *ds, int port,
822 int regnum, u16 val);
823
824
825
826
827 void (*adjust_link)(struct dsa_switch *ds, int port,
828 struct phy_device *phydev);
829 void (*fixed_link_update)(struct dsa_switch *ds, int port,
830 struct fixed_phy_status *st);
831
832
833
834
835 void (*phylink_get_caps)(struct dsa_switch *ds, int port,
836 struct phylink_config *config);
837 void (*phylink_validate)(struct dsa_switch *ds, int port,
838 unsigned long *supported,
839 struct phylink_link_state *state);
840 struct phylink_pcs *(*phylink_mac_select_pcs)(struct dsa_switch *ds,
841 int port,
842 phy_interface_t iface);
843 int (*phylink_mac_link_state)(struct dsa_switch *ds, int port,
844 struct phylink_link_state *state);
845 void (*phylink_mac_config)(struct dsa_switch *ds, int port,
846 unsigned int mode,
847 const struct phylink_link_state *state);
848 void (*phylink_mac_an_restart)(struct dsa_switch *ds, int port);
849 void (*phylink_mac_link_down)(struct dsa_switch *ds, int port,
850 unsigned int mode,
851 phy_interface_t interface);
852 void (*phylink_mac_link_up)(struct dsa_switch *ds, int port,
853 unsigned int mode,
854 phy_interface_t interface,
855 struct phy_device *phydev,
856 int speed, int duplex,
857 bool tx_pause, bool rx_pause);
858 void (*phylink_fixed_state)(struct dsa_switch *ds, int port,
859 struct phylink_link_state *state);
860
861
862
863 void (*get_strings)(struct dsa_switch *ds, int port,
864 u32 stringset, uint8_t *data);
865 void (*get_ethtool_stats)(struct dsa_switch *ds,
866 int port, uint64_t *data);
867 int (*get_sset_count)(struct dsa_switch *ds, int port, int sset);
868 void (*get_ethtool_phy_stats)(struct dsa_switch *ds,
869 int port, uint64_t *data);
870 void (*get_eth_phy_stats)(struct dsa_switch *ds, int port,
871 struct ethtool_eth_phy_stats *phy_stats);
872 void (*get_eth_mac_stats)(struct dsa_switch *ds, int port,
873 struct ethtool_eth_mac_stats *mac_stats);
874 void (*get_eth_ctrl_stats)(struct dsa_switch *ds, int port,
875 struct ethtool_eth_ctrl_stats *ctrl_stats);
876 void (*get_stats64)(struct dsa_switch *ds, int port,
877 struct rtnl_link_stats64 *s);
878 void (*self_test)(struct dsa_switch *ds, int port,
879 struct ethtool_test *etest, u64 *data);
880
881
882
883
884 void (*get_wol)(struct dsa_switch *ds, int port,
885 struct ethtool_wolinfo *w);
886 int (*set_wol)(struct dsa_switch *ds, int port,
887 struct ethtool_wolinfo *w);
888
889
890
891
892 int (*get_ts_info)(struct dsa_switch *ds, int port,
893 struct ethtool_ts_info *ts);
894
895
896
897
898 int (*port_get_default_prio)(struct dsa_switch *ds, int port);
899 int (*port_set_default_prio)(struct dsa_switch *ds, int port,
900 u8 prio);
901 int (*port_get_dscp_prio)(struct dsa_switch *ds, int port, u8 dscp);
902 int (*port_add_dscp_prio)(struct dsa_switch *ds, int port, u8 dscp,
903 u8 prio);
904 int (*port_del_dscp_prio)(struct dsa_switch *ds, int port, u8 dscp,
905 u8 prio);
906
907
908
909
910 int (*suspend)(struct dsa_switch *ds);
911 int (*resume)(struct dsa_switch *ds);
912
913
914
915
916 int (*port_enable)(struct dsa_switch *ds, int port,
917 struct phy_device *phy);
918 void (*port_disable)(struct dsa_switch *ds, int port);
919
920
921
922
923 int (*set_mac_eee)(struct dsa_switch *ds, int port,
924 struct ethtool_eee *e);
925 int (*get_mac_eee)(struct dsa_switch *ds, int port,
926 struct ethtool_eee *e);
927
928
929 int (*get_eeprom_len)(struct dsa_switch *ds);
930 int (*get_eeprom)(struct dsa_switch *ds,
931 struct ethtool_eeprom *eeprom, u8 *data);
932 int (*set_eeprom)(struct dsa_switch *ds,
933 struct ethtool_eeprom *eeprom, u8 *data);
934
935
936
937
938 int (*get_regs_len)(struct dsa_switch *ds, int port);
939 void (*get_regs)(struct dsa_switch *ds, int port,
940 struct ethtool_regs *regs, void *p);
941
942
943
944
945 int (*port_prechangeupper)(struct dsa_switch *ds, int port,
946 struct netdev_notifier_changeupper_info *info);
947
948
949
950
951 int (*set_ageing_time)(struct dsa_switch *ds, unsigned int msecs);
952 int (*port_bridge_join)(struct dsa_switch *ds, int port,
953 struct dsa_bridge bridge,
954 bool *tx_fwd_offload,
955 struct netlink_ext_ack *extack);
956 void (*port_bridge_leave)(struct dsa_switch *ds, int port,
957 struct dsa_bridge bridge);
958 void (*port_stp_state_set)(struct dsa_switch *ds, int port,
959 u8 state);
960 int (*port_mst_state_set)(struct dsa_switch *ds, int port,
961 const struct switchdev_mst_state *state);
962 void (*port_fast_age)(struct dsa_switch *ds, int port);
963 int (*port_vlan_fast_age)(struct dsa_switch *ds, int port, u16 vid);
964 int (*port_pre_bridge_flags)(struct dsa_switch *ds, int port,
965 struct switchdev_brport_flags flags,
966 struct netlink_ext_ack *extack);
967 int (*port_bridge_flags)(struct dsa_switch *ds, int port,
968 struct switchdev_brport_flags flags,
969 struct netlink_ext_ack *extack);
970
971
972
973
974 int (*port_vlan_filtering)(struct dsa_switch *ds, int port,
975 bool vlan_filtering,
976 struct netlink_ext_ack *extack);
977 int (*port_vlan_add)(struct dsa_switch *ds, int port,
978 const struct switchdev_obj_port_vlan *vlan,
979 struct netlink_ext_ack *extack);
980 int (*port_vlan_del)(struct dsa_switch *ds, int port,
981 const struct switchdev_obj_port_vlan *vlan);
982 int (*vlan_msti_set)(struct dsa_switch *ds, struct dsa_bridge bridge,
983 const struct switchdev_vlan_msti *msti);
984
985
986
987
988 int (*port_fdb_add)(struct dsa_switch *ds, int port,
989 const unsigned char *addr, u16 vid,
990 struct dsa_db db);
991 int (*port_fdb_del)(struct dsa_switch *ds, int port,
992 const unsigned char *addr, u16 vid,
993 struct dsa_db db);
994 int (*port_fdb_dump)(struct dsa_switch *ds, int port,
995 dsa_fdb_dump_cb_t *cb, void *data);
996 int (*lag_fdb_add)(struct dsa_switch *ds, struct dsa_lag lag,
997 const unsigned char *addr, u16 vid,
998 struct dsa_db db);
999 int (*lag_fdb_del)(struct dsa_switch *ds, struct dsa_lag lag,
1000 const unsigned char *addr, u16 vid,
1001 struct dsa_db db);
1002
1003
1004
1005
1006 int (*port_mdb_add)(struct dsa_switch *ds, int port,
1007 const struct switchdev_obj_port_mdb *mdb,
1008 struct dsa_db db);
1009 int (*port_mdb_del)(struct dsa_switch *ds, int port,
1010 const struct switchdev_obj_port_mdb *mdb,
1011 struct dsa_db db);
1012
1013
1014
1015 int (*get_rxnfc)(struct dsa_switch *ds, int port,
1016 struct ethtool_rxnfc *nfc, u32 *rule_locs);
1017 int (*set_rxnfc)(struct dsa_switch *ds, int port,
1018 struct ethtool_rxnfc *nfc);
1019
1020
1021
1022
1023 int (*cls_flower_add)(struct dsa_switch *ds, int port,
1024 struct flow_cls_offload *cls, bool ingress);
1025 int (*cls_flower_del)(struct dsa_switch *ds, int port,
1026 struct flow_cls_offload *cls, bool ingress);
1027 int (*cls_flower_stats)(struct dsa_switch *ds, int port,
1028 struct flow_cls_offload *cls, bool ingress);
1029 int (*port_mirror_add)(struct dsa_switch *ds, int port,
1030 struct dsa_mall_mirror_tc_entry *mirror,
1031 bool ingress, struct netlink_ext_ack *extack);
1032 void (*port_mirror_del)(struct dsa_switch *ds, int port,
1033 struct dsa_mall_mirror_tc_entry *mirror);
1034 int (*port_policer_add)(struct dsa_switch *ds, int port,
1035 struct dsa_mall_policer_tc_entry *policer);
1036 void (*port_policer_del)(struct dsa_switch *ds, int port);
1037 int (*port_setup_tc)(struct dsa_switch *ds, int port,
1038 enum tc_setup_type type, void *type_data);
1039
1040
1041
1042
1043 int (*crosschip_bridge_join)(struct dsa_switch *ds, int tree_index,
1044 int sw_index, int port,
1045 struct dsa_bridge bridge,
1046 struct netlink_ext_ack *extack);
1047 void (*crosschip_bridge_leave)(struct dsa_switch *ds, int tree_index,
1048 int sw_index, int port,
1049 struct dsa_bridge bridge);
1050 int (*crosschip_lag_change)(struct dsa_switch *ds, int sw_index,
1051 int port);
1052 int (*crosschip_lag_join)(struct dsa_switch *ds, int sw_index,
1053 int port, struct dsa_lag lag,
1054 struct netdev_lag_upper_info *info);
1055 int (*crosschip_lag_leave)(struct dsa_switch *ds, int sw_index,
1056 int port, struct dsa_lag lag);
1057
1058
1059
1060
1061 int (*port_hwtstamp_get)(struct dsa_switch *ds, int port,
1062 struct ifreq *ifr);
1063 int (*port_hwtstamp_set)(struct dsa_switch *ds, int port,
1064 struct ifreq *ifr);
1065 void (*port_txtstamp)(struct dsa_switch *ds, int port,
1066 struct sk_buff *skb);
1067 bool (*port_rxtstamp)(struct dsa_switch *ds, int port,
1068 struct sk_buff *skb, unsigned int type);
1069
1070
1071 int (*devlink_param_get)(struct dsa_switch *ds, u32 id,
1072 struct devlink_param_gset_ctx *ctx);
1073 int (*devlink_param_set)(struct dsa_switch *ds, u32 id,
1074 struct devlink_param_gset_ctx *ctx);
1075 int (*devlink_info_get)(struct dsa_switch *ds,
1076 struct devlink_info_req *req,
1077 struct netlink_ext_ack *extack);
1078 int (*devlink_sb_pool_get)(struct dsa_switch *ds,
1079 unsigned int sb_index, u16 pool_index,
1080 struct devlink_sb_pool_info *pool_info);
1081 int (*devlink_sb_pool_set)(struct dsa_switch *ds, unsigned int sb_index,
1082 u16 pool_index, u32 size,
1083 enum devlink_sb_threshold_type threshold_type,
1084 struct netlink_ext_ack *extack);
1085 int (*devlink_sb_port_pool_get)(struct dsa_switch *ds, int port,
1086 unsigned int sb_index, u16 pool_index,
1087 u32 *p_threshold);
1088 int (*devlink_sb_port_pool_set)(struct dsa_switch *ds, int port,
1089 unsigned int sb_index, u16 pool_index,
1090 u32 threshold,
1091 struct netlink_ext_ack *extack);
1092 int (*devlink_sb_tc_pool_bind_get)(struct dsa_switch *ds, int port,
1093 unsigned int sb_index, u16 tc_index,
1094 enum devlink_sb_pool_type pool_type,
1095 u16 *p_pool_index, u32 *p_threshold);
1096 int (*devlink_sb_tc_pool_bind_set)(struct dsa_switch *ds, int port,
1097 unsigned int sb_index, u16 tc_index,
1098 enum devlink_sb_pool_type pool_type,
1099 u16 pool_index, u32 threshold,
1100 struct netlink_ext_ack *extack);
1101 int (*devlink_sb_occ_snapshot)(struct dsa_switch *ds,
1102 unsigned int sb_index);
1103 int (*devlink_sb_occ_max_clear)(struct dsa_switch *ds,
1104 unsigned int sb_index);
1105 int (*devlink_sb_occ_port_pool_get)(struct dsa_switch *ds, int port,
1106 unsigned int sb_index, u16 pool_index,
1107 u32 *p_cur, u32 *p_max);
1108 int (*devlink_sb_occ_tc_port_bind_get)(struct dsa_switch *ds, int port,
1109 unsigned int sb_index, u16 tc_index,
1110 enum devlink_sb_pool_type pool_type,
1111 u32 *p_cur, u32 *p_max);
1112
1113
1114
1115
1116
1117
1118
1119 int (*port_change_mtu)(struct dsa_switch *ds, int port,
1120 int new_mtu);
1121 int (*port_max_mtu)(struct dsa_switch *ds, int port);
1122
1123
1124
1125
1126 int (*port_lag_change)(struct dsa_switch *ds, int port);
1127 int (*port_lag_join)(struct dsa_switch *ds, int port,
1128 struct dsa_lag lag,
1129 struct netdev_lag_upper_info *info);
1130 int (*port_lag_leave)(struct dsa_switch *ds, int port,
1131 struct dsa_lag lag);
1132
1133
1134
1135
1136 int (*port_hsr_join)(struct dsa_switch *ds, int port,
1137 struct net_device *hsr);
1138 int (*port_hsr_leave)(struct dsa_switch *ds, int port,
1139 struct net_device *hsr);
1140
1141
1142
1143
1144 int (*port_mrp_add)(struct dsa_switch *ds, int port,
1145 const struct switchdev_obj_mrp *mrp);
1146 int (*port_mrp_del)(struct dsa_switch *ds, int port,
1147 const struct switchdev_obj_mrp *mrp);
1148 int (*port_mrp_add_ring_role)(struct dsa_switch *ds, int port,
1149 const struct switchdev_obj_ring_role_mrp *mrp);
1150 int (*port_mrp_del_ring_role)(struct dsa_switch *ds, int port,
1151 const struct switchdev_obj_ring_role_mrp *mrp);
1152
1153
1154
1155
1156 int (*tag_8021q_vlan_add)(struct dsa_switch *ds, int port, u16 vid,
1157 u16 flags);
1158 int (*tag_8021q_vlan_del)(struct dsa_switch *ds, int port, u16 vid);
1159
1160
1161
1162
1163 void (*master_state_change)(struct dsa_switch *ds,
1164 const struct net_device *master,
1165 bool operational);
1166};
1167
1168#define DSA_DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes) \
1169 DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes, \
1170 dsa_devlink_param_get, dsa_devlink_param_set, NULL)
1171
1172int dsa_devlink_param_get(struct devlink *dl, u32 id,
1173 struct devlink_param_gset_ctx *ctx);
1174int dsa_devlink_param_set(struct devlink *dl, u32 id,
1175 struct devlink_param_gset_ctx *ctx);
1176int dsa_devlink_params_register(struct dsa_switch *ds,
1177 const struct devlink_param *params,
1178 size_t params_count);
1179void dsa_devlink_params_unregister(struct dsa_switch *ds,
1180 const struct devlink_param *params,
1181 size_t params_count);
1182int dsa_devlink_resource_register(struct dsa_switch *ds,
1183 const char *resource_name,
1184 u64 resource_size,
1185 u64 resource_id,
1186 u64 parent_resource_id,
1187 const struct devlink_resource_size_params *size_params);
1188
1189void dsa_devlink_resources_unregister(struct dsa_switch *ds);
1190
1191void dsa_devlink_resource_occ_get_register(struct dsa_switch *ds,
1192 u64 resource_id,
1193 devlink_resource_occ_get_t *occ_get,
1194 void *occ_get_priv);
1195void dsa_devlink_resource_occ_get_unregister(struct dsa_switch *ds,
1196 u64 resource_id);
1197struct devlink_region *
1198dsa_devlink_region_create(struct dsa_switch *ds,
1199 const struct devlink_region_ops *ops,
1200 u32 region_max_snapshots, u64 region_size);
1201struct devlink_region *
1202dsa_devlink_port_region_create(struct dsa_switch *ds,
1203 int port,
1204 const struct devlink_port_region_ops *ops,
1205 u32 region_max_snapshots, u64 region_size);
1206void dsa_devlink_region_destroy(struct devlink_region *region);
1207
1208struct dsa_port *dsa_port_from_netdev(struct net_device *netdev);
1209
1210struct dsa_devlink_priv {
1211 struct dsa_switch *ds;
1212};
1213
1214static inline struct dsa_switch *dsa_devlink_to_ds(struct devlink *dl)
1215{
1216 struct dsa_devlink_priv *dl_priv = devlink_priv(dl);
1217
1218 return dl_priv->ds;
1219}
1220
1221static inline
1222struct dsa_switch *dsa_devlink_port_to_ds(struct devlink_port *port)
1223{
1224 struct devlink *dl = port->devlink;
1225 struct dsa_devlink_priv *dl_priv = devlink_priv(dl);
1226
1227 return dl_priv->ds;
1228}
1229
1230static inline int dsa_devlink_port_to_port(struct devlink_port *port)
1231{
1232 return port->index;
1233}
1234
1235struct dsa_switch_driver {
1236 struct list_head list;
1237 const struct dsa_switch_ops *ops;
1238};
1239
1240struct net_device *dsa_dev_to_net_device(struct device *dev);
1241
1242typedef int dsa_fdb_walk_cb_t(struct dsa_switch *ds, int port,
1243 const unsigned char *addr, u16 vid,
1244 struct dsa_db db);
1245
1246int dsa_port_walk_fdbs(struct dsa_switch *ds, int port, dsa_fdb_walk_cb_t cb);
1247int dsa_port_walk_mdbs(struct dsa_switch *ds, int port, dsa_fdb_walk_cb_t cb);
1248bool dsa_fdb_present_in_other_db(struct dsa_switch *ds, int port,
1249 const unsigned char *addr, u16 vid,
1250 struct dsa_db db);
1251bool dsa_mdb_present_in_other_db(struct dsa_switch *ds, int port,
1252 const struct switchdev_obj_port_mdb *mdb,
1253 struct dsa_db db);
1254
1255
1256static inline bool netdev_uses_dsa(const struct net_device *dev)
1257{
1258#if IS_ENABLED(CONFIG_NET_DSA)
1259 return dev->dsa_ptr && dev->dsa_ptr->rcv;
1260#endif
1261 return false;
1262}
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278static inline void dsa_tag_generic_flow_dissect(const struct sk_buff *skb,
1279 __be16 *proto, int *offset)
1280{
1281#if IS_ENABLED(CONFIG_NET_DSA)
1282 const struct dsa_device_ops *ops = skb->dev->dsa_ptr->tag_ops;
1283 int tag_len = ops->needed_headroom;
1284
1285 *offset = tag_len;
1286 *proto = ((__be16 *)skb->data)[(tag_len / 2) - 1];
1287#endif
1288}
1289
1290#if IS_ENABLED(CONFIG_NET_DSA)
1291static inline int __dsa_netdevice_ops_check(struct net_device *dev)
1292{
1293 int err = -EOPNOTSUPP;
1294
1295 if (!dev->dsa_ptr)
1296 return err;
1297
1298 if (!dev->dsa_ptr->netdev_ops)
1299 return err;
1300
1301 return 0;
1302}
1303
1304static inline int dsa_ndo_eth_ioctl(struct net_device *dev, struct ifreq *ifr,
1305 int cmd)
1306{
1307 const struct dsa_netdevice_ops *ops;
1308 int err;
1309
1310 err = __dsa_netdevice_ops_check(dev);
1311 if (err)
1312 return err;
1313
1314 ops = dev->dsa_ptr->netdev_ops;
1315
1316 return ops->ndo_eth_ioctl(dev, ifr, cmd);
1317}
1318#else
1319static inline int dsa_ndo_eth_ioctl(struct net_device *dev, struct ifreq *ifr,
1320 int cmd)
1321{
1322 return -EOPNOTSUPP;
1323}
1324#endif
1325
1326void dsa_unregister_switch(struct dsa_switch *ds);
1327int dsa_register_switch(struct dsa_switch *ds);
1328void dsa_switch_shutdown(struct dsa_switch *ds);
1329struct dsa_switch *dsa_switch_find(int tree_index, int sw_index);
1330void dsa_flush_workqueue(void);
1331#ifdef CONFIG_PM_SLEEP
1332int dsa_switch_suspend(struct dsa_switch *ds);
1333int dsa_switch_resume(struct dsa_switch *ds);
1334#else
1335static inline int dsa_switch_suspend(struct dsa_switch *ds)
1336{
1337 return 0;
1338}
1339static inline int dsa_switch_resume(struct dsa_switch *ds)
1340{
1341 return 0;
1342}
1343#endif
1344
1345#if IS_ENABLED(CONFIG_NET_DSA)
1346bool dsa_slave_dev_check(const struct net_device *dev);
1347#else
1348static inline bool dsa_slave_dev_check(const struct net_device *dev)
1349{
1350 return false;
1351}
1352#endif
1353
1354netdev_tx_t dsa_enqueue_skb(struct sk_buff *skb, struct net_device *dev);
1355void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up);
1356
1357struct dsa_tag_driver {
1358 const struct dsa_device_ops *ops;
1359 struct list_head list;
1360 struct module *owner;
1361};
1362
1363void dsa_tag_drivers_register(struct dsa_tag_driver *dsa_tag_driver_array[],
1364 unsigned int count,
1365 struct module *owner);
1366void dsa_tag_drivers_unregister(struct dsa_tag_driver *dsa_tag_driver_array[],
1367 unsigned int count);
1368
1369#define dsa_tag_driver_module_drivers(__dsa_tag_drivers_array, __count) \
1370static int __init dsa_tag_driver_module_init(void) \
1371{ \
1372 dsa_tag_drivers_register(__dsa_tag_drivers_array, __count, \
1373 THIS_MODULE); \
1374 return 0; \
1375} \
1376module_init(dsa_tag_driver_module_init); \
1377 \
1378static void __exit dsa_tag_driver_module_exit(void) \
1379{ \
1380 dsa_tag_drivers_unregister(__dsa_tag_drivers_array, __count); \
1381} \
1382module_exit(dsa_tag_driver_module_exit)
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393#define module_dsa_tag_drivers(__ops_array) \
1394dsa_tag_driver_module_drivers(__ops_array, ARRAY_SIZE(__ops_array))
1395
1396#define DSA_TAG_DRIVER_NAME(__ops) dsa_tag_driver ## _ ## __ops
1397
1398
1399
1400
1401#define DSA_TAG_DRIVER(__ops) \
1402static struct dsa_tag_driver DSA_TAG_DRIVER_NAME(__ops) = { \
1403 .ops = &__ops, \
1404}
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415#define module_dsa_tag_driver(__ops) \
1416DSA_TAG_DRIVER(__ops); \
1417 \
1418static struct dsa_tag_driver *dsa_tag_driver_array[] = { \
1419 &DSA_TAG_DRIVER_NAME(__ops) \
1420}; \
1421module_dsa_tag_drivers(dsa_tag_driver_array)
1422#endif
1423
1424