1
2
3
4
5
6#ifndef _MLX5_ESWITCH_
7#define _MLX5_ESWITCH_
8
9#include <linux/mlx5/driver.h>
10#include <net/devlink.h>
11
12#define MLX5_ESWITCH_MANAGER(mdev) MLX5_CAP_GEN(mdev, eswitch_manager)
13
14enum {
15 MLX5_ESWITCH_NONE,
16 MLX5_ESWITCH_LEGACY,
17 MLX5_ESWITCH_OFFLOADS
18};
19
20enum {
21 REP_ETH,
22 REP_IB,
23 NUM_REP_TYPES,
24};
25
26enum {
27 REP_UNREGISTERED,
28 REP_REGISTERED,
29 REP_LOADED,
30};
31
32enum mlx5_switchdev_event {
33 MLX5_SWITCHDEV_EVENT_PAIR,
34 MLX5_SWITCHDEV_EVENT_UNPAIR,
35};
36
37struct mlx5_eswitch_rep;
38struct mlx5_eswitch_rep_ops {
39 int (*load)(struct mlx5_core_dev *dev, struct mlx5_eswitch_rep *rep);
40 void (*unload)(struct mlx5_eswitch_rep *rep);
41 void *(*get_proto_dev)(struct mlx5_eswitch_rep *rep);
42 int (*event)(struct mlx5_eswitch *esw,
43 struct mlx5_eswitch_rep *rep,
44 enum mlx5_switchdev_event event,
45 void *data);
46};
47
48struct mlx5_eswitch_rep_data {
49 void *priv;
50 atomic_t state;
51};
52
53struct mlx5_eswitch_rep {
54 struct mlx5_eswitch_rep_data rep_data[NUM_REP_TYPES];
55 u16 vport;
56 u16 vlan;
57
58 u16 vport_index;
59 u32 vlan_refcount;
60 struct mlx5_eswitch *esw;
61};
62
63void mlx5_eswitch_register_vport_reps(struct mlx5_eswitch *esw,
64 const struct mlx5_eswitch_rep_ops *ops,
65 u8 rep_type);
66void mlx5_eswitch_unregister_vport_reps(struct mlx5_eswitch *esw, u8 rep_type);
67void *mlx5_eswitch_get_proto_dev(struct mlx5_eswitch *esw,
68 u16 vport_num,
69 u8 rep_type);
70struct mlx5_eswitch_rep *mlx5_eswitch_vport_rep(struct mlx5_eswitch *esw,
71 u16 vport_num);
72void *mlx5_eswitch_uplink_get_proto_dev(struct mlx5_eswitch *esw, u8 rep_type);
73struct mlx5_flow_handle *
74mlx5_eswitch_add_send_to_vport_rule(struct mlx5_eswitch *on_esw,
75 struct mlx5_eswitch *from_esw,
76 struct mlx5_eswitch_rep *rep, u32 sqn);
77
78#ifdef CONFIG_MLX5_ESWITCH
79enum devlink_eswitch_encap_mode
80mlx5_eswitch_get_encap_mode(const struct mlx5_core_dev *dev);
81
82bool mlx5_eswitch_reg_c1_loopback_enabled(const struct mlx5_eswitch *esw);
83bool mlx5_eswitch_vport_match_metadata_enabled(const struct mlx5_eswitch *esw);
84
85
86
87
88
89
90
91
92
93#define ESW_VPORT_BITS 12
94#define ESW_PFNUM_BITS 4
95#define ESW_SOURCE_PORT_METADATA_BITS (ESW_PFNUM_BITS + ESW_VPORT_BITS)
96#define ESW_SOURCE_PORT_METADATA_OFFSET (32 - ESW_SOURCE_PORT_METADATA_BITS)
97#define ESW_REG_C0_USER_DATA_METADATA_BITS (32 - ESW_SOURCE_PORT_METADATA_BITS)
98#define ESW_REG_C0_USER_DATA_METADATA_MASK GENMASK(ESW_REG_C0_USER_DATA_METADATA_BITS - 1, 0)
99
100static inline u32 mlx5_eswitch_get_vport_metadata_mask(void)
101{
102 return GENMASK(31, 32 - ESW_SOURCE_PORT_METADATA_BITS);
103}
104
105u32 mlx5_eswitch_get_vport_metadata_for_match(struct mlx5_eswitch *esw,
106 u16 vport_num);
107u32 mlx5_eswitch_get_vport_metadata_for_set(struct mlx5_eswitch *esw,
108 u16 vport_num);
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123#define ESW_RESERVED_BITS 1
124#define ESW_ZONE_ID_BITS 8
125#define ESW_TUN_OPTS_BITS 11
126#define ESW_TUN_ID_BITS 12
127#define ESW_TUN_OPTS_OFFSET ESW_ZONE_ID_BITS
128#define ESW_TUN_OFFSET ESW_TUN_OPTS_OFFSET
129#define ESW_ZONE_ID_MASK GENMASK(ESW_ZONE_ID_BITS - 1, 0)
130#define ESW_TUN_OPTS_MASK GENMASK(31 - ESW_TUN_ID_BITS - ESW_RESERVED_BITS, ESW_TUN_OPTS_OFFSET)
131#define ESW_TUN_MASK GENMASK(31 - ESW_RESERVED_BITS, ESW_TUN_OFFSET)
132#define ESW_TUN_ID_SLOW_TABLE_GOTO_VPORT 0
133
134#define ESW_TUN_OPTS_SLOW_TABLE_GOTO_VPORT GENMASK(ESW_TUN_OPTS_BITS - 1, 0)
135#define ESW_TUN_SLOW_TABLE_GOTO_VPORT ((ESW_TUN_ID_SLOW_TABLE_GOTO_VPORT << ESW_TUN_OPTS_BITS) | \
136 ESW_TUN_OPTS_SLOW_TABLE_GOTO_VPORT)
137#define ESW_TUN_SLOW_TABLE_GOTO_VPORT_MARK ESW_TUN_OPTS_MASK
138
139u8 mlx5_eswitch_mode(const struct mlx5_core_dev *dev);
140u16 mlx5_eswitch_get_total_vports(const struct mlx5_core_dev *dev);
141struct mlx5_core_dev *mlx5_eswitch_get_core_dev(struct mlx5_eswitch *esw);
142
143#else
144
145static inline u8 mlx5_eswitch_mode(const struct mlx5_core_dev *dev)
146{
147 return MLX5_ESWITCH_NONE;
148}
149
150static inline enum devlink_eswitch_encap_mode
151mlx5_eswitch_get_encap_mode(const struct mlx5_core_dev *dev)
152{
153 return DEVLINK_ESWITCH_ENCAP_MODE_NONE;
154}
155
156static inline bool
157mlx5_eswitch_reg_c1_loopback_enabled(const struct mlx5_eswitch *esw)
158{
159 return false;
160};
161
162static inline bool
163mlx5_eswitch_vport_match_metadata_enabled(const struct mlx5_eswitch *esw)
164{
165 return false;
166};
167
168static inline u32
169mlx5_eswitch_get_vport_metadata_for_match(struct mlx5_eswitch *esw, u16 vport_num)
170{
171 return 0;
172};
173
174static inline u32
175mlx5_eswitch_get_vport_metadata_mask(void)
176{
177 return 0;
178}
179
180static inline u16 mlx5_eswitch_get_total_vports(const struct mlx5_core_dev *dev)
181{
182 return 0;
183}
184
185static inline struct mlx5_core_dev *mlx5_eswitch_get_core_dev(struct mlx5_eswitch *esw)
186{
187 return NULL;
188}
189
190#endif
191
192static inline bool is_mdev_switchdev_mode(struct mlx5_core_dev *dev)
193{
194 return mlx5_eswitch_mode(dev) == MLX5_ESWITCH_OFFLOADS;
195}
196
197#endif
198