xref: /dpdk/drivers/common/mlx5/mlx5_devx_cmds.h (revision 03ab51eafda992874a48c392ca66ffb577fe2b71)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2019 Mellanox Technologies, Ltd
3  */
4 
5 #ifndef RTE_PMD_MLX5_DEVX_CMDS_H_
6 #define RTE_PMD_MLX5_DEVX_CMDS_H_
7 
8 #include "mlx5_glue.h"
9 #include "mlx5_prm.h"
10 #include <rte_compat.h>
11 
12 /*
13  * Defines the amount of retries to allocate the first UAR in the page.
14  * OFED 5.0.x and Upstream rdma_core before v29 returned the NULL as
15  * UAR base address if UAR was not the first object in the UAR page.
16  * It caused the PMD failure and we should try to get another UAR
17  * till we get the first one with non-NULL base address returned.
18  */
19 #define MLX5_ALLOC_UAR_RETRY 32
20 
21 /* This is limitation of libibverbs: in length variable type is u16. */
22 #define MLX5_DEVX_MAX_KLM_ENTRIES ((UINT16_MAX - \
23 		MLX5_ST_SZ_DW(create_mkey_in) * 4) / (MLX5_ST_SZ_DW(klm) * 4))
24 
25 struct mlx5_devx_mkey_attr {
26 	uint64_t addr;
27 	uint64_t size;
28 	uint32_t umem_id;
29 	uint32_t pd;
30 	uint32_t log_entity_size;
31 	uint32_t pg_access:1;
32 	uint32_t relaxed_ordering_write:1;
33 	uint32_t relaxed_ordering_read:1;
34 	uint32_t umr_en:1;
35 	uint32_t crypto_en:2;
36 	uint32_t set_remote_rw:1;
37 	struct mlx5_klm *klm_array;
38 	int klm_num;
39 };
40 
41 /* HCA qos attributes. */
42 struct mlx5_hca_qos_attr {
43 	uint32_t sup:1;	/* Whether QOS is supported. */
44 	uint32_t flow_meter_old:1; /* Flow meter is supported, old version. */
45 	uint32_t packet_pacing:1; /* Packet pacing is supported. */
46 	uint32_t wqe_rate_pp:1; /* Packet pacing WQE rate mode. */
47 	uint32_t flow_meter:1;
48 	/*
49 	 * Flow meter is supported, updated version.
50 	 * When flow_meter is 1, it indicates that REG_C sharing is supported.
51 	 * If flow_meter is 1, flow_meter_old is also 1.
52 	 * Using older driver versions, flow_meter_old can be 1
53 	 * while flow_meter is 0.
54 	 */
55 	uint32_t flow_meter_aso_sup:1;
56 	/* Whether FLOW_METER_ASO Object is supported. */
57 	uint8_t log_max_flow_meter;
58 	/* Power of the maximum supported meters. */
59 	uint8_t flow_meter_reg_c_ids;
60 	/* Bitmap of the reg_Cs available for flow meter to use. */
61 	uint32_t log_meter_aso_granularity:5;
62 	/* Power of the minimum allocation granularity Object. */
63 	uint32_t log_meter_aso_max_alloc:5;
64 	/* Power of the maximum allocation granularity Object. */
65 	uint32_t log_max_num_meter_aso:5;
66 	/* Power of the maximum number of supported objects. */
67 
68 };
69 
70 struct mlx5_hca_vdpa_attr {
71 	uint8_t virtio_queue_type;
72 	uint32_t valid:1;
73 	uint32_t desc_tunnel_offload_type:1;
74 	uint32_t eth_frame_offload_type:1;
75 	uint32_t virtio_version_1_0:1;
76 	uint32_t tso_ipv4:1;
77 	uint32_t tso_ipv6:1;
78 	uint32_t tx_csum:1;
79 	uint32_t rx_csum:1;
80 	uint32_t event_mode:3;
81 	uint32_t log_doorbell_stride:5;
82 	uint32_t log_doorbell_bar_size:5;
83 	uint32_t queue_counters_valid:1;
84 	uint32_t max_num_virtio_queues;
85 	struct {
86 		uint32_t a;
87 		uint32_t b;
88 	} umems[3];
89 	uint64_t doorbell_bar_offset;
90 };
91 
92 struct mlx5_hca_flow_attr {
93 	uint32_t tunnel_header_0_1;
94 	uint32_t tunnel_header_2_3;
95 };
96 
97 /* HCA supports this number of time periods for LRO. */
98 #define MLX5_LRO_NUM_SUPP_PERIODS 4
99 
100 /* HCA attributes. */
101 struct mlx5_hca_attr {
102 	uint32_t eswitch_manager:1;
103 	uint32_t flow_counters_dump:1;
104 	uint32_t log_max_rqt_size:5;
105 	uint32_t parse_graph_flex_node:1;
106 	uint8_t flow_counter_bulk_alloc_bitmap;
107 	uint32_t eth_net_offloads:1;
108 	uint32_t eth_virt:1;
109 	uint32_t wqe_vlan_insert:1;
110 	uint32_t csum_cap:1;
111 	uint32_t wqe_inline_mode:2;
112 	uint32_t vport_inline_mode:3;
113 	uint32_t tunnel_stateless_geneve_rx:1;
114 	uint32_t geneve_max_opt_len:1; /* 0x0: 14DW, 0x1: 63DW */
115 	uint32_t tunnel_stateless_gtp:1;
116 	uint32_t lro_cap:1;
117 	uint32_t tunnel_lro_gre:1;
118 	uint32_t tunnel_lro_vxlan:1;
119 	uint32_t lro_max_msg_sz_mode:2;
120 	uint32_t lro_timer_supported_periods[MLX5_LRO_NUM_SUPP_PERIODS];
121 	uint16_t lro_min_mss_size;
122 	uint32_t flex_parser_protocols;
123 	uint32_t max_geneve_tlv_options;
124 	uint32_t max_geneve_tlv_option_data_len;
125 	uint32_t hairpin:1;
126 	uint32_t log_max_hairpin_queues:5;
127 	uint32_t log_max_hairpin_wq_data_sz:5;
128 	uint32_t log_max_hairpin_num_packets:5;
129 	uint32_t vhca_id:16;
130 	uint32_t relaxed_ordering_write:1;
131 	uint32_t relaxed_ordering_read:1;
132 	uint32_t access_register_user:1;
133 	uint32_t wqe_index_ignore:1;
134 	uint32_t cross_channel:1;
135 	uint32_t non_wire_sq:1; /* SQ with non-wire ops is supported. */
136 	uint32_t log_max_static_sq_wq:5; /* Static WQE size SQ. */
137 	uint32_t num_lag_ports:4; /* Number of ports can be bonded. */
138 	uint32_t dev_freq_khz; /* Timestamp counter frequency, kHz. */
139 	uint32_t scatter_fcs_w_decap_disable:1;
140 	uint32_t flow_hit_aso:1; /* General obj type FLOW_HIT_ASO supported. */
141 	uint32_t roce:1;
142 	uint32_t rq_ts_format:2;
143 	uint32_t sq_ts_format:2;
144 	uint32_t steering_format_version:4;
145 	uint32_t qp_ts_format:2;
146 	uint32_t regex:1;
147 	uint32_t reg_c_preserve:1;
148 	uint32_t ct_offload:1; /* General obj type ASO CT offload supported. */
149 	uint32_t crypto:1; /* Crypto engine is supported. */
150 	uint32_t aes_xts:1; /* AES-XTS crypto is supported. */
151 	uint32_t dek:1; /* General obj type DEK is supported. */
152 	uint32_t import_kek:1; /* General obj type IMPORT_KEK supported. */
153 	uint32_t credential:1; /* General obj type CREDENTIAL supported. */
154 	uint32_t crypto_login:1; /* General obj type CRYPTO_LOGIN supported. */
155 	uint32_t regexp_num_of_engines;
156 	uint32_t log_max_ft_sampler_num:8;
157 	uint32_t inner_ipv4_ihl:1;
158 	uint32_t outer_ipv4_ihl:1;
159 	uint32_t geneve_tlv_opt;
160 	uint32_t cqe_compression:1;
161 	uint32_t mini_cqe_resp_flow_tag:1;
162 	uint32_t mini_cqe_resp_l3_l4_tag:1;
163 	uint32_t pkt_integrity_match:1; /* 1 if HW supports integrity item */
164 	struct mlx5_hca_qos_attr qos;
165 	struct mlx5_hca_vdpa_attr vdpa;
166 	struct mlx5_hca_flow_attr flow;
167 	int log_max_qp_sz;
168 	int log_max_cq_sz;
169 	int log_max_qp;
170 	int log_max_cq;
171 	uint32_t log_max_pd;
172 	uint32_t log_max_mrw_sz;
173 	uint32_t log_max_srq;
174 	uint32_t log_max_srq_sz;
175 	uint32_t rss_ind_tbl_cap;
176 	uint32_t mmo_dma_sq_en:1;
177 	uint32_t mmo_compress_sq_en:1;
178 	uint32_t mmo_decompress_sq_en:1;
179 	uint32_t mmo_dma_qp_en:1;
180 	uint32_t mmo_compress_qp_en:1;
181 	uint32_t mmo_decompress_qp_en:1;
182 	uint32_t mmo_regex_qp_en:1;
183 	uint32_t mmo_regex_sq_en:1;
184 	uint32_t compress_min_block_size:4;
185 	uint32_t log_max_mmo_dma:5;
186 	uint32_t log_max_mmo_compress:5;
187 	uint32_t log_max_mmo_decompress:5;
188 	uint32_t umr_modify_entity_size_disabled:1;
189 	uint32_t umr_indirect_mkey_disabled:1;
190 };
191 
192 struct mlx5_devx_wq_attr {
193 	uint32_t wq_type:4;
194 	uint32_t wq_signature:1;
195 	uint32_t end_padding_mode:2;
196 	uint32_t cd_slave:1;
197 	uint32_t hds_skip_first_sge:1;
198 	uint32_t log2_hds_buf_size:3;
199 	uint32_t page_offset:5;
200 	uint32_t lwm:16;
201 	uint32_t pd:24;
202 	uint32_t uar_page:24;
203 	uint64_t dbr_addr;
204 	uint32_t hw_counter;
205 	uint32_t sw_counter;
206 	uint32_t log_wq_stride:4;
207 	uint32_t log_wq_pg_sz:5;
208 	uint32_t log_wq_sz:5;
209 	uint32_t dbr_umem_valid:1;
210 	uint32_t wq_umem_valid:1;
211 	uint32_t log_hairpin_num_packets:5;
212 	uint32_t log_hairpin_data_sz:5;
213 	uint32_t single_wqe_log_num_of_strides:4;
214 	uint32_t two_byte_shift_en:1;
215 	uint32_t single_stride_log_num_of_bytes:3;
216 	uint32_t dbr_umem_id;
217 	uint32_t wq_umem_id;
218 	uint64_t wq_umem_offset;
219 };
220 
221 /* Create RQ attributes structure, used by create RQ operation. */
222 struct mlx5_devx_create_rq_attr {
223 	uint32_t rlky:1;
224 	uint32_t delay_drop_en:1;
225 	uint32_t scatter_fcs:1;
226 	uint32_t vsd:1;
227 	uint32_t mem_rq_type:4;
228 	uint32_t state:4;
229 	uint32_t flush_in_error_en:1;
230 	uint32_t hairpin:1;
231 	uint32_t ts_format:2;
232 	uint32_t user_index:24;
233 	uint32_t cqn:24;
234 	uint32_t counter_set_id:8;
235 	uint32_t rmpn:24;
236 	struct mlx5_devx_wq_attr wq_attr;
237 };
238 
239 /* Modify RQ attributes structure, used by modify RQ operation. */
240 struct mlx5_devx_modify_rq_attr {
241 	uint32_t rqn:24;
242 	uint32_t rq_state:4; /* Current RQ state. */
243 	uint32_t state:4; /* Required RQ state. */
244 	uint32_t scatter_fcs:1;
245 	uint32_t vsd:1;
246 	uint32_t counter_set_id:8;
247 	uint32_t hairpin_peer_sq:24;
248 	uint32_t hairpin_peer_vhca:16;
249 	uint64_t modify_bitmask;
250 	uint32_t lwm:16; /* Contained WQ lwm. */
251 };
252 
253 struct mlx5_rx_hash_field_select {
254 	uint32_t l3_prot_type:1;
255 	uint32_t l4_prot_type:1;
256 	uint32_t selected_fields:30;
257 };
258 
259 /* TIR attributes structure, used by TIR operations. */
260 struct mlx5_devx_tir_attr {
261 	uint32_t disp_type:4;
262 	uint32_t lro_timeout_period_usecs:16;
263 	uint32_t lro_enable_mask:4;
264 	uint32_t lro_max_msg_sz:8;
265 	uint32_t inline_rqn:24;
266 	uint32_t rx_hash_symmetric:1;
267 	uint32_t tunneled_offload_en:1;
268 	uint32_t indirect_table:24;
269 	uint32_t rx_hash_fn:4;
270 	uint32_t self_lb_block:2;
271 	uint32_t transport_domain:24;
272 	uint8_t rx_hash_toeplitz_key[MLX5_RSS_HASH_KEY_LEN];
273 	struct mlx5_rx_hash_field_select rx_hash_field_selector_outer;
274 	struct mlx5_rx_hash_field_select rx_hash_field_selector_inner;
275 };
276 
277 /* TIR attributes structure, used by TIR modify. */
278 struct mlx5_devx_modify_tir_attr {
279 	uint32_t tirn:24;
280 	uint64_t modify_bitmask;
281 	struct mlx5_devx_tir_attr tir;
282 };
283 
284 /* RQT attributes structure, used by RQT operations. */
285 struct mlx5_devx_rqt_attr {
286 	uint8_t rq_type;
287 	uint32_t rqt_max_size:16;
288 	uint32_t rqt_actual_size:16;
289 	uint32_t rq_list[];
290 };
291 
292 /* TIS attributes structure. */
293 struct mlx5_devx_tis_attr {
294 	uint32_t strict_lag_tx_port_affinity:1;
295 	uint32_t tls_en:1;
296 	uint32_t lag_tx_port_affinity:4;
297 	uint32_t prio:4;
298 	uint32_t transport_domain:24;
299 };
300 
301 /* SQ attributes structure, used by SQ create operation. */
302 struct mlx5_devx_create_sq_attr {
303 	uint32_t rlky:1;
304 	uint32_t cd_master:1;
305 	uint32_t fre:1;
306 	uint32_t flush_in_error_en:1;
307 	uint32_t allow_multi_pkt_send_wqe:1;
308 	uint32_t min_wqe_inline_mode:3;
309 	uint32_t state:4;
310 	uint32_t reg_umr:1;
311 	uint32_t allow_swp:1;
312 	uint32_t hairpin:1;
313 	uint32_t non_wire:1;
314 	uint32_t static_sq_wq:1;
315 	uint32_t ts_format:2;
316 	uint32_t user_index:24;
317 	uint32_t cqn:24;
318 	uint32_t packet_pacing_rate_limit_index:16;
319 	uint32_t tis_lst_sz:16;
320 	uint32_t tis_num:24;
321 	struct mlx5_devx_wq_attr wq_attr;
322 };
323 
324 /* SQ attributes structure, used by SQ modify operation. */
325 struct mlx5_devx_modify_sq_attr {
326 	uint32_t sq_state:4;
327 	uint32_t state:4;
328 	uint32_t hairpin_peer_rq:24;
329 	uint32_t hairpin_peer_vhca:16;
330 };
331 
332 
333 /* CQ attributes structure, used by CQ operations. */
334 struct mlx5_devx_cq_attr {
335 	uint32_t q_umem_valid:1;
336 	uint32_t db_umem_valid:1;
337 	uint32_t use_first_only:1;
338 	uint32_t overrun_ignore:1;
339 	uint32_t cqe_comp_en:1;
340 	uint32_t mini_cqe_res_format:2;
341 	uint32_t mini_cqe_res_format_ext:2;
342 	uint32_t log_cq_size:5;
343 	uint32_t log_page_size:5;
344 	uint32_t uar_page_id;
345 	uint32_t q_umem_id;
346 	uint64_t q_umem_offset;
347 	uint32_t db_umem_id;
348 	uint64_t db_umem_offset;
349 	uint32_t eqn;
350 	uint64_t db_addr;
351 };
352 
353 /* Virtq attributes structure, used by VIRTQ operations. */
354 struct mlx5_devx_virtq_attr {
355 	uint16_t hw_available_index;
356 	uint16_t hw_used_index;
357 	uint16_t q_size;
358 	uint32_t pd:24;
359 	uint32_t virtio_version_1_0:1;
360 	uint32_t tso_ipv4:1;
361 	uint32_t tso_ipv6:1;
362 	uint32_t tx_csum:1;
363 	uint32_t rx_csum:1;
364 	uint32_t event_mode:3;
365 	uint32_t state:4;
366 	uint32_t hw_latency_mode:2;
367 	uint32_t hw_max_latency_us:12;
368 	uint32_t hw_max_pending_comp:16;
369 	uint32_t dirty_bitmap_dump_enable:1;
370 	uint32_t dirty_bitmap_mkey;
371 	uint32_t dirty_bitmap_size;
372 	uint32_t mkey;
373 	uint32_t qp_id;
374 	uint32_t queue_index;
375 	uint32_t tis_id;
376 	uint32_t counters_obj_id;
377 	uint64_t dirty_bitmap_addr;
378 	uint64_t type;
379 	uint64_t desc_addr;
380 	uint64_t used_addr;
381 	uint64_t available_addr;
382 	struct {
383 		uint32_t id;
384 		uint32_t size;
385 		uint64_t offset;
386 	} umems[3];
387 	uint8_t error_type;
388 };
389 
390 
391 struct mlx5_devx_qp_attr {
392 	uint32_t pd:24;
393 	uint32_t uar_index:24;
394 	uint32_t cqn:24;
395 	uint32_t log_page_size:5;
396 	uint32_t rq_size:17; /* Must be power of 2. */
397 	uint32_t log_rq_stride:3;
398 	uint32_t sq_size:17; /* Must be power of 2. */
399 	uint32_t ts_format:2;
400 	uint32_t dbr_umem_valid:1;
401 	uint32_t dbr_umem_id;
402 	uint64_t dbr_address;
403 	uint32_t wq_umem_id;
404 	uint64_t wq_umem_offset;
405 	uint32_t user_index:24;
406 	uint32_t mmo:1;
407 };
408 
409 struct mlx5_devx_virtio_q_couners_attr {
410 	uint64_t received_desc;
411 	uint64_t completed_desc;
412 	uint32_t error_cqes;
413 	uint32_t bad_desc_errors;
414 	uint32_t exceed_max_chain;
415 	uint32_t invalid_buffer;
416 };
417 
418 /*
419  * graph flow match sample attributes structure,
420  * used by flex parser operations.
421  */
422 struct mlx5_devx_match_sample_attr {
423 	uint32_t flow_match_sample_en:1;
424 	uint32_t flow_match_sample_field_offset:16;
425 	uint32_t flow_match_sample_offset_mode:4;
426 	uint32_t flow_match_sample_field_offset_mask;
427 	uint32_t flow_match_sample_field_offset_shift:4;
428 	uint32_t flow_match_sample_field_base_offset:8;
429 	uint32_t flow_match_sample_tunnel_mode:3;
430 	uint32_t flow_match_sample_field_id;
431 };
432 
433 /* graph node arc attributes structure, used by flex parser operations. */
434 struct mlx5_devx_graph_arc_attr {
435 	uint32_t compare_condition_value:16;
436 	uint32_t start_inner_tunnel:1;
437 	uint32_t arc_parse_graph_node:8;
438 	uint32_t parse_graph_node_handle;
439 };
440 
441 /* Maximal number of samples per graph node. */
442 #define MLX5_GRAPH_NODE_SAMPLE_NUM 8
443 
444 /* Maximal number of input/output arcs per graph node. */
445 #define MLX5_GRAPH_NODE_ARC_NUM 8
446 
447 /* parse graph node attributes structure, used by flex parser operations. */
448 struct mlx5_devx_graph_node_attr {
449 	uint32_t modify_field_select;
450 	uint32_t header_length_mode:4;
451 	uint32_t header_length_base_value:16;
452 	uint32_t header_length_field_shift:4;
453 	uint32_t header_length_field_offset:16;
454 	uint32_t header_length_field_mask;
455 	struct mlx5_devx_match_sample_attr sample[MLX5_GRAPH_NODE_SAMPLE_NUM];
456 	uint32_t next_header_field_offset:16;
457 	uint32_t next_header_field_size:5;
458 	struct mlx5_devx_graph_arc_attr in[MLX5_GRAPH_NODE_ARC_NUM];
459 	struct mlx5_devx_graph_arc_attr out[MLX5_GRAPH_NODE_ARC_NUM];
460 };
461 
462 /* Encryption key size is up to 1024 bit, 128 bytes. */
463 #define MLX5_CRYPTO_KEY_MAX_SIZE	128
464 
465 struct mlx5_devx_dek_attr {
466 	uint32_t key_size:4;
467 	uint32_t has_keytag:1;
468 	uint32_t key_purpose:4;
469 	uint32_t pd:24;
470 	uint64_t opaque;
471 	uint8_t key[MLX5_CRYPTO_KEY_MAX_SIZE];
472 };
473 
474 struct mlx5_devx_import_kek_attr {
475 	uint64_t modify_field_select;
476 	uint32_t state:8;
477 	uint32_t key_size:4;
478 	uint8_t key[MLX5_CRYPTO_KEY_MAX_SIZE];
479 };
480 
481 #define MLX5_CRYPTO_CREDENTIAL_SIZE	48
482 
483 struct mlx5_devx_credential_attr {
484 	uint64_t modify_field_select;
485 	uint32_t state:8;
486 	uint32_t credential_role:8;
487 	uint8_t credential[MLX5_CRYPTO_CREDENTIAL_SIZE];
488 };
489 
490 struct mlx5_devx_crypto_login_attr {
491 	uint64_t modify_field_select;
492 	uint32_t credential_pointer:24;
493 	uint32_t session_import_kek_ptr:24;
494 	uint8_t credential[MLX5_CRYPTO_CREDENTIAL_SIZE];
495 };
496 
497 /* mlx5_devx_cmds.c */
498 
499 __rte_internal
500 struct mlx5_devx_obj *mlx5_devx_cmd_flow_counter_alloc(void *ctx,
501 						       uint32_t bulk_sz);
502 __rte_internal
503 int mlx5_devx_cmd_destroy(struct mlx5_devx_obj *obj);
504 __rte_internal
505 int mlx5_devx_cmd_flow_counter_query(struct mlx5_devx_obj *dcs,
506 				     int clear, uint32_t n_counters,
507 				     uint64_t *pkts, uint64_t *bytes,
508 				     uint32_t mkey, void *addr,
509 				     void *cmd_comp,
510 				     uint64_t async_id);
511 __rte_internal
512 int mlx5_devx_cmd_query_hca_attr(void *ctx,
513 				 struct mlx5_hca_attr *attr);
514 __rte_internal
515 struct mlx5_devx_obj *mlx5_devx_cmd_mkey_create(void *ctx,
516 					      struct mlx5_devx_mkey_attr *attr);
517 __rte_internal
518 int mlx5_devx_get_out_command_status(void *out);
519 __rte_internal
520 int mlx5_devx_cmd_qp_query_tis_td(void *qp, uint32_t tis_num,
521 				  uint32_t *tis_td);
522 __rte_internal
523 struct mlx5_devx_obj *mlx5_devx_cmd_create_rq(void *ctx,
524 				       struct mlx5_devx_create_rq_attr *rq_attr,
525 				       int socket);
526 __rte_internal
527 int mlx5_devx_cmd_modify_rq(struct mlx5_devx_obj *rq,
528 			    struct mlx5_devx_modify_rq_attr *rq_attr);
529 __rte_internal
530 struct mlx5_devx_obj *mlx5_devx_cmd_create_tir(void *ctx,
531 					   struct mlx5_devx_tir_attr *tir_attr);
532 __rte_internal
533 struct mlx5_devx_obj *mlx5_devx_cmd_create_rqt(void *ctx,
534 					   struct mlx5_devx_rqt_attr *rqt_attr);
535 __rte_internal
536 struct mlx5_devx_obj *mlx5_devx_cmd_create_sq(void *ctx,
537 				      struct mlx5_devx_create_sq_attr *sq_attr);
538 __rte_internal
539 int mlx5_devx_cmd_modify_sq(struct mlx5_devx_obj *sq,
540 			    struct mlx5_devx_modify_sq_attr *sq_attr);
541 __rte_internal
542 struct mlx5_devx_obj *mlx5_devx_cmd_create_tis(void *ctx,
543 					   struct mlx5_devx_tis_attr *tis_attr);
544 __rte_internal
545 struct mlx5_devx_obj *mlx5_devx_cmd_create_td(void *ctx);
546 __rte_internal
547 int mlx5_devx_cmd_flow_dump(void *fdb_domain, void *rx_domain, void *tx_domain,
548 			    FILE *file);
549 __rte_internal
550 int mlx5_devx_cmd_flow_single_dump(void *rule, FILE *file);
551 __rte_internal
552 struct mlx5_devx_obj *mlx5_devx_cmd_create_cq(void *ctx,
553 					      struct mlx5_devx_cq_attr *attr);
554 __rte_internal
555 struct mlx5_devx_obj *mlx5_devx_cmd_create_virtq(void *ctx,
556 					     struct mlx5_devx_virtq_attr *attr);
557 __rte_internal
558 int mlx5_devx_cmd_modify_virtq(struct mlx5_devx_obj *virtq_obj,
559 			       struct mlx5_devx_virtq_attr *attr);
560 __rte_internal
561 int mlx5_devx_cmd_query_virtq(struct mlx5_devx_obj *virtq_obj,
562 			      struct mlx5_devx_virtq_attr *attr);
563 __rte_internal
564 struct mlx5_devx_obj *mlx5_devx_cmd_create_qp(void *ctx,
565 					      struct mlx5_devx_qp_attr *attr);
566 __rte_internal
567 int mlx5_devx_cmd_modify_qp_state(struct mlx5_devx_obj *qp,
568 				  uint32_t qp_st_mod_op, uint32_t remote_qp_id);
569 __rte_internal
570 int mlx5_devx_cmd_modify_rqt(struct mlx5_devx_obj *rqt,
571 			     struct mlx5_devx_rqt_attr *rqt_attr);
572 __rte_internal
573 int mlx5_devx_cmd_modify_tir(struct mlx5_devx_obj *tir,
574 			     struct mlx5_devx_modify_tir_attr *tir_attr);
575 __rte_internal
576 int mlx5_devx_cmd_query_parse_samples(struct mlx5_devx_obj *flex_obj,
577 				      uint32_t ids[], uint32_t num);
578 
579 __rte_internal
580 struct mlx5_devx_obj *mlx5_devx_cmd_create_flex_parser(void *ctx,
581 					struct mlx5_devx_graph_node_attr *data);
582 
583 __rte_internal
584 int mlx5_devx_cmd_register_read(void *ctx, uint16_t reg_id,
585 				uint32_t arg, uint32_t *data, uint32_t dw_cnt);
586 
587 __rte_internal
588 int mlx5_devx_cmd_register_write(void *ctx, uint16_t reg_id,
589 				 uint32_t arg, uint32_t *data, uint32_t dw_cnt);
590 
591 __rte_internal
592 struct mlx5_devx_obj *
593 mlx5_devx_cmd_create_geneve_tlv_option(void *ctx,
594 		uint16_t class, uint8_t type, uint8_t len);
595 
596 /**
597  * Create virtio queue counters object DevX API.
598  *
599  * @param[in] ctx
600  *   Device context.
601 
602  * @return
603  *   The DevX object created, NULL otherwise and rte_errno is set.
604  */
605 __rte_internal
606 struct mlx5_devx_obj *mlx5_devx_cmd_create_virtio_q_counters(void *ctx);
607 
608 /**
609  * Query virtio queue counters object using DevX API.
610  *
611  * @param[in] couners_obj
612  *   Pointer to virtq object structure.
613  * @param [in/out] attr
614  *   Pointer to virtio queue counters attributes structure.
615  *
616  * @return
617  *   0 on success, a negative errno value otherwise and rte_errno is set.
618  */
619 __rte_internal
620 int mlx5_devx_cmd_query_virtio_q_counters(struct mlx5_devx_obj *couners_obj,
621 				  struct mlx5_devx_virtio_q_couners_attr *attr);
622 __rte_internal
623 struct mlx5_devx_obj *mlx5_devx_cmd_create_flow_hit_aso_obj(void *ctx,
624 							    uint32_t pd);
625 __rte_internal
626 struct mlx5_devx_obj *mlx5_devx_cmd_alloc_pd(void *ctx);
627 
628 __rte_internal
629 int mlx5_devx_cmd_wq_query(void *wq, uint32_t *counter_set_id);
630 
631 __rte_internal
632 struct mlx5_devx_obj *mlx5_devx_cmd_queue_counter_alloc(void *ctx);
633 __rte_internal
634 int mlx5_devx_cmd_queue_counter_query(struct mlx5_devx_obj *dcs, int clear,
635 				      uint32_t *out_of_buffers);
636 __rte_internal
637 struct mlx5_devx_obj *mlx5_devx_cmd_create_conn_track_offload_obj(void *ctx,
638 					uint32_t pd, uint32_t log_obj_size);
639 
640 /**
641  * Create general object of type FLOW_METER_ASO using DevX API..
642  *
643  * @param[in] ctx
644  *   Device context.
645  * @param [in] pd
646  *   PD value to associate the FLOW_METER_ASO object with.
647  * @param [in] log_obj_size
648  *   log_obj_size define to allocate number of 2 * meters
649  *   in one FLOW_METER_ASO object.
650  *
651  * @return
652  *   The DevX object created, NULL otherwise and rte_errno is set.
653  */
654 __rte_internal
655 struct mlx5_devx_obj *mlx5_devx_cmd_create_flow_meter_aso_obj(void *ctx,
656 					uint32_t pd, uint32_t log_obj_size);
657 __rte_internal
658 struct mlx5_devx_obj *
659 mlx5_devx_cmd_create_dek_obj(void *ctx, struct mlx5_devx_dek_attr *attr);
660 
661 __rte_internal
662 struct mlx5_devx_obj *
663 mlx5_devx_cmd_create_import_kek_obj(void *ctx,
664 				    struct mlx5_devx_import_kek_attr *attr);
665 
666 __rte_internal
667 struct mlx5_devx_obj *
668 mlx5_devx_cmd_create_credential_obj(void *ctx,
669 				    struct mlx5_devx_credential_attr *attr);
670 
671 __rte_internal
672 struct mlx5_devx_obj *
673 mlx5_devx_cmd_create_crypto_login_obj(void *ctx,
674 				      struct mlx5_devx_crypto_login_attr *attr);
675 
676 #endif /* RTE_PMD_MLX5_DEVX_CMDS_H_ */
677