Merge tag 'io_uring-6.16-20250630' of git://git.kernel.dk/linux
[linux-block.git] / drivers / net / ethernet / mellanox / mlx5 / core / fs_cmd.c
CommitLineData
26a81453
MG
1/*
2 * Copyright (c) 2015, Mellanox Technologies. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
33#include <linux/mlx5/driver.h>
34#include <linux/mlx5/device.h>
35#include <linux/mlx5/mlx5_ifc.h>
36
37#include "fs_core.h"
38#include "fs_cmd.h"
4a98544d 39#include "fs_ft_pool.h"
26a81453 40#include "mlx5_core.h"
c9f1b073 41#include "eswitch.h"
26a81453 42
ae288a48 43static int mlx5_cmd_stub_update_root_ft(struct mlx5_flow_root_namespace *ns,
af76c501
MB
44 struct mlx5_flow_table *ft,
45 u32 underlay_qpn,
46 bool disconnect)
47{
48 return 0;
49}
50
ae288a48
MG
51static int mlx5_cmd_stub_create_flow_table(struct mlx5_flow_root_namespace *ns,
52 struct mlx5_flow_table *ft,
b0bb369e 53 struct mlx5_flow_table_attr *ft_attr,
ae288a48 54 struct mlx5_flow_table *next_ft)
af76c501 55{
b0bb369e
MB
56 int max_fte = ft_attr->max_fte;
57
58 ft->max_fte = max_fte ? roundup_pow_of_two(max_fte) : 1;
04745afb 59
af76c501
MB
60 return 0;
61}
62
ae288a48 63static int mlx5_cmd_stub_destroy_flow_table(struct mlx5_flow_root_namespace *ns,
af76c501
MB
64 struct mlx5_flow_table *ft)
65{
66 return 0;
67}
68
ae288a48 69static int mlx5_cmd_stub_modify_flow_table(struct mlx5_flow_root_namespace *ns,
af76c501
MB
70 struct mlx5_flow_table *ft,
71 struct mlx5_flow_table *next_ft)
72{
73 return 0;
74}
75
ae288a48 76static int mlx5_cmd_stub_create_flow_group(struct mlx5_flow_root_namespace *ns,
af76c501
MB
77 struct mlx5_flow_table *ft,
78 u32 *in,
ae288a48 79 struct mlx5_flow_group *fg)
af76c501
MB
80{
81 return 0;
82}
83
ae288a48 84static int mlx5_cmd_stub_destroy_flow_group(struct mlx5_flow_root_namespace *ns,
af76c501 85 struct mlx5_flow_table *ft,
ae288a48 86 struct mlx5_flow_group *fg)
af76c501
MB
87{
88 return 0;
89}
90
ae288a48 91static int mlx5_cmd_stub_create_fte(struct mlx5_flow_root_namespace *ns,
af76c501
MB
92 struct mlx5_flow_table *ft,
93 struct mlx5_flow_group *group,
94 struct fs_fte *fte)
95{
96 return 0;
97}
98
ae288a48 99static int mlx5_cmd_stub_update_fte(struct mlx5_flow_root_namespace *ns,
af76c501 100 struct mlx5_flow_table *ft,
ae288a48 101 struct mlx5_flow_group *group,
af76c501
MB
102 int modify_mask,
103 struct fs_fte *fte)
104{
105 return -EOPNOTSUPP;
106}
107
ae288a48 108static int mlx5_cmd_stub_delete_fte(struct mlx5_flow_root_namespace *ns,
af76c501 109 struct mlx5_flow_table *ft,
e810bf5e 110 struct fs_fte *fte)
af76c501
MB
111{
112 return 0;
113}
114
2b688ea5 115static int mlx5_cmd_stub_packet_reformat_alloc(struct mlx5_flow_root_namespace *ns,
3f3f05ab 116 struct mlx5_pkt_reformat_params *params,
2b688ea5
MG
117 enum mlx5_flow_namespace_type namespace,
118 struct mlx5_pkt_reformat *pkt_reformat)
119{
120 return 0;
121}
122
123static void mlx5_cmd_stub_packet_reformat_dealloc(struct mlx5_flow_root_namespace *ns,
124 struct mlx5_pkt_reformat *pkt_reformat)
125{
126}
127
128static int mlx5_cmd_stub_modify_header_alloc(struct mlx5_flow_root_namespace *ns,
129 u8 namespace, u8 num_actions,
130 void *modify_actions,
131 struct mlx5_modify_hdr *modify_hdr)
132{
133 return 0;
134}
135
136static void mlx5_cmd_stub_modify_header_dealloc(struct mlx5_flow_root_namespace *ns,
137 struct mlx5_modify_hdr *modify_hdr)
138{
139}
140
6a48faee 141static int mlx5_cmd_stub_set_peer(struct mlx5_flow_root_namespace *ns,
6d5b7321 142 struct mlx5_flow_root_namespace *peer_ns,
62752c0b 143 u16 peer_vhca_id)
6a48faee
MG
144{
145 return 0;
146}
147
148static int mlx5_cmd_stub_create_ns(struct mlx5_flow_root_namespace *ns)
149{
150 return 0;
151}
152
153static int mlx5_cmd_stub_destroy_ns(struct mlx5_flow_root_namespace *ns)
154{
155 return 0;
156}
157
8348b71c
DC
158static u32 mlx5_cmd_stub_get_capabilities(struct mlx5_flow_root_namespace *ns,
159 enum fs_flow_table_type ft_type)
160{
161 return 0;
162}
163
db202995
MB
164static int mlx5_cmd_set_slave_root_fdb(struct mlx5_core_dev *master,
165 struct mlx5_core_dev *slave,
166 bool ft_id_valid,
167 u32 ft_id)
168{
169 u32 out[MLX5_ST_SZ_DW(set_flow_table_root_out)] = {};
170 u32 in[MLX5_ST_SZ_DW(set_flow_table_root_in)] = {};
171 struct mlx5_flow_root_namespace *root;
172 struct mlx5_flow_namespace *ns;
173
174 MLX5_SET(set_flow_table_root_in, in, opcode,
175 MLX5_CMD_OP_SET_FLOW_TABLE_ROOT);
176 MLX5_SET(set_flow_table_root_in, in, table_type,
177 FS_FT_FDB);
178 if (ft_id_valid) {
179 MLX5_SET(set_flow_table_root_in, in,
180 table_eswitch_owner_vhca_id_valid, 1);
181 MLX5_SET(set_flow_table_root_in, in,
182 table_eswitch_owner_vhca_id,
183 MLX5_CAP_GEN(master, vhca_id));
184 MLX5_SET(set_flow_table_root_in, in, table_id,
185 ft_id);
186 } else {
187 ns = mlx5_get_flow_namespace(slave,
188 MLX5_FLOW_NAMESPACE_FDB);
189 root = find_root(&ns->node);
190 MLX5_SET(set_flow_table_root_in, in, table_id,
191 root->root_ft->id);
192 }
193
194 return mlx5_cmd_exec(slave, in, sizeof(in), out, sizeof(out));
195}
196
e7e2519e
MG
197static int
198mlx5_cmd_stub_destroy_match_definer(struct mlx5_flow_root_namespace *ns,
199 int definer_id)
200{
201 return 0;
202}
203
204static int
205mlx5_cmd_stub_create_match_definer(struct mlx5_flow_root_namespace *ns,
206 u16 format_id, u32 *match_mask)
207{
208 return 0;
209}
210
ae288a48 211static int mlx5_cmd_update_root_ft(struct mlx5_flow_root_namespace *ns,
af76c501
MB
212 struct mlx5_flow_table *ft, u32 underlay_qpn,
213 bool disconnect)
2cc43b49 214{
31a0956e 215 u32 in[MLX5_ST_SZ_DW(set_flow_table_root_in)] = {};
ae288a48 216 struct mlx5_core_dev *dev = ns->dev;
db202995 217 int err;
2cc43b49 218
b3ba5149 219 if ((MLX5_CAP_GEN(dev, port_type) == MLX5_CAP_PORT_TYPE_IB) &&
ef1749d5
PH
220 underlay_qpn == 0 &&
221 (ft->type != FS_FT_RDMA_RX && ft->type != FS_FT_RDMA_TX))
b3ba5149
ES
222 return 0;
223
db202995
MB
224 if (ft->type == FS_FT_FDB &&
225 mlx5_lag_is_shared_fdb(dev) &&
226 !mlx5_lag_is_master(dev))
227 return 0;
228
2cc43b49
MG
229 MLX5_SET(set_flow_table_root_in, in, opcode,
230 MLX5_CMD_OP_SET_FLOW_TABLE_ROOT);
231 MLX5_SET(set_flow_table_root_in, in, table_type, ft->type);
dae37456 232
31a0956e 233 if (disconnect)
dae37456 234 MLX5_SET(set_flow_table_root_in, in, op_mod, 1);
31a0956e 235 else
dae37456 236 MLX5_SET(set_flow_table_root_in, in, table_id, ft->id);
dae37456 237
50854114 238 MLX5_SET(set_flow_table_root_in, in, underlay_qpn, underlay_qpn);
617b860c
PP
239 MLX5_SET(set_flow_table_root_in, in, vport_number, ft->vport);
240 MLX5_SET(set_flow_table_root_in, in, other_vport,
241 !!(ft->flags & MLX5_FLOW_TABLE_OTHER_VPORT));
2cc43b49 242
db202995
MB
243 err = mlx5_cmd_exec_in(dev, set_flow_table_root, in);
244 if (!err &&
245 ft->type == FS_FT_FDB &&
246 mlx5_lag_is_shared_fdb(dev) &&
247 mlx5_lag_is_master(dev)) {
222dd185 248 struct mlx5_core_dev *peer_dev;
0fd23db0 249 int i, j;
222dd185
SD
250
251 mlx5_lag_for_each_peer_mdev(dev, peer_dev, i) {
252 err = mlx5_cmd_set_slave_root_fdb(dev, peer_dev, !disconnect,
253 (!disconnect) ? ft->id : 0);
254 if (err && !disconnect) {
0fd23db0
SD
255 mlx5_lag_for_each_peer_mdev(dev, peer_dev, j) {
256 if (j < i)
257 mlx5_cmd_set_slave_root_fdb(dev, peer_dev, 1,
258 ns->root_ft->id);
259 else
260 break;
261 }
262
222dd185
SD
263 MLX5_SET(set_flow_table_root_in, in, op_mod, 0);
264 MLX5_SET(set_flow_table_root_in, in, table_id,
265 ns->root_ft->id);
266 mlx5_cmd_exec_in(dev, set_flow_table_root, in);
267 }
268 if (err)
269 break;
db202995 270 }
222dd185 271
db202995
MB
272 }
273
274 return err;
2cc43b49
MG
275}
276
ae288a48
MG
277static int mlx5_cmd_create_flow_table(struct mlx5_flow_root_namespace *ns,
278 struct mlx5_flow_table *ft,
b0bb369e 279 struct mlx5_flow_table_attr *ft_attr,
ae288a48 280 struct mlx5_flow_table *next_ft)
26a81453 281{
ae288a48
MG
282 int en_encap = !!(ft->flags & MLX5_FLOW_TABLE_TUNNEL_EN_REFORMAT);
283 int en_decap = !!(ft->flags & MLX5_FLOW_TABLE_TUNNEL_EN_DECAP);
c6d4e45d 284 int term = !!(ft->flags & MLX5_FLOW_TABLE_TERMINATION);
31a0956e
LR
285 u32 out[MLX5_ST_SZ_DW(create_flow_table_out)] = {};
286 u32 in[MLX5_ST_SZ_DW(create_flow_table_in)] = {};
ae288a48 287 struct mlx5_core_dev *dev = ns->dev;
b0bb369e 288 unsigned int size;
26a81453
MG
289 int err;
290
b0bb369e 291 size = mlx5_ft_pool_get_avail_sz(dev, ft->type, ft_attr->max_fte);
4a98544d
PB
292 if (!size)
293 return -ENOSPC;
04745afb 294
26a81453
MG
295 MLX5_SET(create_flow_table_in, in, opcode,
296 MLX5_CMD_OP_CREATE_FLOW_TABLE);
297
b0bb369e 298 MLX5_SET(create_flow_table_in, in, uid, ft_attr->uid);
ae288a48
MG
299 MLX5_SET(create_flow_table_in, in, table_type, ft->type);
300 MLX5_SET(create_flow_table_in, in, flow_table_context.level, ft->level);
4a98544d 301 MLX5_SET(create_flow_table_in, in, flow_table_context.log_size, size ? ilog2(size) : 0);
617b860c
PP
302 MLX5_SET(create_flow_table_in, in, vport_number, ft->vport);
303 MLX5_SET(create_flow_table_in, in, other_vport,
304 !!(ft->flags & MLX5_FLOW_TABLE_OTHER_VPORT));
26a81453 305
0c90e9c6 306 MLX5_SET(create_flow_table_in, in, flow_table_context.decap_en,
61444b45 307 en_decap);
60786f09 308 MLX5_SET(create_flow_table_in, in, flow_table_context.reformat_en,
61444b45 309 en_encap);
c6d4e45d
EB
310 MLX5_SET(create_flow_table_in, in, flow_table_context.termination_table,
311 term);
c9f1b073 312
ae288a48 313 switch (ft->op_mod) {
aaff1bea
AH
314 case FS_FT_OP_MOD_NORMAL:
315 if (next_ft) {
0c90e9c6 316 MLX5_SET(create_flow_table_in, in,
f6f7d6b5
MG
317 flow_table_context.table_miss_action,
318 MLX5_FLOW_TABLE_MISS_ACTION_FWD);
0c90e9c6
MG
319 MLX5_SET(create_flow_table_in, in,
320 flow_table_context.table_miss_id, next_ft->id);
f6f7d6b5
MG
321 } else {
322 MLX5_SET(create_flow_table_in, in,
323 flow_table_context.table_miss_action,
f66ad830 324 ft->def_miss_action);
aaff1bea
AH
325 }
326 break;
327
328 case FS_FT_OP_MOD_LAG_DEMUX:
329 MLX5_SET(create_flow_table_in, in, op_mod, 0x1);
330 if (next_ft)
0c90e9c6
MG
331 MLX5_SET(create_flow_table_in, in,
332 flow_table_context.lag_master_next_table_id,
aaff1bea
AH
333 next_ft->id);
334 break;
335 }
336
31a0956e 337 err = mlx5_cmd_exec_inout(dev, create_flow_table, in, out);
4a98544d 338 if (!err) {
ae288a48
MG
339 ft->id = MLX5_GET(create_flow_table_out, out,
340 table_id);
4a98544d
PB
341 ft->max_fte = size;
342 } else {
343 mlx5_ft_pool_put_sz(ns->dev, size);
344 }
345
26a81453
MG
346 return err;
347}
348
ae288a48 349static int mlx5_cmd_destroy_flow_table(struct mlx5_flow_root_namespace *ns,
af76c501 350 struct mlx5_flow_table *ft)
26a81453 351{
31a0956e 352 u32 in[MLX5_ST_SZ_DW(destroy_flow_table_in)] = {};
ae288a48 353 struct mlx5_core_dev *dev = ns->dev;
4a98544d 354 int err;
26a81453
MG
355
356 MLX5_SET(destroy_flow_table_in, in, opcode,
357 MLX5_CMD_OP_DESTROY_FLOW_TABLE);
358 MLX5_SET(destroy_flow_table_in, in, table_type, ft->type);
359 MLX5_SET(destroy_flow_table_in, in, table_id, ft->id);
617b860c
PP
360 MLX5_SET(destroy_flow_table_in, in, vport_number, ft->vport);
361 MLX5_SET(destroy_flow_table_in, in, other_vport,
362 !!(ft->flags & MLX5_FLOW_TABLE_OTHER_VPORT));
26a81453 363
4a98544d
PB
364 err = mlx5_cmd_exec_in(dev, destroy_flow_table, in);
365 if (!err)
366 mlx5_ft_pool_put_sz(ns->dev, ft->max_fte);
367
368 return err;
26a81453
MG
369}
370
ae288a48 371static int mlx5_cmd_modify_flow_table(struct mlx5_flow_root_namespace *ns,
af76c501
MB
372 struct mlx5_flow_table *ft,
373 struct mlx5_flow_table *next_ft)
34a40e68 374{
31a0956e 375 u32 in[MLX5_ST_SZ_DW(modify_flow_table_in)] = {};
ae288a48 376 struct mlx5_core_dev *dev = ns->dev;
34a40e68
MG
377
378 MLX5_SET(modify_flow_table_in, in, opcode,
379 MLX5_CMD_OP_MODIFY_FLOW_TABLE);
380 MLX5_SET(modify_flow_table_in, in, table_type, ft->type);
381 MLX5_SET(modify_flow_table_in, in, table_id, ft->id);
aaff1bea
AH
382
383 if (ft->op_mod == FS_FT_OP_MOD_LAG_DEMUX) {
384 MLX5_SET(modify_flow_table_in, in, modify_field_select,
385 MLX5_MODIFY_FLOW_TABLE_LAG_NEXT_TABLE_ID);
386 if (next_ft) {
387 MLX5_SET(modify_flow_table_in, in,
0c90e9c6 388 flow_table_context.lag_master_next_table_id, next_ft->id);
aaff1bea
AH
389 } else {
390 MLX5_SET(modify_flow_table_in, in,
0c90e9c6 391 flow_table_context.lag_master_next_table_id, 0);
aaff1bea 392 }
34a40e68 393 } else {
617b860c
PP
394 MLX5_SET(modify_flow_table_in, in, vport_number, ft->vport);
395 MLX5_SET(modify_flow_table_in, in, other_vport,
396 !!(ft->flags & MLX5_FLOW_TABLE_OTHER_VPORT));
aaff1bea
AH
397 MLX5_SET(modify_flow_table_in, in, modify_field_select,
398 MLX5_MODIFY_FLOW_TABLE_MISS_TABLE_ID);
399 if (next_ft) {
0c90e9c6 400 MLX5_SET(modify_flow_table_in, in,
f6f7d6b5
MG
401 flow_table_context.table_miss_action,
402 MLX5_FLOW_TABLE_MISS_ACTION_FWD);
0c90e9c6
MG
403 MLX5_SET(modify_flow_table_in, in,
404 flow_table_context.table_miss_id,
aaff1bea
AH
405 next_ft->id);
406 } else {
0c90e9c6 407 MLX5_SET(modify_flow_table_in, in,
f6f7d6b5 408 flow_table_context.table_miss_action,
f66ad830 409 ft->def_miss_action);
aaff1bea 410 }
34a40e68
MG
411 }
412
31a0956e 413 return mlx5_cmd_exec_in(dev, modify_flow_table, in);
34a40e68
MG
414}
415
ae288a48 416static int mlx5_cmd_create_flow_group(struct mlx5_flow_root_namespace *ns,
af76c501
MB
417 struct mlx5_flow_table *ft,
418 u32 *in,
ae288a48 419 struct mlx5_flow_group *fg)
26a81453 420{
31a0956e 421 u32 out[MLX5_ST_SZ_DW(create_flow_group_out)] = {};
ae288a48 422 struct mlx5_core_dev *dev = ns->dev;
26a81453
MG
423 int err;
424
26a81453
MG
425 MLX5_SET(create_flow_group_in, in, opcode,
426 MLX5_CMD_OP_CREATE_FLOW_GROUP);
427 MLX5_SET(create_flow_group_in, in, table_type, ft->type);
428 MLX5_SET(create_flow_group_in, in, table_id, ft->id);
617b860c
PP
429 MLX5_SET(create_flow_group_in, in, vport_number, ft->vport);
430 MLX5_SET(create_flow_group_in, in, other_vport,
431 !!(ft->flags & MLX5_FLOW_TABLE_OTHER_VPORT));
31a0956e 432 err = mlx5_cmd_exec_inout(dev, create_flow_group, in, out);
26a81453 433 if (!err)
ae288a48
MG
434 fg->id = MLX5_GET(create_flow_group_out, out,
435 group_id);
26a81453
MG
436 return err;
437}
438
ae288a48 439static int mlx5_cmd_destroy_flow_group(struct mlx5_flow_root_namespace *ns,
af76c501 440 struct mlx5_flow_table *ft,
ae288a48 441 struct mlx5_flow_group *fg)
26a81453 442{
31a0956e 443 u32 in[MLX5_ST_SZ_DW(destroy_flow_group_in)] = {};
ae288a48 444 struct mlx5_core_dev *dev = ns->dev;
26a81453
MG
445
446 MLX5_SET(destroy_flow_group_in, in, opcode,
447 MLX5_CMD_OP_DESTROY_FLOW_GROUP);
448 MLX5_SET(destroy_flow_group_in, in, table_type, ft->type);
449 MLX5_SET(destroy_flow_group_in, in, table_id, ft->id);
ae288a48 450 MLX5_SET(destroy_flow_group_in, in, group_id, fg->id);
617b860c
PP
451 MLX5_SET(destroy_flow_group_in, in, vport_number, ft->vport);
452 MLX5_SET(destroy_flow_group_in, in, other_vport,
453 !!(ft->flags & MLX5_FLOW_TABLE_OTHER_VPORT));
31a0956e 454 return mlx5_cmd_exec_in(dev, destroy_flow_group, in);
26a81453
MG
455}
456
a2c6162b
EB
457static int mlx5_set_extended_dest(struct mlx5_core_dev *dev,
458 struct fs_fte *fte, bool *extended_dest)
459{
460 int fw_log_max_fdb_encap_uplink =
461 MLX5_CAP_ESW(dev, log_max_fdb_encap_uplink);
462 int num_fwd_destinations = 0;
463 struct mlx5_flow_rule *dst;
464 int num_encap = 0;
465
466 *extended_dest = false;
ef7b79b9 467 if (!(fte->act_dests.action.action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST))
a2c6162b
EB
468 return 0;
469
470 list_for_each_entry(dst, &fte->node.children, node.list) {
6510bc0d
MB
471 if (dst->dest_attr.type == MLX5_FLOW_DESTINATION_TYPE_COUNTER ||
472 dst->dest_attr.type == MLX5_FLOW_DESTINATION_TYPE_NONE)
a2c6162b 473 continue;
e3a0f40b
YK
474 if ((dst->dest_attr.type == MLX5_FLOW_DESTINATION_TYPE_VPORT ||
475 dst->dest_attr.type == MLX5_FLOW_DESTINATION_TYPE_UPLINK) &&
a2c6162b
EB
476 dst->dest_attr.vport.flags & MLX5_FLOW_DEST_VPORT_REFORMAT_ID)
477 num_encap++;
478 num_fwd_destinations++;
479 }
480 if (num_fwd_destinations > 1 && num_encap > 0)
481 *extended_dest = true;
482
483 if (*extended_dest && !fw_log_max_fdb_encap_uplink) {
484 mlx5_core_warn(dev, "FW does not support extended destination");
485 return -EOPNOTSUPP;
486 }
487 if (num_encap > (1 << fw_log_max_fdb_encap_uplink)) {
488 mlx5_core_warn(dev, "FW does not support more than %d encaps",
489 1 << fw_log_max_fdb_encap_uplink);
490 return -EOPNOTSUPP;
491 }
492
493 return 0;
494}
91707779
JL
495
496static void
497mlx5_cmd_set_fte_flow_meter(struct fs_fte *fte, void *in_flow_context)
498{
499 void *exe_aso_ctrl;
500 void *execute_aso;
501
502 execute_aso = MLX5_ADDR_OF(flow_context, in_flow_context,
503 execute_aso[0]);
504 MLX5_SET(execute_aso, execute_aso, valid, 1);
505 MLX5_SET(execute_aso, execute_aso, aso_object_id,
ef7b79b9 506 fte->act_dests.action.exe_aso.object_id);
91707779
JL
507
508 exe_aso_ctrl = MLX5_ADDR_OF(execute_aso, execute_aso, exe_aso_ctrl);
509 MLX5_SET(exe_aso_ctrl_flow_meter, exe_aso_ctrl, return_reg_id,
ef7b79b9 510 fte->act_dests.action.exe_aso.return_reg_id);
91707779 511 MLX5_SET(exe_aso_ctrl_flow_meter, exe_aso_ctrl, aso_type,
ef7b79b9 512 fte->act_dests.action.exe_aso.type);
91707779 513 MLX5_SET(exe_aso_ctrl_flow_meter, exe_aso_ctrl, init_color,
ef7b79b9 514 fte->act_dests.action.exe_aso.flow_meter.init_color);
91707779 515 MLX5_SET(exe_aso_ctrl_flow_meter, exe_aso_ctrl, meter_id,
ef7b79b9 516 fte->act_dests.action.exe_aso.flow_meter.meter_idx);
91707779
JL
517}
518
26a81453
MG
519static int mlx5_cmd_set_fte(struct mlx5_core_dev *dev,
520 int opmod, int modify_mask,
521 struct mlx5_flow_table *ft,
522 unsigned group_id,
523 struct fs_fte *fte)
524{
c4f287c4 525 u32 out[MLX5_ST_SZ_DW(set_fte_out)] = {0};
a2c6162b 526 bool extended_dest = false;
26a81453 527 struct mlx5_flow_rule *dst;
0c06897a 528 void *in_flow_context, *vlan;
26a81453 529 void *in_match_value;
ca7690da 530 u32 reformat_id = 0;
a2c6162b
EB
531 unsigned int inlen;
532 int dst_cnt_size;
87cd0649 533 u32 *in, action;
26a81453 534 void *in_dests;
26a81453
MG
535 int err;
536
a2c6162b
EB
537 if (mlx5_set_extended_dest(dev, fte, &extended_dest))
538 return -EOPNOTSUPP;
539
540 if (!extended_dest)
541 dst_cnt_size = MLX5_ST_SZ_BYTES(dest_format_struct);
542 else
543 dst_cnt_size = MLX5_ST_SZ_BYTES(extended_dest_format);
544
ef7b79b9 545 inlen = MLX5_ST_SZ_BYTES(set_fte_in) + fte->act_dests.dests_size * dst_cnt_size;
1b9a07ee
LR
546 in = kvzalloc(inlen, GFP_KERNEL);
547 if (!in)
26a81453 548 return -ENOMEM;
26a81453
MG
549
550 MLX5_SET(set_fte_in, in, opcode, MLX5_CMD_OP_SET_FLOW_TABLE_ENTRY);
551 MLX5_SET(set_fte_in, in, op_mod, opmod);
552 MLX5_SET(set_fte_in, in, modify_enable_mask, modify_mask);
553 MLX5_SET(set_fte_in, in, table_type, ft->type);
554 MLX5_SET(set_fte_in, in, table_id, ft->id);
555 MLX5_SET(set_fte_in, in, flow_index, fte->index);
ff189b43 556 MLX5_SET(set_fte_in, in, ignore_flow_level,
ef7b79b9 557 !!(fte->act_dests.action.flags & FLOW_ACT_IGNORE_FLOW_LEVEL));
ff189b43 558
617b860c
PP
559 MLX5_SET(set_fte_in, in, vport_number, ft->vport);
560 MLX5_SET(set_fte_in, in, other_vport,
561 !!(ft->flags & MLX5_FLOW_TABLE_OTHER_VPORT));
26a81453
MG
562
563 in_flow_context = MLX5_ADDR_OF(set_fte_in, in, flow_context);
564 MLX5_SET(flow_context, in_flow_context, group_id, group_id);
0c06897a 565
bb0ee7dc 566 MLX5_SET(flow_context, in_flow_context, flow_tag,
ef7b79b9 567 fte->act_dests.flow_context.flow_tag);
8d212ff0 568 MLX5_SET(flow_context, in_flow_context, flow_source,
ef7b79b9 569 fte->act_dests.flow_context.flow_source);
ec7cc38e 570 MLX5_SET(flow_context, in_flow_context, uplink_hairpin_en,
ef7b79b9 571 !!(fte->act_dests.flow_context.flags & FLOW_CONTEXT_UPLINK_HAIRPIN_EN));
8d212ff0 572
a2c6162b
EB
573 MLX5_SET(flow_context, in_flow_context, extended_destination,
574 extended_dest);
a2c6162b 575
ef7b79b9 576 action = fte->act_dests.action.action;
87cd0649
YK
577 if (extended_dest)
578 action &= ~MLX5_FLOW_CONTEXT_ACTION_PACKET_REFORMAT;
579
580 MLX5_SET(flow_context, in_flow_context, action, action);
581
ef7b79b9 582 if (!extended_dest && fte->act_dests.action.pkt_reformat) {
ca7690da
VD
583 struct mlx5_pkt_reformat *pkt_reformat =
584 fte->act_dests.action.pkt_reformat;
585
586 err = mlx5_fs_get_packet_reformat_id(pkt_reformat,
587 &reformat_id);
588 if (err) {
589 mlx5_core_err(dev,
590 "Unsupported pkt_reformat type (%d)\n",
591 pkt_reformat->reformat_type);
592 goto err_out;
87cd0649 593 }
a2c6162b 594 }
87cd0649 595
ca7690da
VD
596 MLX5_SET(flow_context, in_flow_context, packet_reformat_id,
597 reformat_id);
87cd0649 598
ef7b79b9
MB
599 if (fte->act_dests.action.modify_hdr) {
600 if (fte->act_dests.action.modify_hdr->owner == MLX5_FLOW_RESOURCE_OWNER_SW) {
87cd0649
YK
601 mlx5_core_err(dev, "Can't use SW-owned modify_hdr in FW-owned table\n");
602 err = -EOPNOTSUPP;
603 goto err_out;
604 }
605
2b688ea5 606 MLX5_SET(flow_context, in_flow_context, modify_header_id,
ef7b79b9 607 fte->act_dests.action.modify_hdr->id);
87cd0649 608 }
0c06897a 609
e227ee99 610 MLX5_SET(flow_context, in_flow_context, encrypt_decrypt_type,
ef7b79b9 611 fte->act_dests.action.crypto.type);
e227ee99 612 MLX5_SET(flow_context, in_flow_context, encrypt_decrypt_obj_id,
ef7b79b9 613 fte->act_dests.action.crypto.obj_id);
5e466345 614
0c06897a
OG
615 vlan = MLX5_ADDR_OF(flow_context, in_flow_context, push_vlan);
616
ef7b79b9
MB
617 MLX5_SET(vlan, vlan, ethtype, fte->act_dests.action.vlan[0].ethtype);
618 MLX5_SET(vlan, vlan, vid, fte->act_dests.action.vlan[0].vid);
619 MLX5_SET(vlan, vlan, prio, fte->act_dests.action.vlan[0].prio);
8da6fe2a
JL
620
621 vlan = MLX5_ADDR_OF(flow_context, in_flow_context, push_vlan_2);
622
ef7b79b9
MB
623 MLX5_SET(vlan, vlan, ethtype, fte->act_dests.action.vlan[1].ethtype);
624 MLX5_SET(vlan, vlan, vid, fte->act_dests.action.vlan[1].vid);
625 MLX5_SET(vlan, vlan, prio, fte->act_dests.action.vlan[1].prio);
0c06897a 626
26a81453
MG
627 in_match_value = MLX5_ADDR_OF(flow_context, in_flow_context,
628 match_value);
667cb65a 629 memcpy(in_match_value, &fte->val, sizeof(fte->val));
26a81453 630
bd5251db 631 in_dests = MLX5_ADDR_OF(flow_context, in_flow_context, destination);
ef7b79b9 632 if (fte->act_dests.action.action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST) {
bd5251db
AV
633 int list_size = 0;
634
60ab4584 635 list_for_each_entry(dst, &fte->node.children, node.list) {
d639af62
MB
636 enum mlx5_flow_destination_type type = dst->dest_attr.type;
637 enum mlx5_ifc_flow_destination_type ifc_type;
638 unsigned int id;
60ab4584 639
664000b6 640 if (type == MLX5_FLOW_DESTINATION_TYPE_COUNTER)
bd5251db
AV
641 continue;
642
664000b6 643 switch (type) {
6510bc0d
MB
644 case MLX5_FLOW_DESTINATION_TYPE_NONE:
645 continue;
664000b6
YH
646 case MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE_NUM:
647 id = dst->dest_attr.ft_num;
d639af62 648 ifc_type = MLX5_IFC_FLOW_DESTINATION_TYPE_FLOW_TABLE;
664000b6
YH
649 break;
650 case MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE:
60ab4584 651 id = dst->dest_attr.ft->id;
d639af62 652 ifc_type = MLX5_IFC_FLOW_DESTINATION_TYPE_FLOW_TABLE;
664000b6 653 break;
58a606db 654 case MLX5_FLOW_DESTINATION_TYPE_UPLINK:
664000b6 655 case MLX5_FLOW_DESTINATION_TYPE_VPORT:
b17f7fc1
SK
656 MLX5_SET(dest_format_struct, in_dests,
657 destination_eswitch_owner_vhca_id_valid,
aa39c2c0
EB
658 !!(dst->dest_attr.vport.flags &
659 MLX5_FLOW_DEST_VPORT_VHCA_ID));
b17f7fc1
SK
660 MLX5_SET(dest_format_struct, in_dests,
661 destination_eswitch_owner_vhca_id,
662 dst->dest_attr.vport.vhca_id);
58a606db
MG
663 if (type == MLX5_FLOW_DESTINATION_TYPE_UPLINK) {
664 /* destination_id is reserved */
665 id = 0;
d639af62 666 ifc_type = MLX5_IFC_FLOW_DESTINATION_TYPE_UPLINK;
58a606db
MG
667 break;
668 }
d639af62 669 ifc_type = MLX5_IFC_FLOW_DESTINATION_TYPE_VPORT;
58a606db 670 id = dst->dest_attr.vport.num;
0fd79b1e
EB
671 if (extended_dest &&
672 dst->dest_attr.vport.pkt_reformat) {
a2c6162b
EB
673 MLX5_SET(dest_format_struct, in_dests,
674 packet_reformat,
675 !!(dst->dest_attr.vport.flags &
676 MLX5_FLOW_DEST_VPORT_REFORMAT_ID));
677 MLX5_SET(extended_dest_format, in_dests,
678 packet_reformat_id,
2b688ea5 679 dst->dest_attr.vport.pkt_reformat->id);
a2c6162b 680 }
664000b6 681 break;
38730630
CM
682 case MLX5_FLOW_DESTINATION_TYPE_FLOW_SAMPLER:
683 id = dst->dest_attr.sampler_id;
d639af62 684 ifc_type = MLX5_IFC_FLOW_DESTINATION_TYPE_FLOW_SAMPLER;
38730630 685 break;
4f226b71
MZ
686 case MLX5_FLOW_DESTINATION_TYPE_TABLE_TYPE:
687 MLX5_SET(dest_format_struct, in_dests,
688 destination_table_type, dst->dest_attr.ft->type);
689 id = dst->dest_attr.ft->id;
690 ifc_type = MLX5_IFC_FLOW_DESTINATION_TYPE_TABLE_TYPE;
691 break;
664000b6 692 default:
60ab4584 693 id = dst->dest_attr.tir_num;
d639af62 694 ifc_type = MLX5_IFC_FLOW_DESTINATION_TYPE_TIR;
60ab4584 695 }
664000b6
YH
696
697 MLX5_SET(dest_format_struct, in_dests, destination_type,
d639af62 698 ifc_type);
60ab4584 699 MLX5_SET(dest_format_struct, in_dests, destination_id, id);
a2c6162b 700 in_dests += dst_cnt_size;
bd5251db
AV
701 list_size++;
702 }
703
704 MLX5_SET(flow_context, in_flow_context, destination_list_size,
705 list_size);
706 }
707
ef7b79b9 708 if (fte->act_dests.action.action & MLX5_FLOW_CONTEXT_ACTION_COUNT) {
16f1c5bb
RS
709 int max_list_size = BIT(MLX5_CAP_FLOWTABLE_TYPE(dev,
710 log_max_flow_counter,
711 ft->type));
bd5251db
AV
712 int list_size = 0;
713
714 list_for_each_entry(dst, &fte->node.children, node.list) {
715 if (dst->dest_attr.type !=
716 MLX5_FLOW_DESTINATION_TYPE_COUNTER)
717 continue;
718
719 MLX5_SET(flow_counter_list, in_dests, flow_counter_id,
95f68e06 720 mlx5_fc_id(dst->dest_attr.counter));
a2c6162b 721 in_dests += dst_cnt_size;
bd5251db 722 list_size++;
60ab4584 723 }
16f1c5bb
RS
724 if (list_size > max_list_size) {
725 err = -EINVAL;
726 goto err_out;
727 }
bd5251db
AV
728
729 MLX5_SET(flow_context, in_flow_context, flow_counter_list_size,
730 list_size);
26a81453 731 }
bd5251db 732
ef7b79b9
MB
733 if (fte->act_dests.action.action & MLX5_FLOW_CONTEXT_ACTION_EXECUTE_ASO) {
734 if (fte->act_dests.action.exe_aso.type == MLX5_EXE_ASO_FLOW_METER) {
91707779
JL
735 mlx5_cmd_set_fte_flow_meter(fte, in_flow_context);
736 } else {
737 err = -EOPNOTSUPP;
738 goto err_out;
739 }
740 }
741
c4f287c4 742 err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
16f1c5bb 743err_out:
26a81453 744 kvfree(in);
26a81453
MG
745 return err;
746}
747
ae288a48 748static int mlx5_cmd_create_fte(struct mlx5_flow_root_namespace *ns,
af76c501
MB
749 struct mlx5_flow_table *ft,
750 struct mlx5_flow_group *group,
751 struct fs_fte *fte)
26a81453 752{
ae288a48 753 struct mlx5_core_dev *dev = ns->dev;
af76c501
MB
754 unsigned int group_id = group->id;
755
c4f287c4 756 return mlx5_cmd_set_fte(dev, 0, 0, ft, group_id, fte);
26a81453
MG
757}
758
ae288a48 759static int mlx5_cmd_update_fte(struct mlx5_flow_root_namespace *ns,
af76c501 760 struct mlx5_flow_table *ft,
ae288a48 761 struct mlx5_flow_group *fg,
af76c501
MB
762 int modify_mask,
763 struct fs_fte *fte)
26a81453
MG
764{
765 int opmod;
ae288a48 766 struct mlx5_core_dev *dev = ns->dev;
26a81453
MG
767 int atomic_mod_cap = MLX5_CAP_FLOWTABLE(dev,
768 flow_table_properties_nic_receive.
769 flow_modify_en);
770 if (!atomic_mod_cap)
9eb78923 771 return -EOPNOTSUPP;
26a81453 772 opmod = 1;
26a81453 773
ae288a48 774 return mlx5_cmd_set_fte(dev, opmod, modify_mask, ft, fg->id, fte);
26a81453
MG
775}
776
ae288a48 777static int mlx5_cmd_delete_fte(struct mlx5_flow_root_namespace *ns,
af76c501 778 struct mlx5_flow_table *ft,
e810bf5e 779 struct fs_fte *fte)
26a81453 780{
31a0956e 781 u32 in[MLX5_ST_SZ_DW(delete_fte_in)] = {};
ae288a48 782 struct mlx5_core_dev *dev = ns->dev;
26a81453
MG
783
784 MLX5_SET(delete_fte_in, in, opcode, MLX5_CMD_OP_DELETE_FLOW_TABLE_ENTRY);
785 MLX5_SET(delete_fte_in, in, table_type, ft->type);
786 MLX5_SET(delete_fte_in, in, table_id, ft->id);
e810bf5e 787 MLX5_SET(delete_fte_in, in, flow_index, fte->index);
617b860c
PP
788 MLX5_SET(delete_fte_in, in, vport_number, ft->vport);
789 MLX5_SET(delete_fte_in, in, other_vport,
790 !!(ft->flags & MLX5_FLOW_TABLE_OTHER_VPORT));
26a81453 791
31a0956e 792 return mlx5_cmd_exec_in(dev, delete_fte, in);
26a81453 793}
9dc0b289 794
8536a6bf
GT
795int mlx5_cmd_fc_bulk_alloc(struct mlx5_core_dev *dev,
796 enum mlx5_fc_bulk_alloc_bitmask alloc_bitmask,
797 u32 *id)
9dc0b289 798{
31a0956e
LR
799 u32 out[MLX5_ST_SZ_DW(alloc_flow_counter_out)] = {};
800 u32 in[MLX5_ST_SZ_DW(alloc_flow_counter_in)] = {};
9dc0b289
AV
801 int err;
802
9dc0b289
AV
803 MLX5_SET(alloc_flow_counter_in, in, opcode,
804 MLX5_CMD_OP_ALLOC_FLOW_COUNTER);
8536a6bf 805 MLX5_SET(alloc_flow_counter_in, in, flow_counter_bulk, alloc_bitmask);
9dc0b289 806
31a0956e 807 err = mlx5_cmd_exec_inout(dev, alloc_flow_counter, in, out);
c4f287c4
SM
808 if (!err)
809 *id = MLX5_GET(alloc_flow_counter_out, out, flow_counter_id);
810 return err;
9dc0b289
AV
811}
812
8536a6bf
GT
813int mlx5_cmd_fc_alloc(struct mlx5_core_dev *dev, u32 *id)
814{
815 return mlx5_cmd_fc_bulk_alloc(dev, 0, id);
816}
817
a8ffcc74 818int mlx5_cmd_fc_free(struct mlx5_core_dev *dev, u32 id)
9dc0b289 819{
31a0956e 820 u32 in[MLX5_ST_SZ_DW(dealloc_flow_counter_in)] = {};
9dc0b289
AV
821
822 MLX5_SET(dealloc_flow_counter_in, in, opcode,
823 MLX5_CMD_OP_DEALLOC_FLOW_COUNTER);
824 MLX5_SET(dealloc_flow_counter_in, in, flow_counter_id, id);
31a0956e 825 return mlx5_cmd_exec_in(dev, dealloc_flow_counter, in);
9dc0b289
AV
826}
827
a8ffcc74 828int mlx5_cmd_fc_query(struct mlx5_core_dev *dev, u32 id,
9dc0b289
AV
829 u64 *packets, u64 *bytes)
830{
831 u32 out[MLX5_ST_SZ_BYTES(query_flow_counter_out) +
31a0956e
LR
832 MLX5_ST_SZ_BYTES(traffic_counter)] = {};
833 u32 in[MLX5_ST_SZ_DW(query_flow_counter_in)] = {};
9dc0b289
AV
834 void *stats;
835 int err = 0;
836
9dc0b289
AV
837 MLX5_SET(query_flow_counter_in, in, opcode,
838 MLX5_CMD_OP_QUERY_FLOW_COUNTER);
839 MLX5_SET(query_flow_counter_in, in, op_mod, 0);
840 MLX5_SET(query_flow_counter_in, in, flow_counter_id, id);
c4f287c4 841 err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
9dc0b289
AV
842 if (err)
843 return err;
844
845 stats = MLX5_ADDR_OF(query_flow_counter_out, out, flow_statistics);
846 *packets = MLX5_GET64(traffic_counter, stats, packets);
847 *bytes = MLX5_GET64(traffic_counter, stats, octets);
9dc0b289
AV
848 return 0;
849}
a351a1b0 850
6f06e04b 851int mlx5_cmd_fc_get_bulk_query_out_len(int bulk_len)
a351a1b0 852{
6f06e04b
GT
853 return MLX5_ST_SZ_BYTES(query_flow_counter_out) +
854 MLX5_ST_SZ_BYTES(traffic_counter) * bulk_len;
a351a1b0
AV
855}
856
6f06e04b
GT
857int mlx5_cmd_fc_bulk_query(struct mlx5_core_dev *dev, u32 base_id, int bulk_len,
858 u32 *out)
a351a1b0 859{
6f06e04b 860 int outlen = mlx5_cmd_fc_get_bulk_query_out_len(bulk_len);
31a0956e 861 u32 in[MLX5_ST_SZ_DW(query_flow_counter_in)] = {};
a351a1b0
AV
862
863 MLX5_SET(query_flow_counter_in, in, opcode,
864 MLX5_CMD_OP_QUERY_FLOW_COUNTER);
6f06e04b
GT
865 MLX5_SET(query_flow_counter_in, in, flow_counter_id, base_id);
866 MLX5_SET(query_flow_counter_in, in, num_of_counters, bulk_len);
867 return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
a351a1b0 868}
575ddf58 869
2b688ea5 870static int mlx5_cmd_packet_reformat_alloc(struct mlx5_flow_root_namespace *ns,
3f3f05ab 871 struct mlx5_pkt_reformat_params *params,
2b688ea5
MG
872 enum mlx5_flow_namespace_type namespace,
873 struct mlx5_pkt_reformat *pkt_reformat)
575ddf58 874{
31a0956e 875 u32 out[MLX5_ST_SZ_DW(alloc_packet_reformat_context_out)] = {};
2b688ea5 876 struct mlx5_core_dev *dev = ns->dev;
60786f09 877 void *packet_reformat_context_in;
31ca3648 878 int max_encap_size;
60786f09 879 void *reformat;
43f93839 880 int inlen;
575ddf58 881 int err;
43f93839 882 u32 *in;
575ddf58 883
22c3f2f5
MG
884 if (namespace == MLX5_FLOW_NAMESPACE_FDB ||
885 namespace == MLX5_FLOW_NAMESPACE_FDB_BYPASS)
31ca3648
MB
886 max_encap_size = MLX5_CAP_ESW(dev, max_encap_header_size);
887 else
888 max_encap_size = MLX5_CAP_FLOWTABLE(dev, max_encap_header_size);
889
3f3f05ab 890 if (params->size > max_encap_size) {
073ff3c8 891 mlx5_core_warn(dev, "encap size %zd too big, max supported is %d\n",
3f3f05ab 892 params->size, max_encap_size);
575ddf58 893 return -EINVAL;
073ff3c8 894 }
575ddf58 895
3f3f05ab
YK
896 in = kzalloc(MLX5_ST_SZ_BYTES(alloc_packet_reformat_context_in) +
897 params->size, GFP_KERNEL);
43f93839
HHZ
898 if (!in)
899 return -ENOMEM;
900
60786f09
MB
901 packet_reformat_context_in = MLX5_ADDR_OF(alloc_packet_reformat_context_in,
902 in, packet_reformat_context);
903 reformat = MLX5_ADDR_OF(packet_reformat_context_in,
904 packet_reformat_context_in,
905 reformat_data);
3f3f05ab 906 inlen = reformat - (void *)in + params->size;
43f93839 907
60786f09
MB
908 MLX5_SET(alloc_packet_reformat_context_in, in, opcode,
909 MLX5_CMD_OP_ALLOC_PACKET_REFORMAT_CONTEXT);
910 MLX5_SET(packet_reformat_context_in, packet_reformat_context_in,
3f3f05ab 911 reformat_data_size, params->size);
60786f09 912 MLX5_SET(packet_reformat_context_in, packet_reformat_context_in,
3f3f05ab
YK
913 reformat_type, params->type);
914 MLX5_SET(packet_reformat_context_in, packet_reformat_context_in,
915 reformat_param_0, params->param_0);
916 MLX5_SET(packet_reformat_context_in, packet_reformat_context_in,
917 reformat_param_1, params->param_1);
918 if (params->data && params->size)
919 memcpy(reformat, params->data, params->size);
575ddf58 920
575ddf58
IL
921 err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
922
2b688ea5
MG
923 pkt_reformat->id = MLX5_GET(alloc_packet_reformat_context_out,
924 out, packet_reformat_id);
87cd0649
YK
925 pkt_reformat->owner = MLX5_FLOW_RESOURCE_OWNER_FW;
926
43f93839 927 kfree(in);
575ddf58
IL
928 return err;
929}
930
2b688ea5
MG
931static void mlx5_cmd_packet_reformat_dealloc(struct mlx5_flow_root_namespace *ns,
932 struct mlx5_pkt_reformat *pkt_reformat)
575ddf58 933{
31a0956e 934 u32 in[MLX5_ST_SZ_DW(dealloc_packet_reformat_context_in)] = {};
2b688ea5 935 struct mlx5_core_dev *dev = ns->dev;
575ddf58 936
60786f09
MB
937 MLX5_SET(dealloc_packet_reformat_context_in, in, opcode,
938 MLX5_CMD_OP_DEALLOC_PACKET_REFORMAT_CONTEXT);
939 MLX5_SET(dealloc_packet_reformat_context_in, in, packet_reformat_id,
2b688ea5 940 pkt_reformat->id);
575ddf58 941
31a0956e 942 mlx5_cmd_exec_in(dev, dealloc_packet_reformat_context, in);
575ddf58 943}
2de24fed 944
2b688ea5
MG
945static int mlx5_cmd_modify_header_alloc(struct mlx5_flow_root_namespace *ns,
946 u8 namespace, u8 num_actions,
947 void *modify_actions,
948 struct mlx5_modify_hdr *modify_hdr)
2de24fed 949{
31a0956e 950 u32 out[MLX5_ST_SZ_DW(alloc_modify_header_context_out)] = {};
2de24fed 951 int max_actions, actions_size, inlen, err;
2b688ea5 952 struct mlx5_core_dev *dev = ns->dev;
2de24fed
OG
953 void *actions_in;
954 u8 table_type;
955 u32 *in;
956
957 switch (namespace) {
958 case MLX5_FLOW_NAMESPACE_FDB:
22c3f2f5 959 case MLX5_FLOW_NAMESPACE_FDB_BYPASS:
2de24fed
OG
960 max_actions = MLX5_CAP_ESW_FLOWTABLE_FDB(dev, max_modify_header_actions);
961 table_type = FS_FT_FDB;
962 break;
15d187e2 963 case MLX5_FLOW_NAMESPACE_KERNEL_RX_MACSEC:
2de24fed 964 case MLX5_FLOW_NAMESPACE_KERNEL:
c3c062f8 965 case MLX5_FLOW_NAMESPACE_BYPASS:
2de24fed
OG
966 max_actions = MLX5_CAP_FLOWTABLE_NIC_RX(dev, max_modify_header_actions);
967 table_type = FS_FT_NIC_RX;
968 break;
c3c062f8 969 case MLX5_FLOW_NAMESPACE_EGRESS:
ee534d7f
LN
970 case MLX5_FLOW_NAMESPACE_EGRESS_IPSEC:
971 case MLX5_FLOW_NAMESPACE_EGRESS_MACSEC:
c3c062f8
MB
972 max_actions = MLX5_CAP_FLOWTABLE_NIC_TX(dev, max_modify_header_actions);
973 table_type = FS_FT_NIC_TX;
974 break;
84b0d6a7
JL
975 case MLX5_FLOW_NAMESPACE_ESW_INGRESS:
976 max_actions = MLX5_CAP_ESW_INGRESS_ACL(dev, max_modify_header_actions);
977 table_type = FS_FT_ESW_INGRESS_ACL;
978 break;
ac7ea1c7 979 case MLX5_FLOW_NAMESPACE_RDMA_TX_MACSEC:
ecf814e0
MG
980 case MLX5_FLOW_NAMESPACE_RDMA_TX:
981 max_actions = MLX5_CAP_FLOWTABLE_RDMA_TX(dev, max_modify_header_actions);
982 table_type = FS_FT_RDMA_TX;
983 break;
2de24fed
OG
984 default:
985 return -EOPNOTSUPP;
986 }
987
988 if (num_actions > max_actions) {
989 mlx5_core_warn(dev, "too many modify header actions %d, max supported %d\n",
990 num_actions, max_actions);
991 return -EOPNOTSUPP;
992 }
993
d65dbedf 994 actions_size = MLX5_UN_SZ_BYTES(set_add_copy_action_in_auto) * num_actions;
2de24fed
OG
995 inlen = MLX5_ST_SZ_BYTES(alloc_modify_header_context_in) + actions_size;
996
997 in = kzalloc(inlen, GFP_KERNEL);
998 if (!in)
999 return -ENOMEM;
1000
1001 MLX5_SET(alloc_modify_header_context_in, in, opcode,
1002 MLX5_CMD_OP_ALLOC_MODIFY_HEADER_CONTEXT);
1003 MLX5_SET(alloc_modify_header_context_in, in, table_type, table_type);
1004 MLX5_SET(alloc_modify_header_context_in, in, num_of_actions, num_actions);
1005
1006 actions_in = MLX5_ADDR_OF(alloc_modify_header_context_in, in, actions);
1007 memcpy(actions_in, modify_actions, actions_size);
1008
2de24fed
OG
1009 err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
1010
2b688ea5 1011 modify_hdr->id = MLX5_GET(alloc_modify_header_context_out, out, modify_header_id);
87cd0649 1012 modify_hdr->owner = MLX5_FLOW_RESOURCE_OWNER_FW;
2de24fed
OG
1013 kfree(in);
1014 return err;
1015}
1016
2b688ea5
MG
1017static void mlx5_cmd_modify_header_dealloc(struct mlx5_flow_root_namespace *ns,
1018 struct mlx5_modify_hdr *modify_hdr)
2de24fed 1019{
31a0956e 1020 u32 in[MLX5_ST_SZ_DW(dealloc_modify_header_context_in)] = {};
2b688ea5 1021 struct mlx5_core_dev *dev = ns->dev;
2de24fed 1022
2de24fed
OG
1023 MLX5_SET(dealloc_modify_header_context_in, in, opcode,
1024 MLX5_CMD_OP_DEALLOC_MODIFY_HEADER_CONTEXT);
1025 MLX5_SET(dealloc_modify_header_context_in, in, modify_header_id,
2b688ea5 1026 modify_hdr->id);
2de24fed 1027
31a0956e 1028 mlx5_cmd_exec_in(dev, dealloc_modify_header_context, in);
2de24fed 1029}
af76c501 1030
e7e2519e
MG
1031static int mlx5_cmd_destroy_match_definer(struct mlx5_flow_root_namespace *ns,
1032 int definer_id)
1033{
1034 u32 in[MLX5_ST_SZ_DW(general_obj_in_cmd_hdr)] = {};
1035 u32 out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)];
1036
1037 MLX5_SET(general_obj_in_cmd_hdr, in, opcode,
1038 MLX5_CMD_OP_DESTROY_GENERAL_OBJECT);
1039 MLX5_SET(general_obj_in_cmd_hdr, in, obj_type,
1040 MLX5_OBJ_TYPE_MATCH_DEFINER);
1041 MLX5_SET(general_obj_in_cmd_hdr, in, obj_id, definer_id);
1042
1043 return mlx5_cmd_exec(ns->dev, in, sizeof(in), out, sizeof(out));
1044}
1045
1046static int mlx5_cmd_create_match_definer(struct mlx5_flow_root_namespace *ns,
1047 u16 format_id, u32 *match_mask)
1048{
1049 u32 out[MLX5_ST_SZ_DW(create_match_definer_out)] = {};
1050 u32 in[MLX5_ST_SZ_DW(create_match_definer_in)] = {};
1051 struct mlx5_core_dev *dev = ns->dev;
1052 void *ptr;
1053 int err;
1054
1055 MLX5_SET(create_match_definer_in, in, general_obj_in_cmd_hdr.opcode,
1056 MLX5_CMD_OP_CREATE_GENERAL_OBJECT);
1057 MLX5_SET(create_match_definer_in, in, general_obj_in_cmd_hdr.obj_type,
1058 MLX5_OBJ_TYPE_MATCH_DEFINER);
1059
1060 ptr = MLX5_ADDR_OF(create_match_definer_in, in, obj_context);
1061 MLX5_SET(match_definer, ptr, format_id, format_id);
1062
1063 ptr = MLX5_ADDR_OF(match_definer, ptr, match_mask);
1064 memcpy(ptr, match_mask, MLX5_FLD_SZ_BYTES(match_definer, match_mask));
1065
1066 err = mlx5_cmd_exec_inout(dev, create_match_definer, in, out);
1067 return err ? err : MLX5_GET(general_obj_out_cmd_hdr, out, obj_id);
1068}
1069
8348b71c
DC
1070static u32 mlx5_cmd_get_capabilities(struct mlx5_flow_root_namespace *ns,
1071 enum fs_flow_table_type ft_type)
1072{
1217e698 1073 return MLX5_FLOW_STEERING_CAP_DUPLICATE_MATCH;
8348b71c
DC
1074}
1075
af76c501
MB
1076static const struct mlx5_flow_cmds mlx5_flow_cmds = {
1077 .create_flow_table = mlx5_cmd_create_flow_table,
1078 .destroy_flow_table = mlx5_cmd_destroy_flow_table,
1079 .modify_flow_table = mlx5_cmd_modify_flow_table,
1080 .create_flow_group = mlx5_cmd_create_flow_group,
1081 .destroy_flow_group = mlx5_cmd_destroy_flow_group,
1082 .create_fte = mlx5_cmd_create_fte,
1083 .update_fte = mlx5_cmd_update_fte,
1084 .delete_fte = mlx5_cmd_delete_fte,
1085 .update_root_ft = mlx5_cmd_update_root_ft,
2b688ea5
MG
1086 .packet_reformat_alloc = mlx5_cmd_packet_reformat_alloc,
1087 .packet_reformat_dealloc = mlx5_cmd_packet_reformat_dealloc,
1088 .modify_header_alloc = mlx5_cmd_modify_header_alloc,
6a48faee 1089 .modify_header_dealloc = mlx5_cmd_modify_header_dealloc,
e7e2519e
MG
1090 .create_match_definer = mlx5_cmd_create_match_definer,
1091 .destroy_match_definer = mlx5_cmd_destroy_match_definer,
6a48faee
MG
1092 .set_peer = mlx5_cmd_stub_set_peer,
1093 .create_ns = mlx5_cmd_stub_create_ns,
1094 .destroy_ns = mlx5_cmd_stub_destroy_ns,
8348b71c 1095 .get_capabilities = mlx5_cmd_get_capabilities,
af76c501
MB
1096};
1097
1098static const struct mlx5_flow_cmds mlx5_flow_cmd_stubs = {
1099 .create_flow_table = mlx5_cmd_stub_create_flow_table,
1100 .destroy_flow_table = mlx5_cmd_stub_destroy_flow_table,
1101 .modify_flow_table = mlx5_cmd_stub_modify_flow_table,
1102 .create_flow_group = mlx5_cmd_stub_create_flow_group,
1103 .destroy_flow_group = mlx5_cmd_stub_destroy_flow_group,
1104 .create_fte = mlx5_cmd_stub_create_fte,
1105 .update_fte = mlx5_cmd_stub_update_fte,
1106 .delete_fte = mlx5_cmd_stub_delete_fte,
1107 .update_root_ft = mlx5_cmd_stub_update_root_ft,
2b688ea5
MG
1108 .packet_reformat_alloc = mlx5_cmd_stub_packet_reformat_alloc,
1109 .packet_reformat_dealloc = mlx5_cmd_stub_packet_reformat_dealloc,
1110 .modify_header_alloc = mlx5_cmd_stub_modify_header_alloc,
6a48faee 1111 .modify_header_dealloc = mlx5_cmd_stub_modify_header_dealloc,
e7e2519e
MG
1112 .create_match_definer = mlx5_cmd_stub_create_match_definer,
1113 .destroy_match_definer = mlx5_cmd_stub_destroy_match_definer,
6a48faee
MG
1114 .set_peer = mlx5_cmd_stub_set_peer,
1115 .create_ns = mlx5_cmd_stub_create_ns,
1116 .destroy_ns = mlx5_cmd_stub_destroy_ns,
8348b71c 1117 .get_capabilities = mlx5_cmd_stub_get_capabilities,
af76c501
MB
1118};
1119
6a48faee 1120const struct mlx5_flow_cmds *mlx5_fs_cmd_get_fw_cmds(void)
af76c501
MB
1121{
1122 return &mlx5_flow_cmds;
1123}
1124
1125static const struct mlx5_flow_cmds *mlx5_fs_cmd_get_stub_cmds(void)
1126{
1127 return &mlx5_flow_cmd_stubs;
1128}
1129
1130const struct mlx5_flow_cmds *mlx5_fs_cmd_get_default(enum fs_flow_table_type type)
1131{
1132 switch (type) {
1133 case FS_FT_NIC_RX:
1134 case FS_FT_ESW_EGRESS_ACL:
1135 case FS_FT_ESW_INGRESS_ACL:
1136 case FS_FT_FDB:
1137 case FS_FT_SNIFFER_RX:
1138 case FS_FT_SNIFFER_TX:
5f418378 1139 case FS_FT_NIC_TX:
d83eb50e 1140 case FS_FT_RDMA_RX:
24670b1a 1141 case FS_FT_RDMA_TX:
425a563a 1142 case FS_FT_PORT_SEL:
15b103df
PH
1143 case FS_FT_RDMA_TRANSPORT_RX:
1144 case FS_FT_RDMA_TRANSPORT_TX:
8ce78257 1145 return mlx5_fs_cmd_get_fw_cmds();
af76c501
MB
1146 default:
1147 return mlx5_fs_cmd_get_stub_cmds();
1148 }
1149}
dc6981eb
TT
1150
1151int mlx5_fs_cmd_set_l2table_entry_silent(struct mlx5_core_dev *dev, u8 silent_mode)
1152{
1153 u32 in[MLX5_ST_SZ_DW(set_l2_table_entry_in)] = {};
1154
1155 if (silent_mode && !MLX5_CAP_GEN(dev, silent_mode))
1156 return -EOPNOTSUPP;
1157
1158 MLX5_SET(set_l2_table_entry_in, in, opcode, MLX5_CMD_OP_SET_L2_TABLE_ENTRY);
1159 MLX5_SET(set_l2_table_entry_in, in, silent_mode_valid, 1);
1160 MLX5_SET(set_l2_table_entry_in, in, silent_mode, silent_mode);
1161
1162 return mlx5_cmd_exec_in(dev, set_l2_table_entry, in);
1163}
3c9c34c3
TT
1164
1165int mlx5_fs_cmd_set_tx_flow_table_root(struct mlx5_core_dev *dev, u32 ft_id, bool disconnect)
1166{
1167 u32 out[MLX5_ST_SZ_DW(set_flow_table_root_out)] = {};
1168 u32 in[MLX5_ST_SZ_DW(set_flow_table_root_in)] = {};
1169
1170 if (disconnect && MLX5_CAP_FLOWTABLE_NIC_TX(dev, reset_root_to_default))
1171 return -EOPNOTSUPP;
1172
1173 MLX5_SET(set_flow_table_root_in, in, opcode,
1174 MLX5_CMD_OP_SET_FLOW_TABLE_ROOT);
1175 MLX5_SET(set_flow_table_root_in, in, table_type,
1176 FS_FT_NIC_TX);
1177 if (disconnect)
1178 MLX5_SET(set_flow_table_root_in, in, op_mod, 1);
1179 else
1180 MLX5_SET(set_flow_table_root_in, in, table_id, ft_id);
1181
1182 return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
1183}