xref: /openbmc/linux/include/net/dsa.h (revision da7b9e9b)
191da11f8SLennert Buytenhek /*
291da11f8SLennert Buytenhek  * include/net/dsa.h - Driver for Distributed Switch Architecture switch chips
3e84665c9SLennert Buytenhek  * Copyright (c) 2008-2009 Marvell Semiconductor
491da11f8SLennert Buytenhek  *
591da11f8SLennert Buytenhek  * This program is free software; you can redistribute it and/or modify
691da11f8SLennert Buytenhek  * it under the terms of the GNU General Public License as published by
791da11f8SLennert Buytenhek  * the Free Software Foundation; either version 2 of the License, or
891da11f8SLennert Buytenhek  * (at your option) any later version.
991da11f8SLennert Buytenhek  */
1091da11f8SLennert Buytenhek 
1191da11f8SLennert Buytenhek #ifndef __LINUX_NET_DSA_H
1291da11f8SLennert Buytenhek #define __LINUX_NET_DSA_H
1391da11f8SLennert Buytenhek 
144d56a29fSRussell King #include <linux/if.h>
15ea1f51beSAxel Lin #include <linux/if_ether.h>
16c8f0b869SBen Hutchings #include <linux/list.h>
17f515f192SVivien Didelot #include <linux/notifier.h>
18cf50dcc2SBen Hutchings #include <linux/timer.h>
19cf50dcc2SBen Hutchings #include <linux/workqueue.h>
20fa981d9aSFlorian Fainelli #include <linux/of.h>
21a2820543SFlorian Fainelli #include <linux/ethtool.h>
220336369dSBrandon Streiff #include <linux/net_tstamp.h>
2311d8f3ddSFlorian Fainelli #include <linux/phy.h>
2496567d5dSAndrew Lunn #include <net/devlink.h>
25f0c24ccfSVivien Didelot #include <net/switchdev.h>
26cf50dcc2SBen Hutchings 
27f50f2127SFlorian Fainelli struct tc_action;
284d56a29fSRussell King struct phy_device;
294d56a29fSRussell King struct fixed_phy_status;
3011d8f3ddSFlorian Fainelli struct phylink_link_state;
31f50f2127SFlorian Fainelli 
32ac7a04c3SFlorian Fainelli enum dsa_tag_protocol {
33ac7a04c3SFlorian Fainelli 	DSA_TAG_PROTO_NONE = 0,
34ac7a04c3SFlorian Fainelli 	DSA_TAG_PROTO_BRCM,
35b74b70c4SFlorian Fainelli 	DSA_TAG_PROTO_BRCM_PREPEND,
36eb7b7211SAndrew Lunn 	DSA_TAG_PROTO_DSA,
37eb7b7211SAndrew Lunn 	DSA_TAG_PROTO_EDSA,
3879691192SHauke Mehrtens 	DSA_TAG_PROTO_GSWIP,
3939d6b96fSTristram Ha 	DSA_TAG_PROTO_KSZ9477,
40e8fe177aSJuergen Beisert 	DSA_TAG_PROTO_LAN9303,
41eb7b7211SAndrew Lunn 	DSA_TAG_PROTO_MTK,
42eb7b7211SAndrew Lunn 	DSA_TAG_PROTO_QCA,
43eb7b7211SAndrew Lunn 	DSA_TAG_PROTO_TRAILER,
4439a7f2a4SAndrew Lunn 	DSA_TAG_LAST,		/* MUST BE LAST */
45ac7a04c3SFlorian Fainelli };
465037d532SFlorian Fainelli 
47e84665c9SLennert Buytenhek #define DSA_MAX_SWITCHES	4
4891da11f8SLennert Buytenhek #define DSA_MAX_PORTS		12
4991da11f8SLennert Buytenhek 
50d390238cSVivien Didelot #define DSA_RTABLE_NONE		-1
51d390238cSVivien Didelot 
52e84665c9SLennert Buytenhek struct dsa_chip_data {
53e84665c9SLennert Buytenhek 	/*
54e84665c9SLennert Buytenhek 	 * How to access the switch configuration registers.
55e84665c9SLennert Buytenhek 	 */
56b4d2394dSAlexander Duyck 	struct device	*host_dev;
57e84665c9SLennert Buytenhek 	int		sw_addr;
58e84665c9SLennert Buytenhek 
5971e0bbdeSFlorian Fainelli 	/*
6071e0bbdeSFlorian Fainelli 	 * Reference to network devices
6171e0bbdeSFlorian Fainelli 	 */
6271e0bbdeSFlorian Fainelli 	struct device	*netdev[DSA_MAX_PORTS];
6371e0bbdeSFlorian Fainelli 
646793abb4SGuenter Roeck 	/* set to size of eeprom if supported by the switch */
656793abb4SGuenter Roeck 	int		eeprom_len;
666793abb4SGuenter Roeck 
67fa981d9aSFlorian Fainelli 	/* Device tree node pointer for this specific switch chip
68fa981d9aSFlorian Fainelli 	 * used during switch setup in case additional properties
69fa981d9aSFlorian Fainelli 	 * and resources needs to be used
70fa981d9aSFlorian Fainelli 	 */
71fa981d9aSFlorian Fainelli 	struct device_node *of_node;
72fa981d9aSFlorian Fainelli 
73e84665c9SLennert Buytenhek 	/*
74e84665c9SLennert Buytenhek 	 * The names of the switch's ports.  Use "cpu" to
75e84665c9SLennert Buytenhek 	 * designate the switch port that the cpu is connected to,
76e84665c9SLennert Buytenhek 	 * "dsa" to indicate that this port is a DSA link to
77e84665c9SLennert Buytenhek 	 * another switch, NULL to indicate the port is unused,
78e84665c9SLennert Buytenhek 	 * or any other string to indicate this is a physical port.
79e84665c9SLennert Buytenhek 	 */
80e84665c9SLennert Buytenhek 	char		*port_names[DSA_MAX_PORTS];
81bd47497aSFlorian Fainelli 	struct device_node *port_dn[DSA_MAX_PORTS];
82e84665c9SLennert Buytenhek 
83e84665c9SLennert Buytenhek 	/*
844a7704ffSAndrew Lunn 	 * An array of which element [a] indicates which port on this
854a7704ffSAndrew Lunn 	 * switch should be used to send packets to that are destined
864a7704ffSAndrew Lunn 	 * for switch a. Can be NULL if there is only one switch chip.
87e84665c9SLennert Buytenhek 	 */
884a7704ffSAndrew Lunn 	s8		rtable[DSA_MAX_SWITCHES];
89e84665c9SLennert Buytenhek };
90e84665c9SLennert Buytenhek 
9191da11f8SLennert Buytenhek struct dsa_platform_data {
9291da11f8SLennert Buytenhek 	/*
9391da11f8SLennert Buytenhek 	 * Reference to a Linux network interface that connects
94e84665c9SLennert Buytenhek 	 * to the root switch chip of the tree.
9591da11f8SLennert Buytenhek 	 */
9691da11f8SLennert Buytenhek 	struct device	*netdev;
97769a0202SFlorian Fainelli 	struct net_device *of_netdev;
9891da11f8SLennert Buytenhek 
9991da11f8SLennert Buytenhek 	/*
100e84665c9SLennert Buytenhek 	 * Info structs describing each of the switch chips
101e84665c9SLennert Buytenhek 	 * connected via this network interface.
10291da11f8SLennert Buytenhek 	 */
103e84665c9SLennert Buytenhek 	int		nr_chips;
104e84665c9SLennert Buytenhek 	struct dsa_chip_data	*chip;
10591da11f8SLennert Buytenhek };
10691da11f8SLennert Buytenhek 
1075075314eSAlexander Duyck struct packet_type;
10890af1059SBrandon Streiff struct dsa_switch;
1093e8a72d1SFlorian Fainelli 
11068277a2cSJohn Crispin struct dsa_device_ops {
11168277a2cSJohn Crispin 	struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev);
11268277a2cSJohn Crispin 	struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
11389e49506SFlorian Westphal 			       struct packet_type *pt);
114598a9680SJohn Crispin 	int (*flow_dissect)(const struct sk_buff *skb, __be16 *proto,
115598a9680SJohn Crispin 			    int *offset);
116a5dd3087SAndrew Lunn 	unsigned int overhead;
11768277a2cSJohn Crispin };
11868277a2cSJohn Crispin 
119cf50dcc2SBen Hutchings struct dsa_switch_tree {
12083c0afaeSAndrew Lunn 	struct list_head	list;
12183c0afaeSAndrew Lunn 
122f515f192SVivien Didelot 	/* Notifier chain for switch-wide events */
123f515f192SVivien Didelot 	struct raw_notifier_head	nh;
124f515f192SVivien Didelot 
12583c0afaeSAndrew Lunn 	/* Tree identifier */
12649463b7fSVivien Didelot 	unsigned int index;
12783c0afaeSAndrew Lunn 
12883c0afaeSAndrew Lunn 	/* Number of switches attached to this tree */
12983c0afaeSAndrew Lunn 	struct kref refcount;
13083c0afaeSAndrew Lunn 
13183c0afaeSAndrew Lunn 	/* Has this tree been applied to the hardware? */
132ec15dd42SVivien Didelot 	bool setup;
13383c0afaeSAndrew Lunn 
134cf50dcc2SBen Hutchings 	/*
135cf50dcc2SBen Hutchings 	 * Configuration data for the platform device that owns
136cf50dcc2SBen Hutchings 	 * this dsa switch tree instance.
137cf50dcc2SBen Hutchings 	 */
138cf50dcc2SBen Hutchings 	struct dsa_platform_data	*pd;
139cf85d08fSLennert Buytenhek 
140cf50dcc2SBen Hutchings 	/*
1418b0d3ea5SVivien Didelot 	 * The switch port to which the CPU is attached.
142cf50dcc2SBen Hutchings 	 */
1438b0d3ea5SVivien Didelot 	struct dsa_port		*cpu_dp;
144cf50dcc2SBen Hutchings 
145cf50dcc2SBen Hutchings 	/*
146cf50dcc2SBen Hutchings 	 * Data for the individual switch chips.
147cf50dcc2SBen Hutchings 	 */
148cf50dcc2SBen Hutchings 	struct dsa_switch	*ds[DSA_MAX_SWITCHES];
149cf50dcc2SBen Hutchings };
150cf50dcc2SBen Hutchings 
151f50f2127SFlorian Fainelli /* TC matchall action types, only mirroring for now */
152f50f2127SFlorian Fainelli enum dsa_port_mall_action_type {
153f50f2127SFlorian Fainelli 	DSA_PORT_MALL_MIRROR,
154f50f2127SFlorian Fainelli };
155f50f2127SFlorian Fainelli 
156f50f2127SFlorian Fainelli /* TC mirroring entry */
157f50f2127SFlorian Fainelli struct dsa_mall_mirror_tc_entry {
158f50f2127SFlorian Fainelli 	u8 to_local_port;
159f50f2127SFlorian Fainelli 	bool ingress;
160f50f2127SFlorian Fainelli };
161f50f2127SFlorian Fainelli 
162f50f2127SFlorian Fainelli /* TC matchall entry */
163f50f2127SFlorian Fainelli struct dsa_mall_tc_entry {
164f50f2127SFlorian Fainelli 	struct list_head list;
165f50f2127SFlorian Fainelli 	unsigned long cookie;
166f50f2127SFlorian Fainelli 	enum dsa_port_mall_action_type type;
167f50f2127SFlorian Fainelli 	union {
168f50f2127SFlorian Fainelli 		struct dsa_mall_mirror_tc_entry mirror;
169f50f2127SFlorian Fainelli 	};
170f50f2127SFlorian Fainelli };
171f50f2127SFlorian Fainelli 
172f50f2127SFlorian Fainelli 
173c8b09808SAndrew Lunn struct dsa_port {
174f8b8b1cdSVivien Didelot 	/* A CPU port is physically connected to a master device.
175f8b8b1cdSVivien Didelot 	 * A user port exposed to userspace has a slave device.
176f8b8b1cdSVivien Didelot 	 */
177f8b8b1cdSVivien Didelot 	union {
178f8b8b1cdSVivien Didelot 		struct net_device *master;
179f8b8b1cdSVivien Didelot 		struct net_device *slave;
180f8b8b1cdSVivien Didelot 	};
181f8b8b1cdSVivien Didelot 
18215240248SVivien Didelot 	/* CPU port tagging operations used by master or slave devices */
18315240248SVivien Didelot 	const struct dsa_device_ops *tag_ops;
18415240248SVivien Didelot 
1853e41f93bSVivien Didelot 	/* Copies for faster access in master receive hot path */
1863e41f93bSVivien Didelot 	struct dsa_switch_tree *dst;
1873e41f93bSVivien Didelot 	struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
1883e41f93bSVivien Didelot 			       struct packet_type *pt);
1893e41f93bSVivien Didelot 
190057cad2cSVivien Didelot 	enum {
191057cad2cSVivien Didelot 		DSA_PORT_TYPE_UNUSED = 0,
192057cad2cSVivien Didelot 		DSA_PORT_TYPE_CPU,
193057cad2cSVivien Didelot 		DSA_PORT_TYPE_DSA,
194057cad2cSVivien Didelot 		DSA_PORT_TYPE_USER,
195057cad2cSVivien Didelot 	} type;
196057cad2cSVivien Didelot 
197818be848SVivien Didelot 	struct dsa_switch	*ds;
198818be848SVivien Didelot 	unsigned int		index;
19971e0bbdeSFlorian Fainelli 	const char		*name;
20024a9332aSVivien Didelot 	const struct dsa_port	*cpu_dp;
201189b0d93SAndrew Lunn 	struct device_node	*dn;
20234a79f63SVivien Didelot 	unsigned int		ageing_time;
203732f794cSVivien Didelot 	u8			stp_state;
204a5e9a02eSVivien Didelot 	struct net_device	*bridge_dev;
20596567d5dSAndrew Lunn 	struct devlink_port	devlink_port;
206aab9c406SFlorian Fainelli 	struct phylink		*pl;
20767dbb9d4SFlorian Fainelli 	/*
20867dbb9d4SFlorian Fainelli 	 * Original copy of the master netdev ethtool_ops
20967dbb9d4SFlorian Fainelli 	 */
21067dbb9d4SFlorian Fainelli 	const struct ethtool_ops *orig_ethtool_ops;
211da7b9e9bSFlorian Fainelli 
212da7b9e9bSFlorian Fainelli 	/*
213da7b9e9bSFlorian Fainelli 	 * Original copy of the master netdev net_device_ops
214da7b9e9bSFlorian Fainelli 	 */
215da7b9e9bSFlorian Fainelli 	const struct net_device_ops *orig_ndo_ops;
216c8b09808SAndrew Lunn };
217c8b09808SAndrew Lunn 
218c8f0b869SBen Hutchings struct dsa_switch {
219c33063d6SAndrew Lunn 	struct device *dev;
220c33063d6SAndrew Lunn 
221c8f0b869SBen Hutchings 	/*
222c8f0b869SBen Hutchings 	 * Parent switch tree, and switch index.
223c8f0b869SBen Hutchings 	 */
224c8f0b869SBen Hutchings 	struct dsa_switch_tree	*dst;
22599feaafcSVivien Didelot 	unsigned int		index;
226c8f0b869SBen Hutchings 
227f515f192SVivien Didelot 	/* Listener for switch fabric events */
228f515f192SVivien Didelot 	struct notifier_block	nb;
229f515f192SVivien Didelot 
230c8f0b869SBen Hutchings 	/*
2317543a6d5SAndrew Lunn 	 * Give the switch driver somewhere to hang its private data
2327543a6d5SAndrew Lunn 	 * structure.
2337543a6d5SAndrew Lunn 	 */
2347543a6d5SAndrew Lunn 	void *priv;
2357543a6d5SAndrew Lunn 
2367543a6d5SAndrew Lunn 	/*
237c8f0b869SBen Hutchings 	 * Configuration data for this switch.
238c8f0b869SBen Hutchings 	 */
239ff04955cSAndrew Lunn 	struct dsa_chip_data	*cd;
240c8f0b869SBen Hutchings 
241c8f0b869SBen Hutchings 	/*
2429d490b4eSVivien Didelot 	 * The switch operations.
243c8f0b869SBen Hutchings 	 */
244a82f67afSFlorian Fainelli 	const struct dsa_switch_ops	*ops;
245c8f0b869SBen Hutchings 
24666472fc0SAndrew Lunn 	/*
24766472fc0SAndrew Lunn 	 * An array of which element [a] indicates which port on this
24866472fc0SAndrew Lunn 	 * switch should be used to send packets to that are destined
24966472fc0SAndrew Lunn 	 * for switch a. Can be NULL if there is only one switch chip.
25066472fc0SAndrew Lunn 	 */
25166472fc0SAndrew Lunn 	s8		rtable[DSA_MAX_SWITCHES];
25266472fc0SAndrew Lunn 
253c8f0b869SBen Hutchings 	/*
254c8f0b869SBen Hutchings 	 * Slave mii_bus and devices for the individual ports.
255c8f0b869SBen Hutchings 	 */
2560d8bcdd3SFlorian Fainelli 	u32			phys_mii_mask;
257c8f0b869SBen Hutchings 	struct mii_bus		*slave_mii_bus;
258a0c02161SVivien Didelot 
2590f3da6afSVivien Didelot 	/* Ageing Time limits in msecs */
2600f3da6afSVivien Didelot 	unsigned int ageing_time_min;
2610f3da6afSVivien Didelot 	unsigned int ageing_time_max;
2620f3da6afSVivien Didelot 
26396567d5dSAndrew Lunn 	/* devlink used to represent this switch device */
26496567d5dSAndrew Lunn 	struct devlink		*devlink;
26596567d5dSAndrew Lunn 
26655199df6SFlorian Fainelli 	/* Number of switch port queues */
26755199df6SFlorian Fainelli 	unsigned int		num_tx_queues;
26855199df6SFlorian Fainelli 
2690015b80aSSalvatore Mesoraca 	unsigned long		*bitmap;
2700015b80aSSalvatore Mesoraca 	unsigned long		_bitmap;
2710015b80aSSalvatore Mesoraca 
272a0c02161SVivien Didelot 	/* Dynamically allocated ports, keep last */
273a0c02161SVivien Didelot 	size_t num_ports;
274a0c02161SVivien Didelot 	struct dsa_port ports[];
275c8f0b869SBen Hutchings };
276c8f0b869SBen Hutchings 
277c38c5a66SVivien Didelot static inline const struct dsa_port *dsa_to_port(struct dsa_switch *ds, int p)
278c38c5a66SVivien Didelot {
279c38c5a66SVivien Didelot 	return &ds->ports[p];
280c38c5a66SVivien Didelot }
281c38c5a66SVivien Didelot 
282bff7b688SVivien Didelot static inline bool dsa_is_unused_port(struct dsa_switch *ds, int p)
283bff7b688SVivien Didelot {
284c38c5a66SVivien Didelot 	return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_UNUSED;
285bff7b688SVivien Didelot }
286bff7b688SVivien Didelot 
287c8f0b869SBen Hutchings static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p)
288c8f0b869SBen Hutchings {
289c38c5a66SVivien Didelot 	return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_CPU;
290c8f0b869SBen Hutchings }
291c8f0b869SBen Hutchings 
29260045cbfSAndrew Lunn static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p)
29360045cbfSAndrew Lunn {
294c38c5a66SVivien Didelot 	return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_DSA;
29560045cbfSAndrew Lunn }
29660045cbfSAndrew Lunn 
2972b3e9891SVivien Didelot static inline bool dsa_is_user_port(struct dsa_switch *ds, int p)
2986cd456f3SVivien Didelot {
299c38c5a66SVivien Didelot 	return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_USER;
3006cd456f3SVivien Didelot }
3016cd456f3SVivien Didelot 
30202bc6e54SVivien Didelot static inline u32 dsa_user_ports(struct dsa_switch *ds)
30302bc6e54SVivien Didelot {
304c38c5a66SVivien Didelot 	u32 mask = 0;
305c38c5a66SVivien Didelot 	int p;
30602bc6e54SVivien Didelot 
307c38c5a66SVivien Didelot 	for (p = 0; p < ds->num_ports; p++)
308c38c5a66SVivien Didelot 		if (dsa_is_user_port(ds, p))
309c38c5a66SVivien Didelot 			mask |= BIT(p);
310c38c5a66SVivien Didelot 
311c38c5a66SVivien Didelot 	return mask;
312c8652c83SVivien Didelot }
313c8652c83SVivien Didelot 
3143b8fac5dSVivien Didelot /* Return the local port used to reach an arbitrary switch port */
3153b8fac5dSVivien Didelot static inline unsigned int dsa_towards_port(struct dsa_switch *ds, int device,
3163b8fac5dSVivien Didelot 					    int port)
3173b8fac5dSVivien Didelot {
3183b8fac5dSVivien Didelot 	if (device == ds->index)
3193b8fac5dSVivien Didelot 		return port;
3203b8fac5dSVivien Didelot 	else
3213b8fac5dSVivien Didelot 		return ds->rtable[device];
3223b8fac5dSVivien Didelot }
3233b8fac5dSVivien Didelot 
3243b8fac5dSVivien Didelot /* Return the local port used to reach the dedicated CPU port */
32507073c79SVivien Didelot static inline unsigned int dsa_upstream_port(struct dsa_switch *ds, int port)
326c8f0b869SBen Hutchings {
32707073c79SVivien Didelot 	const struct dsa_port *dp = dsa_to_port(ds, port);
32807073c79SVivien Didelot 	const struct dsa_port *cpu_dp = dp->cpu_dp;
32907073c79SVivien Didelot 
33007073c79SVivien Didelot 	if (!cpu_dp)
33107073c79SVivien Didelot 		return port;
332c8f0b869SBen Hutchings 
3333b8fac5dSVivien Didelot 	return dsa_towards_port(ds, cpu_dp->ds->index, cpu_dp->index);
334c8f0b869SBen Hutchings }
335c8f0b869SBen Hutchings 
3362bedde1aSArkadi Sharshevsky typedef int dsa_fdb_dump_cb_t(const unsigned char *addr, u16 vid,
3372bedde1aSArkadi Sharshevsky 			      bool is_static, void *data);
3389d490b4eSVivien Didelot struct dsa_switch_ops {
3392a93c1a3SFlorian Fainelli #if IS_ENABLED(CONFIG_NET_DSA_LEGACY)
340c8f0b869SBen Hutchings 	/*
341a6a71f19SVivien Didelot 	 * Legacy probing.
342c8f0b869SBen Hutchings 	 */
3430209d144SVivien Didelot 	const char	*(*probe)(struct device *dsa_dev,
3440209d144SVivien Didelot 				  struct device *host_dev, int sw_addr,
3450209d144SVivien Didelot 				  void **priv);
3462a93c1a3SFlorian Fainelli #endif
3477b314362SAndrew Lunn 
3485ed4e3ebSFlorian Fainelli 	enum dsa_tag_protocol (*get_tag_protocol)(struct dsa_switch *ds,
3495ed4e3ebSFlorian Fainelli 						  int port);
3507b314362SAndrew Lunn 
351c8f0b869SBen Hutchings 	int	(*setup)(struct dsa_switch *ds);
3526819563eSFlorian Fainelli 	u32	(*get_phy_flags)(struct dsa_switch *ds, int port);
353c8f0b869SBen Hutchings 
354c8f0b869SBen Hutchings 	/*
355c8f0b869SBen Hutchings 	 * Access to the switch's PHY registers.
356c8f0b869SBen Hutchings 	 */
357c8f0b869SBen Hutchings 	int	(*phy_read)(struct dsa_switch *ds, int port, int regnum);
358c8f0b869SBen Hutchings 	int	(*phy_write)(struct dsa_switch *ds, int port,
359c8f0b869SBen Hutchings 			     int regnum, u16 val);
360c8f0b869SBen Hutchings 
361c8f0b869SBen Hutchings 	/*
362ec9436baSFlorian Fainelli 	 * Link state adjustment (called from libphy)
363ec9436baSFlorian Fainelli 	 */
364ec9436baSFlorian Fainelli 	void	(*adjust_link)(struct dsa_switch *ds, int port,
365ec9436baSFlorian Fainelli 				struct phy_device *phydev);
366ce31b31cSFlorian Fainelli 	void	(*fixed_link_update)(struct dsa_switch *ds, int port,
367ce31b31cSFlorian Fainelli 				struct fixed_phy_status *st);
368ec9436baSFlorian Fainelli 
369ec9436baSFlorian Fainelli 	/*
37011d8f3ddSFlorian Fainelli 	 * PHYLINK integration
37111d8f3ddSFlorian Fainelli 	 */
37211d8f3ddSFlorian Fainelli 	void	(*phylink_validate)(struct dsa_switch *ds, int port,
37311d8f3ddSFlorian Fainelli 				    unsigned long *supported,
37411d8f3ddSFlorian Fainelli 				    struct phylink_link_state *state);
37511d8f3ddSFlorian Fainelli 	int	(*phylink_mac_link_state)(struct dsa_switch *ds, int port,
37611d8f3ddSFlorian Fainelli 					  struct phylink_link_state *state);
37711d8f3ddSFlorian Fainelli 	void	(*phylink_mac_config)(struct dsa_switch *ds, int port,
37811d8f3ddSFlorian Fainelli 				      unsigned int mode,
37911d8f3ddSFlorian Fainelli 				      const struct phylink_link_state *state);
38011d8f3ddSFlorian Fainelli 	void	(*phylink_mac_an_restart)(struct dsa_switch *ds, int port);
38111d8f3ddSFlorian Fainelli 	void	(*phylink_mac_link_down)(struct dsa_switch *ds, int port,
38211d8f3ddSFlorian Fainelli 					 unsigned int mode,
38311d8f3ddSFlorian Fainelli 					 phy_interface_t interface);
38411d8f3ddSFlorian Fainelli 	void	(*phylink_mac_link_up)(struct dsa_switch *ds, int port,
38511d8f3ddSFlorian Fainelli 				       unsigned int mode,
38611d8f3ddSFlorian Fainelli 				       phy_interface_t interface,
38711d8f3ddSFlorian Fainelli 				       struct phy_device *phydev);
38811d8f3ddSFlorian Fainelli 	void	(*phylink_fixed_state)(struct dsa_switch *ds, int port,
38911d8f3ddSFlorian Fainelli 				       struct phylink_link_state *state);
39011d8f3ddSFlorian Fainelli 	/*
391c8f0b869SBen Hutchings 	 * ethtool hardware statistics.
392c8f0b869SBen Hutchings 	 */
39389f09048SFlorian Fainelli 	void	(*get_strings)(struct dsa_switch *ds, int port,
39489f09048SFlorian Fainelli 			       u32 stringset, uint8_t *data);
395c8f0b869SBen Hutchings 	void	(*get_ethtool_stats)(struct dsa_switch *ds,
396c8f0b869SBen Hutchings 				     int port, uint64_t *data);
39789f09048SFlorian Fainelli 	int	(*get_sset_count)(struct dsa_switch *ds, int port, int sset);
398cf963573SFlorian Fainelli 	void	(*get_ethtool_phy_stats)(struct dsa_switch *ds,
399cf963573SFlorian Fainelli 					 int port, uint64_t *data);
40024462549SFlorian Fainelli 
40124462549SFlorian Fainelli 	/*
40219e57c4eSFlorian Fainelli 	 * ethtool Wake-on-LAN
40319e57c4eSFlorian Fainelli 	 */
40419e57c4eSFlorian Fainelli 	void	(*get_wol)(struct dsa_switch *ds, int port,
40519e57c4eSFlorian Fainelli 			   struct ethtool_wolinfo *w);
40619e57c4eSFlorian Fainelli 	int	(*set_wol)(struct dsa_switch *ds, int port,
40719e57c4eSFlorian Fainelli 			   struct ethtool_wolinfo *w);
40819e57c4eSFlorian Fainelli 
40919e57c4eSFlorian Fainelli 	/*
4100336369dSBrandon Streiff 	 * ethtool timestamp info
4110336369dSBrandon Streiff 	 */
4120336369dSBrandon Streiff 	int	(*get_ts_info)(struct dsa_switch *ds, int port,
4130336369dSBrandon Streiff 			       struct ethtool_ts_info *ts);
4140336369dSBrandon Streiff 
4150336369dSBrandon Streiff 	/*
41624462549SFlorian Fainelli 	 * Suspend and resume
41724462549SFlorian Fainelli 	 */
41824462549SFlorian Fainelli 	int	(*suspend)(struct dsa_switch *ds);
41924462549SFlorian Fainelli 	int	(*resume)(struct dsa_switch *ds);
420b2f2af21SFlorian Fainelli 
421b2f2af21SFlorian Fainelli 	/*
422b2f2af21SFlorian Fainelli 	 * Port enable/disable
423b2f2af21SFlorian Fainelli 	 */
424b2f2af21SFlorian Fainelli 	int	(*port_enable)(struct dsa_switch *ds, int port,
425b2f2af21SFlorian Fainelli 			       struct phy_device *phy);
426b2f2af21SFlorian Fainelli 	void	(*port_disable)(struct dsa_switch *ds, int port,
427b2f2af21SFlorian Fainelli 				struct phy_device *phy);
4287905288fSFlorian Fainelli 
4297905288fSFlorian Fainelli 	/*
43008f50061SVivien Didelot 	 * Port's MAC EEE settings
4317905288fSFlorian Fainelli 	 */
43208f50061SVivien Didelot 	int	(*set_mac_eee)(struct dsa_switch *ds, int port,
4337905288fSFlorian Fainelli 			       struct ethtool_eee *e);
43408f50061SVivien Didelot 	int	(*get_mac_eee)(struct dsa_switch *ds, int port,
4357905288fSFlorian Fainelli 			       struct ethtool_eee *e);
43651579c3fSGuenter Roeck 
4376793abb4SGuenter Roeck 	/* EEPROM access */
4386793abb4SGuenter Roeck 	int	(*get_eeprom_len)(struct dsa_switch *ds);
4396793abb4SGuenter Roeck 	int	(*get_eeprom)(struct dsa_switch *ds,
4406793abb4SGuenter Roeck 			      struct ethtool_eeprom *eeprom, u8 *data);
4416793abb4SGuenter Roeck 	int	(*set_eeprom)(struct dsa_switch *ds,
4426793abb4SGuenter Roeck 			      struct ethtool_eeprom *eeprom, u8 *data);
4433d762a0fSGuenter Roeck 
4443d762a0fSGuenter Roeck 	/*
4453d762a0fSGuenter Roeck 	 * Register access.
4463d762a0fSGuenter Roeck 	 */
4473d762a0fSGuenter Roeck 	int	(*get_regs_len)(struct dsa_switch *ds, int port);
4483d762a0fSGuenter Roeck 	void	(*get_regs)(struct dsa_switch *ds, int port,
4493d762a0fSGuenter Roeck 			    struct ethtool_regs *regs, void *p);
450b73adef6SFlorian Fainelli 
451b73adef6SFlorian Fainelli 	/*
452b73adef6SFlorian Fainelli 	 * Bridge integration
453b73adef6SFlorian Fainelli 	 */
45434a79f63SVivien Didelot 	int	(*set_ageing_time)(struct dsa_switch *ds, unsigned int msecs);
45571327a4eSVivien Didelot 	int	(*port_bridge_join)(struct dsa_switch *ds, int port,
456a6692754SVivien Didelot 				    struct net_device *bridge);
457f123f2fbSVivien Didelot 	void	(*port_bridge_leave)(struct dsa_switch *ds, int port,
458f123f2fbSVivien Didelot 				     struct net_device *bridge);
45943c44a9fSVivien Didelot 	void	(*port_stp_state_set)(struct dsa_switch *ds, int port,
460b73adef6SFlorian Fainelli 				      u8 state);
461732f794cSVivien Didelot 	void	(*port_fast_age)(struct dsa_switch *ds, int port);
4622a778e1bSVivien Didelot 
4632a778e1bSVivien Didelot 	/*
46411149536SVivien Didelot 	 * VLAN support
46511149536SVivien Didelot 	 */
466fb2dabadSVivien Didelot 	int	(*port_vlan_filtering)(struct dsa_switch *ds, int port,
467fb2dabadSVivien Didelot 				       bool vlan_filtering);
46876e398a6SVivien Didelot 	int (*port_vlan_prepare)(struct dsa_switch *ds, int port,
46980e02360SVivien Didelot 				 const struct switchdev_obj_port_vlan *vlan);
4704d5770b3SVivien Didelot 	void (*port_vlan_add)(struct dsa_switch *ds, int port,
47180e02360SVivien Didelot 			      const struct switchdev_obj_port_vlan *vlan);
47276e398a6SVivien Didelot 	int	(*port_vlan_del)(struct dsa_switch *ds, int port,
47376e398a6SVivien Didelot 				 const struct switchdev_obj_port_vlan *vlan);
47411149536SVivien Didelot 	/*
4752a778e1bSVivien Didelot 	 * Forwarding database
4762a778e1bSVivien Didelot 	 */
4771b6dd556SArkadi Sharshevsky 	int	(*port_fdb_add)(struct dsa_switch *ds, int port,
4786c2c1dcbSArkadi Sharshevsky 				const unsigned char *addr, u16 vid);
4792a778e1bSVivien Didelot 	int	(*port_fdb_del)(struct dsa_switch *ds, int port,
4806c2c1dcbSArkadi Sharshevsky 				const unsigned char *addr, u16 vid);
481ea70ba98SVivien Didelot 	int	(*port_fdb_dump)(struct dsa_switch *ds, int port,
4822bedde1aSArkadi Sharshevsky 				 dsa_fdb_dump_cb_t *cb, void *data);
4838df30255SVivien Didelot 
4848df30255SVivien Didelot 	/*
4858df30255SVivien Didelot 	 * Multicast database
4868df30255SVivien Didelot 	 */
4878df30255SVivien Didelot 	int (*port_mdb_prepare)(struct dsa_switch *ds, int port,
4883709aadcSVivien Didelot 				const struct switchdev_obj_port_mdb *mdb);
4898df30255SVivien Didelot 	void (*port_mdb_add)(struct dsa_switch *ds, int port,
4903709aadcSVivien Didelot 			     const struct switchdev_obj_port_mdb *mdb);
4918df30255SVivien Didelot 	int	(*port_mdb_del)(struct dsa_switch *ds, int port,
4928df30255SVivien Didelot 				const struct switchdev_obj_port_mdb *mdb);
493bf9f2648SFlorian Fainelli 	/*
494bf9f2648SFlorian Fainelli 	 * RXNFC
495bf9f2648SFlorian Fainelli 	 */
496bf9f2648SFlorian Fainelli 	int	(*get_rxnfc)(struct dsa_switch *ds, int port,
497bf9f2648SFlorian Fainelli 			     struct ethtool_rxnfc *nfc, u32 *rule_locs);
498bf9f2648SFlorian Fainelli 	int	(*set_rxnfc)(struct dsa_switch *ds, int port,
499bf9f2648SFlorian Fainelli 			     struct ethtool_rxnfc *nfc);
500f50f2127SFlorian Fainelli 
501f50f2127SFlorian Fainelli 	/*
502f50f2127SFlorian Fainelli 	 * TC integration
503f50f2127SFlorian Fainelli 	 */
504f50f2127SFlorian Fainelli 	int	(*port_mirror_add)(struct dsa_switch *ds, int port,
505f50f2127SFlorian Fainelli 				   struct dsa_mall_mirror_tc_entry *mirror,
506f50f2127SFlorian Fainelli 				   bool ingress);
507f50f2127SFlorian Fainelli 	void	(*port_mirror_del)(struct dsa_switch *ds, int port,
508f50f2127SFlorian Fainelli 				   struct dsa_mall_mirror_tc_entry *mirror);
50940ef2c93SVivien Didelot 
51040ef2c93SVivien Didelot 	/*
51140ef2c93SVivien Didelot 	 * Cross-chip operations
51240ef2c93SVivien Didelot 	 */
51340ef2c93SVivien Didelot 	int	(*crosschip_bridge_join)(struct dsa_switch *ds, int sw_index,
51440ef2c93SVivien Didelot 					 int port, struct net_device *br);
51540ef2c93SVivien Didelot 	void	(*crosschip_bridge_leave)(struct dsa_switch *ds, int sw_index,
51640ef2c93SVivien Didelot 					  int port, struct net_device *br);
5170336369dSBrandon Streiff 
5180336369dSBrandon Streiff 	/*
5190336369dSBrandon Streiff 	 * PTP functionality
5200336369dSBrandon Streiff 	 */
5210336369dSBrandon Streiff 	int	(*port_hwtstamp_get)(struct dsa_switch *ds, int port,
5220336369dSBrandon Streiff 				     struct ifreq *ifr);
5230336369dSBrandon Streiff 	int	(*port_hwtstamp_set)(struct dsa_switch *ds, int port,
5240336369dSBrandon Streiff 				     struct ifreq *ifr);
52590af1059SBrandon Streiff 	bool	(*port_txtstamp)(struct dsa_switch *ds, int port,
52690af1059SBrandon Streiff 				 struct sk_buff *clone, unsigned int type);
52790af1059SBrandon Streiff 	bool	(*port_rxtstamp)(struct dsa_switch *ds, int port,
52890af1059SBrandon Streiff 				 struct sk_buff *skb, unsigned int type);
529c8f0b869SBen Hutchings };
530c8f0b869SBen Hutchings 
531ab3d408dSFlorian Fainelli struct dsa_switch_driver {
532ab3d408dSFlorian Fainelli 	struct list_head	list;
533a82f67afSFlorian Fainelli 	const struct dsa_switch_ops *ops;
534ab3d408dSFlorian Fainelli };
535ab3d408dSFlorian Fainelli 
5362a93c1a3SFlorian Fainelli #if IS_ENABLED(CONFIG_NET_DSA_LEGACY)
537a6a71f19SVivien Didelot /* Legacy driver registration */
538ab3d408dSFlorian Fainelli void register_switch_driver(struct dsa_switch_driver *type);
539ab3d408dSFlorian Fainelli void unregister_switch_driver(struct dsa_switch_driver *type);
540b4d2394dSAlexander Duyck struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev);
541a6a71f19SVivien Didelot 
5422a93c1a3SFlorian Fainelli #else
5432a93c1a3SFlorian Fainelli static inline void register_switch_driver(struct dsa_switch_driver *type) { }
5442a93c1a3SFlorian Fainelli static inline void unregister_switch_driver(struct dsa_switch_driver *type) { }
5452a93c1a3SFlorian Fainelli static inline struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev)
5462a93c1a3SFlorian Fainelli {
5472a93c1a3SFlorian Fainelli 	return NULL;
5482a93c1a3SFlorian Fainelli }
5492a93c1a3SFlorian Fainelli #endif
55014b89f36SFlorian Fainelli struct net_device *dsa_dev_to_net_device(struct device *dev);
551c8f0b869SBen Hutchings 
55273a7ece8SVivien Didelot /* Keep inline for faster access in hot path */
553c6e970a0SAndrew Lunn static inline bool netdev_uses_dsa(struct net_device *dev)
554c6e970a0SAndrew Lunn {
555c6e970a0SAndrew Lunn #if IS_ENABLED(CONFIG_NET_DSA)
556717ffbfbSVivien Didelot 	return dev->dsa_ptr && dev->dsa_ptr->rcv;
557c6e970a0SAndrew Lunn #endif
558c6e970a0SAndrew Lunn 	return false;
559c6e970a0SAndrew Lunn }
560c6e970a0SAndrew Lunn 
561a0c02161SVivien Didelot struct dsa_switch *dsa_switch_alloc(struct device *dev, size_t n);
56283c0afaeSAndrew Lunn void dsa_unregister_switch(struct dsa_switch *ds);
56323c9ee49SVivien Didelot int dsa_register_switch(struct dsa_switch *ds);
564ea825e70SFlorian Fainelli #ifdef CONFIG_PM_SLEEP
565ea825e70SFlorian Fainelli int dsa_switch_suspend(struct dsa_switch *ds);
566ea825e70SFlorian Fainelli int dsa_switch_resume(struct dsa_switch *ds);
567ea825e70SFlorian Fainelli #else
568ea825e70SFlorian Fainelli static inline int dsa_switch_suspend(struct dsa_switch *ds)
569ea825e70SFlorian Fainelli {
570ea825e70SFlorian Fainelli 	return 0;
571ea825e70SFlorian Fainelli }
572ea825e70SFlorian Fainelli static inline int dsa_switch_resume(struct dsa_switch *ds)
573ea825e70SFlorian Fainelli {
574ea825e70SFlorian Fainelli 	return 0;
575ea825e70SFlorian Fainelli }
576ea825e70SFlorian Fainelli #endif /* CONFIG_PM_SLEEP */
577ea825e70SFlorian Fainelli 
57860724d4bSFlorian Fainelli enum dsa_notifier_type {
57960724d4bSFlorian Fainelli 	DSA_PORT_REGISTER,
58060724d4bSFlorian Fainelli 	DSA_PORT_UNREGISTER,
58160724d4bSFlorian Fainelli };
58260724d4bSFlorian Fainelli 
58360724d4bSFlorian Fainelli struct dsa_notifier_info {
58460724d4bSFlorian Fainelli 	struct net_device *dev;
58560724d4bSFlorian Fainelli };
58660724d4bSFlorian Fainelli 
58760724d4bSFlorian Fainelli struct dsa_notifier_register_info {
58860724d4bSFlorian Fainelli 	struct dsa_notifier_info info;	/* must be first */
58960724d4bSFlorian Fainelli 	struct net_device *master;
59060724d4bSFlorian Fainelli 	unsigned int port_number;
59160724d4bSFlorian Fainelli 	unsigned int switch_number;
59260724d4bSFlorian Fainelli };
59360724d4bSFlorian Fainelli 
59460724d4bSFlorian Fainelli static inline struct net_device *
59560724d4bSFlorian Fainelli dsa_notifier_info_to_dev(const struct dsa_notifier_info *info)
59660724d4bSFlorian Fainelli {
59760724d4bSFlorian Fainelli 	return info->dev;
59860724d4bSFlorian Fainelli }
59960724d4bSFlorian Fainelli 
60060724d4bSFlorian Fainelli #if IS_ENABLED(CONFIG_NET_DSA)
60160724d4bSFlorian Fainelli int register_dsa_notifier(struct notifier_block *nb);
60260724d4bSFlorian Fainelli int unregister_dsa_notifier(struct notifier_block *nb);
60360724d4bSFlorian Fainelli int call_dsa_notifiers(unsigned long val, struct net_device *dev,
60460724d4bSFlorian Fainelli 		       struct dsa_notifier_info *info);
60560724d4bSFlorian Fainelli #else
60660724d4bSFlorian Fainelli static inline int register_dsa_notifier(struct notifier_block *nb)
60760724d4bSFlorian Fainelli {
60860724d4bSFlorian Fainelli 	return 0;
60960724d4bSFlorian Fainelli }
61060724d4bSFlorian Fainelli 
61160724d4bSFlorian Fainelli static inline int unregister_dsa_notifier(struct notifier_block *nb)
61260724d4bSFlorian Fainelli {
61360724d4bSFlorian Fainelli 	return 0;
61460724d4bSFlorian Fainelli }
61560724d4bSFlorian Fainelli 
61660724d4bSFlorian Fainelli static inline int call_dsa_notifiers(unsigned long val, struct net_device *dev,
61760724d4bSFlorian Fainelli 				     struct dsa_notifier_info *info)
61860724d4bSFlorian Fainelli {
61960724d4bSFlorian Fainelli 	return NOTIFY_DONE;
62060724d4bSFlorian Fainelli }
62160724d4bSFlorian Fainelli #endif
62260724d4bSFlorian Fainelli 
6230a5f14ceSFlorian Fainelli /* Broadcom tag specific helpers to insert and extract queue/port number */
6240a5f14ceSFlorian Fainelli #define BRCM_TAG_SET_PORT_QUEUE(p, q)	((p) << 8 | q)
6250a5f14ceSFlorian Fainelli #define BRCM_TAG_GET_PORT(v)		((v) >> 8)
6260a5f14ceSFlorian Fainelli #define BRCM_TAG_GET_QUEUE(v)		((v) & 0xff)
6270a5f14ceSFlorian Fainelli 
628cf963573SFlorian Fainelli 
629cf963573SFlorian Fainelli int dsa_port_get_phy_strings(struct dsa_port *dp, uint8_t *data);
630cf963573SFlorian Fainelli int dsa_port_get_ethtool_phy_stats(struct dsa_port *dp, uint64_t *data);
631cf963573SFlorian Fainelli int dsa_port_get_phy_sset_count(struct dsa_port *dp);
63211d8f3ddSFlorian Fainelli void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up);
633cf963573SFlorian Fainelli 
63491da11f8SLennert Buytenhek #endif
635