]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
Merge tag 'gvt-fixes-2017-07-26' of https://github.com/01org/gvt-linux into drm-intel...
[mirror_ubuntu-jammy-kernel.git] / drivers / net / ethernet / mellanox / mlx5 / core / eswitch.h
1 /*
2 * Copyright (c) 2015, Mellanox Technologies, Ltd. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
33 #ifndef __MLX5_ESWITCH_H__
34 #define __MLX5_ESWITCH_H__
35
36 #include <linux/if_ether.h>
37 #include <linux/if_link.h>
38 #include <net/devlink.h>
39 #include <linux/mlx5/device.h>
40
41 #define MLX5_MAX_UC_PER_VPORT(dev) \
42 (1 << MLX5_CAP_GEN(dev, log_max_current_uc_list))
43
44 #define MLX5_MAX_MC_PER_VPORT(dev) \
45 (1 << MLX5_CAP_GEN(dev, log_max_current_mc_list))
46
47 #define MLX5_L2_ADDR_HASH_SIZE (BIT(BITS_PER_BYTE))
48 #define MLX5_L2_ADDR_HASH(addr) (addr[5])
49
50 #define FDB_UPLINK_VPORT 0xffff
51
52 #define MLX5_MIN_BW_SHARE 1
53
54 #define MLX5_RATE_TO_BW_SHARE(rate, divider, limit) \
55 min_t(u32, max_t(u32, (rate) / (divider), MLX5_MIN_BW_SHARE), limit)
56
57 /* L2 -mac address based- hash helpers */
58 struct l2addr_node {
59 struct hlist_node hlist;
60 u8 addr[ETH_ALEN];
61 };
62
63 #define for_each_l2hash_node(hn, tmp, hash, i) \
64 for (i = 0; i < MLX5_L2_ADDR_HASH_SIZE; i++) \
65 hlist_for_each_entry_safe(hn, tmp, &hash[i], hlist)
66
67 #define l2addr_hash_find(hash, mac, type) ({ \
68 int ix = MLX5_L2_ADDR_HASH(mac); \
69 bool found = false; \
70 type *ptr = NULL; \
71 \
72 hlist_for_each_entry(ptr, &hash[ix], node.hlist) \
73 if (ether_addr_equal(ptr->node.addr, mac)) {\
74 found = true; \
75 break; \
76 } \
77 if (!found) \
78 ptr = NULL; \
79 ptr; \
80 })
81
82 #define l2addr_hash_add(hash, mac, type, gfp) ({ \
83 int ix = MLX5_L2_ADDR_HASH(mac); \
84 type *ptr = NULL; \
85 \
86 ptr = kzalloc(sizeof(type), gfp); \
87 if (ptr) { \
88 ether_addr_copy(ptr->node.addr, mac); \
89 hlist_add_head(&ptr->node.hlist, &hash[ix]);\
90 } \
91 ptr; \
92 })
93
94 #define l2addr_hash_del(ptr) ({ \
95 hlist_del(&ptr->node.hlist); \
96 kfree(ptr); \
97 })
98
99 struct vport_ingress {
100 struct mlx5_flow_table *acl;
101 struct mlx5_flow_group *allow_untagged_spoofchk_grp;
102 struct mlx5_flow_group *allow_spoofchk_only_grp;
103 struct mlx5_flow_group *allow_untagged_only_grp;
104 struct mlx5_flow_group *drop_grp;
105 struct mlx5_flow_handle *allow_rule;
106 struct mlx5_flow_handle *drop_rule;
107 };
108
109 struct vport_egress {
110 struct mlx5_flow_table *acl;
111 struct mlx5_flow_group *allowed_vlans_grp;
112 struct mlx5_flow_group *drop_grp;
113 struct mlx5_flow_handle *allowed_vlan;
114 struct mlx5_flow_handle *drop_rule;
115 };
116
117 struct mlx5_vport_info {
118 u8 mac[ETH_ALEN];
119 u16 vlan;
120 u8 qos;
121 u64 node_guid;
122 int link_state;
123 u32 min_rate;
124 u32 max_rate;
125 bool spoofchk;
126 bool trusted;
127 };
128
129 struct mlx5_vport {
130 struct mlx5_core_dev *dev;
131 int vport;
132 struct hlist_head uc_list[MLX5_L2_ADDR_HASH_SIZE];
133 struct hlist_head mc_list[MLX5_L2_ADDR_HASH_SIZE];
134 struct mlx5_flow_handle *promisc_rule;
135 struct mlx5_flow_handle *allmulti_rule;
136 struct work_struct vport_change_handler;
137
138 struct vport_ingress ingress;
139 struct vport_egress egress;
140
141 struct mlx5_vport_info info;
142
143 struct {
144 bool enabled;
145 u32 esw_tsar_ix;
146 u32 bw_share;
147 } qos;
148
149 bool enabled;
150 u16 enabled_events;
151 };
152
153 struct mlx5_l2_table {
154 struct hlist_head l2_hash[MLX5_L2_ADDR_HASH_SIZE];
155 u32 size;
156 unsigned long *bitmap;
157 };
158
159 struct mlx5_eswitch_fdb {
160 void *fdb;
161 union {
162 struct legacy_fdb {
163 struct mlx5_flow_group *addr_grp;
164 struct mlx5_flow_group *allmulti_grp;
165 struct mlx5_flow_group *promisc_grp;
166 } legacy;
167
168 struct offloads_fdb {
169 struct mlx5_flow_table *fdb;
170 struct mlx5_flow_group *send_to_vport_grp;
171 struct mlx5_flow_group *miss_grp;
172 struct mlx5_flow_handle *miss_rule;
173 int vlan_push_pop_refcount;
174 } offloads;
175 };
176 };
177
178 enum {
179 SRIOV_NONE,
180 SRIOV_LEGACY,
181 SRIOV_OFFLOADS
182 };
183
184 struct mlx5_esw_sq {
185 struct mlx5_flow_handle *send_to_vport_rule;
186 struct list_head list;
187 };
188
189 struct mlx5_eswitch_rep {
190 int (*load)(struct mlx5_eswitch *esw,
191 struct mlx5_eswitch_rep *rep);
192 void (*unload)(struct mlx5_eswitch *esw,
193 struct mlx5_eswitch_rep *rep);
194 u16 vport;
195 u8 hw_id[ETH_ALEN];
196 struct net_device *netdev;
197
198 struct mlx5_flow_handle *vport_rx_rule;
199 struct list_head vport_sqs_list;
200 u16 vlan;
201 u32 vlan_refcount;
202 bool valid;
203 };
204
205 struct mlx5_esw_offload {
206 struct mlx5_flow_table *ft_offloads;
207 struct mlx5_flow_group *vport_rx_group;
208 struct mlx5_eswitch_rep *vport_reps;
209 DECLARE_HASHTABLE(encap_tbl, 8);
210 DECLARE_HASHTABLE(mod_hdr_tbl, 8);
211 u8 inline_mode;
212 u64 num_flows;
213 u8 encap;
214 };
215
216 /* E-Switch MC FDB table hash node */
217 struct esw_mc_addr { /* SRIOV only */
218 struct l2addr_node node;
219 struct mlx5_flow_handle *uplink_rule; /* Forward to uplink rule */
220 u32 refcnt;
221 };
222
223 struct mlx5_eswitch {
224 struct mlx5_core_dev *dev;
225 struct mlx5_l2_table l2_table;
226 struct mlx5_eswitch_fdb fdb_table;
227 struct hlist_head mc_table[MLX5_L2_ADDR_HASH_SIZE];
228 struct workqueue_struct *work_queue;
229 struct mlx5_vport *vports;
230 int total_vports;
231 int enabled_vports;
232 /* Synchronize between vport change events
233 * and async SRIOV admin state changes
234 */
235 struct mutex state_lock;
236 struct esw_mc_addr mc_promisc;
237
238 struct {
239 bool enabled;
240 u32 root_tsar_id;
241 } qos;
242
243 struct mlx5_esw_offload offloads;
244 int mode;
245 };
246
247 void esw_offloads_cleanup(struct mlx5_eswitch *esw, int nvports);
248 int esw_offloads_init(struct mlx5_eswitch *esw, int nvports);
249
250 /* E-Switch API */
251 int mlx5_eswitch_init(struct mlx5_core_dev *dev);
252 void mlx5_eswitch_cleanup(struct mlx5_eswitch *esw);
253 void mlx5_eswitch_attach(struct mlx5_eswitch *esw);
254 void mlx5_eswitch_detach(struct mlx5_eswitch *esw);
255 void mlx5_eswitch_vport_event(struct mlx5_eswitch *esw, struct mlx5_eqe *eqe);
256 int mlx5_eswitch_enable_sriov(struct mlx5_eswitch *esw, int nvfs, int mode);
257 void mlx5_eswitch_disable_sriov(struct mlx5_eswitch *esw);
258 int mlx5_eswitch_set_vport_mac(struct mlx5_eswitch *esw,
259 int vport, u8 mac[ETH_ALEN]);
260 int mlx5_eswitch_set_vport_state(struct mlx5_eswitch *esw,
261 int vport, int link_state);
262 int mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
263 int vport, u16 vlan, u8 qos);
264 int mlx5_eswitch_set_vport_spoofchk(struct mlx5_eswitch *esw,
265 int vport, bool spoofchk);
266 int mlx5_eswitch_set_vport_trust(struct mlx5_eswitch *esw,
267 int vport_num, bool setting);
268 int mlx5_eswitch_set_vport_rate(struct mlx5_eswitch *esw, int vport,
269 u32 max_rate, u32 min_rate);
270 int mlx5_eswitch_get_vport_config(struct mlx5_eswitch *esw,
271 int vport, struct ifla_vf_info *ivi);
272 int mlx5_eswitch_get_vport_stats(struct mlx5_eswitch *esw,
273 int vport,
274 struct ifla_vf_stats *vf_stats);
275
276 struct mlx5_flow_spec;
277 struct mlx5_esw_flow_attr;
278
279 struct mlx5_flow_handle *
280 mlx5_eswitch_add_offloaded_rule(struct mlx5_eswitch *esw,
281 struct mlx5_flow_spec *spec,
282 struct mlx5_esw_flow_attr *attr);
283 void
284 mlx5_eswitch_del_offloaded_rule(struct mlx5_eswitch *esw,
285 struct mlx5_flow_handle *rule,
286 struct mlx5_esw_flow_attr *attr);
287
288 struct mlx5_flow_handle *
289 mlx5_eswitch_create_vport_rx_rule(struct mlx5_eswitch *esw, int vport, u32 tirn);
290
291 enum {
292 SET_VLAN_STRIP = BIT(0),
293 SET_VLAN_INSERT = BIT(1)
294 };
295
296 #define MLX5_FLOW_CONTEXT_ACTION_VLAN_POP 0x4000
297 #define MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH 0x8000
298
299 struct mlx5_esw_flow_attr {
300 struct mlx5_eswitch_rep *in_rep;
301 struct mlx5_eswitch_rep *out_rep;
302
303 int action;
304 u16 vlan;
305 bool vlan_handled;
306 u32 encap_id;
307 u32 mod_hdr_id;
308 struct mlx5e_tc_flow_parse_attr *parse_attr;
309 };
310
311 int mlx5_eswitch_sqs2vport_start(struct mlx5_eswitch *esw,
312 struct mlx5_eswitch_rep *rep,
313 u16 *sqns_array, int sqns_num);
314 void mlx5_eswitch_sqs2vport_stop(struct mlx5_eswitch *esw,
315 struct mlx5_eswitch_rep *rep);
316
317 int mlx5_devlink_eswitch_mode_set(struct devlink *devlink, u16 mode);
318 int mlx5_devlink_eswitch_mode_get(struct devlink *devlink, u16 *mode);
319 int mlx5_devlink_eswitch_inline_mode_set(struct devlink *devlink, u8 mode);
320 int mlx5_devlink_eswitch_inline_mode_get(struct devlink *devlink, u8 *mode);
321 int mlx5_eswitch_inline_mode_get(struct mlx5_eswitch *esw, int nvfs, u8 *mode);
322 int mlx5_devlink_eswitch_encap_mode_set(struct devlink *devlink, u8 encap);
323 int mlx5_devlink_eswitch_encap_mode_get(struct devlink *devlink, u8 *encap);
324 void mlx5_eswitch_register_vport_rep(struct mlx5_eswitch *esw,
325 int vport_index,
326 struct mlx5_eswitch_rep *rep);
327 void mlx5_eswitch_unregister_vport_rep(struct mlx5_eswitch *esw,
328 int vport_index);
329 struct net_device *mlx5_eswitch_get_uplink_netdev(struct mlx5_eswitch *esw);
330
331 int mlx5_eswitch_add_vlan_action(struct mlx5_eswitch *esw,
332 struct mlx5_esw_flow_attr *attr);
333 int mlx5_eswitch_del_vlan_action(struct mlx5_eswitch *esw,
334 struct mlx5_esw_flow_attr *attr);
335 int __mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
336 int vport, u16 vlan, u8 qos, u8 set_flags);
337
338 #define MLX5_DEBUG_ESWITCH_MASK BIT(3)
339
340 #define esw_info(dev, format, ...) \
341 pr_info("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
342
343 #define esw_warn(dev, format, ...) \
344 pr_warn("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
345
346 #define esw_debug(dev, format, ...) \
347 mlx5_core_dbg_mask(dev, MLX5_DEBUG_ESWITCH_MASK, format, ##__VA_ARGS__)
348 #endif /* __MLX5_ESWITCH_H__ */