staging: rtl8188eu: rename HalSetBrateCfg() - style
[linux/fpc-iii.git] / include / net / dsa.h
blob461e8a7661b7855ca2ee7bec2e4ffb7e9bb2bc2a
1 /*
2 * include/net/dsa.h - Driver for Distributed Switch Architecture switch chips
3 * Copyright (c) 2008-2009 Marvell Semiconductor
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 */
11 #ifndef __LINUX_NET_DSA_H
12 #define __LINUX_NET_DSA_H
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 <net/devlink.h>
25 #include <net/switchdev.h>
27 struct tc_action;
28 struct phy_device;
29 struct fixed_phy_status;
30 struct phylink_link_state;
32 enum dsa_tag_protocol {
33 DSA_TAG_PROTO_NONE = 0,
34 DSA_TAG_PROTO_BRCM,
35 DSA_TAG_PROTO_BRCM_PREPEND,
36 DSA_TAG_PROTO_DSA,
37 DSA_TAG_PROTO_EDSA,
38 DSA_TAG_PROTO_KSZ,
39 DSA_TAG_PROTO_LAN9303,
40 DSA_TAG_PROTO_MTK,
41 DSA_TAG_PROTO_QCA,
42 DSA_TAG_PROTO_TRAILER,
43 DSA_TAG_LAST, /* MUST BE LAST */
46 #define DSA_MAX_SWITCHES 4
47 #define DSA_MAX_PORTS 12
49 #define DSA_RTABLE_NONE -1
51 struct dsa_chip_data {
53 * How to access the switch configuration registers.
55 struct device *host_dev;
56 int sw_addr;
59 * Reference to network devices
61 struct device *netdev[DSA_MAX_PORTS];
63 /* set to size of eeprom if supported by the switch */
64 int eeprom_len;
66 /* Device tree node pointer for this specific switch chip
67 * used during switch setup in case additional properties
68 * and resources needs to be used
70 struct device_node *of_node;
73 * The names of the switch's ports. Use "cpu" to
74 * designate the switch port that the cpu is connected to,
75 * "dsa" to indicate that this port is a DSA link to
76 * another switch, NULL to indicate the port is unused,
77 * or any other string to indicate this is a physical port.
79 char *port_names[DSA_MAX_PORTS];
80 struct device_node *port_dn[DSA_MAX_PORTS];
83 * An array of which element [a] indicates which port on this
84 * switch should be used to send packets to that are destined
85 * for switch a. Can be NULL if there is only one switch chip.
87 s8 rtable[DSA_MAX_SWITCHES];
90 struct dsa_platform_data {
92 * Reference to a Linux network interface that connects
93 * to the root switch chip of the tree.
95 struct device *netdev;
96 struct net_device *of_netdev;
99 * Info structs describing each of the switch chips
100 * connected via this network interface.
102 int nr_chips;
103 struct dsa_chip_data *chip;
106 struct packet_type;
107 struct dsa_switch;
109 struct dsa_device_ops {
110 struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev);
111 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
112 struct packet_type *pt);
113 int (*flow_dissect)(const struct sk_buff *skb, __be16 *proto,
114 int *offset);
117 struct dsa_switch_tree {
118 struct list_head list;
120 /* Notifier chain for switch-wide events */
121 struct raw_notifier_head nh;
123 /* Tree identifier */
124 unsigned int index;
126 /* Number of switches attached to this tree */
127 struct kref refcount;
129 /* Has this tree been applied to the hardware? */
130 bool setup;
133 * Configuration data for the platform device that owns
134 * this dsa switch tree instance.
136 struct dsa_platform_data *pd;
139 * The switch port to which the CPU is attached.
141 struct dsa_port *cpu_dp;
144 * Data for the individual switch chips.
146 struct dsa_switch *ds[DSA_MAX_SWITCHES];
149 /* TC matchall action types, only mirroring for now */
150 enum dsa_port_mall_action_type {
151 DSA_PORT_MALL_MIRROR,
154 /* TC mirroring entry */
155 struct dsa_mall_mirror_tc_entry {
156 u8 to_local_port;
157 bool ingress;
160 /* TC matchall entry */
161 struct dsa_mall_tc_entry {
162 struct list_head list;
163 unsigned long cookie;
164 enum dsa_port_mall_action_type type;
165 union {
166 struct dsa_mall_mirror_tc_entry mirror;
171 struct dsa_port {
172 /* A CPU port is physically connected to a master device.
173 * A user port exposed to userspace has a slave device.
175 union {
176 struct net_device *master;
177 struct net_device *slave;
180 /* CPU port tagging operations used by master or slave devices */
181 const struct dsa_device_ops *tag_ops;
183 /* Copies for faster access in master receive hot path */
184 struct dsa_switch_tree *dst;
185 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
186 struct packet_type *pt);
188 enum {
189 DSA_PORT_TYPE_UNUSED = 0,
190 DSA_PORT_TYPE_CPU,
191 DSA_PORT_TYPE_DSA,
192 DSA_PORT_TYPE_USER,
193 } type;
195 struct dsa_switch *ds;
196 unsigned int index;
197 const char *name;
198 const struct dsa_port *cpu_dp;
199 struct device_node *dn;
200 unsigned int ageing_time;
201 u8 stp_state;
202 struct net_device *bridge_dev;
203 struct devlink_port devlink_port;
204 struct phylink *pl;
206 * Original copy of the master netdev ethtool_ops
208 const struct ethtool_ops *orig_ethtool_ops;
211 struct dsa_switch {
212 struct device *dev;
215 * Parent switch tree, and switch index.
217 struct dsa_switch_tree *dst;
218 unsigned int index;
220 /* Listener for switch fabric events */
221 struct notifier_block nb;
224 * Give the switch driver somewhere to hang its private data
225 * structure.
227 void *priv;
230 * Configuration data for this switch.
232 struct dsa_chip_data *cd;
235 * The switch operations.
237 const struct dsa_switch_ops *ops;
240 * An array of which element [a] indicates which port on this
241 * switch should be used to send packets to that are destined
242 * for switch a. Can be NULL if there is only one switch chip.
244 s8 rtable[DSA_MAX_SWITCHES];
247 * Slave mii_bus and devices for the individual ports.
249 u32 phys_mii_mask;
250 struct mii_bus *slave_mii_bus;
252 /* Ageing Time limits in msecs */
253 unsigned int ageing_time_min;
254 unsigned int ageing_time_max;
256 /* devlink used to represent this switch device */
257 struct devlink *devlink;
259 /* Number of switch port queues */
260 unsigned int num_tx_queues;
262 unsigned long *bitmap;
263 unsigned long _bitmap;
265 /* Dynamically allocated ports, keep last */
266 size_t num_ports;
267 struct dsa_port ports[];
270 static inline const struct dsa_port *dsa_to_port(struct dsa_switch *ds, int p)
272 return &ds->ports[p];
275 static inline bool dsa_is_unused_port(struct dsa_switch *ds, int p)
277 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_UNUSED;
280 static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p)
282 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_CPU;
285 static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p)
287 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_DSA;
290 static inline bool dsa_is_user_port(struct dsa_switch *ds, int p)
292 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_USER;
295 static inline u32 dsa_user_ports(struct dsa_switch *ds)
297 u32 mask = 0;
298 int p;
300 for (p = 0; p < ds->num_ports; p++)
301 if (dsa_is_user_port(ds, p))
302 mask |= BIT(p);
304 return mask;
307 /* Return the local port used to reach an arbitrary switch port */
308 static inline unsigned int dsa_towards_port(struct dsa_switch *ds, int device,
309 int port)
311 if (device == ds->index)
312 return port;
313 else
314 return ds->rtable[device];
317 /* Return the local port used to reach the dedicated CPU port */
318 static inline unsigned int dsa_upstream_port(struct dsa_switch *ds, int port)
320 const struct dsa_port *dp = dsa_to_port(ds, port);
321 const struct dsa_port *cpu_dp = dp->cpu_dp;
323 if (!cpu_dp)
324 return port;
326 return dsa_towards_port(ds, cpu_dp->ds->index, cpu_dp->index);
329 typedef int dsa_fdb_dump_cb_t(const unsigned char *addr, u16 vid,
330 bool is_static, void *data);
331 struct dsa_switch_ops {
332 #if IS_ENABLED(CONFIG_NET_DSA_LEGACY)
334 * Legacy probing.
336 const char *(*probe)(struct device *dsa_dev,
337 struct device *host_dev, int sw_addr,
338 void **priv);
339 #endif
341 enum dsa_tag_protocol (*get_tag_protocol)(struct dsa_switch *ds,
342 int port);
344 int (*setup)(struct dsa_switch *ds);
345 u32 (*get_phy_flags)(struct dsa_switch *ds, int port);
348 * Access to the switch's PHY registers.
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);
355 * Link state adjustment (called from libphy)
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);
363 * PHYLINK integration
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);
384 * ethtool hardware statistics.
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);
395 * ethtool Wake-on-LAN
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);
403 * ethtool timestamp info
405 int (*get_ts_info)(struct dsa_switch *ds, int port,
406 struct ethtool_ts_info *ts);
409 * Suspend and resume
411 int (*suspend)(struct dsa_switch *ds);
412 int (*resume)(struct dsa_switch *ds);
415 * Port enable/disable
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);
423 * Port's MAC EEE settings
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);
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);
438 * Register access.
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);
445 * Bridge integration
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);
457 * VLAN support
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);
468 * Forwarding database
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);
478 * Multicast database
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);
487 * RXNFC
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);
495 * TC integration
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);
504 * Cross-chip operations
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);
512 * PTP functionality
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);
524 struct dsa_switch_driver {
525 struct list_head list;
526 const struct dsa_switch_ops *ops;
529 #if IS_ENABLED(CONFIG_NET_DSA_LEGACY)
530 /* Legacy driver registration */
531 void register_switch_driver(struct dsa_switch_driver *type);
532 void unregister_switch_driver(struct dsa_switch_driver *type);
533 struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev);
535 #else
536 static inline void register_switch_driver(struct dsa_switch_driver *type) { }
537 static inline void unregister_switch_driver(struct dsa_switch_driver *type) { }
538 static inline struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev)
540 return NULL;
542 #endif
543 struct net_device *dsa_dev_to_net_device(struct device *dev);
545 /* Keep inline for faster access in hot path */
546 static inline bool netdev_uses_dsa(struct net_device *dev)
548 #if IS_ENABLED(CONFIG_NET_DSA)
549 return dev->dsa_ptr && dev->dsa_ptr->rcv;
550 #endif
551 return false;
554 struct dsa_switch *dsa_switch_alloc(struct device *dev, size_t n);
555 void dsa_unregister_switch(struct dsa_switch *ds);
556 int dsa_register_switch(struct dsa_switch *ds);
557 #ifdef CONFIG_PM_SLEEP
558 int dsa_switch_suspend(struct dsa_switch *ds);
559 int dsa_switch_resume(struct dsa_switch *ds);
560 #else
561 static inline int dsa_switch_suspend(struct dsa_switch *ds)
563 return 0;
565 static inline int dsa_switch_resume(struct dsa_switch *ds)
567 return 0;
569 #endif /* CONFIG_PM_SLEEP */
571 enum dsa_notifier_type {
572 DSA_PORT_REGISTER,
573 DSA_PORT_UNREGISTER,
576 struct dsa_notifier_info {
577 struct net_device *dev;
580 struct 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;
587 static inline struct net_device *
588 dsa_notifier_info_to_dev(const struct dsa_notifier_info *info)
590 return info->dev;
593 #if IS_ENABLED(CONFIG_NET_DSA)
594 int register_dsa_notifier(struct notifier_block *nb);
595 int unregister_dsa_notifier(struct notifier_block *nb);
596 int call_dsa_notifiers(unsigned long val, struct net_device *dev,
597 struct dsa_notifier_info *info);
598 #else
599 static inline int register_dsa_notifier(struct notifier_block *nb)
601 return 0;
604 static inline int unregister_dsa_notifier(struct notifier_block *nb)
606 return 0;
609 static inline int call_dsa_notifiers(unsigned long val, struct net_device *dev,
610 struct dsa_notifier_info *info)
612 return NOTIFY_DONE;
614 #endif
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)
622 int dsa_port_get_phy_strings(struct dsa_port *dp, uint8_t *data);
623 int dsa_port_get_ethtool_phy_stats(struct dsa_port *dp, uint64_t *data);
624 int dsa_port_get_phy_sset_count(struct dsa_port *dp);
625 void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up);
627 #endif