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 #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 57 enum 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 86 struct dsa_switch; 87 88 struct 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 /* Some tagging protocols either mangle or shift the destination MAC 100 * address, in which case the DSA master would drop packets on ingress 101 * if what it understands out of the destination MAC address is not in 102 * its RX filter. 103 */ 104 bool promisc_on_master; 105 }; 106 107 /* This structure defines the control interfaces that are overlayed by the 108 * DSA layer on top of the DSA CPU/management net_device instance. This is 109 * used by the core net_device layer while calling various net_device_ops 110 * function pointers. 111 */ 112 struct 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 121 struct 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 129 struct dsa_switch_tree { 130 struct list_head list; 131 132 /* List of switch ports */ 133 struct list_head ports; 134 135 /* Notifier chain for switch-wide events */ 136 struct raw_notifier_head nh; 137 138 /* Tree identifier */ 139 unsigned int index; 140 141 /* Number of switches attached to this tree */ 142 struct kref refcount; 143 144 /* Maps offloaded LAG netdevs to a zero-based linear ID for 145 * drivers that need it. 146 */ 147 struct dsa_lag **lags; 148 149 /* Tagging protocol operations */ 150 const struct dsa_device_ops *tag_ops; 151 152 /* Default tagging protocol preferred by the switches in this 153 * tree. 154 */ 155 enum dsa_tag_protocol default_proto; 156 157 /* Has this tree been applied to the hardware? */ 158 bool setup; 159 160 /* 161 * Configuration data for the platform device that owns 162 * this dsa switch tree instance. 163 */ 164 struct dsa_platform_data *pd; 165 166 /* List of DSA links composing the routing table */ 167 struct list_head rtable; 168 169 /* Length of "lags" array */ 170 unsigned int lags_len; 171 172 /* Track the largest switch index within a tree */ 173 unsigned int last_switch; 174 }; 175 176 /* LAG IDs are one-based, the dst->lags array is zero-based */ 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 189 static inline struct dsa_lag *dsa_lag_by_id(struct dsa_switch_tree *dst, 190 unsigned int id) 191 { 192 /* DSA LAG IDs are one-based, dst->lags is zero-based */ 193 return dst->lags[id - 1]; 194 } 195 196 static 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 /* TC matchall action types */ 212 enum dsa_port_mall_action_type { 213 DSA_PORT_MALL_MIRROR, 214 DSA_PORT_MALL_POLICER, 215 }; 216 217 /* TC mirroring entry */ 218 struct dsa_mall_mirror_tc_entry { 219 u8 to_local_port; 220 bool ingress; 221 }; 222 223 /* TC port policer entry */ 224 struct dsa_mall_policer_tc_entry { 225 u32 burst; 226 u64 rate_bytes_per_sec; 227 }; 228 229 /* TC matchall entry */ 230 struct 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 240 struct dsa_bridge { 241 struct net_device *dev; 242 unsigned int num; 243 bool tx_fwd_offload; 244 refcount_t refcount; 245 }; 246 247 struct dsa_port { 248 /* A CPU port is physically connected to a master device. 249 * A user port exposed to userspace has a slave device. 250 */ 251 union { 252 struct net_device *master; 253 struct net_device *slave; 254 }; 255 256 /* Copy of the tagging protocol operations, for quicker access 257 * in the data path. Valid only for the CPU ports. 258 */ 259 const struct dsa_device_ops *tag_ops; 260 261 /* Copies for faster access in master receive hot path */ 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 /* Warning: the following bit fields are not atomic, and updating them 283 * can only be done from code paths where concurrency is not possible 284 * (probe time or under rtnl_lock). 285 */ 286 u8 vlan_filtering:1; 287 288 /* Managed by DSA on user ports and by drivers on CPU and DSA ports */ 289 u8 learning:1; 290 291 u8 lag_tx_enabled:1; 292 293 u8 devlink_port_setup:1; 294 295 /* Master state bits, valid only on CPU ports */ 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 * Original copy of the master netdev ethtool_ops 315 */ 316 const struct ethtool_ops *orig_ethtool_ops; 317 318 /* 319 * Original copy of the master netdev net_device_ops 320 */ 321 const struct dsa_netdevice_ops *netdev_ops; 322 323 /* List of MAC addresses that must be forwarded on this port. 324 * These are only valid on CPU ports and DSA links. 325 */ 326 struct mutex addr_lists_lock; 327 struct list_head fdbs; 328 struct list_head mdbs; 329 330 /* List of VLANs that CPU and DSA ports are members of. */ 331 struct mutex vlans_lock; 332 struct list_head vlans; 333 }; 334 335 /* TODO: ideally DSA ports would have a single dp->link_dp member, 336 * and no dst->rtable nor this struct dsa_link would be needed, 337 * but this would require some more complex tree walking, 338 * so keep it stupid at the moment and list them all. 339 */ 340 struct dsa_link { 341 struct dsa_port *dp; 342 struct dsa_port *link_dp; 343 struct list_head list; 344 }; 345 346 enum dsa_db_type { 347 DSA_DB_PORT, 348 DSA_DB_LAG, 349 DSA_DB_BRIDGE, 350 }; 351 352 struct 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 362 struct 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 370 struct dsa_vlan { 371 u16 vid; 372 refcount_t refcount; 373 struct list_head list; 374 }; 375 376 struct dsa_switch { 377 struct device *dev; 378 379 /* 380 * Parent switch tree, and switch index. 381 */ 382 struct dsa_switch_tree *dst; 383 unsigned int index; 384 385 /* Warning: the following bit fields are not atomic, and updating them 386 * can only be done from code paths where concurrency is not possible 387 * (probe time or under rtnl_lock). 388 */ 389 u32 setup:1; 390 391 /* Disallow bridge core from requesting different VLAN awareness 392 * settings on ports if not hardware-supported 393 */ 394 u32 vlan_filtering_is_global:1; 395 396 /* Keep VLAN filtering enabled on ports not offloading any upper */ 397 u32 needs_standalone_vlan_filtering:1; 398 399 /* Pass .port_vlan_add and .port_vlan_del to drivers even for bridges 400 * that have vlan_filtering=0. All drivers should ideally set this (and 401 * then the option would get removed), but it is unknown whether this 402 * would break things or not. 403 */ 404 u32 configure_vlan_while_not_filtering:1; 405 406 /* If the switch driver always programs the CPU port as egress tagged 407 * despite the VLAN configuration indicating otherwise, then setting 408 * @untag_bridge_pvid will force the DSA receive path to pop the 409 * bridge's default_pvid VLAN tagged frames to offer a consistent 410 * behavior between a vlan_filtering=0 and vlan_filtering=1 bridge 411 * device. 412 */ 413 u32 untag_bridge_pvid:1; 414 415 /* Let DSA manage the FDB entries towards the 416 * CPU, based on the software bridge database. 417 */ 418 u32 assisted_learning_on_cpu_port:1; 419 420 /* In case vlan_filtering_is_global is set, the VLAN awareness state 421 * should be retrieved from here and not from the per-port settings. 422 */ 423 u32 vlan_filtering:1; 424 425 /* For switches that only have the MRU configurable. To ensure the 426 * configured MTU is not exceeded, normalization of MRU on all bridged 427 * interfaces is needed. 428 */ 429 u32 mtu_enforcement_ingress:1; 430 431 /* Drivers that isolate the FDBs of multiple bridges must set this 432 * to true to receive the bridge as an argument in .port_fdb_{add,del} 433 * and .port_mdb_{add,del}. Otherwise, the bridge.num will always be 434 * passed as zero. 435 */ 436 u32 fdb_isolation:1; 437 438 /* Listener for switch fabric events */ 439 struct notifier_block nb; 440 441 /* 442 * Give the switch driver somewhere to hang its private data 443 * structure. 444 */ 445 void *priv; 446 447 void *tagger_data; 448 449 /* 450 * Configuration data for this switch. 451 */ 452 struct dsa_chip_data *cd; 453 454 /* 455 * The switch operations. 456 */ 457 const struct dsa_switch_ops *ops; 458 459 /* 460 * Slave mii_bus and devices for the individual ports. 461 */ 462 u32 phys_mii_mask; 463 struct mii_bus *slave_mii_bus; 464 465 /* Ageing Time limits in msecs */ 466 unsigned int ageing_time_min; 467 unsigned int ageing_time_max; 468 469 /* Storage for drivers using tag_8021q */ 470 struct dsa_8021q_context *tag_8021q_ctx; 471 472 /* devlink used to represent this switch device */ 473 struct devlink *devlink; 474 475 /* Number of switch port queues */ 476 unsigned int num_tx_queues; 477 478 /* Drivers that benefit from having an ID associated with each 479 * offloaded LAG should set this to the maximum number of 480 * supported IDs. DSA will then maintain a mapping of _at 481 * least_ these many IDs, accessible to drivers via 482 * dsa_lag_id(). 483 */ 484 unsigned int num_lag_ids; 485 486 /* Drivers that support bridge forwarding offload or FDB isolation 487 * should set this to the maximum number of bridges spanning the same 488 * switch tree (or all trees, in the case of cross-tree bridging 489 * support) that can be offloaded. 490 */ 491 unsigned int max_num_bridges; 492 493 unsigned int num_ports; 494 }; 495 496 static 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 508 static inline bool dsa_port_is_dsa(struct dsa_port *port) 509 { 510 return port->type == DSA_PORT_TYPE_DSA; 511 } 512 513 static inline bool dsa_port_is_cpu(struct dsa_port *port) 514 { 515 return port->type == DSA_PORT_TYPE_CPU; 516 } 517 518 static inline bool dsa_port_is_user(struct dsa_port *dp) 519 { 520 return dp->type == DSA_PORT_TYPE_USER; 521 } 522 523 static inline bool dsa_port_is_unused(struct dsa_port *dp) 524 { 525 return dp->type == DSA_PORT_TYPE_UNUSED; 526 } 527 528 static 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 534 static 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 539 static 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 544 static 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 549 static 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 582 static 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 /* Return the local port used to reach an arbitrary switch device */ 594 static 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 /* Return the local port used to reach an arbitrary switch port */ 607 static 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 /* Return the local port used to reach the dedicated CPU port */ 617 static 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 /* Return true if this is the local port used to reach the CPU port */ 629 static 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 /* Return true if this is a DSA port leading away from the CPU */ 638 static 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 /* Return the local port used to reach the CPU port */ 644 static 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 /* Return true if @upstream_ds is an upstream switch of @downstream_ds, meaning 656 * that the routing port from @downstream_ds to @upstream_ds is also the port 657 * which @downstream_ds uses to reach its dedicated CPU. 658 */ 659 static 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 672 static 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 682 static inline unsigned int dsa_port_lag_id_get(struct dsa_port *dp) 683 { 684 return dp->lag ? dp->lag->id : 0; 685 } 686 687 static inline struct net_device *dsa_port_lag_dev_get(struct dsa_port *dp) 688 { 689 return dp->lag ? dp->lag->dev : NULL; 690 } 691 692 static 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 698 static inline 699 struct 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 712 static inline struct net_device * 713 dsa_port_bridge_dev_get(const struct dsa_port *dp) 714 { 715 return dp->bridge ? dp->bridge->dev : NULL; 716 } 717 718 static inline unsigned int dsa_port_bridge_num_get(struct dsa_port *dp) 719 { 720 return dp->bridge ? dp->bridge->num : 0; 721 } 722 723 static 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 /* Standalone ports are not in the same bridge with one another */ 730 return (!br_a || !br_b) ? false : (br_a == br_b); 731 } 732 733 static 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 739 static inline bool 740 dsa_port_offloads_bridge_dev(struct dsa_port *dp, 741 const struct net_device *bridge_dev) 742 { 743 /* DSA ports connected to a bridge, and event was emitted 744 * for the bridge. 745 */ 746 return dsa_port_bridge_dev_get(dp) == bridge_dev; 747 } 748 749 static 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 /* Returns true if any port of this tree offloads the given net_device */ 756 static 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 /* Returns true if any port of this tree offloads the given bridge */ 769 static inline bool 770 dsa_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 782 typedef int dsa_fdb_dump_cb_t(const unsigned char *addr, u16 vid, 783 bool is_static, void *data); 784 struct dsa_switch_ops { 785 /* 786 * Tagging protocol helpers called for the CPU ports and DSA links. 787 * @get_tag_protocol retrieves the initial tagging protocol and is 788 * mandatory. Switches which can operate using multiple tagging 789 * protocols should implement @change_tag_protocol and report in 790 * @get_tag_protocol the tagger in current use. 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 * Method for switch drivers to connect to the tagging protocol driver 799 * in current use. The switch driver can provide handlers for certain 800 * types of packets for switch management. 801 */ 802 int (*connect_tag_protocol)(struct dsa_switch *ds, 803 enum dsa_tag_protocol proto); 804 805 /* Optional switch-wide initialization and destruction methods */ 806 int (*setup)(struct dsa_switch *ds); 807 void (*teardown)(struct dsa_switch *ds); 808 809 /* Per-port initialization and destruction methods. Mandatory if the 810 * driver registers devlink port regions, optional otherwise. 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 * Access to the switch's PHY registers. 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 * Link state adjustment (called from libphy) 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 * PHYLINK integration 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 * Port statistics counters. 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 * ethtool Wake-on-LAN 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 * ethtool timestamp info 891 */ 892 int (*get_ts_info)(struct dsa_switch *ds, int port, 893 struct ethtool_ts_info *ts); 894 895 /* 896 * Suspend and resume 897 */ 898 int (*suspend)(struct dsa_switch *ds); 899 int (*resume)(struct dsa_switch *ds); 900 901 /* 902 * Port enable/disable 903 */ 904 int (*port_enable)(struct dsa_switch *ds, int port, 905 struct phy_device *phy); 906 void (*port_disable)(struct dsa_switch *ds, int port); 907 908 /* 909 * Port's MAC EEE settings 910 */ 911 int (*set_mac_eee)(struct dsa_switch *ds, int port, 912 struct ethtool_eee *e); 913 int (*get_mac_eee)(struct dsa_switch *ds, int port, 914 struct ethtool_eee *e); 915 916 /* EEPROM access */ 917 int (*get_eeprom_len)(struct dsa_switch *ds); 918 int (*get_eeprom)(struct dsa_switch *ds, 919 struct ethtool_eeprom *eeprom, u8 *data); 920 int (*set_eeprom)(struct dsa_switch *ds, 921 struct ethtool_eeprom *eeprom, u8 *data); 922 923 /* 924 * Register access. 925 */ 926 int (*get_regs_len)(struct dsa_switch *ds, int port); 927 void (*get_regs)(struct dsa_switch *ds, int port, 928 struct ethtool_regs *regs, void *p); 929 930 /* 931 * Upper device tracking. 932 */ 933 int (*port_prechangeupper)(struct dsa_switch *ds, int port, 934 struct netdev_notifier_changeupper_info *info); 935 936 /* 937 * Bridge integration 938 */ 939 int (*set_ageing_time)(struct dsa_switch *ds, unsigned int msecs); 940 int (*port_bridge_join)(struct dsa_switch *ds, int port, 941 struct dsa_bridge bridge, 942 bool *tx_fwd_offload, 943 struct netlink_ext_ack *extack); 944 void (*port_bridge_leave)(struct dsa_switch *ds, int port, 945 struct dsa_bridge bridge); 946 void (*port_stp_state_set)(struct dsa_switch *ds, int port, 947 u8 state); 948 void (*port_fast_age)(struct dsa_switch *ds, int port); 949 int (*port_pre_bridge_flags)(struct dsa_switch *ds, int port, 950 struct switchdev_brport_flags flags, 951 struct netlink_ext_ack *extack); 952 int (*port_bridge_flags)(struct dsa_switch *ds, int port, 953 struct switchdev_brport_flags flags, 954 struct netlink_ext_ack *extack); 955 956 /* 957 * VLAN support 958 */ 959 int (*port_vlan_filtering)(struct dsa_switch *ds, int port, 960 bool vlan_filtering, 961 struct netlink_ext_ack *extack); 962 int (*port_vlan_add)(struct dsa_switch *ds, int port, 963 const struct switchdev_obj_port_vlan *vlan, 964 struct netlink_ext_ack *extack); 965 int (*port_vlan_del)(struct dsa_switch *ds, int port, 966 const struct switchdev_obj_port_vlan *vlan); 967 /* 968 * Forwarding database 969 */ 970 int (*port_fdb_add)(struct dsa_switch *ds, int port, 971 const unsigned char *addr, u16 vid, 972 struct dsa_db db); 973 int (*port_fdb_del)(struct dsa_switch *ds, int port, 974 const unsigned char *addr, u16 vid, 975 struct dsa_db db); 976 int (*port_fdb_dump)(struct dsa_switch *ds, int port, 977 dsa_fdb_dump_cb_t *cb, void *data); 978 int (*lag_fdb_add)(struct dsa_switch *ds, struct dsa_lag lag, 979 const unsigned char *addr, u16 vid, 980 struct dsa_db db); 981 int (*lag_fdb_del)(struct dsa_switch *ds, struct dsa_lag lag, 982 const unsigned char *addr, u16 vid, 983 struct dsa_db db); 984 985 /* 986 * Multicast database 987 */ 988 int (*port_mdb_add)(struct dsa_switch *ds, int port, 989 const struct switchdev_obj_port_mdb *mdb, 990 struct dsa_db db); 991 int (*port_mdb_del)(struct dsa_switch *ds, int port, 992 const struct switchdev_obj_port_mdb *mdb, 993 struct dsa_db db); 994 /* 995 * RXNFC 996 */ 997 int (*get_rxnfc)(struct dsa_switch *ds, int port, 998 struct ethtool_rxnfc *nfc, u32 *rule_locs); 999 int (*set_rxnfc)(struct dsa_switch *ds, int port, 1000 struct ethtool_rxnfc *nfc); 1001 1002 /* 1003 * TC integration 1004 */ 1005 int (*cls_flower_add)(struct dsa_switch *ds, int port, 1006 struct flow_cls_offload *cls, bool ingress); 1007 int (*cls_flower_del)(struct dsa_switch *ds, int port, 1008 struct flow_cls_offload *cls, bool ingress); 1009 int (*cls_flower_stats)(struct dsa_switch *ds, int port, 1010 struct flow_cls_offload *cls, bool ingress); 1011 int (*port_mirror_add)(struct dsa_switch *ds, int port, 1012 struct dsa_mall_mirror_tc_entry *mirror, 1013 bool ingress); 1014 void (*port_mirror_del)(struct dsa_switch *ds, int port, 1015 struct dsa_mall_mirror_tc_entry *mirror); 1016 int (*port_policer_add)(struct dsa_switch *ds, int port, 1017 struct dsa_mall_policer_tc_entry *policer); 1018 void (*port_policer_del)(struct dsa_switch *ds, int port); 1019 int (*port_setup_tc)(struct dsa_switch *ds, int port, 1020 enum tc_setup_type type, void *type_data); 1021 1022 /* 1023 * Cross-chip operations 1024 */ 1025 int (*crosschip_bridge_join)(struct dsa_switch *ds, int tree_index, 1026 int sw_index, int port, 1027 struct dsa_bridge bridge, 1028 struct netlink_ext_ack *extack); 1029 void (*crosschip_bridge_leave)(struct dsa_switch *ds, int tree_index, 1030 int sw_index, int port, 1031 struct dsa_bridge bridge); 1032 int (*crosschip_lag_change)(struct dsa_switch *ds, int sw_index, 1033 int port); 1034 int (*crosschip_lag_join)(struct dsa_switch *ds, int sw_index, 1035 int port, struct dsa_lag lag, 1036 struct netdev_lag_upper_info *info); 1037 int (*crosschip_lag_leave)(struct dsa_switch *ds, int sw_index, 1038 int port, struct dsa_lag lag); 1039 1040 /* 1041 * PTP functionality 1042 */ 1043 int (*port_hwtstamp_get)(struct dsa_switch *ds, int port, 1044 struct ifreq *ifr); 1045 int (*port_hwtstamp_set)(struct dsa_switch *ds, int port, 1046 struct ifreq *ifr); 1047 void (*port_txtstamp)(struct dsa_switch *ds, int port, 1048 struct sk_buff *skb); 1049 bool (*port_rxtstamp)(struct dsa_switch *ds, int port, 1050 struct sk_buff *skb, unsigned int type); 1051 1052 /* Devlink parameters, etc */ 1053 int (*devlink_param_get)(struct dsa_switch *ds, u32 id, 1054 struct devlink_param_gset_ctx *ctx); 1055 int (*devlink_param_set)(struct dsa_switch *ds, u32 id, 1056 struct devlink_param_gset_ctx *ctx); 1057 int (*devlink_info_get)(struct dsa_switch *ds, 1058 struct devlink_info_req *req, 1059 struct netlink_ext_ack *extack); 1060 int (*devlink_sb_pool_get)(struct dsa_switch *ds, 1061 unsigned int sb_index, u16 pool_index, 1062 struct devlink_sb_pool_info *pool_info); 1063 int (*devlink_sb_pool_set)(struct dsa_switch *ds, unsigned int sb_index, 1064 u16 pool_index, u32 size, 1065 enum devlink_sb_threshold_type threshold_type, 1066 struct netlink_ext_ack *extack); 1067 int (*devlink_sb_port_pool_get)(struct dsa_switch *ds, int port, 1068 unsigned int sb_index, u16 pool_index, 1069 u32 *p_threshold); 1070 int (*devlink_sb_port_pool_set)(struct dsa_switch *ds, int port, 1071 unsigned int sb_index, u16 pool_index, 1072 u32 threshold, 1073 struct netlink_ext_ack *extack); 1074 int (*devlink_sb_tc_pool_bind_get)(struct dsa_switch *ds, int port, 1075 unsigned int sb_index, u16 tc_index, 1076 enum devlink_sb_pool_type pool_type, 1077 u16 *p_pool_index, u32 *p_threshold); 1078 int (*devlink_sb_tc_pool_bind_set)(struct dsa_switch *ds, int port, 1079 unsigned int sb_index, u16 tc_index, 1080 enum devlink_sb_pool_type pool_type, 1081 u16 pool_index, u32 threshold, 1082 struct netlink_ext_ack *extack); 1083 int (*devlink_sb_occ_snapshot)(struct dsa_switch *ds, 1084 unsigned int sb_index); 1085 int (*devlink_sb_occ_max_clear)(struct dsa_switch *ds, 1086 unsigned int sb_index); 1087 int (*devlink_sb_occ_port_pool_get)(struct dsa_switch *ds, int port, 1088 unsigned int sb_index, u16 pool_index, 1089 u32 *p_cur, u32 *p_max); 1090 int (*devlink_sb_occ_tc_port_bind_get)(struct dsa_switch *ds, int port, 1091 unsigned int sb_index, u16 tc_index, 1092 enum devlink_sb_pool_type pool_type, 1093 u32 *p_cur, u32 *p_max); 1094 1095 /* 1096 * MTU change functionality. Switches can also adjust their MRU through 1097 * this method. By MTU, one understands the SDU (L2 payload) length. 1098 * If the switch needs to account for the DSA tag on the CPU port, this 1099 * method needs to do so privately. 1100 */ 1101 int (*port_change_mtu)(struct dsa_switch *ds, int port, 1102 int new_mtu); 1103 int (*port_max_mtu)(struct dsa_switch *ds, int port); 1104 1105 /* 1106 * LAG integration 1107 */ 1108 int (*port_lag_change)(struct dsa_switch *ds, int port); 1109 int (*port_lag_join)(struct dsa_switch *ds, int port, 1110 struct dsa_lag lag, 1111 struct netdev_lag_upper_info *info); 1112 int (*port_lag_leave)(struct dsa_switch *ds, int port, 1113 struct dsa_lag lag); 1114 1115 /* 1116 * HSR integration 1117 */ 1118 int (*port_hsr_join)(struct dsa_switch *ds, int port, 1119 struct net_device *hsr); 1120 int (*port_hsr_leave)(struct dsa_switch *ds, int port, 1121 struct net_device *hsr); 1122 1123 /* 1124 * MRP integration 1125 */ 1126 int (*port_mrp_add)(struct dsa_switch *ds, int port, 1127 const struct switchdev_obj_mrp *mrp); 1128 int (*port_mrp_del)(struct dsa_switch *ds, int port, 1129 const struct switchdev_obj_mrp *mrp); 1130 int (*port_mrp_add_ring_role)(struct dsa_switch *ds, int port, 1131 const struct switchdev_obj_ring_role_mrp *mrp); 1132 int (*port_mrp_del_ring_role)(struct dsa_switch *ds, int port, 1133 const struct switchdev_obj_ring_role_mrp *mrp); 1134 1135 /* 1136 * tag_8021q operations 1137 */ 1138 int (*tag_8021q_vlan_add)(struct dsa_switch *ds, int port, u16 vid, 1139 u16 flags); 1140 int (*tag_8021q_vlan_del)(struct dsa_switch *ds, int port, u16 vid); 1141 1142 /* 1143 * DSA master tracking operations 1144 */ 1145 void (*master_state_change)(struct dsa_switch *ds, 1146 const struct net_device *master, 1147 bool operational); 1148 }; 1149 1150 #define DSA_DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes) \ 1151 DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes, \ 1152 dsa_devlink_param_get, dsa_devlink_param_set, NULL) 1153 1154 int dsa_devlink_param_get(struct devlink *dl, u32 id, 1155 struct devlink_param_gset_ctx *ctx); 1156 int dsa_devlink_param_set(struct devlink *dl, u32 id, 1157 struct devlink_param_gset_ctx *ctx); 1158 int dsa_devlink_params_register(struct dsa_switch *ds, 1159 const struct devlink_param *params, 1160 size_t params_count); 1161 void dsa_devlink_params_unregister(struct dsa_switch *ds, 1162 const struct devlink_param *params, 1163 size_t params_count); 1164 int dsa_devlink_resource_register(struct dsa_switch *ds, 1165 const char *resource_name, 1166 u64 resource_size, 1167 u64 resource_id, 1168 u64 parent_resource_id, 1169 const struct devlink_resource_size_params *size_params); 1170 1171 void dsa_devlink_resources_unregister(struct dsa_switch *ds); 1172 1173 void dsa_devlink_resource_occ_get_register(struct dsa_switch *ds, 1174 u64 resource_id, 1175 devlink_resource_occ_get_t *occ_get, 1176 void *occ_get_priv); 1177 void dsa_devlink_resource_occ_get_unregister(struct dsa_switch *ds, 1178 u64 resource_id); 1179 struct devlink_region * 1180 dsa_devlink_region_create(struct dsa_switch *ds, 1181 const struct devlink_region_ops *ops, 1182 u32 region_max_snapshots, u64 region_size); 1183 struct devlink_region * 1184 dsa_devlink_port_region_create(struct dsa_switch *ds, 1185 int port, 1186 const struct devlink_port_region_ops *ops, 1187 u32 region_max_snapshots, u64 region_size); 1188 void dsa_devlink_region_destroy(struct devlink_region *region); 1189 1190 struct dsa_port *dsa_port_from_netdev(struct net_device *netdev); 1191 1192 struct dsa_devlink_priv { 1193 struct dsa_switch *ds; 1194 }; 1195 1196 static inline struct dsa_switch *dsa_devlink_to_ds(struct devlink *dl) 1197 { 1198 struct dsa_devlink_priv *dl_priv = devlink_priv(dl); 1199 1200 return dl_priv->ds; 1201 } 1202 1203 static inline 1204 struct dsa_switch *dsa_devlink_port_to_ds(struct devlink_port *port) 1205 { 1206 struct devlink *dl = port->devlink; 1207 struct dsa_devlink_priv *dl_priv = devlink_priv(dl); 1208 1209 return dl_priv->ds; 1210 } 1211 1212 static inline int dsa_devlink_port_to_port(struct devlink_port *port) 1213 { 1214 return port->index; 1215 } 1216 1217 struct dsa_switch_driver { 1218 struct list_head list; 1219 const struct dsa_switch_ops *ops; 1220 }; 1221 1222 struct net_device *dsa_dev_to_net_device(struct device *dev); 1223 1224 typedef int dsa_fdb_walk_cb_t(struct dsa_switch *ds, int port, 1225 const unsigned char *addr, u16 vid, 1226 struct dsa_db db); 1227 1228 int dsa_port_walk_fdbs(struct dsa_switch *ds, int port, dsa_fdb_walk_cb_t cb); 1229 int dsa_port_walk_mdbs(struct dsa_switch *ds, int port, dsa_fdb_walk_cb_t cb); 1230 1231 /* Keep inline for faster access in hot path */ 1232 static inline bool netdev_uses_dsa(const struct net_device *dev) 1233 { 1234 #if IS_ENABLED(CONFIG_NET_DSA) 1235 return dev->dsa_ptr && dev->dsa_ptr->rcv; 1236 #endif 1237 return false; 1238 } 1239 1240 /* All DSA tags that push the EtherType to the right (basically all except tail 1241 * tags, which don't break dissection) can be treated the same from the 1242 * perspective of the flow dissector. 1243 * 1244 * We need to return: 1245 * - offset: the (B - A) difference between: 1246 * A. the position of the real EtherType and 1247 * B. the current skb->data (aka ETH_HLEN bytes into the frame, aka 2 bytes 1248 * after the normal EtherType was supposed to be) 1249 * The offset in bytes is exactly equal to the tagger overhead (and half of 1250 * that, in __be16 shorts). 1251 * 1252 * - proto: the value of the real EtherType. 1253 */ 1254 static inline void dsa_tag_generic_flow_dissect(const struct sk_buff *skb, 1255 __be16 *proto, int *offset) 1256 { 1257 #if IS_ENABLED(CONFIG_NET_DSA) 1258 const struct dsa_device_ops *ops = skb->dev->dsa_ptr->tag_ops; 1259 int tag_len = ops->needed_headroom; 1260 1261 *offset = tag_len; 1262 *proto = ((__be16 *)skb->data)[(tag_len / 2) - 1]; 1263 #endif 1264 } 1265 1266 #if IS_ENABLED(CONFIG_NET_DSA) 1267 static inline int __dsa_netdevice_ops_check(struct net_device *dev) 1268 { 1269 int err = -EOPNOTSUPP; 1270 1271 if (!dev->dsa_ptr) 1272 return err; 1273 1274 if (!dev->dsa_ptr->netdev_ops) 1275 return err; 1276 1277 return 0; 1278 } 1279 1280 static inline int dsa_ndo_eth_ioctl(struct net_device *dev, struct ifreq *ifr, 1281 int cmd) 1282 { 1283 const struct dsa_netdevice_ops *ops; 1284 int err; 1285 1286 err = __dsa_netdevice_ops_check(dev); 1287 if (err) 1288 return err; 1289 1290 ops = dev->dsa_ptr->netdev_ops; 1291 1292 return ops->ndo_eth_ioctl(dev, ifr, cmd); 1293 } 1294 #else 1295 static inline int dsa_ndo_eth_ioctl(struct net_device *dev, struct ifreq *ifr, 1296 int cmd) 1297 { 1298 return -EOPNOTSUPP; 1299 } 1300 #endif 1301 1302 void dsa_unregister_switch(struct dsa_switch *ds); 1303 int dsa_register_switch(struct dsa_switch *ds); 1304 void dsa_switch_shutdown(struct dsa_switch *ds); 1305 struct dsa_switch *dsa_switch_find(int tree_index, int sw_index); 1306 void dsa_flush_workqueue(void); 1307 #ifdef CONFIG_PM_SLEEP 1308 int dsa_switch_suspend(struct dsa_switch *ds); 1309 int dsa_switch_resume(struct dsa_switch *ds); 1310 #else 1311 static inline int dsa_switch_suspend(struct dsa_switch *ds) 1312 { 1313 return 0; 1314 } 1315 static inline int dsa_switch_resume(struct dsa_switch *ds) 1316 { 1317 return 0; 1318 } 1319 #endif /* CONFIG_PM_SLEEP */ 1320 1321 #if IS_ENABLED(CONFIG_NET_DSA) 1322 bool dsa_slave_dev_check(const struct net_device *dev); 1323 #else 1324 static inline bool dsa_slave_dev_check(const struct net_device *dev) 1325 { 1326 return false; 1327 } 1328 #endif 1329 1330 netdev_tx_t dsa_enqueue_skb(struct sk_buff *skb, struct net_device *dev); 1331 void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up); 1332 1333 struct dsa_tag_driver { 1334 const struct dsa_device_ops *ops; 1335 struct list_head list; 1336 struct module *owner; 1337 }; 1338 1339 void dsa_tag_drivers_register(struct dsa_tag_driver *dsa_tag_driver_array[], 1340 unsigned int count, 1341 struct module *owner); 1342 void dsa_tag_drivers_unregister(struct dsa_tag_driver *dsa_tag_driver_array[], 1343 unsigned int count); 1344 1345 #define dsa_tag_driver_module_drivers(__dsa_tag_drivers_array, __count) \ 1346 static int __init dsa_tag_driver_module_init(void) \ 1347 { \ 1348 dsa_tag_drivers_register(__dsa_tag_drivers_array, __count, \ 1349 THIS_MODULE); \ 1350 return 0; \ 1351 } \ 1352 module_init(dsa_tag_driver_module_init); \ 1353 \ 1354 static void __exit dsa_tag_driver_module_exit(void) \ 1355 { \ 1356 dsa_tag_drivers_unregister(__dsa_tag_drivers_array, __count); \ 1357 } \ 1358 module_exit(dsa_tag_driver_module_exit) 1359 1360 /** 1361 * module_dsa_tag_drivers() - Helper macro for registering DSA tag 1362 * drivers 1363 * @__ops_array: Array of tag driver structures 1364 * 1365 * Helper macro for DSA tag drivers which do not do anything special 1366 * in module init/exit. Each module may only use this macro once, and 1367 * calling it replaces module_init() and module_exit(). 1368 */ 1369 #define module_dsa_tag_drivers(__ops_array) \ 1370 dsa_tag_driver_module_drivers(__ops_array, ARRAY_SIZE(__ops_array)) 1371 1372 #define DSA_TAG_DRIVER_NAME(__ops) dsa_tag_driver ## _ ## __ops 1373 1374 /* Create a static structure we can build a linked list of dsa_tag 1375 * drivers 1376 */ 1377 #define DSA_TAG_DRIVER(__ops) \ 1378 static struct dsa_tag_driver DSA_TAG_DRIVER_NAME(__ops) = { \ 1379 .ops = &__ops, \ 1380 } 1381 1382 /** 1383 * module_dsa_tag_driver() - Helper macro for registering a single DSA tag 1384 * driver 1385 * @__ops: Single tag driver structures 1386 * 1387 * Helper macro for DSA tag drivers which do not do anything special 1388 * in module init/exit. Each module may only use this macro once, and 1389 * calling it replaces module_init() and module_exit(). 1390 */ 1391 #define module_dsa_tag_driver(__ops) \ 1392 DSA_TAG_DRIVER(__ops); \ 1393 \ 1394 static struct dsa_tag_driver *dsa_tag_driver_array[] = { \ 1395 &DSA_TAG_DRIVER_NAME(__ops) \ 1396 }; \ 1397 module_dsa_tag_drivers(dsa_tag_driver_array) 1398 #endif 1399 1400