linux/include/net/dsa.h
<<
>>
Prefs
   1/*
   2 * include/net/dsa.h - Driver for Distributed Switch Architecture switch chips
   3 * Copyright (c) 2008-2009 Marvell Semiconductor
   4 *
   5 * This program is free software; you can redistribute it and/or modify
   6 * it under the terms of the GNU General Public License as published by
   7 * the Free Software Foundation; either version 2 of the License, or
   8 * (at your option) any later version.
   9 */
  10
  11#ifndef __LINUX_NET_DSA_H
  12#define __LINUX_NET_DSA_H
  13
  14#include <linux/if.h>
  15#include <linux/if_ether.h>
  16#include <linux/list.h>
  17#include <linux/notifier.h>
  18#include <linux/timer.h>
  19#include <linux/workqueue.h>
  20#include <linux/of.h>
  21#include <linux/ethtool.h>
  22#include <linux/net_tstamp.h>
  23#include <linux/phy.h>
  24#include <linux/phylink.h>
  25#include <net/devlink.h>
  26#include <net/switchdev.h>
  27
  28struct tc_action;
  29struct phy_device;
  30struct fixed_phy_status;
  31struct phylink_link_state;
  32
  33enum dsa_tag_protocol {
  34        DSA_TAG_PROTO_NONE = 0,
  35        DSA_TAG_PROTO_BRCM,
  36        DSA_TAG_PROTO_BRCM_PREPEND,
  37        DSA_TAG_PROTO_DSA,
  38        DSA_TAG_PROTO_EDSA,
  39        DSA_TAG_PROTO_KSZ,
  40        DSA_TAG_PROTO_LAN9303,
  41        DSA_TAG_PROTO_MTK,
  42        DSA_TAG_PROTO_QCA,
  43        DSA_TAG_PROTO_TRAILER,
  44        DSA_TAG_LAST,           /* MUST BE LAST */
  45};
  46
  47#define DSA_MAX_SWITCHES        4
  48#define DSA_MAX_PORTS           12
  49
  50#define DSA_RTABLE_NONE         -1
  51
  52struct dsa_chip_data {
  53        /*
  54         * How to access the switch configuration registers.
  55         */
  56        struct device   *host_dev;
  57        int             sw_addr;
  58
  59        /*
  60         * Reference to network devices
  61         */
  62        struct device   *netdev[DSA_MAX_PORTS];
  63
  64        /* set to size of eeprom if supported by the switch */
  65        int             eeprom_len;
  66
  67        /* Device tree node pointer for this specific switch chip
  68         * used during switch setup in case additional properties
  69         * and resources needs to be used
  70         */
  71        struct device_node *of_node;
  72
  73        /*
  74         * The names of the switch's ports.  Use "cpu" to
  75         * designate the switch port that the cpu is connected to,
  76         * "dsa" to indicate that this port is a DSA link to
  77         * another switch, NULL to indicate the port is unused,
  78         * or any other string to indicate this is a physical port.
  79         */
  80        char            *port_names[DSA_MAX_PORTS];
  81        struct device_node *port_dn[DSA_MAX_PORTS];
  82
  83        /*
  84         * An array of which element [a] indicates which port on this
  85         * switch should be used to send packets to that are destined
  86         * for switch a. Can be NULL if there is only one switch chip.
  87         */
  88        s8              rtable[DSA_MAX_SWITCHES];
  89};
  90
  91struct dsa_platform_data {
  92        /*
  93         * Reference to a Linux network interface that connects
  94         * to the root switch chip of the tree.
  95         */
  96        struct device   *netdev;
  97        struct net_device *of_netdev;
  98
  99        /*
 100         * Info structs describing each of the switch chips
 101         * connected via this network interface.
 102         */
 103        int             nr_chips;
 104        struct dsa_chip_data    *chip;
 105};
 106
 107struct packet_type;
 108struct dsa_switch;
 109
 110struct dsa_device_ops {
 111        struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev);
 112        struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
 113                               struct packet_type *pt);
 114        int (*flow_dissect)(const struct sk_buff *skb, __be16 *proto,
 115                            int *offset);
 116};
 117
 118struct dsa_switch_tree {
 119        struct list_head        list;
 120
 121        /* Notifier chain for switch-wide events */
 122        struct raw_notifier_head        nh;
 123
 124        /* Tree identifier */
 125        unsigned int index;
 126
 127        /* Number of switches attached to this tree */
 128        struct kref refcount;
 129
 130        /* Has this tree been applied to the hardware? */
 131        bool setup;
 132
 133        /*
 134         * Configuration data for the platform device that owns
 135         * this dsa switch tree instance.
 136         */
 137        struct dsa_platform_data        *pd;
 138
 139        /*
 140         * The switch port to which the CPU is attached.
 141         */
 142        struct dsa_port         *cpu_dp;
 143
 144        /*
 145         * Data for the individual switch chips.
 146         */
 147        struct dsa_switch       *ds[DSA_MAX_SWITCHES];
 148};
 149
 150/* TC matchall action types, only mirroring for now */
 151enum dsa_port_mall_action_type {
 152        DSA_PORT_MALL_MIRROR,
 153};
 154
 155/* TC mirroring entry */
 156struct dsa_mall_mirror_tc_entry {
 157        u8 to_local_port;
 158        bool ingress;
 159};
 160
 161/* TC matchall entry */
 162struct dsa_mall_tc_entry {
 163        struct list_head list;
 164        unsigned long cookie;
 165        enum dsa_port_mall_action_type type;
 166        union {
 167                struct dsa_mall_mirror_tc_entry mirror;
 168        };
 169};
 170
 171
 172struct dsa_port {
 173        /* A CPU port is physically connected to a master device.
 174         * A user port exposed to userspace has a slave device.
 175         */
 176        union {
 177                struct net_device *master;
 178                struct net_device *slave;
 179        };
 180
 181        /* CPU port tagging operations used by master or slave devices */
 182        const struct dsa_device_ops *tag_ops;
 183
 184        /* Copies for faster access in master receive hot path */
 185        struct dsa_switch_tree *dst;
 186        struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
 187                               struct packet_type *pt);
 188
 189        enum {
 190                DSA_PORT_TYPE_UNUSED = 0,
 191                DSA_PORT_TYPE_CPU,
 192                DSA_PORT_TYPE_DSA,
 193                DSA_PORT_TYPE_USER,
 194        } type;
 195
 196        struct dsa_switch       *ds;
 197        unsigned int            index;
 198        const char              *name;
 199        const struct dsa_port   *cpu_dp;
 200        struct device_node      *dn;
 201        unsigned int            ageing_time;
 202        u8                      stp_state;
 203        struct net_device       *bridge_dev;
 204        struct devlink_port     devlink_port;
 205        struct phylink          *pl;
 206        struct phylink_config   pl_config;
 207
 208        /*
 209         * Original copy of the master netdev ethtool_ops
 210         */
 211        const struct ethtool_ops *orig_ethtool_ops;
 212};
 213
 214struct dsa_switch {
 215        struct device *dev;
 216
 217        /*
 218         * Parent switch tree, and switch index.
 219         */
 220        struct dsa_switch_tree  *dst;
 221        unsigned int            index;
 222
 223        /* Listener for switch fabric events */
 224        struct notifier_block   nb;
 225
 226        /*
 227         * Give the switch driver somewhere to hang its private data
 228         * structure.
 229         */
 230        void *priv;
 231
 232        /*
 233         * Configuration data for this switch.
 234         */
 235        struct dsa_chip_data    *cd;
 236
 237        /*
 238         * The switch operations.
 239         */
 240        const struct dsa_switch_ops     *ops;
 241
 242        /*
 243         * An array of which element [a] indicates which port on this
 244         * switch should be used to send packets to that are destined
 245         * for switch a. Can be NULL if there is only one switch chip.
 246         */
 247        s8              rtable[DSA_MAX_SWITCHES];
 248
 249        /*
 250         * Slave mii_bus and devices for the individual ports.
 251         */
 252        u32                     phys_mii_mask;
 253        struct mii_bus          *slave_mii_bus;
 254
 255        /* Ageing Time limits in msecs */
 256        unsigned int ageing_time_min;
 257        unsigned int ageing_time_max;
 258
 259        /* devlink used to represent this switch device */
 260        struct devlink          *devlink;
 261
 262        /* Number of switch port queues */
 263        unsigned int            num_tx_queues;
 264
 265        /* Dynamically allocated ports, keep last */
 266        size_t num_ports;
 267        struct dsa_port ports[];
 268};
 269
 270static inline const struct dsa_port *dsa_to_port(struct dsa_switch *ds, int p)
 271{
 272        return &ds->ports[p];
 273}
 274
 275static inline bool dsa_is_unused_port(struct dsa_switch *ds, int p)
 276{
 277        return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_UNUSED;
 278}
 279
 280static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p)
 281{
 282        return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_CPU;
 283}
 284
 285static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p)
 286{
 287        return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_DSA;
 288}
 289
 290static inline bool dsa_is_user_port(struct dsa_switch *ds, int p)
 291{
 292        return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_USER;
 293}
 294
 295static inline u32 dsa_user_ports(struct dsa_switch *ds)
 296{
 297        u32 mask = 0;
 298        int p;
 299
 300        for (p = 0; p < ds->num_ports; p++)
 301                if (dsa_is_user_port(ds, p))
 302                        mask |= BIT(p);
 303
 304        return mask;
 305}
 306
 307/* Return the local port used to reach an arbitrary switch port */
 308static inline unsigned int dsa_towards_port(struct dsa_switch *ds, int device,
 309                                            int port)
 310{
 311        if (device == ds->index)
 312                return port;
 313        else
 314                return ds->rtable[device];
 315}
 316
 317/* Return the local port used to reach the dedicated CPU port */
 318static inline unsigned int dsa_upstream_port(struct dsa_switch *ds, int port)
 319{
 320        const struct dsa_port *dp = dsa_to_port(ds, port);
 321        const struct dsa_port *cpu_dp = dp->cpu_dp;
 322
 323        if (!cpu_dp)
 324                return port;
 325
 326        return dsa_towards_port(ds, cpu_dp->ds->index, cpu_dp->index);
 327}
 328
 329typedef int dsa_fdb_dump_cb_t(const unsigned char *addr, u16 vid,
 330                              bool is_static, void *data);
 331struct dsa_switch_ops {
 332#if IS_ENABLED(CONFIG_NET_DSA_LEGACY)
 333        /*
 334         * Legacy probing.
 335         */
 336        const char      *(*probe)(struct device *dsa_dev,
 337                                  struct device *host_dev, int sw_addr,
 338                                  void **priv);
 339#endif
 340
 341        enum dsa_tag_protocol (*get_tag_protocol)(struct dsa_switch *ds,
 342                                                  int port);
 343
 344        int     (*setup)(struct dsa_switch *ds);
 345        u32     (*get_phy_flags)(struct dsa_switch *ds, int port);
 346
 347        /*
 348         * Access to the switch's PHY registers.
 349         */
 350        int     (*phy_read)(struct dsa_switch *ds, int port, int regnum);
 351        int     (*phy_write)(struct dsa_switch *ds, int port,
 352                             int regnum, u16 val);
 353
 354        /*
 355         * Link state adjustment (called from libphy)
 356         */
 357        void    (*adjust_link)(struct dsa_switch *ds, int port,
 358                                struct phy_device *phydev);
 359        void    (*fixed_link_update)(struct dsa_switch *ds, int port,
 360                                struct fixed_phy_status *st);
 361
 362        /*
 363         * PHYLINK integration
 364         */
 365        void    (*phylink_validate)(struct dsa_switch *ds, int port,
 366                                    unsigned long *supported,
 367                                    struct phylink_link_state *state);
 368        int     (*phylink_mac_link_state)(struct dsa_switch *ds, int port,
 369                                          struct phylink_link_state *state);
 370        void    (*phylink_mac_config)(struct dsa_switch *ds, int port,
 371                                      unsigned int mode,
 372                                      const struct phylink_link_state *state);
 373        void    (*phylink_mac_an_restart)(struct dsa_switch *ds, int port);
 374        void    (*phylink_mac_link_down)(struct dsa_switch *ds, int port,
 375                                         unsigned int mode,
 376                                         phy_interface_t interface);
 377        void    (*phylink_mac_link_up)(struct dsa_switch *ds, int port,
 378                                       unsigned int mode,
 379                                       phy_interface_t interface,
 380                                       struct phy_device *phydev);
 381        void    (*phylink_fixed_state)(struct dsa_switch *ds, int port,
 382                                       struct phylink_link_state *state);
 383        /*
 384         * ethtool hardware statistics.
 385         */
 386        void    (*get_strings)(struct dsa_switch *ds, int port,
 387                               u32 stringset, uint8_t *data);
 388        void    (*get_ethtool_stats)(struct dsa_switch *ds,
 389                                     int port, uint64_t *data);
 390        int     (*get_sset_count)(struct dsa_switch *ds, int port, int sset);
 391        void    (*get_ethtool_phy_stats)(struct dsa_switch *ds,
 392                                         int port, uint64_t *data);
 393
 394        /*
 395         * ethtool Wake-on-LAN
 396         */
 397        void    (*get_wol)(struct dsa_switch *ds, int port,
 398                           struct ethtool_wolinfo *w);
 399        int     (*set_wol)(struct dsa_switch *ds, int port,
 400                           struct ethtool_wolinfo *w);
 401
 402        /*
 403         * ethtool timestamp info
 404         */
 405        int     (*get_ts_info)(struct dsa_switch *ds, int port,
 406                               struct ethtool_ts_info *ts);
 407
 408        /*
 409         * Suspend and resume
 410         */
 411        int     (*suspend)(struct dsa_switch *ds);
 412        int     (*resume)(struct dsa_switch *ds);
 413
 414        /*
 415         * Port enable/disable
 416         */
 417        int     (*port_enable)(struct dsa_switch *ds, int port,
 418                               struct phy_device *phy);
 419        void    (*port_disable)(struct dsa_switch *ds, int port,
 420                                struct phy_device *phy);
 421
 422        /*
 423         * Port's MAC EEE settings
 424         */
 425        int     (*set_mac_eee)(struct dsa_switch *ds, int port,
 426                               struct ethtool_eee *e);
 427        int     (*get_mac_eee)(struct dsa_switch *ds, int port,
 428                               struct ethtool_eee *e);
 429
 430        /* EEPROM access */
 431        int     (*get_eeprom_len)(struct dsa_switch *ds);
 432        int     (*get_eeprom)(struct dsa_switch *ds,
 433                              struct ethtool_eeprom *eeprom, u8 *data);
 434        int     (*set_eeprom)(struct dsa_switch *ds,
 435                              struct ethtool_eeprom *eeprom, u8 *data);
 436
 437        /*
 438         * Register access.
 439         */
 440        int     (*get_regs_len)(struct dsa_switch *ds, int port);
 441        void    (*get_regs)(struct dsa_switch *ds, int port,
 442                            struct ethtool_regs *regs, void *p);
 443
 444        /*
 445         * Bridge integration
 446         */
 447        int     (*set_ageing_time)(struct dsa_switch *ds, unsigned int msecs);
 448        int     (*port_bridge_join)(struct dsa_switch *ds, int port,
 449                                    struct net_device *bridge);
 450        void    (*port_bridge_leave)(struct dsa_switch *ds, int port,
 451                                     struct net_device *bridge);
 452        void    (*port_stp_state_set)(struct dsa_switch *ds, int port,
 453                                      u8 state);
 454        void    (*port_fast_age)(struct dsa_switch *ds, int port);
 455
 456        /*
 457         * VLAN support
 458         */
 459        int     (*port_vlan_filtering)(struct dsa_switch *ds, int port,
 460                                       bool vlan_filtering);
 461        int (*port_vlan_prepare)(struct dsa_switch *ds, int port,
 462                                 const struct switchdev_obj_port_vlan *vlan);
 463        void (*port_vlan_add)(struct dsa_switch *ds, int port,
 464                              const struct switchdev_obj_port_vlan *vlan);
 465        int     (*port_vlan_del)(struct dsa_switch *ds, int port,
 466                                 const struct switchdev_obj_port_vlan *vlan);
 467        /*
 468         * Forwarding database
 469         */
 470        int     (*port_fdb_add)(struct dsa_switch *ds, int port,
 471                                const unsigned char *addr, u16 vid);
 472        int     (*port_fdb_del)(struct dsa_switch *ds, int port,
 473                                const unsigned char *addr, u16 vid);
 474        int     (*port_fdb_dump)(struct dsa_switch *ds, int port,
 475                                 dsa_fdb_dump_cb_t *cb, void *data);
 476
 477        /*
 478         * Multicast database
 479         */
 480        int (*port_mdb_prepare)(struct dsa_switch *ds, int port,
 481                                const struct switchdev_obj_port_mdb *mdb);
 482        void (*port_mdb_add)(struct dsa_switch *ds, int port,
 483                             const struct switchdev_obj_port_mdb *mdb);
 484        int     (*port_mdb_del)(struct dsa_switch *ds, int port,
 485                                const struct switchdev_obj_port_mdb *mdb);
 486        /*
 487         * RXNFC
 488         */
 489        int     (*get_rxnfc)(struct dsa_switch *ds, int port,
 490                             struct ethtool_rxnfc *nfc, u32 *rule_locs);
 491        int     (*set_rxnfc)(struct dsa_switch *ds, int port,
 492                             struct ethtool_rxnfc *nfc);
 493
 494        /*
 495         * TC integration
 496         */
 497        int     (*port_mirror_add)(struct dsa_switch *ds, int port,
 498                                   struct dsa_mall_mirror_tc_entry *mirror,
 499                                   bool ingress);
 500        void    (*port_mirror_del)(struct dsa_switch *ds, int port,
 501                                   struct dsa_mall_mirror_tc_entry *mirror);
 502
 503        /*
 504         * Cross-chip operations
 505         */
 506        int     (*crosschip_bridge_join)(struct dsa_switch *ds, int sw_index,
 507                                         int port, struct net_device *br);
 508        void    (*crosschip_bridge_leave)(struct dsa_switch *ds, int sw_index,
 509                                          int port, struct net_device *br);
 510
 511        /*
 512         * PTP functionality
 513         */
 514        int     (*port_hwtstamp_get)(struct dsa_switch *ds, int port,
 515                                     struct ifreq *ifr);
 516        int     (*port_hwtstamp_set)(struct dsa_switch *ds, int port,
 517                                     struct ifreq *ifr);
 518        bool    (*port_txtstamp)(struct dsa_switch *ds, int port,
 519                                 struct sk_buff *clone, unsigned int type);
 520        bool    (*port_rxtstamp)(struct dsa_switch *ds, int port,
 521                                 struct sk_buff *skb, unsigned int type);
 522};
 523
 524struct dsa_switch_driver {
 525        struct list_head        list;
 526        const struct dsa_switch_ops *ops;
 527};
 528
 529#if IS_ENABLED(CONFIG_NET_DSA_LEGACY)
 530/* Legacy driver registration */
 531void register_switch_driver(struct dsa_switch_driver *type);
 532void unregister_switch_driver(struct dsa_switch_driver *type);
 533struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev);
 534
 535#else
 536static inline void register_switch_driver(struct dsa_switch_driver *type) { }
 537static inline void unregister_switch_driver(struct dsa_switch_driver *type) { }
 538static inline struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev)
 539{
 540        return NULL;
 541}
 542#endif
 543struct net_device *dsa_dev_to_net_device(struct device *dev);
 544
 545/* Keep inline for faster access in hot path */
 546static inline bool netdev_uses_dsa(const struct net_device *dev)
 547{
 548#if IS_ENABLED(CONFIG_NET_DSA)
 549        return dev->dsa_ptr && dev->dsa_ptr->rcv;
 550#endif
 551        return false;
 552}
 553
 554struct dsa_switch *dsa_switch_alloc(struct device *dev, size_t n);
 555void dsa_unregister_switch(struct dsa_switch *ds);
 556int dsa_register_switch(struct dsa_switch *ds);
 557#ifdef CONFIG_PM_SLEEP
 558int dsa_switch_suspend(struct dsa_switch *ds);
 559int dsa_switch_resume(struct dsa_switch *ds);
 560#else
 561static inline int dsa_switch_suspend(struct dsa_switch *ds)
 562{
 563        return 0;
 564}
 565static inline int dsa_switch_resume(struct dsa_switch *ds)
 566{
 567        return 0;
 568}
 569#endif /* CONFIG_PM_SLEEP */
 570
 571enum dsa_notifier_type {
 572        DSA_PORT_REGISTER,
 573        DSA_PORT_UNREGISTER,
 574};
 575
 576struct dsa_notifier_info {
 577        struct net_device *dev;
 578};
 579
 580struct dsa_notifier_register_info {
 581        struct dsa_notifier_info info;  /* must be first */
 582        struct net_device *master;
 583        unsigned int port_number;
 584        unsigned int switch_number;
 585};
 586
 587static inline struct net_device *
 588dsa_notifier_info_to_dev(const struct dsa_notifier_info *info)
 589{
 590        return info->dev;
 591}
 592
 593#if IS_ENABLED(CONFIG_NET_DSA)
 594int register_dsa_notifier(struct notifier_block *nb);
 595int unregister_dsa_notifier(struct notifier_block *nb);
 596int call_dsa_notifiers(unsigned long val, struct net_device *dev,
 597                       struct dsa_notifier_info *info);
 598#else
 599static inline int register_dsa_notifier(struct notifier_block *nb)
 600{
 601        return 0;
 602}
 603
 604static inline int unregister_dsa_notifier(struct notifier_block *nb)
 605{
 606        return 0;
 607}
 608
 609static inline int call_dsa_notifiers(unsigned long val, struct net_device *dev,
 610                                     struct dsa_notifier_info *info)
 611{
 612        return NOTIFY_DONE;
 613}
 614#endif
 615
 616/* Broadcom tag specific helpers to insert and extract queue/port number */
 617#define BRCM_TAG_SET_PORT_QUEUE(p, q)   ((p) << 8 | q)
 618#define BRCM_TAG_GET_PORT(v)            ((v) >> 8)
 619#define BRCM_TAG_GET_QUEUE(v)           ((v) & 0xff)
 620
 621
 622int dsa_port_get_phy_strings(struct dsa_port *dp, uint8_t *data);
 623int dsa_port_get_ethtool_phy_stats(struct dsa_port *dp, uint64_t *data);
 624int dsa_port_get_phy_sset_count(struct dsa_port *dp);
 625void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up);
 626
 627#endif
 628