1 // SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB
2 /* Copyright (c) 2025 NVIDIA Corporation & Affiliates */
3
4 #include <linux/mlx5/vport.h>
5 #include <mlx5_core.h>
6 #include <fs_core.h>
7 #include <fs_cmd.h>
8 #include "fs_hws_pools.h"
9 #include "mlx5hws.h"
10
11 #define MLX5HWS_CTX_MAX_NUM_OF_QUEUES 16
12 #define MLX5HWS_CTX_QUEUE_SIZE 256
13
14 static struct mlx5hws_action *
15 mlx5_fs_create_action_remove_header_vlan(struct mlx5hws_context *ctx);
16 static void
17 mlx5_fs_destroy_pr_pool(struct mlx5_fs_pool *pool, struct xarray *pr_pools,
18 unsigned long index);
19 static void
20 mlx5_fs_destroy_mh_pool(struct mlx5_fs_pool *pool, struct xarray *mh_pools,
21 unsigned long index);
22
mlx5_fs_init_hws_actions_pool(struct mlx5_core_dev * dev,struct mlx5_fs_hws_context * fs_ctx)23 static int mlx5_fs_init_hws_actions_pool(struct mlx5_core_dev *dev,
24 struct mlx5_fs_hws_context *fs_ctx)
25 {
26 u32 flags = MLX5HWS_ACTION_FLAG_HWS_FDB | MLX5HWS_ACTION_FLAG_SHARED;
27 struct mlx5_fs_hws_actions_pool *hws_pool = &fs_ctx->hws_pool;
28 struct mlx5hws_action_reformat_header reformat_hdr = {};
29 struct mlx5hws_context *ctx = fs_ctx->hws_ctx;
30 enum mlx5hws_action_type action_type;
31 int err = -ENOSPC;
32
33 hws_pool->tag_action = mlx5hws_action_create_tag(ctx, flags);
34 if (!hws_pool->tag_action)
35 return err;
36 hws_pool->pop_vlan_action = mlx5hws_action_create_pop_vlan(ctx, flags);
37 if (!hws_pool->pop_vlan_action)
38 goto destroy_tag;
39 hws_pool->push_vlan_action = mlx5hws_action_create_push_vlan(ctx, flags);
40 if (!hws_pool->push_vlan_action)
41 goto destroy_pop_vlan;
42 hws_pool->drop_action = mlx5hws_action_create_dest_drop(ctx, flags);
43 if (!hws_pool->drop_action)
44 goto destroy_push_vlan;
45 action_type = MLX5HWS_ACTION_TYP_REFORMAT_TNL_L2_TO_L2;
46 hws_pool->decapl2_action =
47 mlx5hws_action_create_reformat(ctx, action_type, 1,
48 &reformat_hdr, 0, flags);
49 if (!hws_pool->decapl2_action)
50 goto destroy_drop;
51 hws_pool->remove_hdr_vlan_action =
52 mlx5_fs_create_action_remove_header_vlan(ctx);
53 if (!hws_pool->remove_hdr_vlan_action)
54 goto destroy_decapl2;
55 err = mlx5_fs_hws_pr_pool_init(&hws_pool->insert_hdr_pool, dev, 0,
56 MLX5HWS_ACTION_TYP_INSERT_HEADER);
57 if (err)
58 goto destroy_remove_hdr;
59 err = mlx5_fs_hws_pr_pool_init(&hws_pool->dl3tnltol2_pool, dev, 0,
60 MLX5HWS_ACTION_TYP_REFORMAT_TNL_L3_TO_L2);
61 if (err)
62 goto cleanup_insert_hdr;
63 xa_init(&hws_pool->el2tol3tnl_pools);
64 xa_init(&hws_pool->el2tol2tnl_pools);
65 xa_init(&hws_pool->mh_pools);
66 xa_init(&hws_pool->table_dests);
67 xa_init(&hws_pool->vport_dests);
68 xa_init(&hws_pool->vport_vhca_dests);
69 xa_init(&hws_pool->aso_meters);
70 xa_init(&hws_pool->sample_dests);
71 return 0;
72
73 cleanup_insert_hdr:
74 mlx5_fs_hws_pr_pool_cleanup(&hws_pool->insert_hdr_pool);
75 destroy_remove_hdr:
76 mlx5hws_action_destroy(hws_pool->remove_hdr_vlan_action);
77 destroy_decapl2:
78 mlx5hws_action_destroy(hws_pool->decapl2_action);
79 destroy_drop:
80 mlx5hws_action_destroy(hws_pool->drop_action);
81 destroy_push_vlan:
82 mlx5hws_action_destroy(hws_pool->push_vlan_action);
83 destroy_pop_vlan:
84 mlx5hws_action_destroy(hws_pool->pop_vlan_action);
85 destroy_tag:
86 mlx5hws_action_destroy(hws_pool->tag_action);
87 return err;
88 }
89
mlx5_fs_cleanup_hws_actions_pool(struct mlx5_fs_hws_context * fs_ctx)90 static void mlx5_fs_cleanup_hws_actions_pool(struct mlx5_fs_hws_context *fs_ctx)
91 {
92 struct mlx5_fs_hws_actions_pool *hws_pool = &fs_ctx->hws_pool;
93 struct mlx5_fs_hws_data *fs_hws_data;
94 struct mlx5hws_action *action;
95 struct mlx5_fs_pool *pool;
96 unsigned long i;
97
98 xa_for_each(&hws_pool->sample_dests, i, fs_hws_data)
99 kfree(fs_hws_data);
100 xa_destroy(&hws_pool->sample_dests);
101 xa_for_each(&hws_pool->aso_meters, i, fs_hws_data)
102 kfree(fs_hws_data);
103 xa_destroy(&hws_pool->aso_meters);
104 xa_for_each(&hws_pool->vport_vhca_dests, i, action)
105 mlx5hws_action_destroy(action);
106 xa_destroy(&hws_pool->vport_vhca_dests);
107 xa_for_each(&hws_pool->vport_dests, i, action)
108 mlx5hws_action_destroy(action);
109 xa_destroy(&hws_pool->vport_dests);
110 xa_destroy(&hws_pool->table_dests);
111 xa_for_each(&hws_pool->mh_pools, i, pool)
112 mlx5_fs_destroy_mh_pool(pool, &hws_pool->mh_pools, i);
113 xa_destroy(&hws_pool->mh_pools);
114 xa_for_each(&hws_pool->el2tol2tnl_pools, i, pool)
115 mlx5_fs_destroy_pr_pool(pool, &hws_pool->el2tol2tnl_pools, i);
116 xa_destroy(&hws_pool->el2tol2tnl_pools);
117 xa_for_each(&hws_pool->el2tol3tnl_pools, i, pool)
118 mlx5_fs_destroy_pr_pool(pool, &hws_pool->el2tol3tnl_pools, i);
119 xa_destroy(&hws_pool->el2tol3tnl_pools);
120 mlx5_fs_hws_pr_pool_cleanup(&hws_pool->dl3tnltol2_pool);
121 mlx5_fs_hws_pr_pool_cleanup(&hws_pool->insert_hdr_pool);
122 mlx5hws_action_destroy(hws_pool->remove_hdr_vlan_action);
123 mlx5hws_action_destroy(hws_pool->decapl2_action);
124 mlx5hws_action_destroy(hws_pool->drop_action);
125 mlx5hws_action_destroy(hws_pool->push_vlan_action);
126 mlx5hws_action_destroy(hws_pool->pop_vlan_action);
127 mlx5hws_action_destroy(hws_pool->tag_action);
128 }
129
mlx5_cmd_hws_create_ns(struct mlx5_flow_root_namespace * ns)130 static int mlx5_cmd_hws_create_ns(struct mlx5_flow_root_namespace *ns)
131 {
132 struct mlx5hws_context_attr hws_ctx_attr = {};
133 int err;
134
135 hws_ctx_attr.queues = min_t(int, num_online_cpus(),
136 MLX5HWS_CTX_MAX_NUM_OF_QUEUES);
137 hws_ctx_attr.queue_size = MLX5HWS_CTX_QUEUE_SIZE;
138
139 ns->fs_hws_context.hws_ctx =
140 mlx5hws_context_open(ns->dev, &hws_ctx_attr);
141 if (!ns->fs_hws_context.hws_ctx) {
142 mlx5_core_err(ns->dev, "Failed to create hws flow namespace\n");
143 return -EINVAL;
144 }
145 err = mlx5_fs_init_hws_actions_pool(ns->dev, &ns->fs_hws_context);
146 if (err) {
147 mlx5_core_err(ns->dev, "Failed to init hws actions pool\n");
148 mlx5hws_context_close(ns->fs_hws_context.hws_ctx);
149 return err;
150 }
151 return 0;
152 }
153
mlx5_cmd_hws_destroy_ns(struct mlx5_flow_root_namespace * ns)154 static int mlx5_cmd_hws_destroy_ns(struct mlx5_flow_root_namespace *ns)
155 {
156 mlx5_fs_cleanup_hws_actions_pool(&ns->fs_hws_context);
157 return mlx5hws_context_close(ns->fs_hws_context.hws_ctx);
158 }
159
mlx5_cmd_hws_set_peer(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_root_namespace * peer_ns,u16 peer_vhca_id)160 static int mlx5_cmd_hws_set_peer(struct mlx5_flow_root_namespace *ns,
161 struct mlx5_flow_root_namespace *peer_ns,
162 u16 peer_vhca_id)
163 {
164 struct mlx5hws_context *peer_ctx = NULL;
165
166 if (peer_ns)
167 peer_ctx = peer_ns->fs_hws_context.hws_ctx;
168 mlx5hws_context_set_peer(ns->fs_hws_context.hws_ctx, peer_ctx,
169 peer_vhca_id);
170 return 0;
171 }
172
mlx5_fs_set_ft_default_miss(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft,struct mlx5_flow_table * next_ft)173 static int mlx5_fs_set_ft_default_miss(struct mlx5_flow_root_namespace *ns,
174 struct mlx5_flow_table *ft,
175 struct mlx5_flow_table *next_ft)
176 {
177 struct mlx5hws_table *next_tbl;
178 int err;
179
180 if (!ns->fs_hws_context.hws_ctx)
181 return -EINVAL;
182
183 /* if no change required, return */
184 if (!next_ft && !ft->fs_hws_table.miss_ft_set)
185 return 0;
186
187 next_tbl = next_ft ? next_ft->fs_hws_table.hws_table : NULL;
188 err = mlx5hws_table_set_default_miss(ft->fs_hws_table.hws_table, next_tbl);
189 if (err) {
190 mlx5_core_err(ns->dev, "Failed setting FT default miss (%d)\n", err);
191 return err;
192 }
193 ft->fs_hws_table.miss_ft_set = !!next_tbl;
194 return 0;
195 }
196
mlx5_fs_add_flow_table_dest_action(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft)197 static int mlx5_fs_add_flow_table_dest_action(struct mlx5_flow_root_namespace *ns,
198 struct mlx5_flow_table *ft)
199 {
200 u32 flags = MLX5HWS_ACTION_FLAG_HWS_FDB | MLX5HWS_ACTION_FLAG_SHARED;
201 struct mlx5_fs_hws_context *fs_ctx = &ns->fs_hws_context;
202 struct mlx5hws_action *dest_ft_action;
203 struct xarray *dests_xa;
204 int err;
205
206 dest_ft_action = mlx5hws_action_create_dest_table_num(fs_ctx->hws_ctx,
207 ft->id, flags);
208 if (!dest_ft_action) {
209 mlx5_core_err(ns->dev, "Failed creating dest table action\n");
210 return -ENOMEM;
211 }
212
213 dests_xa = &fs_ctx->hws_pool.table_dests;
214 err = xa_insert(dests_xa, ft->id, dest_ft_action, GFP_KERNEL);
215 if (err)
216 mlx5hws_action_destroy(dest_ft_action);
217 return err;
218 }
219
mlx5_fs_del_flow_table_dest_action(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft)220 static int mlx5_fs_del_flow_table_dest_action(struct mlx5_flow_root_namespace *ns,
221 struct mlx5_flow_table *ft)
222 {
223 struct mlx5_fs_hws_context *fs_ctx = &ns->fs_hws_context;
224 struct mlx5hws_action *dest_ft_action;
225 struct xarray *dests_xa;
226 int err;
227
228 dests_xa = &fs_ctx->hws_pool.table_dests;
229 dest_ft_action = xa_erase(dests_xa, ft->id);
230 if (!dest_ft_action) {
231 mlx5_core_err(ns->dev, "Failed to erase dest ft action\n");
232 return -ENOENT;
233 }
234
235 err = mlx5hws_action_destroy(dest_ft_action);
236 if (err)
237 mlx5_core_err(ns->dev, "Failed to destroy dest ft action\n");
238 return err;
239 }
240
mlx5_cmd_hws_create_flow_table(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft,struct mlx5_flow_table_attr * ft_attr,struct mlx5_flow_table * next_ft)241 static int mlx5_cmd_hws_create_flow_table(struct mlx5_flow_root_namespace *ns,
242 struct mlx5_flow_table *ft,
243 struct mlx5_flow_table_attr *ft_attr,
244 struct mlx5_flow_table *next_ft)
245 {
246 struct mlx5hws_context *ctx = ns->fs_hws_context.hws_ctx;
247 struct mlx5hws_table_attr tbl_attr = {};
248 struct mlx5hws_table *tbl;
249 int err;
250
251 if (mlx5_fs_cmd_is_fw_term_table(ft)) {
252 err = mlx5_fs_cmd_get_fw_cmds()->create_flow_table(ns, ft, ft_attr,
253 next_ft);
254 if (err)
255 return err;
256 err = mlx5_fs_add_flow_table_dest_action(ns, ft);
257 if (err)
258 mlx5_fs_cmd_get_fw_cmds()->destroy_flow_table(ns, ft);
259 return err;
260 }
261
262 if (ns->table_type != FS_FT_FDB) {
263 mlx5_core_err(ns->dev, "Table type %d not supported for HWS\n",
264 ns->table_type);
265 return -EOPNOTSUPP;
266 }
267
268 tbl_attr.type = MLX5HWS_TABLE_TYPE_FDB;
269 tbl_attr.level = ft_attr->level;
270 tbl_attr.uid = ft_attr->uid;
271 tbl = mlx5hws_table_create(ctx, &tbl_attr);
272 if (!tbl) {
273 mlx5_core_err(ns->dev, "Failed creating hws flow_table\n");
274 return -EINVAL;
275 }
276
277 ft->fs_hws_table.hws_table = tbl;
278 ft->id = mlx5hws_table_get_id(tbl);
279
280 if (next_ft) {
281 err = mlx5_fs_set_ft_default_miss(ns, ft, next_ft);
282 if (err)
283 goto destroy_table;
284 }
285
286 ft->max_fte = INT_MAX;
287
288 err = mlx5_fs_add_flow_table_dest_action(ns, ft);
289 if (err)
290 goto clear_ft_miss;
291 return 0;
292
293 clear_ft_miss:
294 mlx5_fs_set_ft_default_miss(ns, ft, NULL);
295 destroy_table:
296 mlx5hws_table_destroy(tbl);
297 ft->fs_hws_table.hws_table = NULL;
298 return err;
299 }
300
mlx5_cmd_hws_destroy_flow_table(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft)301 static int mlx5_cmd_hws_destroy_flow_table(struct mlx5_flow_root_namespace *ns,
302 struct mlx5_flow_table *ft)
303 {
304 int err;
305
306 err = mlx5_fs_del_flow_table_dest_action(ns, ft);
307 if (err)
308 mlx5_core_err(ns->dev, "Failed to remove dest action (%d)\n", err);
309
310 if (mlx5_fs_cmd_is_fw_term_table(ft))
311 return mlx5_fs_cmd_get_fw_cmds()->destroy_flow_table(ns, ft);
312
313 err = mlx5_fs_set_ft_default_miss(ns, ft, NULL);
314 if (err)
315 mlx5_core_err(ns->dev, "Failed to disconnect next table (%d)\n", err);
316
317 err = mlx5hws_table_destroy(ft->fs_hws_table.hws_table);
318 if (err)
319 mlx5_core_err(ns->dev, "Failed to destroy flow_table (%d)\n", err);
320
321 return err;
322 }
323
mlx5_cmd_hws_modify_flow_table(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft,struct mlx5_flow_table * next_ft)324 static int mlx5_cmd_hws_modify_flow_table(struct mlx5_flow_root_namespace *ns,
325 struct mlx5_flow_table *ft,
326 struct mlx5_flow_table *next_ft)
327 {
328 if (mlx5_fs_cmd_is_fw_term_table(ft))
329 return mlx5_fs_cmd_get_fw_cmds()->modify_flow_table(ns, ft, next_ft);
330
331 return mlx5_fs_set_ft_default_miss(ns, ft, next_ft);
332 }
333
mlx5_cmd_hws_update_root_ft(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft,u32 underlay_qpn,bool disconnect)334 static int mlx5_cmd_hws_update_root_ft(struct mlx5_flow_root_namespace *ns,
335 struct mlx5_flow_table *ft,
336 u32 underlay_qpn,
337 bool disconnect)
338 {
339 return mlx5_fs_cmd_get_fw_cmds()->update_root_ft(ns, ft, underlay_qpn,
340 disconnect);
341 }
342
mlx5_cmd_hws_create_flow_group(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft,u32 * in,struct mlx5_flow_group * fg)343 static int mlx5_cmd_hws_create_flow_group(struct mlx5_flow_root_namespace *ns,
344 struct mlx5_flow_table *ft, u32 *in,
345 struct mlx5_flow_group *fg)
346 {
347 struct mlx5hws_match_parameters mask;
348 struct mlx5hws_bwc_matcher *matcher;
349 u8 match_criteria_enable;
350 u32 priority;
351
352 if (mlx5_fs_cmd_is_fw_term_table(ft))
353 return mlx5_fs_cmd_get_fw_cmds()->create_flow_group(ns, ft, in, fg);
354
355 mask.match_buf = MLX5_ADDR_OF(create_flow_group_in, in, match_criteria);
356 mask.match_sz = sizeof(fg->mask.match_criteria);
357
358 match_criteria_enable = MLX5_GET(create_flow_group_in, in,
359 match_criteria_enable);
360 priority = MLX5_GET(create_flow_group_in, in, start_flow_index);
361 matcher = mlx5hws_bwc_matcher_create(ft->fs_hws_table.hws_table,
362 priority, match_criteria_enable,
363 &mask);
364 if (!matcher) {
365 mlx5_core_err(ns->dev, "Failed creating matcher\n");
366 return -EINVAL;
367 }
368
369 fg->fs_hws_matcher.matcher = matcher;
370 return 0;
371 }
372
mlx5_cmd_hws_destroy_flow_group(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft,struct mlx5_flow_group * fg)373 static int mlx5_cmd_hws_destroy_flow_group(struct mlx5_flow_root_namespace *ns,
374 struct mlx5_flow_table *ft,
375 struct mlx5_flow_group *fg)
376 {
377 if (mlx5_fs_cmd_is_fw_term_table(ft))
378 return mlx5_fs_cmd_get_fw_cmds()->destroy_flow_group(ns, ft, fg);
379
380 return mlx5hws_bwc_matcher_destroy(fg->fs_hws_matcher.matcher);
381 }
382
383 static struct mlx5hws_action *
mlx5_fs_get_dest_action_ft(struct mlx5_fs_hws_context * fs_ctx,struct mlx5_flow_rule * dst)384 mlx5_fs_get_dest_action_ft(struct mlx5_fs_hws_context *fs_ctx,
385 struct mlx5_flow_rule *dst)
386 {
387 return xa_load(&fs_ctx->hws_pool.table_dests, dst->dest_attr.ft->id);
388 }
389
390 static struct mlx5hws_action *
mlx5_fs_get_dest_action_table_num(struct mlx5_fs_hws_context * fs_ctx,struct mlx5_flow_rule * dst)391 mlx5_fs_get_dest_action_table_num(struct mlx5_fs_hws_context *fs_ctx,
392 struct mlx5_flow_rule *dst)
393 {
394 u32 table_num = dst->dest_attr.ft_num;
395
396 return xa_load(&fs_ctx->hws_pool.table_dests, table_num);
397 }
398
399 static struct mlx5hws_action *
mlx5_fs_create_dest_action_table_num(struct mlx5_fs_hws_context * fs_ctx,struct mlx5_flow_rule * dst)400 mlx5_fs_create_dest_action_table_num(struct mlx5_fs_hws_context *fs_ctx,
401 struct mlx5_flow_rule *dst)
402 {
403 u32 flags = MLX5HWS_ACTION_FLAG_HWS_FDB | MLX5HWS_ACTION_FLAG_SHARED;
404 struct mlx5hws_context *ctx = fs_ctx->hws_ctx;
405 u32 table_num = dst->dest_attr.ft_num;
406
407 return mlx5hws_action_create_dest_table_num(ctx, table_num, flags);
408 }
409
410 static struct mlx5hws_action *
mlx5_fs_get_dest_action_vport(struct mlx5_fs_hws_context * fs_ctx,struct mlx5_flow_rule * dst,bool is_dest_type_uplink)411 mlx5_fs_get_dest_action_vport(struct mlx5_fs_hws_context *fs_ctx,
412 struct mlx5_flow_rule *dst,
413 bool is_dest_type_uplink)
414 {
415 u32 flags = MLX5HWS_ACTION_FLAG_HWS_FDB | MLX5HWS_ACTION_FLAG_SHARED;
416 struct mlx5_flow_destination *dest_attr = &dst->dest_attr;
417 struct mlx5hws_context *ctx = fs_ctx->hws_ctx;
418 struct mlx5hws_action *dest;
419 struct xarray *dests_xa;
420 bool vhca_id_valid;
421 unsigned long idx;
422 u16 vport_num;
423 int err;
424
425 vhca_id_valid = is_dest_type_uplink ||
426 (dest_attr->vport.flags & MLX5_FLOW_DEST_VPORT_VHCA_ID);
427 vport_num = is_dest_type_uplink ? MLX5_VPORT_UPLINK : dest_attr->vport.num;
428 if (vhca_id_valid) {
429 dests_xa = &fs_ctx->hws_pool.vport_vhca_dests;
430 idx = (unsigned long)dest_attr->vport.vhca_id << 16 | vport_num;
431 } else {
432 dests_xa = &fs_ctx->hws_pool.vport_dests;
433 idx = vport_num;
434 }
435 dest_load:
436 dest = xa_load(dests_xa, idx);
437 if (dest)
438 return dest;
439
440 dest = mlx5hws_action_create_dest_vport(ctx, vport_num, vhca_id_valid,
441 dest_attr->vport.vhca_id, flags);
442
443 err = xa_insert(dests_xa, idx, dest, GFP_KERNEL);
444 if (err) {
445 mlx5hws_action_destroy(dest);
446 dest = NULL;
447
448 if (err == -EBUSY)
449 /* xarray entry was already stored by another thread */
450 goto dest_load;
451 }
452
453 return dest;
454 }
455
456 static struct mlx5hws_action *
mlx5_fs_create_dest_action_range(struct mlx5hws_context * ctx,struct mlx5_flow_rule * dst)457 mlx5_fs_create_dest_action_range(struct mlx5hws_context *ctx,
458 struct mlx5_flow_rule *dst)
459 {
460 u32 flags = MLX5HWS_ACTION_FLAG_HWS_FDB | MLX5HWS_ACTION_FLAG_SHARED;
461 struct mlx5_flow_destination *dest_attr = &dst->dest_attr;
462
463 return mlx5hws_action_create_dest_match_range(ctx,
464 dest_attr->range.field,
465 dest_attr->range.hit_ft,
466 dest_attr->range.miss_ft,
467 dest_attr->range.min,
468 dest_attr->range.max,
469 flags);
470 }
471
472 static struct mlx5_fs_hws_data *
mlx5_fs_get_cached_hws_data(struct xarray * cache_xa,unsigned long index)473 mlx5_fs_get_cached_hws_data(struct xarray *cache_xa, unsigned long index)
474 {
475 struct mlx5_fs_hws_data *fs_hws_data;
476 int err;
477
478 xa_lock(cache_xa);
479 fs_hws_data = xa_load(cache_xa, index);
480 if (!fs_hws_data) {
481 fs_hws_data = kzalloc_obj(*fs_hws_data, GFP_ATOMIC);
482 if (!fs_hws_data) {
483 xa_unlock(cache_xa);
484 return NULL;
485 }
486 refcount_set(&fs_hws_data->hws_action_refcount, 0);
487 mutex_init(&fs_hws_data->lock);
488 err = __xa_insert(cache_xa, index, fs_hws_data, GFP_ATOMIC);
489 if (err) {
490 kfree(fs_hws_data);
491 xa_unlock(cache_xa);
492 return NULL;
493 }
494 }
495 xa_unlock(cache_xa);
496
497 return fs_hws_data;
498 }
499
500 static struct mlx5hws_action *
mlx5_fs_get_action_aso_meter(struct mlx5_fs_hws_context * fs_ctx,struct mlx5_exe_aso * exe_aso)501 mlx5_fs_get_action_aso_meter(struct mlx5_fs_hws_context *fs_ctx,
502 struct mlx5_exe_aso *exe_aso)
503 {
504 struct mlx5_fs_hws_create_action_ctx create_ctx;
505 struct mlx5hws_context *ctx = fs_ctx->hws_ctx;
506 struct mlx5_fs_hws_data *meter_hws_data;
507 u32 id = exe_aso->base_id;
508 struct xarray *meters_xa;
509
510 meters_xa = &fs_ctx->hws_pool.aso_meters;
511 meter_hws_data = mlx5_fs_get_cached_hws_data(meters_xa, id);
512 if (!meter_hws_data)
513 return NULL;
514
515 create_ctx.hws_ctx = ctx;
516 create_ctx.actions_type = MLX5HWS_ACTION_TYP_ASO_METER;
517 create_ctx.id = id;
518 create_ctx.return_reg_id = exe_aso->return_reg_id;
519
520 return mlx5_fs_get_hws_action(meter_hws_data, &create_ctx);
521 }
522
mlx5_fs_put_action_aso_meter(struct mlx5_fs_hws_context * fs_ctx,struct mlx5_exe_aso * exe_aso)523 static void mlx5_fs_put_action_aso_meter(struct mlx5_fs_hws_context *fs_ctx,
524 struct mlx5_exe_aso *exe_aso)
525 {
526 struct mlx5_fs_hws_data *meter_hws_data;
527 struct xarray *meters_xa;
528
529 meters_xa = &fs_ctx->hws_pool.aso_meters;
530 meter_hws_data = xa_load(meters_xa, exe_aso->base_id);
531 if (!meter_hws_data)
532 return;
533 return mlx5_fs_put_hws_action(meter_hws_data);
534 }
535
536 static struct mlx5hws_action *
mlx5_fs_get_dest_action_sampler(struct mlx5_fs_hws_context * fs_ctx,struct mlx5_flow_rule * dst)537 mlx5_fs_get_dest_action_sampler(struct mlx5_fs_hws_context *fs_ctx,
538 struct mlx5_flow_rule *dst)
539 {
540 struct mlx5_fs_hws_create_action_ctx create_ctx;
541 struct mlx5hws_context *ctx = fs_ctx->hws_ctx;
542 struct mlx5_fs_hws_data *sampler_hws_data;
543 u32 id = dst->dest_attr.sampler_id;
544 struct xarray *sampler_xa;
545
546 sampler_xa = &fs_ctx->hws_pool.sample_dests;
547 sampler_hws_data = mlx5_fs_get_cached_hws_data(sampler_xa, id);
548 if (!sampler_hws_data)
549 return NULL;
550
551 create_ctx.hws_ctx = ctx;
552 create_ctx.actions_type = MLX5HWS_ACTION_TYP_SAMPLER;
553 create_ctx.id = id;
554
555 return mlx5_fs_get_hws_action(sampler_hws_data, &create_ctx);
556 }
557
mlx5_fs_put_dest_action_sampler(struct mlx5_fs_hws_context * fs_ctx,u32 sampler_id)558 static void mlx5_fs_put_dest_action_sampler(struct mlx5_fs_hws_context *fs_ctx,
559 u32 sampler_id)
560 {
561 struct mlx5_fs_hws_data *sampler_hws_data;
562 struct xarray *sampler_xa;
563
564 sampler_xa = &fs_ctx->hws_pool.sample_dests;
565 sampler_hws_data = xa_load(sampler_xa, sampler_id);
566 if (!sampler_hws_data)
567 return;
568
569 mlx5_fs_put_hws_action(sampler_hws_data);
570 }
571
572 static struct mlx5hws_action *
mlx5_fs_create_action_dest_array(struct mlx5hws_context * ctx,struct mlx5hws_action_dest_attr * dests,u32 num_of_dests)573 mlx5_fs_create_action_dest_array(struct mlx5hws_context *ctx,
574 struct mlx5hws_action_dest_attr *dests,
575 u32 num_of_dests)
576 {
577 u32 flags = MLX5HWS_ACTION_FLAG_HWS_FDB | MLX5HWS_ACTION_FLAG_SHARED;
578
579 return mlx5hws_action_create_dest_array(ctx, num_of_dests, dests,
580 flags);
581 }
582
583 static struct mlx5hws_action *
mlx5_fs_get_action_push_vlan(struct mlx5_fs_hws_context * fs_ctx)584 mlx5_fs_get_action_push_vlan(struct mlx5_fs_hws_context *fs_ctx)
585 {
586 return fs_ctx->hws_pool.push_vlan_action;
587 }
588
mlx5_fs_calc_vlan_hdr(struct mlx5_fs_vlan * vlan)589 static u32 mlx5_fs_calc_vlan_hdr(struct mlx5_fs_vlan *vlan)
590 {
591 u16 n_ethtype = vlan->ethtype;
592 u8 prio = vlan->prio;
593 u16 vid = vlan->vid;
594
595 return (u32)n_ethtype << 16 | (u32)(prio) << 12 | (u32)vid;
596 }
597
598 static struct mlx5hws_action *
mlx5_fs_get_action_pop_vlan(struct mlx5_fs_hws_context * fs_ctx)599 mlx5_fs_get_action_pop_vlan(struct mlx5_fs_hws_context *fs_ctx)
600 {
601 return fs_ctx->hws_pool.pop_vlan_action;
602 }
603
604 static struct mlx5hws_action *
mlx5_fs_get_action_decap_tnl_l2_to_l2(struct mlx5_fs_hws_context * fs_ctx)605 mlx5_fs_get_action_decap_tnl_l2_to_l2(struct mlx5_fs_hws_context *fs_ctx)
606 {
607 return fs_ctx->hws_pool.decapl2_action;
608 }
609
610 static struct mlx5hws_action *
mlx5_fs_get_dest_action_drop(struct mlx5_fs_hws_context * fs_ctx)611 mlx5_fs_get_dest_action_drop(struct mlx5_fs_hws_context *fs_ctx)
612 {
613 return fs_ctx->hws_pool.drop_action;
614 }
615
616 static struct mlx5hws_action *
mlx5_fs_get_action_tag(struct mlx5_fs_hws_context * fs_ctx)617 mlx5_fs_get_action_tag(struct mlx5_fs_hws_context *fs_ctx)
618 {
619 return fs_ctx->hws_pool.tag_action;
620 }
621
622 static struct mlx5hws_action *
mlx5_fs_create_action_last(struct mlx5hws_context * ctx)623 mlx5_fs_create_action_last(struct mlx5hws_context *ctx)
624 {
625 u32 flags = MLX5HWS_ACTION_FLAG_HWS_FDB | MLX5HWS_ACTION_FLAG_SHARED;
626
627 return mlx5hws_action_create_last(ctx, flags);
628 }
629
630 static struct mlx5hws_action *
mlx5_fs_create_hws_action(struct mlx5_fs_hws_create_action_ctx * create_ctx)631 mlx5_fs_create_hws_action(struct mlx5_fs_hws_create_action_ctx *create_ctx)
632 {
633 u32 flags = MLX5HWS_ACTION_FLAG_HWS_FDB | MLX5HWS_ACTION_FLAG_SHARED;
634
635 switch (create_ctx->actions_type) {
636 case MLX5HWS_ACTION_TYP_CTR:
637 return mlx5hws_action_create_counter(create_ctx->hws_ctx,
638 create_ctx->id, flags);
639 case MLX5HWS_ACTION_TYP_ASO_METER:
640 return mlx5hws_action_create_aso_meter(create_ctx->hws_ctx,
641 create_ctx->id,
642 create_ctx->return_reg_id,
643 flags);
644 case MLX5HWS_ACTION_TYP_SAMPLER:
645 return mlx5hws_action_create_flow_sampler(create_ctx->hws_ctx,
646 create_ctx->id, flags);
647 default:
648 return NULL;
649 }
650 }
651
652 struct mlx5hws_action *
mlx5_fs_get_hws_action(struct mlx5_fs_hws_data * fs_hws_data,struct mlx5_fs_hws_create_action_ctx * create_ctx)653 mlx5_fs_get_hws_action(struct mlx5_fs_hws_data *fs_hws_data,
654 struct mlx5_fs_hws_create_action_ctx *create_ctx)
655 {
656 /* try avoid locking if not necessary */
657 if (refcount_inc_not_zero(&fs_hws_data->hws_action_refcount))
658 return fs_hws_data->hws_action;
659
660 mutex_lock(&fs_hws_data->lock);
661 if (refcount_inc_not_zero(&fs_hws_data->hws_action_refcount)) {
662 mutex_unlock(&fs_hws_data->lock);
663 return fs_hws_data->hws_action;
664 }
665 fs_hws_data->hws_action = mlx5_fs_create_hws_action(create_ctx);
666 if (!fs_hws_data->hws_action) {
667 mutex_unlock(&fs_hws_data->lock);
668 return NULL;
669 }
670 refcount_set(&fs_hws_data->hws_action_refcount, 1);
671 mutex_unlock(&fs_hws_data->lock);
672
673 return fs_hws_data->hws_action;
674 }
675
mlx5_fs_put_hws_action(struct mlx5_fs_hws_data * fs_hws_data)676 void mlx5_fs_put_hws_action(struct mlx5_fs_hws_data *fs_hws_data)
677 {
678 if (!fs_hws_data)
679 return;
680
681 /* try avoid locking if not necessary */
682 if (refcount_dec_not_one(&fs_hws_data->hws_action_refcount))
683 return;
684
685 mutex_lock(&fs_hws_data->lock);
686 if (!refcount_dec_and_test(&fs_hws_data->hws_action_refcount)) {
687 mutex_unlock(&fs_hws_data->lock);
688 return;
689 }
690 mlx5hws_action_destroy(fs_hws_data->hws_action);
691 fs_hws_data->hws_action = NULL;
692 mutex_unlock(&fs_hws_data->lock);
693 }
694
mlx5_fs_destroy_fs_action(struct mlx5_flow_root_namespace * ns,struct mlx5_fs_hws_rule_action * fs_action)695 static void mlx5_fs_destroy_fs_action(struct mlx5_flow_root_namespace *ns,
696 struct mlx5_fs_hws_rule_action *fs_action)
697 {
698 struct mlx5_fs_hws_context *fs_ctx = &ns->fs_hws_context;
699
700 switch (mlx5hws_action_get_type(fs_action->action)) {
701 case MLX5HWS_ACTION_TYP_CTR:
702 mlx5_fc_put_hws_action(fs_action->counter);
703 break;
704 case MLX5HWS_ACTION_TYP_ASO_METER:
705 mlx5_fs_put_action_aso_meter(fs_ctx, fs_action->exe_aso);
706 break;
707 case MLX5HWS_ACTION_TYP_SAMPLER:
708 mlx5_fs_put_dest_action_sampler(fs_ctx, fs_action->sampler_id);
709 break;
710 default:
711 mlx5hws_action_destroy(fs_action->action);
712 }
713 }
714
715 static void
mlx5_fs_destroy_fs_actions(struct mlx5_flow_root_namespace * ns,struct mlx5_fs_hws_rule_action ** fs_actions,int * num_fs_actions)716 mlx5_fs_destroy_fs_actions(struct mlx5_flow_root_namespace *ns,
717 struct mlx5_fs_hws_rule_action **fs_actions,
718 int *num_fs_actions)
719 {
720 int i;
721
722 /* Free in reverse order to handle action dependencies */
723 for (i = *num_fs_actions - 1; i >= 0; i--)
724 mlx5_fs_destroy_fs_action(ns, *fs_actions + i);
725 *num_fs_actions = 0;
726 kfree(*fs_actions);
727 *fs_actions = NULL;
728 }
729
730 /* Splits FTE's actions into cached, rule and destination actions.
731 * The cached and destination actions are saved on the fte hws rule.
732 * The rule actions are returned as a parameter, together with their count.
733 * We want to support a rule with 32 destinations, which means we need to
734 * account for 32 destinations plus usually a counter plus one more action
735 * for a multi-destination flow table.
736 * 32 is SW limitation for array size, keep. HWS limitation is 16M STEs per matcher
737 */
738 #define MLX5_FLOW_CONTEXT_ACTION_MAX 34
mlx5_fs_fte_get_hws_actions(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft,struct mlx5_flow_group * group,struct fs_fte * fte,struct mlx5hws_rule_action ** ractions)739 static int mlx5_fs_fte_get_hws_actions(struct mlx5_flow_root_namespace *ns,
740 struct mlx5_flow_table *ft,
741 struct mlx5_flow_group *group,
742 struct fs_fte *fte,
743 struct mlx5hws_rule_action **ractions)
744 {
745 struct mlx5_flow_act *fte_action = &fte->act_dests.action;
746 struct mlx5_fs_hws_context *fs_ctx = &ns->fs_hws_context;
747 struct mlx5hws_action_dest_attr *dest_actions;
748 struct mlx5hws_context *ctx = fs_ctx->hws_ctx;
749 struct mlx5_fs_hws_rule_action *fs_actions;
750 struct mlx5_core_dev *dev = ns->dev;
751 struct mlx5hws_action *dest_action;
752 struct mlx5hws_action *tmp_action;
753 struct mlx5_fs_hws_pr *pr_data;
754 struct mlx5_fs_hws_mh *mh_data;
755 bool delay_encap_set = false;
756 struct mlx5_flow_rule *dst;
757 int num_dest_actions = 0;
758 int num_fs_actions = 0;
759 int num_actions = 0;
760 int err;
761
762 *ractions = kzalloc_objs(**ractions, MLX5_FLOW_CONTEXT_ACTION_MAX);
763 if (!*ractions) {
764 err = -ENOMEM;
765 goto out_err;
766 }
767
768 fs_actions = kzalloc_objs(*fs_actions, MLX5_FLOW_CONTEXT_ACTION_MAX);
769 if (!fs_actions) {
770 err = -ENOMEM;
771 goto free_actions_alloc;
772 }
773
774 dest_actions = kzalloc_objs(*dest_actions, MLX5_FLOW_CONTEXT_ACTION_MAX);
775 if (!dest_actions) {
776 err = -ENOMEM;
777 goto free_fs_actions_alloc;
778 }
779
780 /* The order of the actions are must to be kept, only the following
781 * order is supported by HW steering:
782 * HWS: decap -> remove_hdr -> pop_vlan -> modify header -> push_vlan
783 * -> reformat (insert_hdr/encap) -> ctr -> tag -> aso
784 * -> drop -> FWD:tbl/vport/sampler/tbl_num/range -> dest_array -> last
785 */
786 if (fte_action->action & MLX5_FLOW_CONTEXT_ACTION_DECAP) {
787 tmp_action = mlx5_fs_get_action_decap_tnl_l2_to_l2(fs_ctx);
788 if (!tmp_action) {
789 err = -ENOMEM;
790 goto free_dest_actions_alloc;
791 }
792 (*ractions)[num_actions++].action = tmp_action;
793 }
794
795 if (fte_action->action & MLX5_FLOW_CONTEXT_ACTION_PACKET_REFORMAT) {
796 int reformat_type = fte_action->pkt_reformat->reformat_type;
797
798 if (fte_action->pkt_reformat->owner == MLX5_FLOW_RESOURCE_OWNER_FW) {
799 mlx5_core_err(dev, "FW-owned reformat can't be used in HWS rule\n");
800 err = -EINVAL;
801 goto free_actions;
802 }
803
804 if (reformat_type == MLX5_REFORMAT_TYPE_L3_TUNNEL_TO_L2) {
805 pr_data = fte_action->pkt_reformat->fs_hws_action.pr_data;
806 (*ractions)[num_actions].reformat.offset = pr_data->offset;
807 (*ractions)[num_actions].reformat.hdr_idx = pr_data->hdr_idx;
808 (*ractions)[num_actions].reformat.data = pr_data->data;
809 (*ractions)[num_actions++].action =
810 fte_action->pkt_reformat->fs_hws_action.hws_action;
811 } else if (reformat_type == MLX5_REFORMAT_TYPE_REMOVE_HDR) {
812 (*ractions)[num_actions++].action =
813 fte_action->pkt_reformat->fs_hws_action.hws_action;
814 } else {
815 delay_encap_set = true;
816 }
817 }
818
819 if (fte_action->action & MLX5_FLOW_CONTEXT_ACTION_VLAN_POP) {
820 tmp_action = mlx5_fs_get_action_pop_vlan(fs_ctx);
821 if (!tmp_action) {
822 err = -ENOMEM;
823 goto free_actions;
824 }
825 (*ractions)[num_actions++].action = tmp_action;
826 }
827
828 if (fte_action->action & MLX5_FLOW_CONTEXT_ACTION_VLAN_POP_2) {
829 tmp_action = mlx5_fs_get_action_pop_vlan(fs_ctx);
830 if (!tmp_action) {
831 err = -ENOMEM;
832 goto free_actions;
833 }
834 (*ractions)[num_actions++].action = tmp_action;
835 }
836
837 if (fte_action->action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR) {
838 mh_data = fte_action->modify_hdr->fs_hws_action.mh_data;
839 (*ractions)[num_actions].modify_header.offset = mh_data->offset;
840 (*ractions)[num_actions].modify_header.data = mh_data->data;
841 (*ractions)[num_actions++].action =
842 fte_action->modify_hdr->fs_hws_action.hws_action;
843 }
844
845 if (fte_action->action & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH) {
846 tmp_action = mlx5_fs_get_action_push_vlan(fs_ctx);
847 if (!tmp_action) {
848 err = -ENOMEM;
849 goto free_actions;
850 }
851 (*ractions)[num_actions].push_vlan.vlan_hdr =
852 htonl(mlx5_fs_calc_vlan_hdr(&fte_action->vlan[0]));
853 (*ractions)[num_actions++].action = tmp_action;
854 }
855
856 if (fte_action->action & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH_2) {
857 tmp_action = mlx5_fs_get_action_push_vlan(fs_ctx);
858 if (!tmp_action) {
859 err = -ENOMEM;
860 goto free_actions;
861 }
862 (*ractions)[num_actions].push_vlan.vlan_hdr =
863 htonl(mlx5_fs_calc_vlan_hdr(&fte_action->vlan[1]));
864 (*ractions)[num_actions++].action = tmp_action;
865 }
866
867 if (delay_encap_set) {
868 pr_data = fte_action->pkt_reformat->fs_hws_action.pr_data;
869 (*ractions)[num_actions].reformat.offset = pr_data->offset;
870 (*ractions)[num_actions].reformat.data = pr_data->data;
871 (*ractions)[num_actions++].action =
872 fte_action->pkt_reformat->fs_hws_action.hws_action;
873 }
874
875 if (fte_action->action & MLX5_FLOW_CONTEXT_ACTION_COUNT) {
876 list_for_each_entry(dst, &fte->node.children, node.list) {
877 struct mlx5_fc *counter;
878
879 if (dst->dest_attr.type !=
880 MLX5_FLOW_DESTINATION_TYPE_COUNTER)
881 continue;
882
883 if (num_actions == MLX5_FLOW_CONTEXT_ACTION_MAX) {
884 err = -EOPNOTSUPP;
885 goto free_actions;
886 }
887
888 counter = dst->dest_attr.counter;
889 tmp_action = mlx5_fc_get_hws_action(ctx, counter);
890 if (!tmp_action) {
891 err = -EINVAL;
892 goto free_actions;
893 }
894
895 (*ractions)[num_actions].counter.offset =
896 mlx5_fc_id(counter) - mlx5_fc_get_base_id(counter);
897 (*ractions)[num_actions++].action = tmp_action;
898 fs_actions[num_fs_actions].action = tmp_action;
899 fs_actions[num_fs_actions++].counter = counter;
900 }
901 }
902
903 if (fte->act_dests.flow_context.flow_tag) {
904 if (num_actions == MLX5_FLOW_CONTEXT_ACTION_MAX) {
905 err = -EOPNOTSUPP;
906 goto free_actions;
907 }
908 tmp_action = mlx5_fs_get_action_tag(fs_ctx);
909 if (!tmp_action) {
910 err = -ENOMEM;
911 goto free_actions;
912 }
913 (*ractions)[num_actions].tag.value = fte->act_dests.flow_context.flow_tag;
914 (*ractions)[num_actions++].action = tmp_action;
915 }
916
917 if (fte_action->action & MLX5_FLOW_CONTEXT_ACTION_EXECUTE_ASO) {
918 if (fte_action->exe_aso.type != MLX5_EXE_ASO_FLOW_METER ||
919 num_actions == MLX5_FLOW_CONTEXT_ACTION_MAX) {
920 err = -EOPNOTSUPP;
921 goto free_actions;
922 }
923
924 tmp_action = mlx5_fs_get_action_aso_meter(fs_ctx,
925 &fte_action->exe_aso);
926 if (!tmp_action) {
927 err = -ENOMEM;
928 goto free_actions;
929 }
930 (*ractions)[num_actions].aso_meter.offset =
931 fte_action->exe_aso.flow_meter.meter_idx;
932 (*ractions)[num_actions].aso_meter.init_color =
933 fte_action->exe_aso.flow_meter.init_color;
934 (*ractions)[num_actions++].action = tmp_action;
935 fs_actions[num_fs_actions].action = tmp_action;
936 fs_actions[num_fs_actions++].exe_aso = &fte_action->exe_aso;
937 }
938
939 if (fte_action->action & MLX5_FLOW_CONTEXT_ACTION_DROP) {
940 dest_action = mlx5_fs_get_dest_action_drop(fs_ctx);
941 if (!dest_action) {
942 err = -ENOMEM;
943 goto free_actions;
944 }
945 dest_actions[num_dest_actions++].dest = dest_action;
946 }
947
948 if (fte_action->action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST) {
949 list_for_each_entry(dst, &fte->node.children, node.list) {
950 struct mlx5_flow_destination *attr = &dst->dest_attr;
951 bool type_uplink =
952 attr->type == MLX5_FLOW_DESTINATION_TYPE_UPLINK;
953
954 if (num_fs_actions == MLX5_FLOW_CONTEXT_ACTION_MAX ||
955 num_dest_actions == MLX5_FLOW_CONTEXT_ACTION_MAX) {
956 err = -EOPNOTSUPP;
957 goto free_actions;
958 }
959 if (attr->type == MLX5_FLOW_DESTINATION_TYPE_COUNTER)
960 continue;
961
962 switch (attr->type) {
963 case MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE:
964 dest_action = mlx5_fs_get_dest_action_ft(fs_ctx, dst);
965 if (dst->dest_attr.ft->flags &
966 MLX5_FLOW_TABLE_UPLINK_VPORT)
967 dest_actions[num_dest_actions].is_wire_ft = true;
968 break;
969 case MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE_NUM:
970 dest_action = mlx5_fs_get_dest_action_table_num(fs_ctx,
971 dst);
972 if (dest_action)
973 break;
974 dest_action = mlx5_fs_create_dest_action_table_num(fs_ctx,
975 dst);
976 fs_actions[num_fs_actions++].action = dest_action;
977 break;
978 case MLX5_FLOW_DESTINATION_TYPE_RANGE:
979 dest_action = mlx5_fs_create_dest_action_range(ctx, dst);
980 fs_actions[num_fs_actions++].action = dest_action;
981 break;
982 case MLX5_FLOW_DESTINATION_TYPE_UPLINK:
983 case MLX5_FLOW_DESTINATION_TYPE_VPORT:
984 dest_action = mlx5_fs_get_dest_action_vport(fs_ctx, dst,
985 type_uplink);
986 break;
987 case MLX5_FLOW_DESTINATION_TYPE_FLOW_SAMPLER:
988 dest_action =
989 mlx5_fs_get_dest_action_sampler(fs_ctx,
990 dst);
991 fs_actions[num_fs_actions].action = dest_action;
992 fs_actions[num_fs_actions++].sampler_id =
993 dst->dest_attr.sampler_id;
994 break;
995 default:
996 err = -EOPNOTSUPP;
997 goto free_actions;
998 }
999 if (!dest_action) {
1000 err = -ENOMEM;
1001 goto free_actions;
1002 }
1003 dest_actions[num_dest_actions++].dest = dest_action;
1004 }
1005 }
1006
1007 if (num_dest_actions == 1) {
1008 if (num_actions == MLX5_FLOW_CONTEXT_ACTION_MAX) {
1009 err = -EOPNOTSUPP;
1010 goto free_actions;
1011 }
1012 (*ractions)[num_actions++].action = dest_actions->dest;
1013 } else if (num_dest_actions > 1) {
1014 if (num_actions == MLX5_FLOW_CONTEXT_ACTION_MAX ||
1015 num_fs_actions == MLX5_FLOW_CONTEXT_ACTION_MAX) {
1016 err = -EOPNOTSUPP;
1017 goto free_actions;
1018 }
1019 tmp_action =
1020 mlx5_fs_create_action_dest_array(ctx, dest_actions,
1021 num_dest_actions);
1022 if (!tmp_action) {
1023 err = -EOPNOTSUPP;
1024 goto free_actions;
1025 }
1026 fs_actions[num_fs_actions++].action = tmp_action;
1027 (*ractions)[num_actions++].action = tmp_action;
1028 }
1029
1030 if (num_actions == MLX5_FLOW_CONTEXT_ACTION_MAX ||
1031 num_fs_actions == MLX5_FLOW_CONTEXT_ACTION_MAX) {
1032 err = -EOPNOTSUPP;
1033 goto free_actions;
1034 }
1035
1036 tmp_action = mlx5_fs_create_action_last(ctx);
1037 if (!tmp_action) {
1038 err = -ENOMEM;
1039 goto free_actions;
1040 }
1041 fs_actions[num_fs_actions++].action = tmp_action;
1042 (*ractions)[num_actions++].action = tmp_action;
1043
1044 kfree(dest_actions);
1045
1046 /* Actions created specifically for this rule will be destroyed
1047 * once rule is deleted.
1048 */
1049 fte->fs_hws_rule.num_fs_actions = num_fs_actions;
1050 fte->fs_hws_rule.hws_fs_actions = fs_actions;
1051
1052 return 0;
1053
1054 free_actions:
1055 mlx5_fs_destroy_fs_actions(ns, &fs_actions, &num_fs_actions);
1056 free_dest_actions_alloc:
1057 kfree(dest_actions);
1058 free_fs_actions_alloc:
1059 kfree(fs_actions);
1060 free_actions_alloc:
1061 kfree(*ractions);
1062 *ractions = NULL;
1063 out_err:
1064 return err;
1065 }
1066
mlx5_cmd_hws_create_fte(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft,struct mlx5_flow_group * group,struct fs_fte * fte)1067 static int mlx5_cmd_hws_create_fte(struct mlx5_flow_root_namespace *ns,
1068 struct mlx5_flow_table *ft,
1069 struct mlx5_flow_group *group,
1070 struct fs_fte *fte)
1071 {
1072 struct mlx5hws_match_parameters params;
1073 struct mlx5hws_rule_action *ractions;
1074 struct mlx5hws_bwc_rule *rule;
1075 int err = 0;
1076
1077 if (mlx5_fs_cmd_is_fw_term_table(ft))
1078 return mlx5_fs_cmd_get_fw_cmds()->create_fte(ns, ft, group, fte);
1079
1080 err = mlx5_fs_fte_get_hws_actions(ns, ft, group, fte, &ractions);
1081 if (err)
1082 goto out_err;
1083
1084 params.match_sz = sizeof(fte->val);
1085 params.match_buf = fte->val;
1086
1087 rule = mlx5hws_bwc_rule_create(group->fs_hws_matcher.matcher, ¶ms,
1088 fte->act_dests.flow_context.flow_source,
1089 ractions);
1090 kfree(ractions);
1091 if (!rule) {
1092 err = -EINVAL;
1093 goto free_actions;
1094 }
1095
1096 fte->fs_hws_rule.bwc_rule = rule;
1097 return 0;
1098
1099 free_actions:
1100 mlx5_fs_destroy_fs_actions(ns, &fte->fs_hws_rule.hws_fs_actions,
1101 &fte->fs_hws_rule.num_fs_actions);
1102 out_err:
1103 mlx5_core_err(ns->dev, "Failed to create hws rule err(%d)\n", err);
1104 return err;
1105 }
1106
mlx5_cmd_hws_delete_fte(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft,struct fs_fte * fte)1107 static int mlx5_cmd_hws_delete_fte(struct mlx5_flow_root_namespace *ns,
1108 struct mlx5_flow_table *ft,
1109 struct fs_fte *fte)
1110 {
1111 struct mlx5_fs_hws_rule *rule = &fte->fs_hws_rule;
1112 int err;
1113
1114 if (mlx5_fs_cmd_is_fw_term_table(ft))
1115 return mlx5_fs_cmd_get_fw_cmds()->delete_fte(ns, ft, fte);
1116
1117 err = mlx5hws_bwc_rule_destroy(rule->bwc_rule);
1118 rule->bwc_rule = NULL;
1119
1120 mlx5_fs_destroy_fs_actions(ns, &rule->hws_fs_actions,
1121 &rule->num_fs_actions);
1122
1123 return err;
1124 }
1125
mlx5_cmd_hws_update_fte(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_table * ft,struct mlx5_flow_group * group,int modify_mask,struct fs_fte * fte)1126 static int mlx5_cmd_hws_update_fte(struct mlx5_flow_root_namespace *ns,
1127 struct mlx5_flow_table *ft,
1128 struct mlx5_flow_group *group,
1129 int modify_mask,
1130 struct fs_fte *fte)
1131 {
1132 int allowed_mask = BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_ACTION) |
1133 BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_DESTINATION_LIST) |
1134 BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_FLOW_COUNTERS);
1135 struct mlx5_fs_hws_rule_action *saved_hws_fs_actions;
1136 struct mlx5hws_rule_action *ractions;
1137 int saved_num_fs_actions;
1138 int ret;
1139
1140 if (mlx5_fs_cmd_is_fw_term_table(ft))
1141 return mlx5_fs_cmd_get_fw_cmds()->update_fte(ns, ft, group,
1142 modify_mask, fte);
1143
1144 if ((modify_mask & ~allowed_mask) != 0)
1145 return -EINVAL;
1146
1147 saved_hws_fs_actions = fte->fs_hws_rule.hws_fs_actions;
1148 saved_num_fs_actions = fte->fs_hws_rule.num_fs_actions;
1149
1150 ret = mlx5_fs_fte_get_hws_actions(ns, ft, group, fte, &ractions);
1151 if (ret)
1152 return ret;
1153
1154 ret = mlx5hws_bwc_rule_action_update(fte->fs_hws_rule.bwc_rule, ractions);
1155 kfree(ractions);
1156 if (ret)
1157 goto restore_actions;
1158
1159 mlx5_fs_destroy_fs_actions(ns, &saved_hws_fs_actions,
1160 &saved_num_fs_actions);
1161 return ret;
1162
1163 restore_actions:
1164 mlx5_fs_destroy_fs_actions(ns, &fte->fs_hws_rule.hws_fs_actions,
1165 &fte->fs_hws_rule.num_fs_actions);
1166 fte->fs_hws_rule.hws_fs_actions = saved_hws_fs_actions;
1167 fte->fs_hws_rule.num_fs_actions = saved_num_fs_actions;
1168 return ret;
1169 }
1170
1171 static struct mlx5hws_action *
mlx5_fs_create_action_remove_header_vlan(struct mlx5hws_context * ctx)1172 mlx5_fs_create_action_remove_header_vlan(struct mlx5hws_context *ctx)
1173 {
1174 u32 flags = MLX5HWS_ACTION_FLAG_HWS_FDB | MLX5HWS_ACTION_FLAG_SHARED;
1175 struct mlx5hws_action_remove_header_attr remove_hdr_vlan = {};
1176
1177 /* MAC anchor not supported in HWS reformat, use VLAN anchor */
1178 remove_hdr_vlan.anchor = MLX5_REFORMAT_CONTEXT_ANCHOR_VLAN_START;
1179 remove_hdr_vlan.offset = 0;
1180 remove_hdr_vlan.size = sizeof(struct vlan_hdr);
1181 return mlx5hws_action_create_remove_header(ctx, &remove_hdr_vlan, flags);
1182 }
1183
1184 static struct mlx5hws_action *
mlx5_fs_get_action_remove_header_vlan(struct mlx5_fs_hws_context * fs_ctx,struct mlx5_pkt_reformat_params * params)1185 mlx5_fs_get_action_remove_header_vlan(struct mlx5_fs_hws_context *fs_ctx,
1186 struct mlx5_pkt_reformat_params *params)
1187 {
1188 if (!params ||
1189 params->param_0 != MLX5_REFORMAT_CONTEXT_ANCHOR_MAC_START ||
1190 params->param_1 != offsetof(struct vlan_ethhdr, h_vlan_proto) ||
1191 params->size != sizeof(struct vlan_hdr))
1192 return NULL;
1193
1194 return fs_ctx->hws_pool.remove_hdr_vlan_action;
1195 }
1196
1197 static int
mlx5_fs_verify_insert_header_params(struct mlx5_core_dev * mdev,struct mlx5_pkt_reformat_params * params)1198 mlx5_fs_verify_insert_header_params(struct mlx5_core_dev *mdev,
1199 struct mlx5_pkt_reformat_params *params)
1200 {
1201 if ((!params->data && params->size) || (params->data && !params->size) ||
1202 MLX5_CAP_GEN_2(mdev, max_reformat_insert_size) < params->size ||
1203 MLX5_CAP_GEN_2(mdev, max_reformat_insert_offset) < params->param_1) {
1204 mlx5_core_err(mdev, "Invalid reformat params for INSERT_HDR\n");
1205 return -EINVAL;
1206 }
1207 if (params->param_0 != MLX5_FS_INSERT_HDR_VLAN_ANCHOR ||
1208 params->param_1 != MLX5_FS_INSERT_HDR_VLAN_OFFSET ||
1209 params->size != MLX5_FS_INSERT_HDR_VLAN_SIZE) {
1210 mlx5_core_err(mdev, "Only vlan insert header supported\n");
1211 return -EOPNOTSUPP;
1212 }
1213 return 0;
1214 }
1215
1216 static int
mlx5_fs_verify_encap_decap_params(struct mlx5_core_dev * dev,struct mlx5_pkt_reformat_params * params)1217 mlx5_fs_verify_encap_decap_params(struct mlx5_core_dev *dev,
1218 struct mlx5_pkt_reformat_params *params)
1219 {
1220 if (params->param_0 || params->param_1) {
1221 mlx5_core_err(dev, "Invalid reformat params\n");
1222 return -EINVAL;
1223 }
1224 return 0;
1225 }
1226
1227 static struct mlx5_fs_pool *
mlx5_fs_get_pr_encap_pool(struct mlx5_core_dev * dev,struct xarray * pr_pools,enum mlx5hws_action_type reformat_type,size_t size)1228 mlx5_fs_get_pr_encap_pool(struct mlx5_core_dev *dev, struct xarray *pr_pools,
1229 enum mlx5hws_action_type reformat_type, size_t size)
1230 {
1231 struct mlx5_fs_pool *pr_pool;
1232 unsigned long index = size;
1233 int err;
1234
1235 pr_pool = xa_load(pr_pools, index);
1236 if (pr_pool)
1237 return pr_pool;
1238
1239 pr_pool = kzalloc_obj(*pr_pool);
1240 if (!pr_pool)
1241 return ERR_PTR(-ENOMEM);
1242 err = mlx5_fs_hws_pr_pool_init(pr_pool, dev, size, reformat_type);
1243 if (err)
1244 goto free_pr_pool;
1245 err = xa_insert(pr_pools, index, pr_pool, GFP_KERNEL);
1246 if (err)
1247 goto cleanup_pr_pool;
1248 return pr_pool;
1249
1250 cleanup_pr_pool:
1251 mlx5_fs_hws_pr_pool_cleanup(pr_pool);
1252 free_pr_pool:
1253 kfree(pr_pool);
1254 return ERR_PTR(err);
1255 }
1256
1257 static void
mlx5_fs_destroy_pr_pool(struct mlx5_fs_pool * pool,struct xarray * pr_pools,unsigned long index)1258 mlx5_fs_destroy_pr_pool(struct mlx5_fs_pool *pool, struct xarray *pr_pools,
1259 unsigned long index)
1260 {
1261 xa_erase(pr_pools, index);
1262 mlx5_fs_hws_pr_pool_cleanup(pool);
1263 kfree(pool);
1264 }
1265
1266 static int
mlx5_cmd_hws_packet_reformat_alloc(struct mlx5_flow_root_namespace * ns,struct mlx5_pkt_reformat_params * params,enum mlx5_flow_namespace_type namespace,struct mlx5_pkt_reformat * pkt_reformat)1267 mlx5_cmd_hws_packet_reformat_alloc(struct mlx5_flow_root_namespace *ns,
1268 struct mlx5_pkt_reformat_params *params,
1269 enum mlx5_flow_namespace_type namespace,
1270 struct mlx5_pkt_reformat *pkt_reformat)
1271 {
1272 struct mlx5_fs_hws_context *fs_ctx = &ns->fs_hws_context;
1273 struct mlx5_fs_hws_actions_pool *hws_pool;
1274 struct mlx5hws_action *hws_action = NULL;
1275 struct mlx5_fs_hws_pr *pr_data = NULL;
1276 struct mlx5_fs_pool *pr_pool = NULL;
1277 struct mlx5_core_dev *dev = ns->dev;
1278 u8 hdr_idx = 0;
1279 int err;
1280
1281 if (!params)
1282 return -EINVAL;
1283
1284 hws_pool = &fs_ctx->hws_pool;
1285
1286 switch (params->type) {
1287 case MLX5_REFORMAT_TYPE_L2_TO_VXLAN:
1288 case MLX5_REFORMAT_TYPE_L2_TO_NVGRE:
1289 case MLX5_REFORMAT_TYPE_L2_TO_L2_TUNNEL:
1290 if (mlx5_fs_verify_encap_decap_params(dev, params))
1291 return -EINVAL;
1292 pr_pool = mlx5_fs_get_pr_encap_pool(dev, &hws_pool->el2tol2tnl_pools,
1293 MLX5HWS_ACTION_TYP_REFORMAT_L2_TO_TNL_L2,
1294 params->size);
1295 if (IS_ERR(pr_pool))
1296 return PTR_ERR(pr_pool);
1297 break;
1298 case MLX5_REFORMAT_TYPE_L2_TO_L3_TUNNEL:
1299 if (mlx5_fs_verify_encap_decap_params(dev, params))
1300 return -EINVAL;
1301 pr_pool = mlx5_fs_get_pr_encap_pool(dev, &hws_pool->el2tol3tnl_pools,
1302 MLX5HWS_ACTION_TYP_REFORMAT_L2_TO_TNL_L3,
1303 params->size);
1304 if (IS_ERR(pr_pool))
1305 return PTR_ERR(pr_pool);
1306 break;
1307 case MLX5_REFORMAT_TYPE_L3_TUNNEL_TO_L2:
1308 if (mlx5_fs_verify_encap_decap_params(dev, params))
1309 return -EINVAL;
1310 pr_pool = &hws_pool->dl3tnltol2_pool;
1311 hdr_idx = params->size == ETH_HLEN ?
1312 MLX5_FS_DL3TNLTOL2_MAC_HDR_IDX :
1313 MLX5_FS_DL3TNLTOL2_MAC_VLAN_HDR_IDX;
1314 break;
1315 case MLX5_REFORMAT_TYPE_INSERT_HDR:
1316 err = mlx5_fs_verify_insert_header_params(dev, params);
1317 if (err)
1318 return err;
1319 pr_pool = &hws_pool->insert_hdr_pool;
1320 break;
1321 case MLX5_REFORMAT_TYPE_REMOVE_HDR:
1322 hws_action = mlx5_fs_get_action_remove_header_vlan(fs_ctx, params);
1323 if (!hws_action) {
1324 mlx5_core_err(dev, "Only vlan remove header supported\n");
1325 return -EOPNOTSUPP;
1326 }
1327 break;
1328 default:
1329 mlx5_core_err(ns->dev, "Packet-reformat not supported(%d)\n",
1330 params->type);
1331 return -EOPNOTSUPP;
1332 }
1333
1334 if (pr_pool) {
1335 pr_data = mlx5_fs_hws_pr_pool_acquire_pr(pr_pool);
1336 if (IS_ERR_OR_NULL(pr_data))
1337 return !pr_data ? -EINVAL : PTR_ERR(pr_data);
1338 hws_action = pr_data->bulk->hws_action;
1339 if (!hws_action) {
1340 mlx5_core_err(dev,
1341 "Failed allocating packet-reformat action\n");
1342 err = -EINVAL;
1343 goto release_pr;
1344 }
1345 pr_data->data = kmemdup(params->data, params->size, GFP_KERNEL);
1346 if (!pr_data->data) {
1347 err = -ENOMEM;
1348 goto release_pr;
1349 }
1350 pr_data->hdr_idx = hdr_idx;
1351 pr_data->data_size = params->size;
1352 pkt_reformat->fs_hws_action.pr_data = pr_data;
1353 }
1354
1355 mutex_init(&pkt_reformat->fs_hws_action.lock);
1356 pkt_reformat->owner = MLX5_FLOW_RESOURCE_OWNER_HWS;
1357 pkt_reformat->fs_hws_action.hws_action = hws_action;
1358 return 0;
1359
1360 release_pr:
1361 if (pr_pool && pr_data)
1362 mlx5_fs_hws_pr_pool_release_pr(pr_pool, pr_data);
1363 return err;
1364 }
1365
mlx5_cmd_hws_packet_reformat_dealloc(struct mlx5_flow_root_namespace * ns,struct mlx5_pkt_reformat * pkt_reformat)1366 static void mlx5_cmd_hws_packet_reformat_dealloc(struct mlx5_flow_root_namespace *ns,
1367 struct mlx5_pkt_reformat *pkt_reformat)
1368 {
1369 struct mlx5_fs_hws_actions_pool *hws_pool = &ns->fs_hws_context.hws_pool;
1370 struct mlx5_core_dev *dev = ns->dev;
1371 struct mlx5_fs_hws_pr *pr_data;
1372 struct mlx5_fs_pool *pr_pool;
1373
1374 if (pkt_reformat->fs_hws_action.fw_reformat_id != 0) {
1375 struct mlx5_pkt_reformat fw_pkt_reformat = { 0 };
1376
1377 fw_pkt_reformat.id = pkt_reformat->fs_hws_action.fw_reformat_id;
1378 mlx5_fs_cmd_get_fw_cmds()->
1379 packet_reformat_dealloc(ns, &fw_pkt_reformat);
1380 pkt_reformat->fs_hws_action.fw_reformat_id = 0;
1381 }
1382
1383 if (pkt_reformat->reformat_type == MLX5_REFORMAT_TYPE_REMOVE_HDR)
1384 return;
1385
1386 if (!pkt_reformat->fs_hws_action.pr_data) {
1387 mlx5_core_err(ns->dev, "Failed release packet-reformat\n");
1388 return;
1389 }
1390 pr_data = pkt_reformat->fs_hws_action.pr_data;
1391
1392 switch (pkt_reformat->reformat_type) {
1393 case MLX5_REFORMAT_TYPE_L2_TO_VXLAN:
1394 case MLX5_REFORMAT_TYPE_L2_TO_NVGRE:
1395 case MLX5_REFORMAT_TYPE_L2_TO_L2_TUNNEL:
1396 pr_pool = mlx5_fs_get_pr_encap_pool(dev, &hws_pool->el2tol2tnl_pools,
1397 MLX5HWS_ACTION_TYP_REFORMAT_L2_TO_TNL_L2,
1398 pr_data->data_size);
1399 break;
1400 case MLX5_REFORMAT_TYPE_L2_TO_L3_TUNNEL:
1401 pr_pool = mlx5_fs_get_pr_encap_pool(dev, &hws_pool->el2tol2tnl_pools,
1402 MLX5HWS_ACTION_TYP_REFORMAT_L2_TO_TNL_L2,
1403 pr_data->data_size);
1404 break;
1405 case MLX5_REFORMAT_TYPE_L3_TUNNEL_TO_L2:
1406 pr_pool = &hws_pool->dl3tnltol2_pool;
1407 break;
1408 case MLX5_REFORMAT_TYPE_INSERT_HDR:
1409 pr_pool = &hws_pool->insert_hdr_pool;
1410 break;
1411 default:
1412 mlx5_core_err(ns->dev, "Unknown packet-reformat type\n");
1413 return;
1414 }
1415 if (!pkt_reformat->fs_hws_action.pr_data || IS_ERR(pr_pool)) {
1416 mlx5_core_err(ns->dev, "Failed release packet-reformat\n");
1417 return;
1418 }
1419 kfree(pr_data->data);
1420 mlx5_fs_hws_pr_pool_release_pr(pr_pool, pr_data);
1421 pkt_reformat->fs_hws_action.pr_data = NULL;
1422 }
1423
1424 static struct mlx5_fs_pool *
mlx5_fs_create_mh_pool(struct mlx5_core_dev * dev,struct mlx5hws_action_mh_pattern * pattern,struct xarray * mh_pools,unsigned long index)1425 mlx5_fs_create_mh_pool(struct mlx5_core_dev *dev,
1426 struct mlx5hws_action_mh_pattern *pattern,
1427 struct xarray *mh_pools, unsigned long index)
1428 {
1429 struct mlx5_fs_pool *pool;
1430 int err;
1431
1432 pool = kzalloc_obj(*pool);
1433 if (!pool)
1434 return ERR_PTR(-ENOMEM);
1435 err = mlx5_fs_hws_mh_pool_init(pool, dev, pattern);
1436 if (err)
1437 goto free_pool;
1438 err = xa_insert(mh_pools, index, pool, GFP_KERNEL);
1439 if (err)
1440 goto cleanup_pool;
1441 return pool;
1442
1443 cleanup_pool:
1444 mlx5_fs_hws_mh_pool_cleanup(pool);
1445 free_pool:
1446 kfree(pool);
1447 return ERR_PTR(err);
1448 }
1449
1450 static void
mlx5_fs_destroy_mh_pool(struct mlx5_fs_pool * pool,struct xarray * mh_pools,unsigned long index)1451 mlx5_fs_destroy_mh_pool(struct mlx5_fs_pool *pool, struct xarray *mh_pools,
1452 unsigned long index)
1453 {
1454 xa_erase(mh_pools, index);
1455 mlx5_fs_hws_mh_pool_cleanup(pool);
1456 kfree(pool);
1457 }
1458
mlx5_cmd_hws_modify_header_alloc(struct mlx5_flow_root_namespace * ns,u8 namespace,u8 num_actions,void * modify_actions,struct mlx5_modify_hdr * modify_hdr)1459 static int mlx5_cmd_hws_modify_header_alloc(struct mlx5_flow_root_namespace *ns,
1460 u8 namespace, u8 num_actions,
1461 void *modify_actions,
1462 struct mlx5_modify_hdr *modify_hdr)
1463 {
1464 struct mlx5_fs_hws_actions_pool *hws_pool = &ns->fs_hws_context.hws_pool;
1465 struct mlx5hws_action_mh_pattern pattern = {};
1466 struct mlx5_fs_hws_mh *mh_data = NULL;
1467 struct mlx5hws_action *hws_action;
1468 struct mlx5_fs_pool *pool;
1469 unsigned long i, cnt = 0;
1470 bool known_pattern;
1471 int err;
1472
1473 pattern.sz = MLX5_UN_SZ_BYTES(set_add_copy_action_in_auto) * num_actions;
1474 pattern.data = modify_actions;
1475
1476 known_pattern = false;
1477 xa_for_each(&hws_pool->mh_pools, i, pool) {
1478 if (mlx5_fs_hws_mh_pool_match(pool, &pattern)) {
1479 known_pattern = true;
1480 break;
1481 }
1482 cnt++;
1483 }
1484
1485 if (!known_pattern) {
1486 pool = mlx5_fs_create_mh_pool(ns->dev, &pattern,
1487 &hws_pool->mh_pools, cnt);
1488 if (IS_ERR(pool))
1489 return PTR_ERR(pool);
1490 }
1491 mh_data = mlx5_fs_hws_mh_pool_acquire_mh(pool);
1492 if (IS_ERR(mh_data)) {
1493 err = PTR_ERR(mh_data);
1494 goto destroy_pool;
1495 }
1496 hws_action = mh_data->bulk->hws_action;
1497 mh_data->data = kmemdup(pattern.data, pattern.sz, GFP_KERNEL);
1498 if (!mh_data->data) {
1499 err = -ENOMEM;
1500 goto release_mh;
1501 }
1502 modify_hdr->fs_hws_action.mh_data = mh_data;
1503 modify_hdr->fs_hws_action.fs_pool = pool;
1504 modify_hdr->owner = MLX5_FLOW_RESOURCE_OWNER_SW;
1505 modify_hdr->fs_hws_action.hws_action = hws_action;
1506
1507 return 0;
1508
1509 release_mh:
1510 mlx5_fs_hws_mh_pool_release_mh(pool, mh_data);
1511 destroy_pool:
1512 if (!known_pattern)
1513 mlx5_fs_destroy_mh_pool(pool, &hws_pool->mh_pools, cnt);
1514 return err;
1515 }
1516
mlx5_cmd_hws_modify_header_dealloc(struct mlx5_flow_root_namespace * ns,struct mlx5_modify_hdr * modify_hdr)1517 static void mlx5_cmd_hws_modify_header_dealloc(struct mlx5_flow_root_namespace *ns,
1518 struct mlx5_modify_hdr *modify_hdr)
1519 {
1520 struct mlx5_fs_hws_mh *mh_data;
1521 struct mlx5_fs_pool *pool;
1522
1523 if (!modify_hdr->fs_hws_action.fs_pool || !modify_hdr->fs_hws_action.mh_data) {
1524 mlx5_core_err(ns->dev, "Failed release modify-header\n");
1525 return;
1526 }
1527
1528 mh_data = modify_hdr->fs_hws_action.mh_data;
1529 kfree(mh_data->data);
1530 pool = modify_hdr->fs_hws_action.fs_pool;
1531 mlx5_fs_hws_mh_pool_release_mh(pool, mh_data);
1532 modify_hdr->fs_hws_action.mh_data = NULL;
1533 }
1534
1535 int
mlx5_fs_hws_action_get_pkt_reformat_id(struct mlx5_pkt_reformat * pkt_reformat,u32 * reformat_id)1536 mlx5_fs_hws_action_get_pkt_reformat_id(struct mlx5_pkt_reformat *pkt_reformat,
1537 u32 *reformat_id)
1538 {
1539 enum mlx5_flow_namespace_type ns_type = pkt_reformat->ns_type;
1540 struct mutex *lock = &pkt_reformat->fs_hws_action.lock;
1541 u32 *id = &pkt_reformat->fs_hws_action.fw_reformat_id;
1542 struct mlx5_pkt_reformat fw_pkt_reformat = { 0 };
1543 struct mlx5_pkt_reformat_params params = { 0 };
1544 struct mlx5_flow_root_namespace *ns;
1545 struct mlx5_core_dev *dev;
1546 int ret;
1547
1548 mutex_lock(lock);
1549
1550 if (*id != 0) {
1551 *reformat_id = *id;
1552 ret = 0;
1553 goto unlock;
1554 }
1555
1556 dev = mlx5hws_action_get_dev(pkt_reformat->fs_hws_action.hws_action);
1557 if (!dev) {
1558 ret = -EINVAL;
1559 goto unlock;
1560 }
1561
1562 ns = mlx5_get_root_namespace(dev, ns_type);
1563 if (!ns) {
1564 ret = -EINVAL;
1565 goto unlock;
1566 }
1567
1568 params.type = pkt_reformat->reformat_type;
1569 params.size = pkt_reformat->fs_hws_action.pr_data->data_size;
1570 params.data = pkt_reformat->fs_hws_action.pr_data->data;
1571
1572 ret = mlx5_fs_cmd_get_fw_cmds()->
1573 packet_reformat_alloc(ns, ¶ms, ns_type, &fw_pkt_reformat);
1574 if (ret)
1575 goto unlock;
1576
1577 *id = fw_pkt_reformat.id;
1578 *reformat_id = *id;
1579 ret = 0;
1580
1581 unlock:
1582 mutex_unlock(lock);
1583
1584 return ret;
1585 }
1586
mlx5_cmd_hws_create_match_definer(struct mlx5_flow_root_namespace * ns,u16 format_id,u32 * match_mask)1587 static int mlx5_cmd_hws_create_match_definer(struct mlx5_flow_root_namespace *ns,
1588 u16 format_id, u32 *match_mask)
1589 {
1590 return -EOPNOTSUPP;
1591 }
1592
mlx5_cmd_hws_destroy_match_definer(struct mlx5_flow_root_namespace * ns,int definer_id)1593 static int mlx5_cmd_hws_destroy_match_definer(struct mlx5_flow_root_namespace *ns,
1594 int definer_id)
1595 {
1596 return -EOPNOTSUPP;
1597 }
1598
mlx5_cmd_hws_get_capabilities(struct mlx5_flow_root_namespace * ns,enum fs_flow_table_type ft_type)1599 static u32 mlx5_cmd_hws_get_capabilities(struct mlx5_flow_root_namespace *ns,
1600 enum fs_flow_table_type ft_type)
1601 {
1602 if (ft_type != FS_FT_FDB)
1603 return 0;
1604
1605 return MLX5_FLOW_STEERING_CAP_VLAN_PUSH_ON_RX |
1606 MLX5_FLOW_STEERING_CAP_VLAN_POP_ON_TX |
1607 MLX5_FLOW_STEERING_CAP_MATCH_RANGES;
1608 }
1609
mlx5_fs_hws_is_supported(struct mlx5_core_dev * dev)1610 bool mlx5_fs_hws_is_supported(struct mlx5_core_dev *dev)
1611 {
1612 return mlx5hws_is_supported(dev);
1613 }
1614
1615 static const struct mlx5_flow_cmds mlx5_flow_cmds_hws = {
1616 .create_flow_table = mlx5_cmd_hws_create_flow_table,
1617 .destroy_flow_table = mlx5_cmd_hws_destroy_flow_table,
1618 .modify_flow_table = mlx5_cmd_hws_modify_flow_table,
1619 .update_root_ft = mlx5_cmd_hws_update_root_ft,
1620 .create_flow_group = mlx5_cmd_hws_create_flow_group,
1621 .destroy_flow_group = mlx5_cmd_hws_destroy_flow_group,
1622 .create_fte = mlx5_cmd_hws_create_fte,
1623 .delete_fte = mlx5_cmd_hws_delete_fte,
1624 .update_fte = mlx5_cmd_hws_update_fte,
1625 .packet_reformat_alloc = mlx5_cmd_hws_packet_reformat_alloc,
1626 .packet_reformat_dealloc = mlx5_cmd_hws_packet_reformat_dealloc,
1627 .modify_header_alloc = mlx5_cmd_hws_modify_header_alloc,
1628 .modify_header_dealloc = mlx5_cmd_hws_modify_header_dealloc,
1629 .create_match_definer = mlx5_cmd_hws_create_match_definer,
1630 .destroy_match_definer = mlx5_cmd_hws_destroy_match_definer,
1631 .create_ns = mlx5_cmd_hws_create_ns,
1632 .destroy_ns = mlx5_cmd_hws_destroy_ns,
1633 .set_peer = mlx5_cmd_hws_set_peer,
1634 .get_capabilities = mlx5_cmd_hws_get_capabilities,
1635 };
1636
mlx5_fs_cmd_get_hws_cmds(void)1637 const struct mlx5_flow_cmds *mlx5_fs_cmd_get_hws_cmds(void)
1638 {
1639 return &mlx5_flow_cmds_hws;
1640 }
1641