1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * include/net/dsa.h - Driver for Distributed Switch Architecture switch chips 4 * Copyright (c) 2008-2009 Marvell Semiconductor 5 */ 6 7 #ifndef __LINUX_NET_DSA_H 8 #define __LINUX_NET_DSA_H 9 10 #include <linux/if.h> 11 #include <linux/if_ether.h> 12 #include <linux/list.h> 13 #include <linux/notifier.h> 14 #include <linux/timer.h> 15 #include <linux/workqueue.h> 16 #include <linux/of.h> 17 #include <linux/ethtool.h> 18 #include <linux/net_tstamp.h> 19 #include <linux/phy.h> 20 #include <linux/platform_data/dsa.h> 21 #include <linux/phylink.h> 22 #include <net/devlink.h> 23 #include <net/switchdev.h> 24 25 struct tc_action; 26 struct phy_device; 27 struct fixed_phy_status; 28 struct 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 50 enum dsa_tag_protocol { 51 DSA_TAG_PROTO_NONE = DSA_TAG_PROTO_NONE_VALUE, 52 DSA_TAG_PROTO_BRCM = DSA_TAG_PROTO_BRCM_VALUE, 53 DSA_TAG_PROTO_BRCM_PREPEND = DSA_TAG_PROTO_BRCM_PREPEND_VALUE, 54 DSA_TAG_PROTO_DSA = DSA_TAG_PROTO_DSA_VALUE, 55 DSA_TAG_PROTO_EDSA = DSA_TAG_PROTO_EDSA_VALUE, 56 DSA_TAG_PROTO_GSWIP = DSA_TAG_PROTO_GSWIP_VALUE, 57 DSA_TAG_PROTO_KSZ9477 = DSA_TAG_PROTO_KSZ9477_VALUE, 58 DSA_TAG_PROTO_KSZ9893 = DSA_TAG_PROTO_KSZ9893_VALUE, 59 DSA_TAG_PROTO_LAN9303 = DSA_TAG_PROTO_LAN9303_VALUE, 60 DSA_TAG_PROTO_MTK = DSA_TAG_PROTO_MTK_VALUE, 61 DSA_TAG_PROTO_QCA = DSA_TAG_PROTO_QCA_VALUE, 62 DSA_TAG_PROTO_TRAILER = DSA_TAG_PROTO_TRAILER_VALUE, 63 DSA_TAG_PROTO_8021Q = DSA_TAG_PROTO_8021Q_VALUE, 64 DSA_TAG_PROTO_SJA1105 = DSA_TAG_PROTO_SJA1105_VALUE, 65 DSA_TAG_PROTO_KSZ8795 = DSA_TAG_PROTO_KSZ8795_VALUE, 66 DSA_TAG_PROTO_OCELOT = DSA_TAG_PROTO_OCELOT_VALUE, 67 DSA_TAG_PROTO_AR9331 = DSA_TAG_PROTO_AR9331_VALUE, 68 DSA_TAG_PROTO_RTL4_A = DSA_TAG_PROTO_RTL4_A_VALUE, 69 DSA_TAG_PROTO_HELLCREEK = DSA_TAG_PROTO_HELLCREEK_VALUE, 70 }; 71 72 struct packet_type; 73 struct dsa_switch; 74 75 struct dsa_device_ops { 76 struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev); 77 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev, 78 struct packet_type *pt); 79 void (*flow_dissect)(const struct sk_buff *skb, __be16 *proto, 80 int *offset); 81 /* Used to determine which traffic should match the DSA filter in 82 * eth_type_trans, and which, if any, should bypass it and be processed 83 * as regular on the master net device. 84 */ 85 bool (*filter)(const struct sk_buff *skb, struct net_device *dev); 86 unsigned int overhead; 87 const char *name; 88 enum dsa_tag_protocol proto; 89 /* Some tagging protocols either mangle or shift the destination MAC 90 * address, in which case the DSA master would drop packets on ingress 91 * if what it understands out of the destination MAC address is not in 92 * its RX filter. 93 */ 94 bool promisc_on_master; 95 bool tail_tag; 96 }; 97 98 /* This structure defines the control interfaces that are overlayed by the 99 * DSA layer on top of the DSA CPU/management net_device instance. This is 100 * used by the core net_device layer while calling various net_device_ops 101 * function pointers. 102 */ 103 struct dsa_netdevice_ops { 104 int (*ndo_do_ioctl)(struct net_device *dev, struct ifreq *ifr, 105 int cmd); 106 }; 107 108 #define DSA_TAG_DRIVER_ALIAS "dsa_tag-" 109 #define MODULE_ALIAS_DSA_TAG_DRIVER(__proto) \ 110 MODULE_ALIAS(DSA_TAG_DRIVER_ALIAS __stringify(__proto##_VALUE)) 111 112 struct dsa_skb_cb { 113 struct sk_buff *clone; 114 }; 115 116 struct __dsa_skb_cb { 117 struct dsa_skb_cb cb; 118 u8 priv[48 - sizeof(struct dsa_skb_cb)]; 119 }; 120 121 #define DSA_SKB_CB(skb) ((struct dsa_skb_cb *)((skb)->cb)) 122 123 #define DSA_SKB_CB_PRIV(skb) \ 124 ((void *)(skb)->cb + offsetof(struct __dsa_skb_cb, priv)) 125 126 struct dsa_switch_tree { 127 struct list_head list; 128 129 /* Notifier chain for switch-wide events */ 130 struct raw_notifier_head nh; 131 132 /* Tree identifier */ 133 unsigned int index; 134 135 /* Number of switches attached to this tree */ 136 struct kref refcount; 137 138 /* Has this tree been applied to the hardware? */ 139 bool setup; 140 141 /* 142 * Configuration data for the platform device that owns 143 * this dsa switch tree instance. 144 */ 145 struct dsa_platform_data *pd; 146 147 /* List of switch ports */ 148 struct list_head ports; 149 150 /* List of DSA links composing the routing table */ 151 struct list_head rtable; 152 }; 153 154 /* TC matchall action types */ 155 enum dsa_port_mall_action_type { 156 DSA_PORT_MALL_MIRROR, 157 DSA_PORT_MALL_POLICER, 158 }; 159 160 /* TC mirroring entry */ 161 struct dsa_mall_mirror_tc_entry { 162 u8 to_local_port; 163 bool ingress; 164 }; 165 166 /* TC port policer entry */ 167 struct dsa_mall_policer_tc_entry { 168 u32 burst; 169 u64 rate_bytes_per_sec; 170 }; 171 172 /* TC matchall entry */ 173 struct dsa_mall_tc_entry { 174 struct list_head list; 175 unsigned long cookie; 176 enum dsa_port_mall_action_type type; 177 union { 178 struct dsa_mall_mirror_tc_entry mirror; 179 struct dsa_mall_policer_tc_entry policer; 180 }; 181 }; 182 183 184 struct dsa_port { 185 /* A CPU port is physically connected to a master device. 186 * A user port exposed to userspace has a slave device. 187 */ 188 union { 189 struct net_device *master; 190 struct net_device *slave; 191 }; 192 193 /* CPU port tagging operations used by master or slave devices */ 194 const struct dsa_device_ops *tag_ops; 195 196 /* Copies for faster access in master receive hot path */ 197 struct dsa_switch_tree *dst; 198 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev, 199 struct packet_type *pt); 200 bool (*filter)(const struct sk_buff *skb, struct net_device *dev); 201 202 enum { 203 DSA_PORT_TYPE_UNUSED = 0, 204 DSA_PORT_TYPE_CPU, 205 DSA_PORT_TYPE_DSA, 206 DSA_PORT_TYPE_USER, 207 } type; 208 209 struct dsa_switch *ds; 210 unsigned int index; 211 const char *name; 212 struct dsa_port *cpu_dp; 213 const char *mac; 214 struct device_node *dn; 215 unsigned int ageing_time; 216 bool vlan_filtering; 217 u8 stp_state; 218 struct net_device *bridge_dev; 219 struct devlink_port devlink_port; 220 bool devlink_port_setup; 221 struct phylink *pl; 222 struct phylink_config pl_config; 223 224 struct list_head list; 225 226 /* 227 * Give the switch driver somewhere to hang its per-port private data 228 * structures (accessible from the tagger). 229 */ 230 void *priv; 231 232 /* 233 * Original copy of the master netdev ethtool_ops 234 */ 235 const struct ethtool_ops *orig_ethtool_ops; 236 237 /* 238 * Original copy of the master netdev net_device_ops 239 */ 240 const struct dsa_netdevice_ops *netdev_ops; 241 242 bool setup; 243 }; 244 245 /* TODO: ideally DSA ports would have a single dp->link_dp member, 246 * and no dst->rtable nor this struct dsa_link would be needed, 247 * but this would require some more complex tree walking, 248 * so keep it stupid at the moment and list them all. 249 */ 250 struct dsa_link { 251 struct dsa_port *dp; 252 struct dsa_port *link_dp; 253 struct list_head list; 254 }; 255 256 struct dsa_switch { 257 bool setup; 258 259 struct device *dev; 260 261 /* 262 * Parent switch tree, and switch index. 263 */ 264 struct dsa_switch_tree *dst; 265 unsigned int index; 266 267 /* Listener for switch fabric events */ 268 struct notifier_block nb; 269 270 /* 271 * Give the switch driver somewhere to hang its private data 272 * structure. 273 */ 274 void *priv; 275 276 /* 277 * Configuration data for this switch. 278 */ 279 struct dsa_chip_data *cd; 280 281 /* 282 * The switch operations. 283 */ 284 const struct dsa_switch_ops *ops; 285 286 /* 287 * Slave mii_bus and devices for the individual ports. 288 */ 289 u32 phys_mii_mask; 290 struct mii_bus *slave_mii_bus; 291 292 /* Ageing Time limits in msecs */ 293 unsigned int ageing_time_min; 294 unsigned int ageing_time_max; 295 296 /* devlink used to represent this switch device */ 297 struct devlink *devlink; 298 299 /* Number of switch port queues */ 300 unsigned int num_tx_queues; 301 302 /* Disallow bridge core from requesting different VLAN awareness 303 * settings on ports if not hardware-supported 304 */ 305 bool vlan_filtering_is_global; 306 307 /* Pass .port_vlan_add and .port_vlan_del to drivers even for bridges 308 * that have vlan_filtering=0. All drivers should ideally set this (and 309 * then the option would get removed), but it is unknown whether this 310 * would break things or not. 311 */ 312 bool configure_vlan_while_not_filtering; 313 314 /* If the switch driver always programs the CPU port as egress tagged 315 * despite the VLAN configuration indicating otherwise, then setting 316 * @untag_bridge_pvid will force the DSA receive path to pop the bridge's 317 * default_pvid VLAN tagged frames to offer a consistent behavior 318 * between a vlan_filtering=0 and vlan_filtering=1 bridge device. 319 */ 320 bool untag_bridge_pvid; 321 322 /* Let DSA manage the FDB entries towards the CPU, based on the 323 * software bridge database. 324 */ 325 bool assisted_learning_on_cpu_port; 326 327 /* In case vlan_filtering_is_global is set, the VLAN awareness state 328 * should be retrieved from here and not from the per-port settings. 329 */ 330 bool vlan_filtering; 331 332 /* MAC PCS does not provide link state change interrupt, and requires 333 * polling. Flag passed on to PHYLINK. 334 */ 335 bool pcs_poll; 336 337 /* For switches that only have the MRU configurable. To ensure the 338 * configured MTU is not exceeded, normalization of MRU on all bridged 339 * interfaces is needed. 340 */ 341 bool mtu_enforcement_ingress; 342 343 size_t num_ports; 344 }; 345 346 static inline struct dsa_port *dsa_to_port(struct dsa_switch *ds, int p) 347 { 348 struct dsa_switch_tree *dst = ds->dst; 349 struct dsa_port *dp; 350 351 list_for_each_entry(dp, &dst->ports, list) 352 if (dp->ds == ds && dp->index == p) 353 return dp; 354 355 return NULL; 356 } 357 358 static inline bool dsa_is_unused_port(struct dsa_switch *ds, int p) 359 { 360 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_UNUSED; 361 } 362 363 static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p) 364 { 365 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_CPU; 366 } 367 368 static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p) 369 { 370 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_DSA; 371 } 372 373 static inline bool dsa_is_user_port(struct dsa_switch *ds, int p) 374 { 375 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_USER; 376 } 377 378 static inline u32 dsa_user_ports(struct dsa_switch *ds) 379 { 380 u32 mask = 0; 381 int p; 382 383 for (p = 0; p < ds->num_ports; p++) 384 if (dsa_is_user_port(ds, p)) 385 mask |= BIT(p); 386 387 return mask; 388 } 389 390 /* Return the local port used to reach an arbitrary switch device */ 391 static inline unsigned int dsa_routing_port(struct dsa_switch *ds, int device) 392 { 393 struct dsa_switch_tree *dst = ds->dst; 394 struct dsa_link *dl; 395 396 list_for_each_entry(dl, &dst->rtable, list) 397 if (dl->dp->ds == ds && dl->link_dp->ds->index == device) 398 return dl->dp->index; 399 400 return ds->num_ports; 401 } 402 403 /* Return the local port used to reach an arbitrary switch port */ 404 static inline unsigned int dsa_towards_port(struct dsa_switch *ds, int device, 405 int port) 406 { 407 if (device == ds->index) 408 return port; 409 else 410 return dsa_routing_port(ds, device); 411 } 412 413 /* Return the local port used to reach the dedicated CPU port */ 414 static inline unsigned int dsa_upstream_port(struct dsa_switch *ds, int port) 415 { 416 const struct dsa_port *dp = dsa_to_port(ds, port); 417 const struct dsa_port *cpu_dp = dp->cpu_dp; 418 419 if (!cpu_dp) 420 return port; 421 422 return dsa_towards_port(ds, cpu_dp->ds->index, cpu_dp->index); 423 } 424 425 static inline bool dsa_port_is_vlan_filtering(const struct dsa_port *dp) 426 { 427 const struct dsa_switch *ds = dp->ds; 428 429 if (ds->vlan_filtering_is_global) 430 return ds->vlan_filtering; 431 else 432 return dp->vlan_filtering; 433 } 434 435 typedef int dsa_fdb_dump_cb_t(const unsigned char *addr, u16 vid, 436 bool is_static, void *data); 437 struct dsa_switch_ops { 438 enum dsa_tag_protocol (*get_tag_protocol)(struct dsa_switch *ds, 439 int port, 440 enum dsa_tag_protocol mprot); 441 442 int (*setup)(struct dsa_switch *ds); 443 void (*teardown)(struct dsa_switch *ds); 444 u32 (*get_phy_flags)(struct dsa_switch *ds, int port); 445 446 /* 447 * Access to the switch's PHY registers. 448 */ 449 int (*phy_read)(struct dsa_switch *ds, int port, int regnum); 450 int (*phy_write)(struct dsa_switch *ds, int port, 451 int regnum, u16 val); 452 453 /* 454 * Link state adjustment (called from libphy) 455 */ 456 void (*adjust_link)(struct dsa_switch *ds, int port, 457 struct phy_device *phydev); 458 void (*fixed_link_update)(struct dsa_switch *ds, int port, 459 struct fixed_phy_status *st); 460 461 /* 462 * PHYLINK integration 463 */ 464 void (*phylink_validate)(struct dsa_switch *ds, int port, 465 unsigned long *supported, 466 struct phylink_link_state *state); 467 int (*phylink_mac_link_state)(struct dsa_switch *ds, int port, 468 struct phylink_link_state *state); 469 void (*phylink_mac_config)(struct dsa_switch *ds, int port, 470 unsigned int mode, 471 const struct phylink_link_state *state); 472 void (*phylink_mac_an_restart)(struct dsa_switch *ds, int port); 473 void (*phylink_mac_link_down)(struct dsa_switch *ds, int port, 474 unsigned int mode, 475 phy_interface_t interface); 476 void (*phylink_mac_link_up)(struct dsa_switch *ds, int port, 477 unsigned int mode, 478 phy_interface_t interface, 479 struct phy_device *phydev, 480 int speed, int duplex, 481 bool tx_pause, bool rx_pause); 482 void (*phylink_fixed_state)(struct dsa_switch *ds, int port, 483 struct phylink_link_state *state); 484 /* 485 * ethtool hardware statistics. 486 */ 487 void (*get_strings)(struct dsa_switch *ds, int port, 488 u32 stringset, uint8_t *data); 489 void (*get_ethtool_stats)(struct dsa_switch *ds, 490 int port, uint64_t *data); 491 int (*get_sset_count)(struct dsa_switch *ds, int port, int sset); 492 void (*get_ethtool_phy_stats)(struct dsa_switch *ds, 493 int port, uint64_t *data); 494 495 /* 496 * ethtool Wake-on-LAN 497 */ 498 void (*get_wol)(struct dsa_switch *ds, int port, 499 struct ethtool_wolinfo *w); 500 int (*set_wol)(struct dsa_switch *ds, int port, 501 struct ethtool_wolinfo *w); 502 503 /* 504 * ethtool timestamp info 505 */ 506 int (*get_ts_info)(struct dsa_switch *ds, int port, 507 struct ethtool_ts_info *ts); 508 509 /* 510 * Suspend and resume 511 */ 512 int (*suspend)(struct dsa_switch *ds); 513 int (*resume)(struct dsa_switch *ds); 514 515 /* 516 * Port enable/disable 517 */ 518 int (*port_enable)(struct dsa_switch *ds, int port, 519 struct phy_device *phy); 520 void (*port_disable)(struct dsa_switch *ds, int port); 521 522 /* 523 * Port's MAC EEE settings 524 */ 525 int (*set_mac_eee)(struct dsa_switch *ds, int port, 526 struct ethtool_eee *e); 527 int (*get_mac_eee)(struct dsa_switch *ds, int port, 528 struct ethtool_eee *e); 529 530 /* EEPROM access */ 531 int (*get_eeprom_len)(struct dsa_switch *ds); 532 int (*get_eeprom)(struct dsa_switch *ds, 533 struct ethtool_eeprom *eeprom, u8 *data); 534 int (*set_eeprom)(struct dsa_switch *ds, 535 struct ethtool_eeprom *eeprom, u8 *data); 536 537 /* 538 * Register access. 539 */ 540 int (*get_regs_len)(struct dsa_switch *ds, int port); 541 void (*get_regs)(struct dsa_switch *ds, int port, 542 struct ethtool_regs *regs, void *p); 543 544 /* 545 * Upper device tracking. 546 */ 547 int (*port_prechangeupper)(struct dsa_switch *ds, int port, 548 struct netdev_notifier_changeupper_info *info); 549 550 /* 551 * Bridge integration 552 */ 553 int (*set_ageing_time)(struct dsa_switch *ds, unsigned int msecs); 554 int (*port_bridge_join)(struct dsa_switch *ds, int port, 555 struct net_device *bridge); 556 void (*port_bridge_leave)(struct dsa_switch *ds, int port, 557 struct net_device *bridge); 558 void (*port_stp_state_set)(struct dsa_switch *ds, int port, 559 u8 state); 560 void (*port_fast_age)(struct dsa_switch *ds, int port); 561 int (*port_egress_floods)(struct dsa_switch *ds, int port, 562 bool unicast, bool multicast); 563 564 /* 565 * VLAN support 566 */ 567 int (*port_vlan_filtering)(struct dsa_switch *ds, int port, 568 bool vlan_filtering, 569 struct switchdev_trans *trans); 570 int (*port_vlan_prepare)(struct dsa_switch *ds, int port, 571 const struct switchdev_obj_port_vlan *vlan); 572 void (*port_vlan_add)(struct dsa_switch *ds, int port, 573 const struct switchdev_obj_port_vlan *vlan); 574 int (*port_vlan_del)(struct dsa_switch *ds, int port, 575 const struct switchdev_obj_port_vlan *vlan); 576 /* 577 * Forwarding database 578 */ 579 int (*port_fdb_add)(struct dsa_switch *ds, int port, 580 const unsigned char *addr, u16 vid); 581 int (*port_fdb_del)(struct dsa_switch *ds, int port, 582 const unsigned char *addr, u16 vid); 583 int (*port_fdb_dump)(struct dsa_switch *ds, int port, 584 dsa_fdb_dump_cb_t *cb, void *data); 585 586 /* 587 * Multicast database 588 */ 589 int (*port_mdb_prepare)(struct dsa_switch *ds, int port, 590 const struct switchdev_obj_port_mdb *mdb); 591 void (*port_mdb_add)(struct dsa_switch *ds, int port, 592 const struct switchdev_obj_port_mdb *mdb); 593 int (*port_mdb_del)(struct dsa_switch *ds, int port, 594 const struct switchdev_obj_port_mdb *mdb); 595 /* 596 * RXNFC 597 */ 598 int (*get_rxnfc)(struct dsa_switch *ds, int port, 599 struct ethtool_rxnfc *nfc, u32 *rule_locs); 600 int (*set_rxnfc)(struct dsa_switch *ds, int port, 601 struct ethtool_rxnfc *nfc); 602 603 /* 604 * TC integration 605 */ 606 int (*cls_flower_add)(struct dsa_switch *ds, int port, 607 struct flow_cls_offload *cls, bool ingress); 608 int (*cls_flower_del)(struct dsa_switch *ds, int port, 609 struct flow_cls_offload *cls, bool ingress); 610 int (*cls_flower_stats)(struct dsa_switch *ds, int port, 611 struct flow_cls_offload *cls, bool ingress); 612 int (*port_mirror_add)(struct dsa_switch *ds, int port, 613 struct dsa_mall_mirror_tc_entry *mirror, 614 bool ingress); 615 void (*port_mirror_del)(struct dsa_switch *ds, int port, 616 struct dsa_mall_mirror_tc_entry *mirror); 617 int (*port_policer_add)(struct dsa_switch *ds, int port, 618 struct dsa_mall_policer_tc_entry *policer); 619 void (*port_policer_del)(struct dsa_switch *ds, int port); 620 int (*port_setup_tc)(struct dsa_switch *ds, int port, 621 enum tc_setup_type type, void *type_data); 622 623 /* 624 * Cross-chip operations 625 */ 626 int (*crosschip_bridge_join)(struct dsa_switch *ds, int tree_index, 627 int sw_index, int port, 628 struct net_device *br); 629 void (*crosschip_bridge_leave)(struct dsa_switch *ds, int tree_index, 630 int sw_index, int port, 631 struct net_device *br); 632 633 /* 634 * PTP functionality 635 */ 636 int (*port_hwtstamp_get)(struct dsa_switch *ds, int port, 637 struct ifreq *ifr); 638 int (*port_hwtstamp_set)(struct dsa_switch *ds, int port, 639 struct ifreq *ifr); 640 bool (*port_txtstamp)(struct dsa_switch *ds, int port, 641 struct sk_buff *clone, unsigned int type); 642 bool (*port_rxtstamp)(struct dsa_switch *ds, int port, 643 struct sk_buff *skb, unsigned int type); 644 645 /* Devlink parameters, etc */ 646 int (*devlink_param_get)(struct dsa_switch *ds, u32 id, 647 struct devlink_param_gset_ctx *ctx); 648 int (*devlink_param_set)(struct dsa_switch *ds, u32 id, 649 struct devlink_param_gset_ctx *ctx); 650 int (*devlink_info_get)(struct dsa_switch *ds, 651 struct devlink_info_req *req, 652 struct netlink_ext_ack *extack); 653 654 /* 655 * MTU change functionality. Switches can also adjust their MRU through 656 * this method. By MTU, one understands the SDU (L2 payload) length. 657 * If the switch needs to account for the DSA tag on the CPU port, this 658 * method needs to do so privately. 659 */ 660 int (*port_change_mtu)(struct dsa_switch *ds, int port, 661 int new_mtu); 662 int (*port_max_mtu)(struct dsa_switch *ds, int port); 663 }; 664 665 #define DSA_DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes) \ 666 DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes, \ 667 dsa_devlink_param_get, dsa_devlink_param_set, NULL) 668 669 int dsa_devlink_param_get(struct devlink *dl, u32 id, 670 struct devlink_param_gset_ctx *ctx); 671 int dsa_devlink_param_set(struct devlink *dl, u32 id, 672 struct devlink_param_gset_ctx *ctx); 673 int dsa_devlink_params_register(struct dsa_switch *ds, 674 const struct devlink_param *params, 675 size_t params_count); 676 void dsa_devlink_params_unregister(struct dsa_switch *ds, 677 const struct devlink_param *params, 678 size_t params_count); 679 int dsa_devlink_resource_register(struct dsa_switch *ds, 680 const char *resource_name, 681 u64 resource_size, 682 u64 resource_id, 683 u64 parent_resource_id, 684 const struct devlink_resource_size_params *size_params); 685 686 void dsa_devlink_resources_unregister(struct dsa_switch *ds); 687 688 void dsa_devlink_resource_occ_get_register(struct dsa_switch *ds, 689 u64 resource_id, 690 devlink_resource_occ_get_t *occ_get, 691 void *occ_get_priv); 692 void dsa_devlink_resource_occ_get_unregister(struct dsa_switch *ds, 693 u64 resource_id); 694 struct devlink_region * 695 dsa_devlink_region_create(struct dsa_switch *ds, 696 const struct devlink_region_ops *ops, 697 u32 region_max_snapshots, u64 region_size); 698 struct devlink_region * 699 dsa_devlink_port_region_create(struct dsa_switch *ds, 700 int port, 701 const struct devlink_port_region_ops *ops, 702 u32 region_max_snapshots, u64 region_size); 703 void dsa_devlink_region_destroy(struct devlink_region *region); 704 705 struct dsa_port *dsa_port_from_netdev(struct net_device *netdev); 706 707 struct dsa_devlink_priv { 708 struct dsa_switch *ds; 709 }; 710 711 static inline struct dsa_switch *dsa_devlink_to_ds(struct devlink *dl) 712 { 713 struct dsa_devlink_priv *dl_priv = devlink_priv(dl); 714 715 return dl_priv->ds; 716 } 717 718 static inline 719 struct dsa_switch *dsa_devlink_port_to_ds(struct devlink_port *port) 720 { 721 struct devlink *dl = port->devlink; 722 struct dsa_devlink_priv *dl_priv = devlink_priv(dl); 723 724 return dl_priv->ds; 725 } 726 727 static inline int dsa_devlink_port_to_port(struct devlink_port *port) 728 { 729 return port->index; 730 } 731 732 struct dsa_switch_driver { 733 struct list_head list; 734 const struct dsa_switch_ops *ops; 735 }; 736 737 struct net_device *dsa_dev_to_net_device(struct device *dev); 738 739 /* Keep inline for faster access in hot path */ 740 static inline bool netdev_uses_dsa(const struct net_device *dev) 741 { 742 #if IS_ENABLED(CONFIG_NET_DSA) 743 return dev->dsa_ptr && dev->dsa_ptr->rcv; 744 #endif 745 return false; 746 } 747 748 static inline bool dsa_can_decode(const struct sk_buff *skb, 749 struct net_device *dev) 750 { 751 #if IS_ENABLED(CONFIG_NET_DSA) 752 return !dev->dsa_ptr->filter || dev->dsa_ptr->filter(skb, dev); 753 #endif 754 return false; 755 } 756 757 /* All DSA tags that push the EtherType to the right (basically all except tail 758 * tags, which don't break dissection) can be treated the same from the 759 * perspective of the flow dissector. 760 * 761 * We need to return: 762 * - offset: the (B - A) difference between: 763 * A. the position of the real EtherType and 764 * B. the current skb->data (aka ETH_HLEN bytes into the frame, aka 2 bytes 765 * after the normal EtherType was supposed to be) 766 * The offset in bytes is exactly equal to the tagger overhead (and half of 767 * that, in __be16 shorts). 768 * 769 * - proto: the value of the real EtherType. 770 */ 771 static inline void dsa_tag_generic_flow_dissect(const struct sk_buff *skb, 772 __be16 *proto, int *offset) 773 { 774 #if IS_ENABLED(CONFIG_NET_DSA) 775 const struct dsa_device_ops *ops = skb->dev->dsa_ptr->tag_ops; 776 int tag_len = ops->overhead; 777 778 *offset = tag_len; 779 *proto = ((__be16 *)skb->data)[(tag_len / 2) - 1]; 780 #endif 781 } 782 783 #if IS_ENABLED(CONFIG_NET_DSA) 784 static inline int __dsa_netdevice_ops_check(struct net_device *dev) 785 { 786 int err = -EOPNOTSUPP; 787 788 if (!dev->dsa_ptr) 789 return err; 790 791 if (!dev->dsa_ptr->netdev_ops) 792 return err; 793 794 return 0; 795 } 796 797 static inline int dsa_ndo_do_ioctl(struct net_device *dev, struct ifreq *ifr, 798 int cmd) 799 { 800 const struct dsa_netdevice_ops *ops; 801 int err; 802 803 err = __dsa_netdevice_ops_check(dev); 804 if (err) 805 return err; 806 807 ops = dev->dsa_ptr->netdev_ops; 808 809 return ops->ndo_do_ioctl(dev, ifr, cmd); 810 } 811 #else 812 static inline int dsa_ndo_do_ioctl(struct net_device *dev, struct ifreq *ifr, 813 int cmd) 814 { 815 return -EOPNOTSUPP; 816 } 817 #endif 818 819 void dsa_unregister_switch(struct dsa_switch *ds); 820 int dsa_register_switch(struct dsa_switch *ds); 821 struct dsa_switch *dsa_switch_find(int tree_index, int sw_index); 822 #ifdef CONFIG_PM_SLEEP 823 int dsa_switch_suspend(struct dsa_switch *ds); 824 int dsa_switch_resume(struct dsa_switch *ds); 825 #else 826 static inline int dsa_switch_suspend(struct dsa_switch *ds) 827 { 828 return 0; 829 } 830 static inline int dsa_switch_resume(struct dsa_switch *ds) 831 { 832 return 0; 833 } 834 #endif /* CONFIG_PM_SLEEP */ 835 836 #if IS_ENABLED(CONFIG_NET_DSA) 837 bool dsa_slave_dev_check(const struct net_device *dev); 838 #else 839 static inline bool dsa_slave_dev_check(const struct net_device *dev) 840 { 841 return false; 842 } 843 #endif 844 845 netdev_tx_t dsa_enqueue_skb(struct sk_buff *skb, struct net_device *dev); 846 int dsa_port_get_phy_strings(struct dsa_port *dp, uint8_t *data); 847 int dsa_port_get_ethtool_phy_stats(struct dsa_port *dp, uint64_t *data); 848 int dsa_port_get_phy_sset_count(struct dsa_port *dp); 849 void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up); 850 851 struct dsa_tag_driver { 852 const struct dsa_device_ops *ops; 853 struct list_head list; 854 struct module *owner; 855 }; 856 857 void dsa_tag_drivers_register(struct dsa_tag_driver *dsa_tag_driver_array[], 858 unsigned int count, 859 struct module *owner); 860 void dsa_tag_drivers_unregister(struct dsa_tag_driver *dsa_tag_driver_array[], 861 unsigned int count); 862 863 #define dsa_tag_driver_module_drivers(__dsa_tag_drivers_array, __count) \ 864 static int __init dsa_tag_driver_module_init(void) \ 865 { \ 866 dsa_tag_drivers_register(__dsa_tag_drivers_array, __count, \ 867 THIS_MODULE); \ 868 return 0; \ 869 } \ 870 module_init(dsa_tag_driver_module_init); \ 871 \ 872 static void __exit dsa_tag_driver_module_exit(void) \ 873 { \ 874 dsa_tag_drivers_unregister(__dsa_tag_drivers_array, __count); \ 875 } \ 876 module_exit(dsa_tag_driver_module_exit) 877 878 /** 879 * module_dsa_tag_drivers() - Helper macro for registering DSA tag 880 * drivers 881 * @__ops_array: Array of tag driver strucutres 882 * 883 * Helper macro for DSA tag drivers which do not do anything special 884 * in module init/exit. Each module may only use this macro once, and 885 * calling it replaces module_init() and module_exit(). 886 */ 887 #define module_dsa_tag_drivers(__ops_array) \ 888 dsa_tag_driver_module_drivers(__ops_array, ARRAY_SIZE(__ops_array)) 889 890 #define DSA_TAG_DRIVER_NAME(__ops) dsa_tag_driver ## _ ## __ops 891 892 /* Create a static structure we can build a linked list of dsa_tag 893 * drivers 894 */ 895 #define DSA_TAG_DRIVER(__ops) \ 896 static struct dsa_tag_driver DSA_TAG_DRIVER_NAME(__ops) = { \ 897 .ops = &__ops, \ 898 } 899 900 /** 901 * module_dsa_tag_driver() - Helper macro for registering a single DSA tag 902 * driver 903 * @__ops: Single tag driver structures 904 * 905 * Helper macro for DSA tag drivers which do not do anything special 906 * in module init/exit. Each module may only use this macro once, and 907 * calling it replaces module_init() and module_exit(). 908 */ 909 #define module_dsa_tag_driver(__ops) \ 910 DSA_TAG_DRIVER(__ops); \ 911 \ 912 static struct dsa_tag_driver *dsa_tag_driver_array[] = { \ 913 &DSA_TAG_DRIVER_NAME(__ops) \ 914 }; \ 915 module_dsa_tag_drivers(dsa_tag_driver_array) 916 #endif 917 918