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
55enum dsa_tag_protocol {
56 DSA_TAG_PROTO_NONE = DSA_TAG_PROTO_NONE_VALUE,
57 DSA_TAG_PROTO_BRCM = DSA_TAG_PROTO_BRCM_VALUE,
58 DSA_TAG_PROTO_BRCM_LEGACY = DSA_TAG_PROTO_BRCM_LEGACY_VALUE,
59 DSA_TAG_PROTO_BRCM_PREPEND = DSA_TAG_PROTO_BRCM_PREPEND_VALUE,
60 DSA_TAG_PROTO_DSA = DSA_TAG_PROTO_DSA_VALUE,
61 DSA_TAG_PROTO_EDSA = DSA_TAG_PROTO_EDSA_VALUE,
62 DSA_TAG_PROTO_GSWIP = DSA_TAG_PROTO_GSWIP_VALUE,
63 DSA_TAG_PROTO_KSZ9477 = DSA_TAG_PROTO_KSZ9477_VALUE,
64 DSA_TAG_PROTO_KSZ9893 = DSA_TAG_PROTO_KSZ9893_VALUE,
65 DSA_TAG_PROTO_LAN9303 = DSA_TAG_PROTO_LAN9303_VALUE,
66 DSA_TAG_PROTO_MTK = DSA_TAG_PROTO_MTK_VALUE,
67 DSA_TAG_PROTO_QCA = DSA_TAG_PROTO_QCA_VALUE,
68 DSA_TAG_PROTO_TRAILER = DSA_TAG_PROTO_TRAILER_VALUE,
69 DSA_TAG_PROTO_8021Q = DSA_TAG_PROTO_8021Q_VALUE,
70 DSA_TAG_PROTO_SJA1105 = DSA_TAG_PROTO_SJA1105_VALUE,
71 DSA_TAG_PROTO_KSZ8795 = DSA_TAG_PROTO_KSZ8795_VALUE,
72 DSA_TAG_PROTO_OCELOT = DSA_TAG_PROTO_OCELOT_VALUE,
73 DSA_TAG_PROTO_AR9331 = DSA_TAG_PROTO_AR9331_VALUE,
74 DSA_TAG_PROTO_RTL4_A = DSA_TAG_PROTO_RTL4_A_VALUE,
75 DSA_TAG_PROTO_HELLCREEK = DSA_TAG_PROTO_HELLCREEK_VALUE,
76 DSA_TAG_PROTO_XRS700X = DSA_TAG_PROTO_XRS700X_VALUE,
77 DSA_TAG_PROTO_OCELOT_8021Q = DSA_TAG_PROTO_OCELOT_8021Q_VALUE,
78 DSA_TAG_PROTO_SEVILLE = DSA_TAG_PROTO_SEVILLE_VALUE,
79 DSA_TAG_PROTO_SJA1110 = DSA_TAG_PROTO_SJA1110_VALUE,
80};
81
82struct packet_type;
83struct dsa_switch;
84
85struct dsa_device_ops {
86 struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev);
87 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
88 struct packet_type *pt);
89 void (*flow_dissect)(const struct sk_buff *skb, __be16 *proto,
90 int *offset);
91
92
93
94
95 bool (*filter)(const struct sk_buff *skb, struct net_device *dev);
96 unsigned int needed_headroom;
97 unsigned int needed_tailroom;
98 const char *name;
99 enum dsa_tag_protocol proto;
100
101
102
103
104
105 bool promisc_on_master;
106};
107
108
109
110
111
112
113struct dsa_netdevice_ops {
114 int (*ndo_do_ioctl)(struct net_device *dev, struct ifreq *ifr,
115 int cmd);
116};
117
118#define DSA_TAG_DRIVER_ALIAS "dsa_tag-"
119#define MODULE_ALIAS_DSA_TAG_DRIVER(__proto) \
120 MODULE_ALIAS(DSA_TAG_DRIVER_ALIAS __stringify(__proto##_VALUE))
121
122struct dsa_switch_tree {
123 struct list_head list;
124
125
126 struct raw_notifier_head nh;
127
128
129 unsigned int index;
130
131
132 struct kref refcount;
133
134
135 bool setup;
136
137
138 const struct dsa_device_ops *tag_ops;
139
140
141
142
143 enum dsa_tag_protocol default_proto;
144
145
146
147
148
149 struct dsa_platform_data *pd;
150
151
152 struct list_head ports;
153
154
155 struct list_head rtable;
156
157
158
159
160 struct net_device **lags;
161 unsigned int lags_len;
162};
163
164#define dsa_lags_foreach_id(_id, _dst) \
165 for ((_id) = 0; (_id) < (_dst)->lags_len; (_id)++) \
166 if ((_dst)->lags[(_id)])
167
168#define dsa_lag_foreach_port(_dp, _dst, _lag) \
169 list_for_each_entry((_dp), &(_dst)->ports, list) \
170 if ((_dp)->lag_dev == (_lag))
171
172#define dsa_hsr_foreach_port(_dp, _ds, _hsr) \
173 list_for_each_entry((_dp), &(_ds)->dst->ports, list) \
174 if ((_dp)->ds == (_ds) && (_dp)->hsr_dev == (_hsr))
175
176static inline struct net_device *dsa_lag_dev(struct dsa_switch_tree *dst,
177 unsigned int id)
178{
179 return dst->lags[id];
180}
181
182static inline int dsa_lag_id(struct dsa_switch_tree *dst,
183 struct net_device *lag)
184{
185 unsigned int id;
186
187 dsa_lags_foreach_id(id, dst) {
188 if (dsa_lag_dev(dst, id) == lag)
189 return id;
190 }
191
192 return -ENODEV;
193}
194
195
196enum dsa_port_mall_action_type {
197 DSA_PORT_MALL_MIRROR,
198 DSA_PORT_MALL_POLICER,
199};
200
201
202struct dsa_mall_mirror_tc_entry {
203 u8 to_local_port;
204 bool ingress;
205};
206
207
208struct dsa_mall_policer_tc_entry {
209 u32 burst;
210 u64 rate_bytes_per_sec;
211};
212
213
214struct dsa_mall_tc_entry {
215 struct list_head list;
216 unsigned long cookie;
217 enum dsa_port_mall_action_type type;
218 union {
219 struct dsa_mall_mirror_tc_entry mirror;
220 struct dsa_mall_policer_tc_entry policer;
221 };
222};
223
224
225struct dsa_port {
226
227
228
229 union {
230 struct net_device *master;
231 struct net_device *slave;
232 };
233
234
235
236
237 const struct dsa_device_ops *tag_ops;
238
239
240 struct dsa_switch_tree *dst;
241 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
242 struct packet_type *pt);
243 bool (*filter)(const struct sk_buff *skb, struct net_device *dev);
244
245 enum {
246 DSA_PORT_TYPE_UNUSED = 0,
247 DSA_PORT_TYPE_CPU,
248 DSA_PORT_TYPE_DSA,
249 DSA_PORT_TYPE_USER,
250 } type;
251
252 struct dsa_switch *ds;
253 unsigned int index;
254 const char *name;
255 struct dsa_port *cpu_dp;
256 u8 mac[ETH_ALEN];
257 struct device_node *dn;
258 unsigned int ageing_time;
259 bool vlan_filtering;
260 u8 stp_state;
261 struct net_device *bridge_dev;
262 struct devlink_port devlink_port;
263 bool devlink_port_setup;
264 struct phylink *pl;
265 struct phylink_config pl_config;
266 struct net_device *lag_dev;
267 bool lag_tx_enabled;
268 struct net_device *hsr_dev;
269
270 struct list_head list;
271
272
273
274
275
276 void *priv;
277
278
279
280
281 const struct ethtool_ops *orig_ethtool_ops;
282
283
284
285
286 const struct dsa_netdevice_ops *netdev_ops;
287
288
289
290
291 struct list_head fdbs;
292 struct list_head mdbs;
293
294 bool setup;
295};
296
297
298
299
300
301
302struct dsa_link {
303 struct dsa_port *dp;
304 struct dsa_port *link_dp;
305 struct list_head list;
306};
307
308struct dsa_mac_addr {
309 unsigned char addr[ETH_ALEN];
310 u16 vid;
311 refcount_t refcount;
312 struct list_head list;
313};
314
315struct dsa_switch {
316 bool setup;
317
318 struct device *dev;
319
320
321
322
323 struct dsa_switch_tree *dst;
324 unsigned int index;
325
326
327 struct notifier_block nb;
328
329
330
331
332
333 void *priv;
334
335
336
337
338 struct dsa_chip_data *cd;
339
340
341
342
343 const struct dsa_switch_ops *ops;
344
345
346
347
348 u32 phys_mii_mask;
349 struct mii_bus *slave_mii_bus;
350
351
352 unsigned int ageing_time_min;
353 unsigned int ageing_time_max;
354
355
356 struct devlink *devlink;
357
358
359 unsigned int num_tx_queues;
360
361
362
363
364 bool vlan_filtering_is_global;
365
366
367
368
369
370
371 bool configure_vlan_while_not_filtering;
372
373
374
375
376
377
378
379 bool untag_bridge_pvid;
380
381
382
383
384 bool assisted_learning_on_cpu_port;
385
386
387
388
389 bool vlan_filtering;
390
391
392
393
394 bool pcs_poll;
395
396
397
398
399
400 bool mtu_enforcement_ingress;
401
402
403
404
405
406
407
408 unsigned int num_lag_ids;
409
410 size_t num_ports;
411};
412
413static inline struct dsa_port *dsa_to_port(struct dsa_switch *ds, int p)
414{
415 struct dsa_switch_tree *dst = ds->dst;
416 struct dsa_port *dp;
417
418 list_for_each_entry(dp, &dst->ports, list)
419 if (dp->ds == ds && dp->index == p)
420 return dp;
421
422 return NULL;
423}
424
425static inline bool dsa_port_is_dsa(struct dsa_port *port)
426{
427 return port->type == DSA_PORT_TYPE_DSA;
428}
429
430static inline bool dsa_port_is_cpu(struct dsa_port *port)
431{
432 return port->type == DSA_PORT_TYPE_CPU;
433}
434
435static inline bool dsa_port_is_user(struct dsa_port *dp)
436{
437 return dp->type == DSA_PORT_TYPE_USER;
438}
439
440static inline bool dsa_is_unused_port(struct dsa_switch *ds, int p)
441{
442 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_UNUSED;
443}
444
445static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p)
446{
447 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_CPU;
448}
449
450static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p)
451{
452 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_DSA;
453}
454
455static inline bool dsa_is_user_port(struct dsa_switch *ds, int p)
456{
457 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_USER;
458}
459
460static inline u32 dsa_user_ports(struct dsa_switch *ds)
461{
462 u32 mask = 0;
463 int p;
464
465 for (p = 0; p < ds->num_ports; p++)
466 if (dsa_is_user_port(ds, p))
467 mask |= BIT(p);
468
469 return mask;
470}
471
472
473static inline unsigned int dsa_routing_port(struct dsa_switch *ds, int device)
474{
475 struct dsa_switch_tree *dst = ds->dst;
476 struct dsa_link *dl;
477
478 list_for_each_entry(dl, &dst->rtable, list)
479 if (dl->dp->ds == ds && dl->link_dp->ds->index == device)
480 return dl->dp->index;
481
482 return ds->num_ports;
483}
484
485
486static inline unsigned int dsa_towards_port(struct dsa_switch *ds, int device,
487 int port)
488{
489 if (device == ds->index)
490 return port;
491 else
492 return dsa_routing_port(ds, device);
493}
494
495
496static inline unsigned int dsa_upstream_port(struct dsa_switch *ds, int port)
497{
498 const struct dsa_port *dp = dsa_to_port(ds, port);
499 const struct dsa_port *cpu_dp = dp->cpu_dp;
500
501 if (!cpu_dp)
502 return port;
503
504 return dsa_towards_port(ds, cpu_dp->ds->index, cpu_dp->index);
505}
506
507
508static inline bool dsa_is_upstream_port(struct dsa_switch *ds, int port)
509{
510 if (dsa_is_unused_port(ds, port))
511 return false;
512
513 return port == dsa_upstream_port(ds, port);
514}
515
516
517
518
519
520static inline bool dsa_switch_is_upstream_of(struct dsa_switch *upstream_ds,
521 struct dsa_switch *downstream_ds)
522{
523 int routing_port;
524
525 if (upstream_ds == downstream_ds)
526 return true;
527
528 routing_port = dsa_routing_port(downstream_ds, upstream_ds->index);
529
530 return dsa_is_upstream_port(downstream_ds, routing_port);
531}
532
533static inline bool dsa_port_is_vlan_filtering(const struct dsa_port *dp)
534{
535 const struct dsa_switch *ds = dp->ds;
536
537 if (ds->vlan_filtering_is_global)
538 return ds->vlan_filtering;
539 else
540 return dp->vlan_filtering;
541}
542
543static inline
544struct net_device *dsa_port_to_bridge_port(const struct dsa_port *dp)
545{
546 if (!dp->bridge_dev)
547 return NULL;
548
549 if (dp->lag_dev)
550 return dp->lag_dev;
551 else if (dp->hsr_dev)
552 return dp->hsr_dev;
553
554 return dp->slave;
555}
556
557typedef int dsa_fdb_dump_cb_t(const unsigned char *addr, u16 vid,
558 bool is_static, void *data);
559struct dsa_switch_ops {
560
561
562
563
564
565
566
567 enum dsa_tag_protocol (*get_tag_protocol)(struct dsa_switch *ds,
568 int port,
569 enum dsa_tag_protocol mprot);
570 int (*change_tag_protocol)(struct dsa_switch *ds, int port,
571 enum dsa_tag_protocol proto);
572
573 int (*setup)(struct dsa_switch *ds);
574 void (*teardown)(struct dsa_switch *ds);
575 u32 (*get_phy_flags)(struct dsa_switch *ds, int port);
576
577
578
579
580 int (*phy_read)(struct dsa_switch *ds, int port, int regnum);
581 int (*phy_write)(struct dsa_switch *ds, int port,
582 int regnum, u16 val);
583
584
585
586
587 void (*adjust_link)(struct dsa_switch *ds, int port,
588 struct phy_device *phydev);
589 void (*fixed_link_update)(struct dsa_switch *ds, int port,
590 struct fixed_phy_status *st);
591
592
593
594
595 void (*phylink_validate)(struct dsa_switch *ds, int port,
596 unsigned long *supported,
597 struct phylink_link_state *state);
598 int (*phylink_mac_link_state)(struct dsa_switch *ds, int port,
599 struct phylink_link_state *state);
600 void (*phylink_mac_config)(struct dsa_switch *ds, int port,
601 unsigned int mode,
602 const struct phylink_link_state *state);
603 void (*phylink_mac_an_restart)(struct dsa_switch *ds, int port);
604 void (*phylink_mac_link_down)(struct dsa_switch *ds, int port,
605 unsigned int mode,
606 phy_interface_t interface);
607 void (*phylink_mac_link_up)(struct dsa_switch *ds, int port,
608 unsigned int mode,
609 phy_interface_t interface,
610 struct phy_device *phydev,
611 int speed, int duplex,
612 bool tx_pause, bool rx_pause);
613 void (*phylink_fixed_state)(struct dsa_switch *ds, int port,
614 struct phylink_link_state *state);
615
616
617
618 void (*get_strings)(struct dsa_switch *ds, int port,
619 u32 stringset, uint8_t *data);
620 void (*get_ethtool_stats)(struct dsa_switch *ds,
621 int port, uint64_t *data);
622 int (*get_sset_count)(struct dsa_switch *ds, int port, int sset);
623 void (*get_ethtool_phy_stats)(struct dsa_switch *ds,
624 int port, uint64_t *data);
625 void (*get_stats64)(struct dsa_switch *ds, int port,
626 struct rtnl_link_stats64 *s);
627 void (*self_test)(struct dsa_switch *ds, int port,
628 struct ethtool_test *etest, u64 *data);
629
630
631
632
633 void (*get_wol)(struct dsa_switch *ds, int port,
634 struct ethtool_wolinfo *w);
635 int (*set_wol)(struct dsa_switch *ds, int port,
636 struct ethtool_wolinfo *w);
637
638
639
640
641 int (*get_ts_info)(struct dsa_switch *ds, int port,
642 struct ethtool_ts_info *ts);
643
644
645
646
647 int (*suspend)(struct dsa_switch *ds);
648 int (*resume)(struct dsa_switch *ds);
649
650
651
652
653 int (*port_enable)(struct dsa_switch *ds, int port,
654 struct phy_device *phy);
655 void (*port_disable)(struct dsa_switch *ds, int port);
656
657
658
659
660 int (*set_mac_eee)(struct dsa_switch *ds, int port,
661 struct ethtool_eee *e);
662 int (*get_mac_eee)(struct dsa_switch *ds, int port,
663 struct ethtool_eee *e);
664
665
666 int (*get_eeprom_len)(struct dsa_switch *ds);
667 int (*get_eeprom)(struct dsa_switch *ds,
668 struct ethtool_eeprom *eeprom, u8 *data);
669 int (*set_eeprom)(struct dsa_switch *ds,
670 struct ethtool_eeprom *eeprom, u8 *data);
671
672
673
674
675 int (*get_regs_len)(struct dsa_switch *ds, int port);
676 void (*get_regs)(struct dsa_switch *ds, int port,
677 struct ethtool_regs *regs, void *p);
678
679
680
681
682 int (*port_prechangeupper)(struct dsa_switch *ds, int port,
683 struct netdev_notifier_changeupper_info *info);
684
685
686
687
688 int (*set_ageing_time)(struct dsa_switch *ds, unsigned int msecs);
689 int (*port_bridge_join)(struct dsa_switch *ds, int port,
690 struct net_device *bridge);
691 void (*port_bridge_leave)(struct dsa_switch *ds, int port,
692 struct net_device *bridge);
693 void (*port_stp_state_set)(struct dsa_switch *ds, int port,
694 u8 state);
695 void (*port_fast_age)(struct dsa_switch *ds, int port);
696 int (*port_pre_bridge_flags)(struct dsa_switch *ds, int port,
697 struct switchdev_brport_flags flags,
698 struct netlink_ext_ack *extack);
699 int (*port_bridge_flags)(struct dsa_switch *ds, int port,
700 struct switchdev_brport_flags flags,
701 struct netlink_ext_ack *extack);
702 int (*port_set_mrouter)(struct dsa_switch *ds, int port, bool mrouter,
703 struct netlink_ext_ack *extack);
704
705
706
707
708 int (*port_vlan_filtering)(struct dsa_switch *ds, int port,
709 bool vlan_filtering,
710 struct netlink_ext_ack *extack);
711 int (*port_vlan_add)(struct dsa_switch *ds, int port,
712 const struct switchdev_obj_port_vlan *vlan,
713 struct netlink_ext_ack *extack);
714 int (*port_vlan_del)(struct dsa_switch *ds, int port,
715 const struct switchdev_obj_port_vlan *vlan);
716
717
718
719 int (*port_fdb_add)(struct dsa_switch *ds, int port,
720 const unsigned char *addr, u16 vid);
721 int (*port_fdb_del)(struct dsa_switch *ds, int port,
722 const unsigned char *addr, u16 vid);
723 int (*port_fdb_dump)(struct dsa_switch *ds, int port,
724 dsa_fdb_dump_cb_t *cb, void *data);
725
726
727
728
729 int (*port_mdb_add)(struct dsa_switch *ds, int port,
730 const struct switchdev_obj_port_mdb *mdb);
731 int (*port_mdb_del)(struct dsa_switch *ds, int port,
732 const struct switchdev_obj_port_mdb *mdb);
733
734
735
736 int (*get_rxnfc)(struct dsa_switch *ds, int port,
737 struct ethtool_rxnfc *nfc, u32 *rule_locs);
738 int (*set_rxnfc)(struct dsa_switch *ds, int port,
739 struct ethtool_rxnfc *nfc);
740
741
742
743
744 int (*cls_flower_add)(struct dsa_switch *ds, int port,
745 struct flow_cls_offload *cls, bool ingress);
746 int (*cls_flower_del)(struct dsa_switch *ds, int port,
747 struct flow_cls_offload *cls, bool ingress);
748 int (*cls_flower_stats)(struct dsa_switch *ds, int port,
749 struct flow_cls_offload *cls, bool ingress);
750 int (*port_mirror_add)(struct dsa_switch *ds, int port,
751 struct dsa_mall_mirror_tc_entry *mirror,
752 bool ingress);
753 void (*port_mirror_del)(struct dsa_switch *ds, int port,
754 struct dsa_mall_mirror_tc_entry *mirror);
755 int (*port_policer_add)(struct dsa_switch *ds, int port,
756 struct dsa_mall_policer_tc_entry *policer);
757 void (*port_policer_del)(struct dsa_switch *ds, int port);
758 int (*port_setup_tc)(struct dsa_switch *ds, int port,
759 enum tc_setup_type type, void *type_data);
760
761
762
763
764 int (*crosschip_bridge_join)(struct dsa_switch *ds, int tree_index,
765 int sw_index, int port,
766 struct net_device *br);
767 void (*crosschip_bridge_leave)(struct dsa_switch *ds, int tree_index,
768 int sw_index, int port,
769 struct net_device *br);
770 int (*crosschip_lag_change)(struct dsa_switch *ds, int sw_index,
771 int port);
772 int (*crosschip_lag_join)(struct dsa_switch *ds, int sw_index,
773 int port, struct net_device *lag,
774 struct netdev_lag_upper_info *info);
775 int (*crosschip_lag_leave)(struct dsa_switch *ds, int sw_index,
776 int port, struct net_device *lag);
777
778
779
780
781 int (*port_hwtstamp_get)(struct dsa_switch *ds, int port,
782 struct ifreq *ifr);
783 int (*port_hwtstamp_set)(struct dsa_switch *ds, int port,
784 struct ifreq *ifr);
785 void (*port_txtstamp)(struct dsa_switch *ds, int port,
786 struct sk_buff *skb);
787 bool (*port_rxtstamp)(struct dsa_switch *ds, int port,
788 struct sk_buff *skb, unsigned int type);
789
790
791 int (*devlink_param_get)(struct dsa_switch *ds, u32 id,
792 struct devlink_param_gset_ctx *ctx);
793 int (*devlink_param_set)(struct dsa_switch *ds, u32 id,
794 struct devlink_param_gset_ctx *ctx);
795 int (*devlink_info_get)(struct dsa_switch *ds,
796 struct devlink_info_req *req,
797 struct netlink_ext_ack *extack);
798 int (*devlink_sb_pool_get)(struct dsa_switch *ds,
799 unsigned int sb_index, u16 pool_index,
800 struct devlink_sb_pool_info *pool_info);
801 int (*devlink_sb_pool_set)(struct dsa_switch *ds, unsigned int sb_index,
802 u16 pool_index, u32 size,
803 enum devlink_sb_threshold_type threshold_type,
804 struct netlink_ext_ack *extack);
805 int (*devlink_sb_port_pool_get)(struct dsa_switch *ds, int port,
806 unsigned int sb_index, u16 pool_index,
807 u32 *p_threshold);
808 int (*devlink_sb_port_pool_set)(struct dsa_switch *ds, int port,
809 unsigned int sb_index, u16 pool_index,
810 u32 threshold,
811 struct netlink_ext_ack *extack);
812 int (*devlink_sb_tc_pool_bind_get)(struct dsa_switch *ds, int port,
813 unsigned int sb_index, u16 tc_index,
814 enum devlink_sb_pool_type pool_type,
815 u16 *p_pool_index, u32 *p_threshold);
816 int (*devlink_sb_tc_pool_bind_set)(struct dsa_switch *ds, int port,
817 unsigned int sb_index, u16 tc_index,
818 enum devlink_sb_pool_type pool_type,
819 u16 pool_index, u32 threshold,
820 struct netlink_ext_ack *extack);
821 int (*devlink_sb_occ_snapshot)(struct dsa_switch *ds,
822 unsigned int sb_index);
823 int (*devlink_sb_occ_max_clear)(struct dsa_switch *ds,
824 unsigned int sb_index);
825 int (*devlink_sb_occ_port_pool_get)(struct dsa_switch *ds, int port,
826 unsigned int sb_index, u16 pool_index,
827 u32 *p_cur, u32 *p_max);
828 int (*devlink_sb_occ_tc_port_bind_get)(struct dsa_switch *ds, int port,
829 unsigned int sb_index, u16 tc_index,
830 enum devlink_sb_pool_type pool_type,
831 u32 *p_cur, u32 *p_max);
832
833
834
835
836
837
838
839 int (*port_change_mtu)(struct dsa_switch *ds, int port,
840 int new_mtu);
841 int (*port_max_mtu)(struct dsa_switch *ds, int port);
842
843
844
845
846 int (*port_lag_change)(struct dsa_switch *ds, int port);
847 int (*port_lag_join)(struct dsa_switch *ds, int port,
848 struct net_device *lag,
849 struct netdev_lag_upper_info *info);
850 int (*port_lag_leave)(struct dsa_switch *ds, int port,
851 struct net_device *lag);
852
853
854
855
856 int (*port_hsr_join)(struct dsa_switch *ds, int port,
857 struct net_device *hsr);
858 int (*port_hsr_leave)(struct dsa_switch *ds, int port,
859 struct net_device *hsr);
860
861
862
863
864 int (*port_mrp_add)(struct dsa_switch *ds, int port,
865 const struct switchdev_obj_mrp *mrp);
866 int (*port_mrp_del)(struct dsa_switch *ds, int port,
867 const struct switchdev_obj_mrp *mrp);
868 int (*port_mrp_add_ring_role)(struct dsa_switch *ds, int port,
869 const struct switchdev_obj_ring_role_mrp *mrp);
870 int (*port_mrp_del_ring_role)(struct dsa_switch *ds, int port,
871 const struct switchdev_obj_ring_role_mrp *mrp);
872};
873
874#define DSA_DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes) \
875 DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes, \
876 dsa_devlink_param_get, dsa_devlink_param_set, NULL)
877
878int dsa_devlink_param_get(struct devlink *dl, u32 id,
879 struct devlink_param_gset_ctx *ctx);
880int dsa_devlink_param_set(struct devlink *dl, u32 id,
881 struct devlink_param_gset_ctx *ctx);
882int dsa_devlink_params_register(struct dsa_switch *ds,
883 const struct devlink_param *params,
884 size_t params_count);
885void dsa_devlink_params_unregister(struct dsa_switch *ds,
886 const struct devlink_param *params,
887 size_t params_count);
888int dsa_devlink_resource_register(struct dsa_switch *ds,
889 const char *resource_name,
890 u64 resource_size,
891 u64 resource_id,
892 u64 parent_resource_id,
893 const struct devlink_resource_size_params *size_params);
894
895void dsa_devlink_resources_unregister(struct dsa_switch *ds);
896
897void dsa_devlink_resource_occ_get_register(struct dsa_switch *ds,
898 u64 resource_id,
899 devlink_resource_occ_get_t *occ_get,
900 void *occ_get_priv);
901void dsa_devlink_resource_occ_get_unregister(struct dsa_switch *ds,
902 u64 resource_id);
903struct devlink_region *
904dsa_devlink_region_create(struct dsa_switch *ds,
905 const struct devlink_region_ops *ops,
906 u32 region_max_snapshots, u64 region_size);
907struct devlink_region *
908dsa_devlink_port_region_create(struct dsa_switch *ds,
909 int port,
910 const struct devlink_port_region_ops *ops,
911 u32 region_max_snapshots, u64 region_size);
912void dsa_devlink_region_destroy(struct devlink_region *region);
913
914struct dsa_port *dsa_port_from_netdev(struct net_device *netdev);
915
916struct dsa_devlink_priv {
917 struct dsa_switch *ds;
918};
919
920static inline struct dsa_switch *dsa_devlink_to_ds(struct devlink *dl)
921{
922 struct dsa_devlink_priv *dl_priv = devlink_priv(dl);
923
924 return dl_priv->ds;
925}
926
927static inline
928struct dsa_switch *dsa_devlink_port_to_ds(struct devlink_port *port)
929{
930 struct devlink *dl = port->devlink;
931 struct dsa_devlink_priv *dl_priv = devlink_priv(dl);
932
933 return dl_priv->ds;
934}
935
936static inline int dsa_devlink_port_to_port(struct devlink_port *port)
937{
938 return port->index;
939}
940
941struct dsa_switch_driver {
942 struct list_head list;
943 const struct dsa_switch_ops *ops;
944};
945
946struct net_device *dsa_dev_to_net_device(struct device *dev);
947
948
949static inline bool netdev_uses_dsa(const struct net_device *dev)
950{
951#if IS_ENABLED(CONFIG_NET_DSA)
952 return dev->dsa_ptr && dev->dsa_ptr->rcv;
953#endif
954 return false;
955}
956
957static inline bool dsa_can_decode(const struct sk_buff *skb,
958 struct net_device *dev)
959{
960#if IS_ENABLED(CONFIG_NET_DSA)
961 return !dev->dsa_ptr->filter || dev->dsa_ptr->filter(skb, dev);
962#endif
963 return false;
964}
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980static inline void dsa_tag_generic_flow_dissect(const struct sk_buff *skb,
981 __be16 *proto, int *offset)
982{
983#if IS_ENABLED(CONFIG_NET_DSA)
984 const struct dsa_device_ops *ops = skb->dev->dsa_ptr->tag_ops;
985 int tag_len = ops->needed_headroom;
986
987 *offset = tag_len;
988 *proto = ((__be16 *)skb->data)[(tag_len / 2) - 1];
989#endif
990}
991
992#if IS_ENABLED(CONFIG_NET_DSA)
993static inline int __dsa_netdevice_ops_check(struct net_device *dev)
994{
995 int err = -EOPNOTSUPP;
996
997 if (!dev->dsa_ptr)
998 return err;
999
1000 if (!dev->dsa_ptr->netdev_ops)
1001 return err;
1002
1003 return 0;
1004}
1005
1006static inline int dsa_ndo_do_ioctl(struct net_device *dev, struct ifreq *ifr,
1007 int cmd)
1008{
1009 const struct dsa_netdevice_ops *ops;
1010 int err;
1011
1012 err = __dsa_netdevice_ops_check(dev);
1013 if (err)
1014 return err;
1015
1016 ops = dev->dsa_ptr->netdev_ops;
1017
1018 return ops->ndo_do_ioctl(dev, ifr, cmd);
1019}
1020#else
1021static inline int dsa_ndo_do_ioctl(struct net_device *dev, struct ifreq *ifr,
1022 int cmd)
1023{
1024 return -EOPNOTSUPP;
1025}
1026#endif
1027
1028void dsa_unregister_switch(struct dsa_switch *ds);
1029int dsa_register_switch(struct dsa_switch *ds);
1030struct dsa_switch *dsa_switch_find(int tree_index, int sw_index);
1031#ifdef CONFIG_PM_SLEEP
1032int dsa_switch_suspend(struct dsa_switch *ds);
1033int dsa_switch_resume(struct dsa_switch *ds);
1034#else
1035static inline int dsa_switch_suspend(struct dsa_switch *ds)
1036{
1037 return 0;
1038}
1039static inline int dsa_switch_resume(struct dsa_switch *ds)
1040{
1041 return 0;
1042}
1043#endif
1044
1045#if IS_ENABLED(CONFIG_NET_DSA)
1046bool dsa_slave_dev_check(const struct net_device *dev);
1047#else
1048static inline bool dsa_slave_dev_check(const struct net_device *dev)
1049{
1050 return false;
1051}
1052#endif
1053
1054netdev_tx_t dsa_enqueue_skb(struct sk_buff *skb, struct net_device *dev);
1055int dsa_port_get_phy_strings(struct dsa_port *dp, uint8_t *data);
1056int dsa_port_get_ethtool_phy_stats(struct dsa_port *dp, uint64_t *data);
1057int dsa_port_get_phy_sset_count(struct dsa_port *dp);
1058void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up);
1059
1060struct dsa_tag_driver {
1061 const struct dsa_device_ops *ops;
1062 struct list_head list;
1063 struct module *owner;
1064};
1065
1066void dsa_tag_drivers_register(struct dsa_tag_driver *dsa_tag_driver_array[],
1067 unsigned int count,
1068 struct module *owner);
1069void dsa_tag_drivers_unregister(struct dsa_tag_driver *dsa_tag_driver_array[],
1070 unsigned int count);
1071
1072#define dsa_tag_driver_module_drivers(__dsa_tag_drivers_array, __count) \
1073static int __init dsa_tag_driver_module_init(void) \
1074{ \
1075 dsa_tag_drivers_register(__dsa_tag_drivers_array, __count, \
1076 THIS_MODULE); \
1077 return 0; \
1078} \
1079module_init(dsa_tag_driver_module_init); \
1080 \
1081static void __exit dsa_tag_driver_module_exit(void) \
1082{ \
1083 dsa_tag_drivers_unregister(__dsa_tag_drivers_array, __count); \
1084} \
1085module_exit(dsa_tag_driver_module_exit)
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096#define module_dsa_tag_drivers(__ops_array) \
1097dsa_tag_driver_module_drivers(__ops_array, ARRAY_SIZE(__ops_array))
1098
1099#define DSA_TAG_DRIVER_NAME(__ops) dsa_tag_driver ## _ ## __ops
1100
1101
1102
1103
1104#define DSA_TAG_DRIVER(__ops) \
1105static struct dsa_tag_driver DSA_TAG_DRIVER_NAME(__ops) = { \
1106 .ops = &__ops, \
1107}
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118#define module_dsa_tag_driver(__ops) \
1119DSA_TAG_DRIVER(__ops); \
1120 \
1121static struct dsa_tag_driver *dsa_tag_driver_array[] = { \
1122 &DSA_TAG_DRIVER_NAME(__ops) \
1123}; \
1124module_dsa_tag_drivers(dsa_tag_driver_array)
1125#endif
1126
1127