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