xref: /openbmc/linux/drivers/net/dsa/sja1105/sja1105.h (revision 7f14937facdca1e0da1bacfacd089bcf4271e75a)
1b790b554SNishad Kamdar /* SPDX-License-Identifier: GPL-2.0 */
2b790b554SNishad Kamdar /* Copyright (c) 2018, Sensor-Technik Wiedemann GmbH
38aa9ebccSVladimir Oltean  * Copyright (c) 2018-2019, Vladimir Oltean <olteanv@gmail.com>
48aa9ebccSVladimir Oltean  */
58aa9ebccSVladimir Oltean #ifndef _SJA1105_H
68aa9ebccSVladimir Oltean #define _SJA1105_H
78aa9ebccSVladimir Oltean 
8bb77f36aSVladimir Oltean #include <linux/ptp_clock_kernel.h>
9bb77f36aSVladimir Oltean #include <linux/timecounter.h>
108aa9ebccSVladimir Oltean #include <linux/dsa/sja1105.h>
11ac02a451SVladimir Oltean #include <linux/dsa/8021q.h>
128aa9ebccSVladimir Oltean #include <net/dsa.h>
13227d07a0SVladimir Oltean #include <linux/mutex.h>
148aa9ebccSVladimir Oltean #include "sja1105_static_config.h"
158aa9ebccSVladimir Oltean 
168aa9ebccSVladimir Oltean #define SJA1105_NUM_PORTS		5
178aa9ebccSVladimir Oltean #define SJA1105_NUM_TC			8
188aa9ebccSVladimir Oltean #define SJA1105ET_FDB_BIN_SIZE		4
198456721dSVladimir Oltean /* The hardware value is in multiples of 10 ms.
208456721dSVladimir Oltean  * The passed parameter is in multiples of 1 ms.
218456721dSVladimir Oltean  */
228456721dSVladimir Oltean #define SJA1105_AGEING_TIME_MS(ms)	((ms) / 10)
23a6af7763SVladimir Oltean #define SJA1105_NUM_L2_POLICERS		45
248aa9ebccSVladimir Oltean 
2541603d78SVladimir Oltean typedef enum {
2641603d78SVladimir Oltean 	SPI_READ = 0,
2741603d78SVladimir Oltean 	SPI_WRITE = 1,
2841603d78SVladimir Oltean } sja1105_spi_rw_mode_t;
2941603d78SVladimir Oltean 
30317ab5b8SVladimir Oltean #include "sja1105_tas.h"
31a9d6ed7aSVladimir Oltean #include "sja1105_ptp.h"
32317ab5b8SVladimir Oltean 
338aa9ebccSVladimir Oltean /* Keeps the different addresses between E/T and P/Q/R/S */
348aa9ebccSVladimir Oltean struct sja1105_regs {
358aa9ebccSVladimir Oltean 	u64 device_id;
368aa9ebccSVladimir Oltean 	u64 prod_id;
378aa9ebccSVladimir Oltean 	u64 status;
381a4c6940SVladimir Oltean 	u64 port_control;
398aa9ebccSVladimir Oltean 	u64 rgu;
40834f8933SVladimir Oltean 	u64 vl_status;
418aa9ebccSVladimir Oltean 	u64 config;
42ffe10e67SVladimir Oltean 	u64 sgmii;
438aa9ebccSVladimir Oltean 	u64 rmii_pll1;
44747e5eb3SVladimir Oltean 	u64 ptppinst;
45747e5eb3SVladimir Oltean 	u64 ptppindur;
46bb77f36aSVladimir Oltean 	u64 ptp_control;
472fb079a2SVladimir Oltean 	u64 ptpclkval;
48bb77f36aSVladimir Oltean 	u64 ptpclkrate;
4986db36a3SVladimir Oltean 	u64 ptpclkcorp;
50747e5eb3SVladimir Oltean 	u64 ptpsyncts;
5186db36a3SVladimir Oltean 	u64 ptpschtm;
5247ed985eSVladimir Oltean 	u64 ptpegr_ts[SJA1105_NUM_PORTS];
538aa9ebccSVladimir Oltean 	u64 pad_mii_tx[SJA1105_NUM_PORTS];
54135e3018SVladimir Oltean 	u64 pad_mii_rx[SJA1105_NUM_PORTS];
55b5b0c7f4SVladimir Oltean 	u64 pad_mii_id[SJA1105_NUM_PORTS];
568aa9ebccSVladimir Oltean 	u64 cgu_idiv[SJA1105_NUM_PORTS];
578aa9ebccSVladimir Oltean 	u64 mii_tx_clk[SJA1105_NUM_PORTS];
588aa9ebccSVladimir Oltean 	u64 mii_rx_clk[SJA1105_NUM_PORTS];
598aa9ebccSVladimir Oltean 	u64 mii_ext_tx_clk[SJA1105_NUM_PORTS];
608aa9ebccSVladimir Oltean 	u64 mii_ext_rx_clk[SJA1105_NUM_PORTS];
618aa9ebccSVladimir Oltean 	u64 rgmii_tx_clk[SJA1105_NUM_PORTS];
628aa9ebccSVladimir Oltean 	u64 rmii_ref_clk[SJA1105_NUM_PORTS];
638aa9ebccSVladimir Oltean 	u64 rmii_ext_tx_clk[SJA1105_NUM_PORTS];
648aa9ebccSVladimir Oltean 	u64 mac[SJA1105_NUM_PORTS];
658aa9ebccSVladimir Oltean 	u64 mac_hl1[SJA1105_NUM_PORTS];
668aa9ebccSVladimir Oltean 	u64 mac_hl2[SJA1105_NUM_PORTS];
67336aa67bSVladimir Oltean 	u64 ether_stats[SJA1105_NUM_PORTS];
688aa9ebccSVladimir Oltean 	u64 qlevel[SJA1105_NUM_PORTS];
698aa9ebccSVladimir Oltean };
708aa9ebccSVladimir Oltean 
718aa9ebccSVladimir Oltean struct sja1105_info {
728aa9ebccSVladimir Oltean 	u64 device_id;
738aa9ebccSVladimir Oltean 	/* Needed for distinction between P and R, and between Q and S
748aa9ebccSVladimir Oltean 	 * (since the parts with/without SGMII share the same
758aa9ebccSVladimir Oltean 	 * switch core and device_id)
768aa9ebccSVladimir Oltean 	 */
778aa9ebccSVladimir Oltean 	u64 part_no;
7847ed985eSVladimir Oltean 	/* E/T and P/Q/R/S have partial timestamps of different sizes.
7947ed985eSVladimir Oltean 	 * They must be reconstructed on both families anyway to get the full
8047ed985eSVladimir Oltean 	 * 64-bit values back.
8147ed985eSVladimir Oltean 	 */
8247ed985eSVladimir Oltean 	int ptp_ts_bits;
8347ed985eSVladimir Oltean 	/* Also SPI commands are of different sizes to retrieve
8447ed985eSVladimir Oltean 	 * the egress timestamps.
8547ed985eSVladimir Oltean 	 */
8647ed985eSVladimir Oltean 	int ptpegr_ts_bytes;
878aa9ebccSVladimir Oltean 	const struct sja1105_dynamic_table_ops *dyn_ops;
888aa9ebccSVladimir Oltean 	const struct sja1105_table_ops *static_ops;
898aa9ebccSVladimir Oltean 	const struct sja1105_regs *regs;
90abfb228aSVladimir Oltean 	int (*reset_cmd)(struct dsa_switch *ds);
91f5b8631cSVladimir Oltean 	int (*setup_rgmii_delay)(const void *ctx, int port);
929dfa6911SVladimir Oltean 	/* Prototypes from include/net/dsa.h */
939dfa6911SVladimir Oltean 	int (*fdb_add_cmd)(struct dsa_switch *ds, int port,
949dfa6911SVladimir Oltean 			   const unsigned char *addr, u16 vid);
959dfa6911SVladimir Oltean 	int (*fdb_del_cmd)(struct dsa_switch *ds, int port,
969dfa6911SVladimir Oltean 			   const unsigned char *addr, u16 vid);
9741603d78SVladimir Oltean 	void (*ptp_cmd_packing)(u8 *buf, struct sja1105_ptp_cmd *cmd,
9841603d78SVladimir Oltean 				enum packing_op op);
998aa9ebccSVladimir Oltean 	const char *name;
1008aa9ebccSVladimir Oltean };
1018aa9ebccSVladimir Oltean 
102b70bb8d4SVladimir Oltean enum sja1105_key_type {
103b70bb8d4SVladimir Oltean 	SJA1105_KEY_BCAST,
104b70bb8d4SVladimir Oltean 	SJA1105_KEY_TC,
105b70bb8d4SVladimir Oltean 	SJA1105_KEY_VLAN_UNAWARE_VL,
106b70bb8d4SVladimir Oltean 	SJA1105_KEY_VLAN_AWARE_VL,
107b70bb8d4SVladimir Oltean };
108b70bb8d4SVladimir Oltean 
109b70bb8d4SVladimir Oltean struct sja1105_key {
110b70bb8d4SVladimir Oltean 	enum sja1105_key_type type;
111b70bb8d4SVladimir Oltean 
112b70bb8d4SVladimir Oltean 	union {
113b70bb8d4SVladimir Oltean 		/* SJA1105_KEY_TC */
114b70bb8d4SVladimir Oltean 		struct {
115b70bb8d4SVladimir Oltean 			int pcp;
116b70bb8d4SVladimir Oltean 		} tc;
117b70bb8d4SVladimir Oltean 
118b70bb8d4SVladimir Oltean 		/* SJA1105_KEY_VLAN_UNAWARE_VL */
119b70bb8d4SVladimir Oltean 		/* SJA1105_KEY_VLAN_AWARE_VL */
120b70bb8d4SVladimir Oltean 		struct {
121b70bb8d4SVladimir Oltean 			u64 dmac;
122b70bb8d4SVladimir Oltean 			u16 vid;
123b70bb8d4SVladimir Oltean 			u16 pcp;
124b70bb8d4SVladimir Oltean 		} vl;
125b70bb8d4SVladimir Oltean 	};
126b70bb8d4SVladimir Oltean };
127b70bb8d4SVladimir Oltean 
128a6af7763SVladimir Oltean enum sja1105_rule_type {
129a6af7763SVladimir Oltean 	SJA1105_RULE_BCAST_POLICER,
130a6af7763SVladimir Oltean 	SJA1105_RULE_TC_POLICER,
131dfacc5a2SVladimir Oltean 	SJA1105_RULE_VL,
132dfacc5a2SVladimir Oltean };
133dfacc5a2SVladimir Oltean 
134dfacc5a2SVladimir Oltean enum sja1105_vl_type {
135dfacc5a2SVladimir Oltean 	SJA1105_VL_NONCRITICAL,
136dfacc5a2SVladimir Oltean 	SJA1105_VL_RATE_CONSTRAINED,
137dfacc5a2SVladimir Oltean 	SJA1105_VL_TIME_TRIGGERED,
138a6af7763SVladimir Oltean };
139a6af7763SVladimir Oltean 
140a6af7763SVladimir Oltean struct sja1105_rule {
141a6af7763SVladimir Oltean 	struct list_head list;
142a6af7763SVladimir Oltean 	unsigned long cookie;
143a6af7763SVladimir Oltean 	unsigned long port_mask;
144b70bb8d4SVladimir Oltean 	struct sja1105_key key;
145a6af7763SVladimir Oltean 	enum sja1105_rule_type type;
146a6af7763SVladimir Oltean 
147dfacc5a2SVladimir Oltean 	/* Action */
148a6af7763SVladimir Oltean 	union {
149a6af7763SVladimir Oltean 		/* SJA1105_RULE_BCAST_POLICER */
150a6af7763SVladimir Oltean 		struct {
151a6af7763SVladimir Oltean 			int sharindx;
152a6af7763SVladimir Oltean 		} bcast_pol;
153a6af7763SVladimir Oltean 
154a6af7763SVladimir Oltean 		/* SJA1105_RULE_TC_POLICER */
155a6af7763SVladimir Oltean 		struct {
156a6af7763SVladimir Oltean 			int sharindx;
157a6af7763SVladimir Oltean 		} tc_pol;
158dfacc5a2SVladimir Oltean 
159dfacc5a2SVladimir Oltean 		/* SJA1105_RULE_VL */
160dfacc5a2SVladimir Oltean 		struct {
161dfacc5a2SVladimir Oltean 			enum sja1105_vl_type type;
162834f8933SVladimir Oltean 			unsigned long destports;
163834f8933SVladimir Oltean 			int sharindx;
164834f8933SVladimir Oltean 			int maxlen;
165834f8933SVladimir Oltean 			int ipv;
166834f8933SVladimir Oltean 			u64 base_time;
167834f8933SVladimir Oltean 			u64 cycle_time;
168834f8933SVladimir Oltean 			int num_entries;
169834f8933SVladimir Oltean 			struct action_gate_entry *entries;
170834f8933SVladimir Oltean 			struct flow_stats stats;
171dfacc5a2SVladimir Oltean 		} vl;
172a6af7763SVladimir Oltean 	};
173a6af7763SVladimir Oltean };
174a6af7763SVladimir Oltean 
175a6af7763SVladimir Oltean struct sja1105_flow_block {
176a6af7763SVladimir Oltean 	struct list_head rules;
177a6af7763SVladimir Oltean 	bool l2_policer_used[SJA1105_NUM_L2_POLICERS];
178dfacc5a2SVladimir Oltean 	int num_virtual_links;
179a6af7763SVladimir Oltean };
180a6af7763SVladimir Oltean 
181*7f14937fSVladimir Oltean enum sja1105_vlan_state {
182*7f14937fSVladimir Oltean 	SJA1105_VLAN_UNAWARE,
183*7f14937fSVladimir Oltean 	SJA1105_VLAN_FILTERING_FULL,
184*7f14937fSVladimir Oltean };
185*7f14937fSVladimir Oltean 
1868aa9ebccSVladimir Oltean struct sja1105_private {
1878aa9ebccSVladimir Oltean 	struct sja1105_static_config static_config;
188f5b8631cSVladimir Oltean 	bool rgmii_rx_delay[SJA1105_NUM_PORTS];
189f5b8631cSVladimir Oltean 	bool rgmii_tx_delay[SJA1105_NUM_PORTS];
1908aa9ebccSVladimir Oltean 	const struct sja1105_info *info;
1918aa9ebccSVladimir Oltean 	struct gpio_desc *reset_gpio;
1928aa9ebccSVladimir Oltean 	struct spi_device *spidev;
1938aa9ebccSVladimir Oltean 	struct dsa_switch *ds;
194ac02a451SVladimir Oltean 	struct list_head crosschip_links;
195a6af7763SVladimir Oltean 	struct sja1105_flow_block flow_block;
196227d07a0SVladimir Oltean 	struct sja1105_port ports[SJA1105_NUM_PORTS];
197227d07a0SVladimir Oltean 	/* Serializes transmission of management frames so that
198227d07a0SVladimir Oltean 	 * the switch doesn't confuse them with one another.
199227d07a0SVladimir Oltean 	 */
200227d07a0SVladimir Oltean 	struct mutex mgmt_lock;
201*7f14937fSVladimir Oltean 	enum sja1105_vlan_state vlan_state;
202844d7edcSVladimir Oltean 	struct sja1105_tagger_data tagger_data;
203a9d6ed7aSVladimir Oltean 	struct sja1105_ptp_data ptp_data;
204317ab5b8SVladimir Oltean 	struct sja1105_tas_data tas_data;
2058aa9ebccSVladimir Oltean };
2068aa9ebccSVladimir Oltean 
2078aa9ebccSVladimir Oltean #include "sja1105_dynamic_config.h"
2088aa9ebccSVladimir Oltean 
2098aa9ebccSVladimir Oltean struct sja1105_spi_message {
2108aa9ebccSVladimir Oltean 	u64 access;
2118aa9ebccSVladimir Oltean 	u64 read_count;
2128aa9ebccSVladimir Oltean 	u64 address;
2138aa9ebccSVladimir Oltean };
2148aa9ebccSVladimir Oltean 
215317ab5b8SVladimir Oltean /* From sja1105_main.c */
2162eea1fa8SVladimir Oltean enum sja1105_reset_reason {
2172eea1fa8SVladimir Oltean 	SJA1105_VLAN_FILTERING = 0,
2182eea1fa8SVladimir Oltean 	SJA1105_RX_HWTSTAMPING,
2192eea1fa8SVladimir Oltean 	SJA1105_AGEING_TIME,
2202eea1fa8SVladimir Oltean 	SJA1105_SCHEDULING,
221c279c726SVladimir Oltean 	SJA1105_BEST_EFFORT_POLICING,
222dfacc5a2SVladimir Oltean 	SJA1105_VIRTUAL_LINKS,
2232eea1fa8SVladimir Oltean };
2242eea1fa8SVladimir Oltean 
2252eea1fa8SVladimir Oltean int sja1105_static_config_reload(struct sja1105_private *priv,
2262eea1fa8SVladimir Oltean 				 enum sja1105_reset_reason reason);
227317ab5b8SVladimir Oltean 
2288aa9ebccSVladimir Oltean /* From sja1105_spi.c */
2291bd44870SVladimir Oltean int sja1105_xfer_buf(const struct sja1105_private *priv,
2308aa9ebccSVladimir Oltean 		     sja1105_spi_rw_mode_t rw, u64 reg_addr,
23108839c06SVladimir Oltean 		     u8 *buf, size_t len);
232dff79620SVladimir Oltean int sja1105_xfer_u32(const struct sja1105_private *priv,
23334d76e9fSVladimir Oltean 		     sja1105_spi_rw_mode_t rw, u64 reg_addr, u32 *value,
23434d76e9fSVladimir Oltean 		     struct ptp_system_timestamp *ptp_sts);
235dff79620SVladimir Oltean int sja1105_xfer_u64(const struct sja1105_private *priv,
23634d76e9fSVladimir Oltean 		     sja1105_spi_rw_mode_t rw, u64 reg_addr, u64 *value,
23734d76e9fSVladimir Oltean 		     struct ptp_system_timestamp *ptp_sts);
2388aa9ebccSVladimir Oltean int sja1105_static_config_upload(struct sja1105_private *priv);
239d114fb04SVladimir Oltean int sja1105_inhibit_tx(const struct sja1105_private *priv,
240d114fb04SVladimir Oltean 		       unsigned long port_bitmap, bool tx_inhibited);
2418aa9ebccSVladimir Oltean 
2428aa9ebccSVladimir Oltean extern struct sja1105_info sja1105e_info;
2438aa9ebccSVladimir Oltean extern struct sja1105_info sja1105t_info;
2448aa9ebccSVladimir Oltean extern struct sja1105_info sja1105p_info;
2458aa9ebccSVladimir Oltean extern struct sja1105_info sja1105q_info;
2468aa9ebccSVladimir Oltean extern struct sja1105_info sja1105r_info;
2478aa9ebccSVladimir Oltean extern struct sja1105_info sja1105s_info;
2488aa9ebccSVladimir Oltean 
2498aa9ebccSVladimir Oltean /* From sja1105_clocking.c */
2508aa9ebccSVladimir Oltean 
2518aa9ebccSVladimir Oltean typedef enum {
2528aa9ebccSVladimir Oltean 	XMII_MAC = 0,
2538aa9ebccSVladimir Oltean 	XMII_PHY = 1,
2548aa9ebccSVladimir Oltean } sja1105_mii_role_t;
2558aa9ebccSVladimir Oltean 
2568aa9ebccSVladimir Oltean typedef enum {
2578aa9ebccSVladimir Oltean 	XMII_MODE_MII		= 0,
2588aa9ebccSVladimir Oltean 	XMII_MODE_RMII		= 1,
2598aa9ebccSVladimir Oltean 	XMII_MODE_RGMII		= 2,
260ffe10e67SVladimir Oltean 	XMII_MODE_SGMII		= 3,
2618aa9ebccSVladimir Oltean } sja1105_phy_interface_t;
2628aa9ebccSVladimir Oltean 
2638aa9ebccSVladimir Oltean typedef enum {
2648aa9ebccSVladimir Oltean 	SJA1105_SPEED_10MBPS	= 3,
2658aa9ebccSVladimir Oltean 	SJA1105_SPEED_100MBPS	= 2,
2668aa9ebccSVladimir Oltean 	SJA1105_SPEED_1000MBPS	= 1,
2678aa9ebccSVladimir Oltean 	SJA1105_SPEED_AUTO	= 0,
2688aa9ebccSVladimir Oltean } sja1105_speed_t;
2698aa9ebccSVladimir Oltean 
270c05ec3d4SVladimir Oltean int sja1105pqrs_setup_rgmii_delay(const void *ctx, int port);
2718aa9ebccSVladimir Oltean int sja1105_clocking_setup_port(struct sja1105_private *priv, int port);
2728aa9ebccSVladimir Oltean int sja1105_clocking_setup(struct sja1105_private *priv);
2738aa9ebccSVladimir Oltean 
27452c34e6eSVladimir Oltean /* From sja1105_ethtool.c */
27552c34e6eSVladimir Oltean void sja1105_get_ethtool_stats(struct dsa_switch *ds, int port, u64 *data);
27652c34e6eSVladimir Oltean void sja1105_get_strings(struct dsa_switch *ds, int port,
27752c34e6eSVladimir Oltean 			 u32 stringset, u8 *data);
27852c34e6eSVladimir Oltean int sja1105_get_sset_count(struct dsa_switch *ds, int port, int sset);
2798aa9ebccSVladimir Oltean 
28052c34e6eSVladimir Oltean /* From sja1105_dynamic_config.c */
2818aa9ebccSVladimir Oltean int sja1105_dynamic_config_read(struct sja1105_private *priv,
2828aa9ebccSVladimir Oltean 				enum sja1105_blk_idx blk_idx,
2838aa9ebccSVladimir Oltean 				int index, void *entry);
2848aa9ebccSVladimir Oltean int sja1105_dynamic_config_write(struct sja1105_private *priv,
2858aa9ebccSVladimir Oltean 				 enum sja1105_blk_idx blk_idx,
2868aa9ebccSVladimir Oltean 				 int index, void *entry, bool keep);
2878aa9ebccSVladimir Oltean 
2881da73821SVladimir Oltean enum sja1105_iotag {
2891da73821SVladimir Oltean 	SJA1105_C_TAG = 0, /* Inner VLAN header */
2901da73821SVladimir Oltean 	SJA1105_S_TAG = 1, /* Outer VLAN header */
2911da73821SVladimir Oltean };
2921da73821SVladimir Oltean 
2939dfa6911SVladimir Oltean u8 sja1105et_fdb_hash(struct sja1105_private *priv, const u8 *addr, u16 vid);
2949dfa6911SVladimir Oltean int sja1105et_fdb_add(struct dsa_switch *ds, int port,
2959dfa6911SVladimir Oltean 		      const unsigned char *addr, u16 vid);
2969dfa6911SVladimir Oltean int sja1105et_fdb_del(struct dsa_switch *ds, int port,
2979dfa6911SVladimir Oltean 		      const unsigned char *addr, u16 vid);
2989dfa6911SVladimir Oltean int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port,
2999dfa6911SVladimir Oltean 			const unsigned char *addr, u16 vid);
3009dfa6911SVladimir Oltean int sja1105pqrs_fdb_del(struct dsa_switch *ds, int port,
3019dfa6911SVladimir Oltean 			const unsigned char *addr, u16 vid);
302291d1e72SVladimir Oltean 
3038aa9ebccSVladimir Oltean /* Common implementations for the static and dynamic configs */
3048aa9ebccSVladimir Oltean size_t sja1105_l2_forwarding_entry_packing(void *buf, void *entry_ptr,
3058aa9ebccSVladimir Oltean 					   enum packing_op op);
3068aa9ebccSVladimir Oltean size_t sja1105pqrs_l2_lookup_entry_packing(void *buf, void *entry_ptr,
3078aa9ebccSVladimir Oltean 					   enum packing_op op);
3088aa9ebccSVladimir Oltean size_t sja1105et_l2_lookup_entry_packing(void *buf, void *entry_ptr,
3098aa9ebccSVladimir Oltean 					 enum packing_op op);
3108aa9ebccSVladimir Oltean size_t sja1105_vlan_lookup_entry_packing(void *buf, void *entry_ptr,
3118aa9ebccSVladimir Oltean 					 enum packing_op op);
3128aa9ebccSVladimir Oltean size_t sja1105pqrs_mac_config_entry_packing(void *buf, void *entry_ptr,
3138aa9ebccSVladimir Oltean 					    enum packing_op op);
3140a7e984cSVladimir Oltean size_t sja1105pqrs_avb_params_entry_packing(void *buf, void *entry_ptr,
3150a7e984cSVladimir Oltean 					    enum packing_op op);
31694f94d4aSVladimir Oltean size_t sja1105_vl_lookup_entry_packing(void *buf, void *entry_ptr,
31794f94d4aSVladimir Oltean 				       enum packing_op op);
3188aa9ebccSVladimir Oltean 
319a6af7763SVladimir Oltean /* From sja1105_flower.c */
320a6af7763SVladimir Oltean int sja1105_cls_flower_del(struct dsa_switch *ds, int port,
321a6af7763SVladimir Oltean 			   struct flow_cls_offload *cls, bool ingress);
322a6af7763SVladimir Oltean int sja1105_cls_flower_add(struct dsa_switch *ds, int port,
323a6af7763SVladimir Oltean 			   struct flow_cls_offload *cls, bool ingress);
324834f8933SVladimir Oltean int sja1105_cls_flower_stats(struct dsa_switch *ds, int port,
325834f8933SVladimir Oltean 			     struct flow_cls_offload *cls, bool ingress);
326a6af7763SVladimir Oltean void sja1105_flower_setup(struct dsa_switch *ds);
327a6af7763SVladimir Oltean void sja1105_flower_teardown(struct dsa_switch *ds);
328dfacc5a2SVladimir Oltean struct sja1105_rule *sja1105_rule_find(struct sja1105_private *priv,
329dfacc5a2SVladimir Oltean 				       unsigned long cookie);
330a6af7763SVladimir Oltean 
3318aa9ebccSVladimir Oltean #endif
332