1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2019 Mellanox Technologies, Ltd
5 #ifndef RTE_PMD_MLX5_DEVX_CMDS_H_
6 #define RTE_PMD_MLX5_DEVX_CMDS_H_
12 /* This is limitation of libibverbs: in length variable type is u16. */
13 #define MLX5_DEVX_MAX_KLM_ENTRIES ((UINT16_MAX - \
14 MLX5_ST_SZ_DW(create_mkey_in) * 4) / (MLX5_ST_SZ_DW(klm) * 4))
16 struct mlx5_devx_mkey_attr {
21 uint32_t log_entity_size;
23 uint32_t relaxed_ordering:1;
24 struct mlx5_klm *klm_array;
28 /* HCA qos attributes. */
29 struct mlx5_hca_qos_attr {
30 uint32_t sup:1; /* Whether QOS is supported. */
31 uint32_t srtcm_sup:1; /* Whether srTCM mode is supported. */
32 uint32_t packet_pacing:1; /* Packet pacing is supported. */
33 uint32_t wqe_rate_pp:1; /* Packet pacing WQE rate mode. */
34 uint32_t flow_meter_reg_share:1;
35 /* Whether reg_c share is supported. */
36 uint8_t log_max_flow_meter;
37 /* Power of the maximum supported meters. */
38 uint8_t flow_meter_reg_c_ids;
39 /* Bitmap of the reg_Cs available for flow meter to use. */
43 struct mlx5_hca_vdpa_attr {
44 uint8_t virtio_queue_type;
46 uint32_t desc_tunnel_offload_type:1;
47 uint32_t eth_frame_offload_type:1;
48 uint32_t virtio_version_1_0:1;
53 uint32_t event_mode:3;
54 uint32_t log_doorbell_stride:5;
55 uint32_t log_doorbell_bar_size:5;
56 uint32_t queue_counters_valid:1;
57 uint32_t max_num_virtio_queues;
62 uint64_t doorbell_bar_offset;
65 /* HCA supports this number of time periods for LRO. */
66 #define MLX5_LRO_NUM_SUPP_PERIODS 4
69 struct mlx5_hca_attr {
70 uint32_t eswitch_manager:1;
71 uint32_t flow_counters_dump:1;
72 uint32_t log_max_rqt_size:5;
73 uint32_t parse_graph_flex_node:1;
74 uint8_t flow_counter_bulk_alloc_bitmap;
75 uint32_t eth_net_offloads:1;
77 uint32_t wqe_vlan_insert:1;
78 uint32_t wqe_inline_mode:2;
79 uint32_t vport_inline_mode:3;
80 uint32_t tunnel_stateless_geneve_rx:1;
81 uint32_t geneve_max_opt_len:1; /* 0x0: 14DW, 0x1: 63DW */
82 uint32_t tunnel_stateless_gtp:1;
84 uint32_t tunnel_lro_gre:1;
85 uint32_t tunnel_lro_vxlan:1;
86 uint32_t lro_max_msg_sz_mode:2;
87 uint32_t lro_timer_supported_periods[MLX5_LRO_NUM_SUPP_PERIODS];
88 uint32_t flex_parser_protocols;
90 uint32_t log_max_hairpin_queues:5;
91 uint32_t log_max_hairpin_wq_data_sz:5;
92 uint32_t log_max_hairpin_num_packets:5;
94 uint32_t relaxed_ordering_write:1;
95 uint32_t relaxed_ordering_read:1;
96 uint32_t access_register_user:1;
97 uint32_t wqe_index_ignore:1;
98 uint32_t cross_channel:1;
99 uint32_t non_wire_sq:1; /* SQ with non-wire ops is supported. */
100 uint32_t log_max_static_sq_wq:5; /* Static WQE size SQ. */
101 uint32_t dev_freq_khz; /* Timestamp counter frequency, kHz. */
102 uint32_t scatter_fcs_w_decap_disable:1;
104 uint32_t regexp_num_of_engines;
105 struct mlx5_hca_qos_attr qos;
106 struct mlx5_hca_vdpa_attr vdpa;
109 struct mlx5_devx_wq_attr {
111 uint32_t wq_signature:1;
112 uint32_t end_padding_mode:2;
114 uint32_t hds_skip_first_sge:1;
115 uint32_t log2_hds_buf_size:3;
116 uint32_t page_offset:5;
119 uint32_t uar_page:24;
123 uint32_t log_wq_stride:4;
124 uint32_t log_wq_pg_sz:5;
125 uint32_t log_wq_sz:5;
126 uint32_t dbr_umem_valid:1;
127 uint32_t wq_umem_valid:1;
128 uint32_t log_hairpin_num_packets:5;
129 uint32_t log_hairpin_data_sz:5;
130 uint32_t single_wqe_log_num_of_strides:4;
131 uint32_t two_byte_shift_en:1;
132 uint32_t single_stride_log_num_of_bytes:3;
133 uint32_t dbr_umem_id;
135 uint64_t wq_umem_offset;
138 /* Create RQ attributes structure, used by create RQ operation. */
139 struct mlx5_devx_create_rq_attr {
141 uint32_t delay_drop_en:1;
142 uint32_t scatter_fcs:1;
144 uint32_t mem_rq_type:4;
146 uint32_t flush_in_error_en:1;
148 uint32_t user_index:24;
150 uint32_t counter_set_id:8;
152 struct mlx5_devx_wq_attr wq_attr;
155 /* Modify RQ attributes structure, used by modify RQ operation. */
156 struct mlx5_devx_modify_rq_attr {
158 uint32_t rq_state:4; /* Current RQ state. */
159 uint32_t state:4; /* Required RQ state. */
160 uint32_t scatter_fcs:1;
162 uint32_t counter_set_id:8;
163 uint32_t hairpin_peer_sq:24;
164 uint32_t hairpin_peer_vhca:16;
165 uint64_t modify_bitmask;
166 uint32_t lwm:16; /* Contained WQ lwm. */
169 struct mlx5_rx_hash_field_select {
170 uint32_t l3_prot_type:1;
171 uint32_t l4_prot_type:1;
172 uint32_t selected_fields:30;
175 /* TIR attributes structure, used by TIR operations. */
176 struct mlx5_devx_tir_attr {
177 uint32_t disp_type:4;
178 uint32_t lro_timeout_period_usecs:16;
179 uint32_t lro_enable_mask:4;
180 uint32_t lro_max_msg_sz:8;
181 uint32_t inline_rqn:24;
182 uint32_t rx_hash_symmetric:1;
183 uint32_t tunneled_offload_en:1;
184 uint32_t indirect_table:24;
185 uint32_t rx_hash_fn:4;
186 uint32_t self_lb_block:2;
187 uint32_t transport_domain:24;
188 uint8_t rx_hash_toeplitz_key[MLX5_RSS_HASH_KEY_LEN];
189 struct mlx5_rx_hash_field_select rx_hash_field_selector_outer;
190 struct mlx5_rx_hash_field_select rx_hash_field_selector_inner;
193 /* RQT attributes structure, used by RQT operations. */
194 struct mlx5_devx_rqt_attr {
196 uint32_t rqt_max_size:16;
197 uint32_t rqt_actual_size:16;
201 /* TIS attributes structure. */
202 struct mlx5_devx_tis_attr {
203 uint32_t strict_lag_tx_port_affinity:1;
205 uint32_t lag_tx_port_affinity:4;
207 uint32_t transport_domain:24;
210 /* SQ attributes structure, used by SQ create operation. */
211 struct mlx5_devx_create_sq_attr {
213 uint32_t cd_master:1;
215 uint32_t flush_in_error_en:1;
216 uint32_t allow_multi_pkt_send_wqe:1;
217 uint32_t min_wqe_inline_mode:3;
220 uint32_t allow_swp:1;
223 uint32_t static_sq_wq:1;
224 uint32_t user_index:24;
226 uint32_t packet_pacing_rate_limit_index:16;
227 uint32_t tis_lst_sz:16;
229 struct mlx5_devx_wq_attr wq_attr;
232 /* SQ attributes structure, used by SQ modify operation. */
233 struct mlx5_devx_modify_sq_attr {
236 uint32_t hairpin_peer_rq:24;
237 uint32_t hairpin_peer_vhca:16;
241 /* CQ attributes structure, used by CQ operations. */
242 struct mlx5_devx_cq_attr {
243 uint32_t q_umem_valid:1;
244 uint32_t db_umem_valid:1;
245 uint32_t use_first_only:1;
246 uint32_t overrun_ignore:1;
247 uint32_t cqe_comp_en:1;
248 uint32_t mini_cqe_res_format:2;
250 uint32_t log_cq_size:5;
251 uint32_t log_page_size:5;
252 uint32_t uar_page_id;
254 uint64_t q_umem_offset;
256 uint64_t db_umem_offset;
261 /* Virtq attributes structure, used by VIRTQ operations. */
262 struct mlx5_devx_virtq_attr {
263 uint16_t hw_available_index;
264 uint16_t hw_used_index;
267 uint32_t virtio_version_1_0:1;
272 uint32_t event_mode:3;
274 uint32_t dirty_bitmap_dump_enable:1;
275 uint32_t dirty_bitmap_mkey;
276 uint32_t dirty_bitmap_size;
279 uint32_t queue_index;
281 uint32_t counters_obj_id;
282 uint64_t dirty_bitmap_addr;
286 uint64_t available_addr;
295 struct mlx5_devx_qp_attr {
297 uint32_t uar_index:24;
299 uint32_t log_page_size:5;
300 uint32_t rq_size:17; /* Must be power of 2. */
301 uint32_t log_rq_stride:3;
302 uint32_t sq_size:17; /* Must be power of 2. */
303 uint32_t dbr_umem_valid:1;
304 uint32_t dbr_umem_id;
305 uint64_t dbr_address;
307 uint64_t wq_umem_offset;
310 struct mlx5_devx_virtio_q_couners_attr {
311 uint64_t received_desc;
312 uint64_t completed_desc;
314 uint32_t bad_desc_errors;
315 uint32_t exceed_max_chain;
316 uint32_t invalid_buffer;
320 * graph flow match sample attributes structure,
321 * used by flex parser operations.
323 struct mlx5_devx_match_sample_attr {
324 uint32_t flow_match_sample_en:1;
325 uint32_t flow_match_sample_field_offset:16;
326 uint32_t flow_match_sample_offset_mode:4;
327 uint32_t flow_match_sample_field_offset_mask;
328 uint32_t flow_match_sample_field_offset_shift:4;
329 uint32_t flow_match_sample_field_base_offset:8;
330 uint32_t flow_match_sample_tunnel_mode:3;
331 uint32_t flow_match_sample_field_id;
334 /* graph node arc attributes structure, used by flex parser operations. */
335 struct mlx5_devx_graph_arc_attr {
336 uint32_t compare_condition_value:16;
337 uint32_t start_inner_tunnel:1;
338 uint32_t arc_parse_graph_node:8;
339 uint32_t parse_graph_node_handle;
342 /* Maximal number of samples per graph node. */
343 #define MLX5_GRAPH_NODE_SAMPLE_NUM 8
345 /* Maximal number of input/output arcs per graph node. */
346 #define MLX5_GRAPH_NODE_ARC_NUM 8
348 /* parse graph node attributes structure, used by flex parser operations. */
349 struct mlx5_devx_graph_node_attr {
350 uint32_t modify_field_select;
351 uint32_t header_length_mode:4;
352 uint32_t header_length_base_value:16;
353 uint32_t header_length_field_shift:4;
354 uint32_t header_length_field_offset:16;
355 uint32_t header_length_field_mask;
356 struct mlx5_devx_match_sample_attr sample[MLX5_GRAPH_NODE_SAMPLE_NUM];
357 uint32_t next_header_field_offset:16;
358 uint32_t next_header_field_size:5;
359 struct mlx5_devx_graph_arc_attr in[MLX5_GRAPH_NODE_ARC_NUM];
360 struct mlx5_devx_graph_arc_attr out[MLX5_GRAPH_NODE_ARC_NUM];
363 /* mlx5_devx_cmds.c */
366 struct mlx5_devx_obj *mlx5_devx_cmd_flow_counter_alloc(void *ctx,
369 int mlx5_devx_cmd_destroy(struct mlx5_devx_obj *obj);
371 int mlx5_devx_cmd_flow_counter_query(struct mlx5_devx_obj *dcs,
372 int clear, uint32_t n_counters,
373 uint64_t *pkts, uint64_t *bytes,
374 uint32_t mkey, void *addr,
378 int mlx5_devx_cmd_query_hca_attr(void *ctx,
379 struct mlx5_hca_attr *attr);
381 struct mlx5_devx_obj *mlx5_devx_cmd_mkey_create(void *ctx,
382 struct mlx5_devx_mkey_attr *attr);
384 int mlx5_devx_get_out_command_status(void *out);
386 int mlx5_devx_cmd_qp_query_tis_td(void *qp, uint32_t tis_num,
389 struct mlx5_devx_obj *mlx5_devx_cmd_create_rq(void *ctx,
390 struct mlx5_devx_create_rq_attr *rq_attr,
393 int mlx5_devx_cmd_modify_rq(struct mlx5_devx_obj *rq,
394 struct mlx5_devx_modify_rq_attr *rq_attr);
396 struct mlx5_devx_obj *mlx5_devx_cmd_create_tir(void *ctx,
397 struct mlx5_devx_tir_attr *tir_attr);
399 struct mlx5_devx_obj *mlx5_devx_cmd_create_rqt(void *ctx,
400 struct mlx5_devx_rqt_attr *rqt_attr);
402 struct mlx5_devx_obj *mlx5_devx_cmd_create_sq(void *ctx,
403 struct mlx5_devx_create_sq_attr *sq_attr);
405 int mlx5_devx_cmd_modify_sq(struct mlx5_devx_obj *sq,
406 struct mlx5_devx_modify_sq_attr *sq_attr);
408 struct mlx5_devx_obj *mlx5_devx_cmd_create_tis(void *ctx,
409 struct mlx5_devx_tis_attr *tis_attr);
411 struct mlx5_devx_obj *mlx5_devx_cmd_create_td(void *ctx);
413 int mlx5_devx_cmd_flow_dump(void *fdb_domain, void *rx_domain, void *tx_domain,
416 struct mlx5_devx_obj *mlx5_devx_cmd_create_cq(void *ctx,
417 struct mlx5_devx_cq_attr *attr);
419 struct mlx5_devx_obj *mlx5_devx_cmd_create_virtq(void *ctx,
420 struct mlx5_devx_virtq_attr *attr);
422 int mlx5_devx_cmd_modify_virtq(struct mlx5_devx_obj *virtq_obj,
423 struct mlx5_devx_virtq_attr *attr);
425 int mlx5_devx_cmd_query_virtq(struct mlx5_devx_obj *virtq_obj,
426 struct mlx5_devx_virtq_attr *attr);
428 struct mlx5_devx_obj *mlx5_devx_cmd_create_qp(void *ctx,
429 struct mlx5_devx_qp_attr *attr);
431 int mlx5_devx_cmd_modify_qp_state(struct mlx5_devx_obj *qp,
432 uint32_t qp_st_mod_op, uint32_t remote_qp_id);
434 int mlx5_devx_cmd_modify_rqt(struct mlx5_devx_obj *rqt,
435 struct mlx5_devx_rqt_attr *rqt_attr);
437 int mlx5_devx_cmd_query_parse_samples(struct mlx5_devx_obj *flex_obj,
438 uint32_t ids[], uint32_t num);
441 struct mlx5_devx_obj *mlx5_devx_cmd_create_flex_parser(void *ctx,
442 struct mlx5_devx_graph_node_attr *data);
445 int mlx5_devx_cmd_register_read(void *ctx, uint16_t reg_id,
446 uint32_t arg, uint32_t *data, uint32_t dw_cnt);
448 * Create virtio queue counters object DevX API.
454 * The DevX object created, NULL otherwise and rte_errno is set.
457 struct mlx5_devx_obj *mlx5_devx_cmd_create_virtio_q_counters(void *ctx);
460 * Query virtio queue counters object using DevX API.
462 * @param[in] couners_obj
463 * Pointer to virtq object structure.
464 * @param [in/out] attr
465 * Pointer to virtio queue counters attributes structure.
468 * 0 on success, a negative errno value otherwise and rte_errno is set.
471 int mlx5_devx_cmd_query_virtio_q_counters(struct mlx5_devx_obj *couners_obj,
472 struct mlx5_devx_virtio_q_couners_attr *attr);
474 #endif /* RTE_PMD_MLX5_DEVX_CMDS_H_ */