1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * include/net/dsa.h - Driver for Distributed Switch Architecture switch chips
4 * Copyright (c) 2008-2009 Marvell Semiconductor
7 #ifndef __LINUX_NET_DSA_H
8 #define __LINUX_NET_DSA_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>
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>
27 struct fixed_phy_status;
28 struct phylink_link_state;
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
55 enum 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,
85 struct 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,
91 /* Used to determine which traffic should match the DSA filter in
92 * eth_type_trans, and which, if any, should bypass it and be processed
93 * as regular on the master net device.
95 bool (*filter)(const struct sk_buff *skb, struct net_device *dev);
96 unsigned int needed_headroom;
97 unsigned int needed_tailroom;
99 enum dsa_tag_protocol proto;
100 /* Some tagging protocols either mangle or shift the destination MAC
101 * address, in which case the DSA master would drop packets on ingress
102 * if what it understands out of the destination MAC address is not in
105 bool promisc_on_master;
108 /* This structure defines the control interfaces that are overlayed by the
109 * DSA layer on top of the DSA CPU/management net_device instance. This is
110 * used by the core net_device layer while calling various net_device_ops
113 struct dsa_netdevice_ops {
114 int (*ndo_do_ioctl)(struct net_device *dev, struct ifreq *ifr,
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))
122 struct dsa_switch_tree {
123 struct list_head list;
125 /* Notifier chain for switch-wide events */
126 struct raw_notifier_head nh;
128 /* Tree identifier */
131 /* Number of switches attached to this tree */
132 struct kref refcount;
134 /* Has this tree been applied to the hardware? */
137 /* Tagging protocol operations */
138 const struct dsa_device_ops *tag_ops;
140 /* Default tagging protocol preferred by the switches in this
143 enum dsa_tag_protocol default_proto;
146 * Configuration data for the platform device that owns
147 * this dsa switch tree instance.
149 struct dsa_platform_data *pd;
151 /* List of switch ports */
152 struct list_head ports;
154 /* List of DSA links composing the routing table */
155 struct list_head rtable;
157 /* Maps offloaded LAG netdevs to a zero-based linear ID for
158 * drivers that need it.
160 struct net_device **lags;
161 unsigned int lags_len;
164 #define dsa_lags_foreach_id(_id, _dst) \
165 for ((_id) = 0; (_id) < (_dst)->lags_len; (_id)++) \
166 if ((_dst)->lags[(_id)])
168 #define dsa_lag_foreach_port(_dp, _dst, _lag) \
169 list_for_each_entry((_dp), &(_dst)->ports, list) \
170 if ((_dp)->lag_dev == (_lag))
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))
176 static inline struct net_device *dsa_lag_dev(struct dsa_switch_tree *dst,
179 return dst->lags[id];
182 static inline int dsa_lag_id(struct dsa_switch_tree *dst,
183 struct net_device *lag)
187 dsa_lags_foreach_id(id, dst) {
188 if (dsa_lag_dev(dst, id) == lag)
195 /* TC matchall action types */
196 enum dsa_port_mall_action_type {
197 DSA_PORT_MALL_MIRROR,
198 DSA_PORT_MALL_POLICER,
201 /* TC mirroring entry */
202 struct dsa_mall_mirror_tc_entry {
207 /* TC port policer entry */
208 struct dsa_mall_policer_tc_entry {
210 u64 rate_bytes_per_sec;
213 /* TC matchall entry */
214 struct dsa_mall_tc_entry {
215 struct list_head list;
216 unsigned long cookie;
217 enum dsa_port_mall_action_type type;
219 struct dsa_mall_mirror_tc_entry mirror;
220 struct dsa_mall_policer_tc_entry policer;
226 /* A CPU port is physically connected to a master device.
227 * A user port exposed to userspace has a slave device.
230 struct net_device *master;
231 struct net_device *slave;
234 /* Copy of the tagging protocol operations, for quicker access
235 * in the data path. Valid only for the CPU ports.
237 const struct dsa_device_ops *tag_ops;
239 /* Copies for faster access in master receive hot path */
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);
246 DSA_PORT_TYPE_UNUSED = 0,
252 struct dsa_switch *ds;
255 struct dsa_port *cpu_dp;
257 struct device_node *dn;
258 unsigned int ageing_time;
261 struct net_device *bridge_dev;
262 struct devlink_port devlink_port;
263 bool devlink_port_setup;
265 struct phylink_config pl_config;
266 struct net_device *lag_dev;
268 struct net_device *hsr_dev;
270 struct list_head list;
273 * Give the switch driver somewhere to hang its per-port private data
274 * structures (accessible from the tagger).
279 * Original copy of the master netdev ethtool_ops
281 const struct ethtool_ops *orig_ethtool_ops;
284 * Original copy of the master netdev net_device_ops
286 const struct dsa_netdevice_ops *netdev_ops;
288 /* List of MAC addresses that must be forwarded on this port.
289 * These are only valid on CPU ports and DSA links.
291 struct list_head fdbs;
292 struct list_head mdbs;
297 /* TODO: ideally DSA ports would have a single dp->link_dp member,
298 * and no dst->rtable nor this struct dsa_link would be needed,
299 * but this would require some more complex tree walking,
300 * so keep it stupid at the moment and list them all.
304 struct dsa_port *link_dp;
305 struct list_head list;
308 struct dsa_mac_addr {
309 unsigned char addr[ETH_ALEN];
312 struct list_head list;
321 * Parent switch tree, and switch index.
323 struct dsa_switch_tree *dst;
326 /* Listener for switch fabric events */
327 struct notifier_block nb;
330 * Give the switch driver somewhere to hang its private data
336 * Configuration data for this switch.
338 struct dsa_chip_data *cd;
341 * The switch operations.
343 const struct dsa_switch_ops *ops;
346 * Slave mii_bus and devices for the individual ports.
349 struct mii_bus *slave_mii_bus;
351 /* Ageing Time limits in msecs */
352 unsigned int ageing_time_min;
353 unsigned int ageing_time_max;
355 /* devlink used to represent this switch device */
356 struct devlink *devlink;
358 /* Number of switch port queues */
359 unsigned int num_tx_queues;
361 /* Disallow bridge core from requesting different VLAN awareness
362 * settings on ports if not hardware-supported
364 bool vlan_filtering_is_global;
366 /* Pass .port_vlan_add and .port_vlan_del to drivers even for bridges
367 * that have vlan_filtering=0. All drivers should ideally set this (and
368 * then the option would get removed), but it is unknown whether this
369 * would break things or not.
371 bool configure_vlan_while_not_filtering;
373 /* If the switch driver always programs the CPU port as egress tagged
374 * despite the VLAN configuration indicating otherwise, then setting
375 * @untag_bridge_pvid will force the DSA receive path to pop the bridge's
376 * default_pvid VLAN tagged frames to offer a consistent behavior
377 * between a vlan_filtering=0 and vlan_filtering=1 bridge device.
379 bool untag_bridge_pvid;
381 /* Let DSA manage the FDB entries towards the CPU, based on the
382 * software bridge database.
384 bool assisted_learning_on_cpu_port;
386 /* In case vlan_filtering_is_global is set, the VLAN awareness state
387 * should be retrieved from here and not from the per-port settings.
391 /* MAC PCS does not provide link state change interrupt, and requires
392 * polling. Flag passed on to PHYLINK.
396 /* For switches that only have the MRU configurable. To ensure the
397 * configured MTU is not exceeded, normalization of MRU on all bridged
398 * interfaces is needed.
400 bool mtu_enforcement_ingress;
402 /* Drivers that benefit from having an ID associated with each
403 * offloaded LAG should set this to the maximum number of
404 * supported IDs. DSA will then maintain a mapping of _at
405 * least_ these many IDs, accessible to drivers via
408 unsigned int num_lag_ids;
413 static inline struct dsa_port *dsa_to_port(struct dsa_switch *ds, int p)
415 struct dsa_switch_tree *dst = ds->dst;
418 list_for_each_entry(dp, &dst->ports, list)
419 if (dp->ds == ds && dp->index == p)
425 static inline bool dsa_port_is_dsa(struct dsa_port *port)
427 return port->type == DSA_PORT_TYPE_DSA;
430 static inline bool dsa_port_is_cpu(struct dsa_port *port)
432 return port->type == DSA_PORT_TYPE_CPU;
435 static inline bool dsa_port_is_user(struct dsa_port *dp)
437 return dp->type == DSA_PORT_TYPE_USER;
440 static inline bool dsa_is_unused_port(struct dsa_switch *ds, int p)
442 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_UNUSED;
445 static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p)
447 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_CPU;
450 static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p)
452 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_DSA;
455 static inline bool dsa_is_user_port(struct dsa_switch *ds, int p)
457 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_USER;
460 static inline u32 dsa_user_ports(struct dsa_switch *ds)
465 for (p = 0; p < ds->num_ports; p++)
466 if (dsa_is_user_port(ds, p))
472 /* Return the local port used to reach an arbitrary switch device */
473 static inline unsigned int dsa_routing_port(struct dsa_switch *ds, int device)
475 struct dsa_switch_tree *dst = ds->dst;
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;
482 return ds->num_ports;
485 /* Return the local port used to reach an arbitrary switch port */
486 static inline unsigned int dsa_towards_port(struct dsa_switch *ds, int device,
489 if (device == ds->index)
492 return dsa_routing_port(ds, device);
495 /* Return the local port used to reach the dedicated CPU port */
496 static inline unsigned int dsa_upstream_port(struct dsa_switch *ds, int port)
498 const struct dsa_port *dp = dsa_to_port(ds, port);
499 const struct dsa_port *cpu_dp = dp->cpu_dp;
504 return dsa_towards_port(ds, cpu_dp->ds->index, cpu_dp->index);
507 /* Return true if this is the local port used to reach the CPU port */
508 static inline bool dsa_is_upstream_port(struct dsa_switch *ds, int port)
510 if (dsa_is_unused_port(ds, port))
513 return port == dsa_upstream_port(ds, port);
516 /* Return true if @upstream_ds is an upstream switch of @downstream_ds, meaning
517 * that the routing port from @downstream_ds to @upstream_ds is also the port
518 * which @downstream_ds uses to reach its dedicated CPU.
520 static inline bool dsa_switch_is_upstream_of(struct dsa_switch *upstream_ds,
521 struct dsa_switch *downstream_ds)
525 if (upstream_ds == downstream_ds)
528 routing_port = dsa_routing_port(downstream_ds, upstream_ds->index);
530 return dsa_is_upstream_port(downstream_ds, routing_port);
533 static inline bool dsa_port_is_vlan_filtering(const struct dsa_port *dp)
535 const struct dsa_switch *ds = dp->ds;
537 if (ds->vlan_filtering_is_global)
538 return ds->vlan_filtering;
540 return dp->vlan_filtering;
544 struct net_device *dsa_port_to_bridge_port(const struct dsa_port *dp)
551 else if (dp->hsr_dev)
557 typedef int dsa_fdb_dump_cb_t(const unsigned char *addr, u16 vid,
558 bool is_static, void *data);
559 struct dsa_switch_ops {
561 * Tagging protocol helpers called for the CPU ports and DSA links.
562 * @get_tag_protocol retrieves the initial tagging protocol and is
563 * mandatory. Switches which can operate using multiple tagging
564 * protocols should implement @change_tag_protocol and report in
565 * @get_tag_protocol the tagger in current use.
567 enum dsa_tag_protocol (*get_tag_protocol)(struct dsa_switch *ds,
569 enum dsa_tag_protocol mprot);
570 int (*change_tag_protocol)(struct dsa_switch *ds, int port,
571 enum dsa_tag_protocol proto);
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);
578 * Access to the switch's PHY registers.
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);
585 * Link state adjustment (called from libphy)
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);
593 * PHYLINK integration
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,
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,
606 phy_interface_t interface);
607 void (*phylink_mac_link_up)(struct dsa_switch *ds, int port,
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);
616 * Port statistics counters.
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);
631 * ethtool Wake-on-LAN
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);
639 * ethtool timestamp info
641 int (*get_ts_info)(struct dsa_switch *ds, int port,
642 struct ethtool_ts_info *ts);
647 int (*suspend)(struct dsa_switch *ds);
648 int (*resume)(struct dsa_switch *ds);
651 * Port enable/disable
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);
658 * Port's MAC EEE settings
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);
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);
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);
680 * Upper device tracking.
682 int (*port_prechangeupper)(struct dsa_switch *ds, int port,
683 struct netdev_notifier_changeupper_info *info);
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,
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);
708 int (*port_vlan_filtering)(struct dsa_switch *ds, int port,
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);
717 * Forwarding database
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);
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);
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);
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,
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);
762 * Cross-chip operations
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,
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);
781 int (*port_hwtstamp_get)(struct dsa_switch *ds, int port,
783 int (*port_hwtstamp_set)(struct dsa_switch *ds, int port,
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);
790 /* Devlink parameters, etc */
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,
808 int (*devlink_sb_port_pool_set)(struct dsa_switch *ds, int port,
809 unsigned int sb_index, u16 pool_index,
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);
834 * MTU change functionality. Switches can also adjust their MRU through
835 * this method. By MTU, one understands the SDU (L2 payload) length.
836 * If the switch needs to account for the DSA tag on the CPU port, this
837 * method needs to do so privately.
839 int (*port_change_mtu)(struct dsa_switch *ds, int port,
841 int (*port_max_mtu)(struct dsa_switch *ds, int port);
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);
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);
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);
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)
878 int dsa_devlink_param_get(struct devlink *dl, u32 id,
879 struct devlink_param_gset_ctx *ctx);
880 int dsa_devlink_param_set(struct devlink *dl, u32 id,
881 struct devlink_param_gset_ctx *ctx);
882 int dsa_devlink_params_register(struct dsa_switch *ds,
883 const struct devlink_param *params,
884 size_t params_count);
885 void dsa_devlink_params_unregister(struct dsa_switch *ds,
886 const struct devlink_param *params,
887 size_t params_count);
888 int dsa_devlink_resource_register(struct dsa_switch *ds,
889 const char *resource_name,
892 u64 parent_resource_id,
893 const struct devlink_resource_size_params *size_params);
895 void dsa_devlink_resources_unregister(struct dsa_switch *ds);
897 void dsa_devlink_resource_occ_get_register(struct dsa_switch *ds,
899 devlink_resource_occ_get_t *occ_get,
901 void dsa_devlink_resource_occ_get_unregister(struct dsa_switch *ds,
903 struct devlink_region *
904 dsa_devlink_region_create(struct dsa_switch *ds,
905 const struct devlink_region_ops *ops,
906 u32 region_max_snapshots, u64 region_size);
907 struct devlink_region *
908 dsa_devlink_port_region_create(struct dsa_switch *ds,
910 const struct devlink_port_region_ops *ops,
911 u32 region_max_snapshots, u64 region_size);
912 void dsa_devlink_region_destroy(struct devlink_region *region);
914 struct dsa_port *dsa_port_from_netdev(struct net_device *netdev);
916 struct dsa_devlink_priv {
917 struct dsa_switch *ds;
920 static inline struct dsa_switch *dsa_devlink_to_ds(struct devlink *dl)
922 struct dsa_devlink_priv *dl_priv = devlink_priv(dl);
928 struct dsa_switch *dsa_devlink_port_to_ds(struct devlink_port *port)
930 struct devlink *dl = port->devlink;
931 struct dsa_devlink_priv *dl_priv = devlink_priv(dl);
936 static inline int dsa_devlink_port_to_port(struct devlink_port *port)
941 struct dsa_switch_driver {
942 struct list_head list;
943 const struct dsa_switch_ops *ops;
946 struct net_device *dsa_dev_to_net_device(struct device *dev);
948 /* Keep inline for faster access in hot path */
949 static inline bool netdev_uses_dsa(const struct net_device *dev)
951 #if IS_ENABLED(CONFIG_NET_DSA)
952 return dev->dsa_ptr && dev->dsa_ptr->rcv;
957 static inline bool dsa_can_decode(const struct sk_buff *skb,
958 struct net_device *dev)
960 #if IS_ENABLED(CONFIG_NET_DSA)
961 return !dev->dsa_ptr->filter || dev->dsa_ptr->filter(skb, dev);
966 /* All DSA tags that push the EtherType to the right (basically all except tail
967 * tags, which don't break dissection) can be treated the same from the
968 * perspective of the flow dissector.
971 * - offset: the (B - A) difference between:
972 * A. the position of the real EtherType and
973 * B. the current skb->data (aka ETH_HLEN bytes into the frame, aka 2 bytes
974 * after the normal EtherType was supposed to be)
975 * The offset in bytes is exactly equal to the tagger overhead (and half of
976 * that, in __be16 shorts).
978 * - proto: the value of the real EtherType.
980 static inline void dsa_tag_generic_flow_dissect(const struct sk_buff *skb,
981 __be16 *proto, int *offset)
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;
988 *proto = ((__be16 *)skb->data)[(tag_len / 2) - 1];
992 #if IS_ENABLED(CONFIG_NET_DSA)
993 static inline int __dsa_netdevice_ops_check(struct net_device *dev)
995 int err = -EOPNOTSUPP;
1000 if (!dev->dsa_ptr->netdev_ops)
1006 static inline int dsa_ndo_do_ioctl(struct net_device *dev, struct ifreq *ifr,
1009 const struct dsa_netdevice_ops *ops;
1012 err = __dsa_netdevice_ops_check(dev);
1016 ops = dev->dsa_ptr->netdev_ops;
1018 return ops->ndo_do_ioctl(dev, ifr, cmd);
1021 static inline int dsa_ndo_do_ioctl(struct net_device *dev, struct ifreq *ifr,
1028 void dsa_unregister_switch(struct dsa_switch *ds);
1029 int dsa_register_switch(struct dsa_switch *ds);
1030 struct dsa_switch *dsa_switch_find(int tree_index, int sw_index);
1031 #ifdef CONFIG_PM_SLEEP
1032 int dsa_switch_suspend(struct dsa_switch *ds);
1033 int dsa_switch_resume(struct dsa_switch *ds);
1035 static inline int dsa_switch_suspend(struct dsa_switch *ds)
1039 static inline int dsa_switch_resume(struct dsa_switch *ds)
1043 #endif /* CONFIG_PM_SLEEP */
1045 #if IS_ENABLED(CONFIG_NET_DSA)
1046 bool dsa_slave_dev_check(const struct net_device *dev);
1048 static inline bool dsa_slave_dev_check(const struct net_device *dev)
1054 netdev_tx_t dsa_enqueue_skb(struct sk_buff *skb, struct net_device *dev);
1055 int dsa_port_get_phy_strings(struct dsa_port *dp, uint8_t *data);
1056 int dsa_port_get_ethtool_phy_stats(struct dsa_port *dp, uint64_t *data);
1057 int dsa_port_get_phy_sset_count(struct dsa_port *dp);
1058 void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up);
1060 struct dsa_tag_driver {
1061 const struct dsa_device_ops *ops;
1062 struct list_head list;
1063 struct module *owner;
1066 void dsa_tag_drivers_register(struct dsa_tag_driver *dsa_tag_driver_array[],
1068 struct module *owner);
1069 void dsa_tag_drivers_unregister(struct dsa_tag_driver *dsa_tag_driver_array[],
1070 unsigned int count);
1072 #define dsa_tag_driver_module_drivers(__dsa_tag_drivers_array, __count) \
1073 static int __init dsa_tag_driver_module_init(void) \
1075 dsa_tag_drivers_register(__dsa_tag_drivers_array, __count, \
1079 module_init(dsa_tag_driver_module_init); \
1081 static void __exit dsa_tag_driver_module_exit(void) \
1083 dsa_tag_drivers_unregister(__dsa_tag_drivers_array, __count); \
1085 module_exit(dsa_tag_driver_module_exit)
1088 * module_dsa_tag_drivers() - Helper macro for registering DSA tag
1090 * @__ops_array: Array of tag driver strucutres
1092 * Helper macro for DSA tag drivers which do not do anything special
1093 * in module init/exit. Each module may only use this macro once, and
1094 * calling it replaces module_init() and module_exit().
1096 #define module_dsa_tag_drivers(__ops_array) \
1097 dsa_tag_driver_module_drivers(__ops_array, ARRAY_SIZE(__ops_array))
1099 #define DSA_TAG_DRIVER_NAME(__ops) dsa_tag_driver ## _ ## __ops
1101 /* Create a static structure we can build a linked list of dsa_tag
1104 #define DSA_TAG_DRIVER(__ops) \
1105 static struct dsa_tag_driver DSA_TAG_DRIVER_NAME(__ops) = { \
1110 * module_dsa_tag_driver() - Helper macro for registering a single DSA tag
1112 * @__ops: Single tag driver structures
1114 * Helper macro for DSA tag drivers which do not do anything special
1115 * in module init/exit. Each module may only use this macro once, and
1116 * calling it replaces module_init() and module_exit().
1118 #define module_dsa_tag_driver(__ops) \
1119 DSA_TAG_DRIVER(__ops); \
1121 static struct dsa_tag_driver *dsa_tag_driver_array[] = { \
1122 &DSA_TAG_DRIVER_NAME(__ops) \
1124 module_dsa_tag_drivers(dsa_tag_driver_array)