33acd73f4ab4c061929bc4d3f432f985041714ea
[dpdk.git] / drivers / common / mlx5 / mlx5_devx_cmds.c
1 // SPDX-License-Identifier: BSD-3-Clause
2 /* Copyright 2018 Mellanox Technologies, Ltd */
3
4 #include <unistd.h>
5
6 #include <rte_errno.h>
7 #include <rte_malloc.h>
8 #include <rte_eal_paging.h>
9
10 #include "mlx5_prm.h"
11 #include "mlx5_devx_cmds.h"
12 #include "mlx5_common_utils.h"
13 #include "mlx5_malloc.h"
14
15
16 /**
17  * Perform read access to the registers. Reads data from register
18  * and writes ones to the specified buffer.
19  *
20  * @param[in] ctx
21  *   Context returned from mlx5 open_device() glue function.
22  * @param[in] reg_id
23  *   Register identifier according to the PRM.
24  * @param[in] arg
25  *   Register access auxiliary parameter according to the PRM.
26  * @param[out] data
27  *   Pointer to the buffer to store read data.
28  * @param[in] dw_cnt
29  *   Buffer size in double words.
30  *
31  * @return
32  *   0 on success, a negative value otherwise.
33  */
34 int
35 mlx5_devx_cmd_register_read(void *ctx, uint16_t reg_id, uint32_t arg,
36                             uint32_t *data, uint32_t dw_cnt)
37 {
38         uint32_t in[MLX5_ST_SZ_DW(access_register_in)]   = {0};
39         uint32_t out[MLX5_ST_SZ_DW(access_register_out) +
40                      MLX5_ACCESS_REGISTER_DATA_DWORD_MAX] = {0};
41         int status, rc;
42
43         MLX5_ASSERT(data && dw_cnt);
44         MLX5_ASSERT(dw_cnt <= MLX5_ACCESS_REGISTER_DATA_DWORD_MAX);
45         if (dw_cnt  > MLX5_ACCESS_REGISTER_DATA_DWORD_MAX) {
46                 DRV_LOG(ERR, "Not enough  buffer for register read data");
47                 return -1;
48         }
49         MLX5_SET(access_register_in, in, opcode,
50                  MLX5_CMD_OP_ACCESS_REGISTER_USER);
51         MLX5_SET(access_register_in, in, op_mod,
52                                         MLX5_ACCESS_REGISTER_IN_OP_MOD_READ);
53         MLX5_SET(access_register_in, in, register_id, reg_id);
54         MLX5_SET(access_register_in, in, argument, arg);
55         rc = mlx5_glue->devx_general_cmd(ctx, in, sizeof(in), out,
56                                          MLX5_ST_SZ_DW(access_register_out) *
57                                          sizeof(uint32_t) + dw_cnt);
58         if (rc)
59                 goto error;
60         status = MLX5_GET(access_register_out, out, status);
61         if (status) {
62                 int syndrome = MLX5_GET(access_register_out, out, syndrome);
63
64                 DRV_LOG(DEBUG, "Failed to access NIC register 0x%X, "
65                                "status %x, syndrome = %x",
66                                reg_id, status, syndrome);
67                 return -1;
68         }
69         memcpy(data, &out[MLX5_ST_SZ_DW(access_register_out)],
70                dw_cnt * sizeof(uint32_t));
71         return 0;
72 error:
73         rc = (rc > 0) ? -rc : rc;
74         return rc;
75 }
76
77 /**
78  * Allocate flow counters via devx interface.
79  *
80  * @param[in] ctx
81  *   Context returned from mlx5 open_device() glue function.
82  * @param dcs
83  *   Pointer to counters properties structure to be filled by the routine.
84  * @param bulk_n_128
85  *   Bulk counter numbers in 128 counters units.
86  *
87  * @return
88  *   Pointer to counter object on success, a negative value otherwise and
89  *   rte_errno is set.
90  */
91 struct mlx5_devx_obj *
92 mlx5_devx_cmd_flow_counter_alloc(void *ctx, uint32_t bulk_n_128)
93 {
94         struct mlx5_devx_obj *dcs = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*dcs),
95                                                 0, SOCKET_ID_ANY);
96         uint32_t in[MLX5_ST_SZ_DW(alloc_flow_counter_in)]   = {0};
97         uint32_t out[MLX5_ST_SZ_DW(alloc_flow_counter_out)] = {0};
98
99         if (!dcs) {
100                 rte_errno = ENOMEM;
101                 return NULL;
102         }
103         MLX5_SET(alloc_flow_counter_in, in, opcode,
104                  MLX5_CMD_OP_ALLOC_FLOW_COUNTER);
105         MLX5_SET(alloc_flow_counter_in, in, flow_counter_bulk, bulk_n_128);
106         dcs->obj = mlx5_glue->devx_obj_create(ctx, in,
107                                               sizeof(in), out, sizeof(out));
108         if (!dcs->obj) {
109                 DRV_LOG(ERR, "Can't allocate counters - error %d", errno);
110                 rte_errno = errno;
111                 mlx5_free(dcs);
112                 return NULL;
113         }
114         dcs->id = MLX5_GET(alloc_flow_counter_out, out, flow_counter_id);
115         return dcs;
116 }
117
118 /**
119  * Query flow counters values.
120  *
121  * @param[in] dcs
122  *   devx object that was obtained from mlx5_devx_cmd_fc_alloc.
123  * @param[in] clear
124  *   Whether hardware should clear the counters after the query or not.
125  * @param[in] n_counters
126  *   0 in case of 1 counter to read, otherwise the counter number to read.
127  *  @param pkts
128  *   The number of packets that matched the flow.
129  *  @param bytes
130  *    The number of bytes that matched the flow.
131  *  @param mkey
132  *   The mkey key for batch query.
133  *  @param addr
134  *    The address in the mkey range for batch query.
135  *  @param cmd_comp
136  *   The completion object for asynchronous batch query.
137  *  @param async_id
138  *    The ID to be returned in the asynchronous batch query response.
139  *
140  * @return
141  *   0 on success, a negative value otherwise.
142  */
143 int
144 mlx5_devx_cmd_flow_counter_query(struct mlx5_devx_obj *dcs,
145                                  int clear, uint32_t n_counters,
146                                  uint64_t *pkts, uint64_t *bytes,
147                                  uint32_t mkey, void *addr,
148                                  void *cmd_comp,
149                                  uint64_t async_id)
150 {
151         int out_len = MLX5_ST_SZ_BYTES(query_flow_counter_out) +
152                         MLX5_ST_SZ_BYTES(traffic_counter);
153         uint32_t out[out_len];
154         uint32_t in[MLX5_ST_SZ_DW(query_flow_counter_in)] = {0};
155         void *stats;
156         int rc;
157
158         MLX5_SET(query_flow_counter_in, in, opcode,
159                  MLX5_CMD_OP_QUERY_FLOW_COUNTER);
160         MLX5_SET(query_flow_counter_in, in, op_mod, 0);
161         MLX5_SET(query_flow_counter_in, in, flow_counter_id, dcs->id);
162         MLX5_SET(query_flow_counter_in, in, clear, !!clear);
163
164         if (n_counters) {
165                 MLX5_SET(query_flow_counter_in, in, num_of_counters,
166                          n_counters);
167                 MLX5_SET(query_flow_counter_in, in, dump_to_memory, 1);
168                 MLX5_SET(query_flow_counter_in, in, mkey, mkey);
169                 MLX5_SET64(query_flow_counter_in, in, address,
170                            (uint64_t)(uintptr_t)addr);
171         }
172         if (!cmd_comp)
173                 rc = mlx5_glue->devx_obj_query(dcs->obj, in, sizeof(in), out,
174                                                out_len);
175         else
176                 rc = mlx5_glue->devx_obj_query_async(dcs->obj, in, sizeof(in),
177                                                      out_len, async_id,
178                                                      cmd_comp);
179         if (rc) {
180                 DRV_LOG(ERR, "Failed to query devx counters with rc %d", rc);
181                 rte_errno = rc;
182                 return -rc;
183         }
184         if (!n_counters) {
185                 stats = MLX5_ADDR_OF(query_flow_counter_out,
186                                      out, flow_statistics);
187                 *pkts = MLX5_GET64(traffic_counter, stats, packets);
188                 *bytes = MLX5_GET64(traffic_counter, stats, octets);
189         }
190         return 0;
191 }
192
193 /**
194  * Create a new mkey.
195  *
196  * @param[in] ctx
197  *   Context returned from mlx5 open_device() glue function.
198  * @param[in] attr
199  *   Attributes of the requested mkey.
200  *
201  * @return
202  *   Pointer to Devx mkey on success, a negative value otherwise and rte_errno
203  *   is set.
204  */
205 struct mlx5_devx_obj *
206 mlx5_devx_cmd_mkey_create(void *ctx,
207                           struct mlx5_devx_mkey_attr *attr)
208 {
209         struct mlx5_klm *klm_array = attr->klm_array;
210         int klm_num = attr->klm_num;
211         int in_size_dw = MLX5_ST_SZ_DW(create_mkey_in) +
212                      (klm_num ? RTE_ALIGN(klm_num, 4) : 0) * MLX5_ST_SZ_DW(klm);
213         uint32_t in[in_size_dw];
214         uint32_t out[MLX5_ST_SZ_DW(create_mkey_out)] = {0};
215         void *mkc;
216         struct mlx5_devx_obj *mkey = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*mkey),
217                                                  0, SOCKET_ID_ANY);
218         size_t pgsize;
219         uint32_t translation_size;
220
221         if (!mkey) {
222                 rte_errno = ENOMEM;
223                 return NULL;
224         }
225         memset(in, 0, in_size_dw * 4);
226         pgsize = rte_mem_page_size();
227         if (pgsize == (size_t)-1) {
228                 mlx5_free(mkey);
229                 DRV_LOG(ERR, "Failed to get page size");
230                 rte_errno = ENOMEM;
231                 return NULL;
232         }
233         MLX5_SET(create_mkey_in, in, opcode, MLX5_CMD_OP_CREATE_MKEY);
234         mkc = MLX5_ADDR_OF(create_mkey_in, in, memory_key_mkey_entry);
235         if (klm_num > 0) {
236                 int i;
237                 uint8_t *klm = (uint8_t *)MLX5_ADDR_OF(create_mkey_in, in,
238                                                        klm_pas_mtt);
239                 translation_size = RTE_ALIGN(klm_num, 4);
240                 for (i = 0; i < klm_num; i++) {
241                         MLX5_SET(klm, klm, byte_count, klm_array[i].byte_count);
242                         MLX5_SET(klm, klm, mkey, klm_array[i].mkey);
243                         MLX5_SET64(klm, klm, address, klm_array[i].address);
244                         klm += MLX5_ST_SZ_BYTES(klm);
245                 }
246                 for (; i < (int)translation_size; i++) {
247                         MLX5_SET(klm, klm, mkey, 0x0);
248                         MLX5_SET64(klm, klm, address, 0x0);
249                         klm += MLX5_ST_SZ_BYTES(klm);
250                 }
251                 MLX5_SET(mkc, mkc, access_mode_1_0, attr->log_entity_size ?
252                          MLX5_MKC_ACCESS_MODE_KLM_FBS :
253                          MLX5_MKC_ACCESS_MODE_KLM);
254                 MLX5_SET(mkc, mkc, log_page_size, attr->log_entity_size);
255         } else {
256                 translation_size = (RTE_ALIGN(attr->size, pgsize) * 8) / 16;
257                 MLX5_SET(mkc, mkc, access_mode_1_0, MLX5_MKC_ACCESS_MODE_MTT);
258                 MLX5_SET(mkc, mkc, log_page_size, rte_log2_u32(pgsize));
259         }
260         MLX5_SET(create_mkey_in, in, translations_octword_actual_size,
261                  translation_size);
262         MLX5_SET(create_mkey_in, in, mkey_umem_id, attr->umem_id);
263         MLX5_SET(create_mkey_in, in, pg_access, attr->pg_access);
264         MLX5_SET(mkc, mkc, lw, 0x1);
265         MLX5_SET(mkc, mkc, lr, 0x1);
266         MLX5_SET(mkc, mkc, qpn, 0xffffff);
267         MLX5_SET(mkc, mkc, pd, attr->pd);
268         MLX5_SET(mkc, mkc, mkey_7_0, attr->umem_id & 0xFF);
269         MLX5_SET(mkc, mkc, translations_octword_size, translation_size);
270         MLX5_SET(mkc, mkc, relaxed_ordering_write,
271                  attr->relaxed_ordering_write);
272         MLX5_SET(mkc, mkc, relaxed_ordering_read, attr->relaxed_ordering_read);
273         MLX5_SET64(mkc, mkc, start_addr, attr->addr);
274         MLX5_SET64(mkc, mkc, len, attr->size);
275         mkey->obj = mlx5_glue->devx_obj_create(ctx, in, in_size_dw * 4, out,
276                                                sizeof(out));
277         if (!mkey->obj) {
278                 DRV_LOG(ERR, "Can't create %sdirect mkey - error %d\n",
279                         klm_num ? "an in" : "a ", errno);
280                 rte_errno = errno;
281                 mlx5_free(mkey);
282                 return NULL;
283         }
284         mkey->id = MLX5_GET(create_mkey_out, out, mkey_index);
285         mkey->id = (mkey->id << 8) | (attr->umem_id & 0xFF);
286         return mkey;
287 }
288
289 /**
290  * Get status of devx command response.
291  * Mainly used for asynchronous commands.
292  *
293  * @param[in] out
294  *   The out response buffer.
295  *
296  * @return
297  *   0 on success, non-zero value otherwise.
298  */
299 int
300 mlx5_devx_get_out_command_status(void *out)
301 {
302         int status;
303
304         if (!out)
305                 return -EINVAL;
306         status = MLX5_GET(query_flow_counter_out, out, status);
307         if (status) {
308                 int syndrome = MLX5_GET(query_flow_counter_out, out, syndrome);
309
310                 DRV_LOG(ERR, "Bad DevX status %x, syndrome = %x", status,
311                         syndrome);
312         }
313         return status;
314 }
315
316 /**
317  * Destroy any object allocated by a Devx API.
318  *
319  * @param[in] obj
320  *   Pointer to a general object.
321  *
322  * @return
323  *   0 on success, a negative value otherwise.
324  */
325 int
326 mlx5_devx_cmd_destroy(struct mlx5_devx_obj *obj)
327 {
328         int ret;
329
330         if (!obj)
331                 return 0;
332         ret =  mlx5_glue->devx_obj_destroy(obj->obj);
333         mlx5_free(obj);
334         return ret;
335 }
336
337 /**
338  * Query NIC vport context.
339  * Fills minimal inline attribute.
340  *
341  * @param[in] ctx
342  *   ibv contexts returned from mlx5dv_open_device.
343  * @param[in] vport
344  *   vport index
345  * @param[out] attr
346  *   Attributes device values.
347  *
348  * @return
349  *   0 on success, a negative value otherwise.
350  */
351 static int
352 mlx5_devx_cmd_query_nic_vport_context(void *ctx,
353                                       unsigned int vport,
354                                       struct mlx5_hca_attr *attr)
355 {
356         uint32_t in[MLX5_ST_SZ_DW(query_nic_vport_context_in)] = {0};
357         uint32_t out[MLX5_ST_SZ_DW(query_nic_vport_context_out)] = {0};
358         void *vctx;
359         int status, syndrome, rc;
360
361         /* Query NIC vport context to determine inline mode. */
362         MLX5_SET(query_nic_vport_context_in, in, opcode,
363                  MLX5_CMD_OP_QUERY_NIC_VPORT_CONTEXT);
364         MLX5_SET(query_nic_vport_context_in, in, vport_number, vport);
365         if (vport)
366                 MLX5_SET(query_nic_vport_context_in, in, other_vport, 1);
367         rc = mlx5_glue->devx_general_cmd(ctx,
368                                          in, sizeof(in),
369                                          out, sizeof(out));
370         if (rc)
371                 goto error;
372         status = MLX5_GET(query_nic_vport_context_out, out, status);
373         syndrome = MLX5_GET(query_nic_vport_context_out, out, syndrome);
374         if (status) {
375                 DRV_LOG(DEBUG, "Failed to query NIC vport context, "
376                         "status %x, syndrome = %x", status, syndrome);
377                 return -1;
378         }
379         vctx = MLX5_ADDR_OF(query_nic_vport_context_out, out,
380                             nic_vport_context);
381         attr->vport_inline_mode = MLX5_GET(nic_vport_context, vctx,
382                                            min_wqe_inline_mode);
383         return 0;
384 error:
385         rc = (rc > 0) ? -rc : rc;
386         return rc;
387 }
388
389 /**
390  * Query NIC vDPA attributes.
391  *
392  * @param[in] ctx
393  *   Context returned from mlx5 open_device() glue function.
394  * @param[out] vdpa_attr
395  *   vDPA Attributes structure to fill.
396  */
397 static void
398 mlx5_devx_cmd_query_hca_vdpa_attr(void *ctx,
399                                   struct mlx5_hca_vdpa_attr *vdpa_attr)
400 {
401         uint32_t in[MLX5_ST_SZ_DW(query_hca_cap_in)] = {0};
402         uint32_t out[MLX5_ST_SZ_DW(query_hca_cap_out)] = {0};
403         void *hcattr = MLX5_ADDR_OF(query_hca_cap_out, out, capability);
404         int status, syndrome, rc;
405
406         MLX5_SET(query_hca_cap_in, in, opcode, MLX5_CMD_OP_QUERY_HCA_CAP);
407         MLX5_SET(query_hca_cap_in, in, op_mod,
408                  MLX5_GET_HCA_CAP_OP_MOD_VDPA_EMULATION |
409                  MLX5_HCA_CAP_OPMOD_GET_CUR);
410         rc = mlx5_glue->devx_general_cmd(ctx, in, sizeof(in), out, sizeof(out));
411         status = MLX5_GET(query_hca_cap_out, out, status);
412         syndrome = MLX5_GET(query_hca_cap_out, out, syndrome);
413         if (rc || status) {
414                 RTE_LOG(DEBUG, PMD, "Failed to query devx VDPA capabilities,"
415                         " status %x, syndrome = %x", status, syndrome);
416                 vdpa_attr->valid = 0;
417         } else {
418                 vdpa_attr->valid = 1;
419                 vdpa_attr->desc_tunnel_offload_type =
420                         MLX5_GET(virtio_emulation_cap, hcattr,
421                                  desc_tunnel_offload_type);
422                 vdpa_attr->eth_frame_offload_type =
423                         MLX5_GET(virtio_emulation_cap, hcattr,
424                                  eth_frame_offload_type);
425                 vdpa_attr->virtio_version_1_0 =
426                         MLX5_GET(virtio_emulation_cap, hcattr,
427                                  virtio_version_1_0);
428                 vdpa_attr->tso_ipv4 = MLX5_GET(virtio_emulation_cap, hcattr,
429                                                tso_ipv4);
430                 vdpa_attr->tso_ipv6 = MLX5_GET(virtio_emulation_cap, hcattr,
431                                                tso_ipv6);
432                 vdpa_attr->tx_csum = MLX5_GET(virtio_emulation_cap, hcattr,
433                                               tx_csum);
434                 vdpa_attr->rx_csum = MLX5_GET(virtio_emulation_cap, hcattr,
435                                               rx_csum);
436                 vdpa_attr->event_mode = MLX5_GET(virtio_emulation_cap, hcattr,
437                                                  event_mode);
438                 vdpa_attr->virtio_queue_type =
439                         MLX5_GET(virtio_emulation_cap, hcattr,
440                                  virtio_queue_type);
441                 vdpa_attr->log_doorbell_stride =
442                         MLX5_GET(virtio_emulation_cap, hcattr,
443                                  log_doorbell_stride);
444                 vdpa_attr->log_doorbell_bar_size =
445                         MLX5_GET(virtio_emulation_cap, hcattr,
446                                  log_doorbell_bar_size);
447                 vdpa_attr->doorbell_bar_offset =
448                         MLX5_GET64(virtio_emulation_cap, hcattr,
449                                    doorbell_bar_offset);
450                 vdpa_attr->max_num_virtio_queues =
451                         MLX5_GET(virtio_emulation_cap, hcattr,
452                                  max_num_virtio_queues);
453                 vdpa_attr->umems[0].a = MLX5_GET(virtio_emulation_cap, hcattr,
454                                                  umem_1_buffer_param_a);
455                 vdpa_attr->umems[0].b = MLX5_GET(virtio_emulation_cap, hcattr,
456                                                  umem_1_buffer_param_b);
457                 vdpa_attr->umems[1].a = MLX5_GET(virtio_emulation_cap, hcattr,
458                                                  umem_2_buffer_param_a);
459                 vdpa_attr->umems[1].b = MLX5_GET(virtio_emulation_cap, hcattr,
460                                                  umem_2_buffer_param_b);
461                 vdpa_attr->umems[2].a = MLX5_GET(virtio_emulation_cap, hcattr,
462                                                  umem_3_buffer_param_a);
463                 vdpa_attr->umems[2].b = MLX5_GET(virtio_emulation_cap, hcattr,
464                                                  umem_3_buffer_param_b);
465         }
466 }
467
468 int
469 mlx5_devx_cmd_query_parse_samples(struct mlx5_devx_obj *flex_obj,
470                                   uint32_t ids[], uint32_t num)
471 {
472         uint32_t in[MLX5_ST_SZ_DW(general_obj_in_cmd_hdr)] = {0};
473         uint32_t out[MLX5_ST_SZ_DW(create_flex_parser_out)] = {0};
474         void *hdr = MLX5_ADDR_OF(create_flex_parser_out, in, hdr);
475         void *flex = MLX5_ADDR_OF(create_flex_parser_out, out, flex);
476         void *sample = MLX5_ADDR_OF(parse_graph_flex, flex, sample_table);
477         int ret;
478         uint32_t idx = 0;
479         uint32_t i;
480
481         if (num > MLX5_GRAPH_NODE_SAMPLE_NUM) {
482                 rte_errno = EINVAL;
483                 DRV_LOG(ERR, "Too many sample IDs to be fetched.");
484                 return -rte_errno;
485         }
486         MLX5_SET(general_obj_in_cmd_hdr, hdr, opcode,
487                  MLX5_CMD_OP_QUERY_GENERAL_OBJECT);
488         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_type,
489                  MLX5_GENERAL_OBJ_TYPE_FLEX_PARSE_GRAPH);
490         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_id, flex_obj->id);
491         ret = mlx5_glue->devx_obj_query(flex_obj->obj, in, sizeof(in),
492                                         out, sizeof(out));
493         if (ret) {
494                 rte_errno = ret;
495                 DRV_LOG(ERR, "Failed to query sample IDs with object %p.",
496                         (void *)flex_obj);
497                 return -rte_errno;
498         }
499         for (i = 0; i < MLX5_GRAPH_NODE_SAMPLE_NUM; i++) {
500                 void *s_off = (void *)((char *)sample + i *
501                               MLX5_ST_SZ_BYTES(parse_graph_flow_match_sample));
502                 uint32_t en;
503
504                 en = MLX5_GET(parse_graph_flow_match_sample, s_off,
505                               flow_match_sample_en);
506                 if (!en)
507                         continue;
508                 ids[idx++] = MLX5_GET(parse_graph_flow_match_sample, s_off,
509                                   flow_match_sample_field_id);
510         }
511         if (num != idx) {
512                 rte_errno = EINVAL;
513                 DRV_LOG(ERR, "Number of sample IDs are not as expected.");
514                 return -rte_errno;
515         }
516         return ret;
517 }
518
519
520 struct mlx5_devx_obj *
521 mlx5_devx_cmd_create_flex_parser(void *ctx,
522                               struct mlx5_devx_graph_node_attr *data)
523 {
524         uint32_t in[MLX5_ST_SZ_DW(create_flex_parser_in)] = {0};
525         uint32_t out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)] = {0};
526         void *hdr = MLX5_ADDR_OF(create_flex_parser_in, in, hdr);
527         void *flex = MLX5_ADDR_OF(create_flex_parser_in, in, flex);
528         void *sample = MLX5_ADDR_OF(parse_graph_flex, flex, sample_table);
529         void *in_arc = MLX5_ADDR_OF(parse_graph_flex, flex, input_arc);
530         void *out_arc = MLX5_ADDR_OF(parse_graph_flex, flex, output_arc);
531         struct mlx5_devx_obj *parse_flex_obj = mlx5_malloc
532                      (MLX5_MEM_ZERO, sizeof(*parse_flex_obj), 0, SOCKET_ID_ANY);
533         uint32_t i;
534
535         if (!parse_flex_obj) {
536                 DRV_LOG(ERR, "Failed to allocate flex parser data.");
537                 rte_errno = ENOMEM;
538                 return NULL;
539         }
540         MLX5_SET(general_obj_in_cmd_hdr, hdr, opcode,
541                  MLX5_CMD_OP_CREATE_GENERAL_OBJECT);
542         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_type,
543                  MLX5_GENERAL_OBJ_TYPE_FLEX_PARSE_GRAPH);
544         MLX5_SET(parse_graph_flex, flex, header_length_mode,
545                  data->header_length_mode);
546         MLX5_SET(parse_graph_flex, flex, header_length_base_value,
547                  data->header_length_base_value);
548         MLX5_SET(parse_graph_flex, flex, header_length_field_offset,
549                  data->header_length_field_offset);
550         MLX5_SET(parse_graph_flex, flex, header_length_field_shift,
551                  data->header_length_field_shift);
552         MLX5_SET(parse_graph_flex, flex, header_length_field_mask,
553                  data->header_length_field_mask);
554         for (i = 0; i < MLX5_GRAPH_NODE_SAMPLE_NUM; i++) {
555                 struct mlx5_devx_match_sample_attr *s = &data->sample[i];
556                 void *s_off = (void *)((char *)sample + i *
557                               MLX5_ST_SZ_BYTES(parse_graph_flow_match_sample));
558
559                 if (!s->flow_match_sample_en)
560                         continue;
561                 MLX5_SET(parse_graph_flow_match_sample, s_off,
562                          flow_match_sample_en, !!s->flow_match_sample_en);
563                 MLX5_SET(parse_graph_flow_match_sample, s_off,
564                          flow_match_sample_field_offset,
565                          s->flow_match_sample_field_offset);
566                 MLX5_SET(parse_graph_flow_match_sample, s_off,
567                          flow_match_sample_offset_mode,
568                          s->flow_match_sample_offset_mode);
569                 MLX5_SET(parse_graph_flow_match_sample, s_off,
570                          flow_match_sample_field_offset_mask,
571                          s->flow_match_sample_field_offset_mask);
572                 MLX5_SET(parse_graph_flow_match_sample, s_off,
573                          flow_match_sample_field_offset_shift,
574                          s->flow_match_sample_field_offset_shift);
575                 MLX5_SET(parse_graph_flow_match_sample, s_off,
576                          flow_match_sample_field_base_offset,
577                          s->flow_match_sample_field_base_offset);
578                 MLX5_SET(parse_graph_flow_match_sample, s_off,
579                          flow_match_sample_tunnel_mode,
580                          s->flow_match_sample_tunnel_mode);
581         }
582         for (i = 0; i < MLX5_GRAPH_NODE_ARC_NUM; i++) {
583                 struct mlx5_devx_graph_arc_attr *ia = &data->in[i];
584                 struct mlx5_devx_graph_arc_attr *oa = &data->out[i];
585                 void *in_off = (void *)((char *)in_arc + i *
586                               MLX5_ST_SZ_BYTES(parse_graph_arc));
587                 void *out_off = (void *)((char *)out_arc + i *
588                               MLX5_ST_SZ_BYTES(parse_graph_arc));
589
590                 if (ia->arc_parse_graph_node != 0) {
591                         MLX5_SET(parse_graph_arc, in_off,
592                                  compare_condition_value,
593                                  ia->compare_condition_value);
594                         MLX5_SET(parse_graph_arc, in_off, start_inner_tunnel,
595                                  ia->start_inner_tunnel);
596                         MLX5_SET(parse_graph_arc, in_off, arc_parse_graph_node,
597                                  ia->arc_parse_graph_node);
598                         MLX5_SET(parse_graph_arc, in_off,
599                                  parse_graph_node_handle,
600                                  ia->parse_graph_node_handle);
601                 }
602                 if (oa->arc_parse_graph_node != 0) {
603                         MLX5_SET(parse_graph_arc, out_off,
604                                  compare_condition_value,
605                                  oa->compare_condition_value);
606                         MLX5_SET(parse_graph_arc, out_off, start_inner_tunnel,
607                                  oa->start_inner_tunnel);
608                         MLX5_SET(parse_graph_arc, out_off, arc_parse_graph_node,
609                                  oa->arc_parse_graph_node);
610                         MLX5_SET(parse_graph_arc, out_off,
611                                  parse_graph_node_handle,
612                                  oa->parse_graph_node_handle);
613                 }
614         }
615         parse_flex_obj->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in),
616                                                          out, sizeof(out));
617         if (!parse_flex_obj->obj) {
618                 rte_errno = errno;
619                 DRV_LOG(ERR, "Failed to create FLEX PARSE GRAPH object "
620                         "by using DevX.");
621                 mlx5_free(parse_flex_obj);
622                 return NULL;
623         }
624         parse_flex_obj->id = MLX5_GET(general_obj_out_cmd_hdr, out, obj_id);
625         return parse_flex_obj;
626 }
627
628 /**
629  * Query HCA attributes.
630  * Using those attributes we can check on run time if the device
631  * is having the required capabilities.
632  *
633  * @param[in] ctx
634  *   Context returned from mlx5 open_device() glue function.
635  * @param[out] attr
636  *   Attributes device values.
637  *
638  * @return
639  *   0 on success, a negative value otherwise.
640  */
641 int
642 mlx5_devx_cmd_query_hca_attr(void *ctx,
643                              struct mlx5_hca_attr *attr)
644 {
645         uint32_t in[MLX5_ST_SZ_DW(query_hca_cap_in)] = {0};
646         uint32_t out[MLX5_ST_SZ_DW(query_hca_cap_out)] = {0};
647         void *hcattr;
648         int status, syndrome, rc, i;
649
650         MLX5_SET(query_hca_cap_in, in, opcode, MLX5_CMD_OP_QUERY_HCA_CAP);
651         MLX5_SET(query_hca_cap_in, in, op_mod,
652                  MLX5_GET_HCA_CAP_OP_MOD_GENERAL_DEVICE |
653                  MLX5_HCA_CAP_OPMOD_GET_CUR);
654
655         rc = mlx5_glue->devx_general_cmd(ctx,
656                                          in, sizeof(in), out, sizeof(out));
657         if (rc)
658                 goto error;
659         status = MLX5_GET(query_hca_cap_out, out, status);
660         syndrome = MLX5_GET(query_hca_cap_out, out, syndrome);
661         if (status) {
662                 DRV_LOG(DEBUG, "Failed to query devx HCA capabilities, "
663                         "status %x, syndrome = %x", status, syndrome);
664                 return -1;
665         }
666         hcattr = MLX5_ADDR_OF(query_hca_cap_out, out, capability);
667         attr->flow_counter_bulk_alloc_bitmap =
668                         MLX5_GET(cmd_hca_cap, hcattr, flow_counter_bulk_alloc);
669         attr->flow_counters_dump = MLX5_GET(cmd_hca_cap, hcattr,
670                                             flow_counters_dump);
671         attr->log_max_rqt_size = MLX5_GET(cmd_hca_cap, hcattr,
672                                           log_max_rqt_size);
673         attr->eswitch_manager = MLX5_GET(cmd_hca_cap, hcattr, eswitch_manager);
674         attr->hairpin = MLX5_GET(cmd_hca_cap, hcattr, hairpin);
675         attr->log_max_hairpin_queues = MLX5_GET(cmd_hca_cap, hcattr,
676                                                 log_max_hairpin_queues);
677         attr->log_max_hairpin_wq_data_sz = MLX5_GET(cmd_hca_cap, hcattr,
678                                                     log_max_hairpin_wq_data_sz);
679         attr->log_max_hairpin_num_packets = MLX5_GET
680                 (cmd_hca_cap, hcattr, log_min_hairpin_wq_data_sz);
681         attr->vhca_id = MLX5_GET(cmd_hca_cap, hcattr, vhca_id);
682         attr->relaxed_ordering_write = MLX5_GET(cmd_hca_cap, hcattr,
683                                                 relaxed_ordering_write);
684         attr->relaxed_ordering_read = MLX5_GET(cmd_hca_cap, hcattr,
685                                                relaxed_ordering_read);
686         attr->access_register_user = MLX5_GET(cmd_hca_cap, hcattr,
687                                               access_register_user);
688         attr->eth_net_offloads = MLX5_GET(cmd_hca_cap, hcattr,
689                                           eth_net_offloads);
690         attr->eth_virt = MLX5_GET(cmd_hca_cap, hcattr, eth_virt);
691         attr->flex_parser_protocols = MLX5_GET(cmd_hca_cap, hcattr,
692                                                flex_parser_protocols);
693         attr->max_geneve_tlv_options = MLX5_GET(cmd_hca_cap, hcattr,
694                         max_geneve_tlv_options);
695         attr->max_geneve_tlv_option_data_len = MLX5_GET(cmd_hca_cap, hcattr,
696                         max_geneve_tlv_option_data_len);
697         attr->qos.sup = MLX5_GET(cmd_hca_cap, hcattr, qos);
698         attr->vdpa.valid = !!(MLX5_GET64(cmd_hca_cap, hcattr,
699                                          general_obj_types) &
700                               MLX5_GENERAL_OBJ_TYPES_CAP_VIRTQ_NET_Q);
701         attr->vdpa.queue_counters_valid = !!(MLX5_GET64(cmd_hca_cap, hcattr,
702                                                         general_obj_types) &
703                                   MLX5_GENERAL_OBJ_TYPES_CAP_VIRTIO_Q_COUNTERS);
704         attr->parse_graph_flex_node = !!(MLX5_GET64(cmd_hca_cap, hcattr,
705                                          general_obj_types) &
706                               MLX5_GENERAL_OBJ_TYPES_CAP_PARSE_GRAPH_FLEX_NODE);
707         attr->wqe_index_ignore = MLX5_GET(cmd_hca_cap, hcattr,
708                                           wqe_index_ignore_cap);
709         attr->cross_channel = MLX5_GET(cmd_hca_cap, hcattr, cd);
710         attr->non_wire_sq = MLX5_GET(cmd_hca_cap, hcattr, non_wire_sq);
711         attr->log_max_static_sq_wq = MLX5_GET(cmd_hca_cap, hcattr,
712                                               log_max_static_sq_wq);
713         attr->num_lag_ports = MLX5_GET(cmd_hca_cap, hcattr, num_lag_ports);
714         attr->dev_freq_khz = MLX5_GET(cmd_hca_cap, hcattr,
715                                       device_frequency_khz);
716         attr->scatter_fcs_w_decap_disable =
717                 MLX5_GET(cmd_hca_cap, hcattr, scatter_fcs_w_decap_disable);
718         attr->regex = MLX5_GET(cmd_hca_cap, hcattr, regexp);
719         attr->regexp_num_of_engines = MLX5_GET(cmd_hca_cap, hcattr,
720                                                regexp_num_of_engines);
721         attr->flow_hit_aso = !!(MLX5_GET64(cmd_hca_cap, hcattr,
722                                            general_obj_types) &
723                                 MLX5_GENERAL_OBJ_TYPES_CAP_FLOW_HIT_ASO);
724         attr->geneve_tlv_opt = !!(MLX5_GET64(cmd_hca_cap, hcattr,
725                                            general_obj_types) &
726                                 MLX5_GENERAL_OBJ_TYPES_CAP_GENEVE_TLV_OPT);
727         attr->log_max_cq = MLX5_GET(cmd_hca_cap, hcattr, log_max_cq);
728         attr->log_max_qp = MLX5_GET(cmd_hca_cap, hcattr, log_max_qp);
729         attr->log_max_cq_sz = MLX5_GET(cmd_hca_cap, hcattr, log_max_cq_sz);
730         attr->log_max_qp_sz = MLX5_GET(cmd_hca_cap, hcattr, log_max_qp_sz);
731         attr->log_max_mrw_sz = MLX5_GET(cmd_hca_cap, hcattr, log_max_mrw_sz);
732         attr->log_max_pd = MLX5_GET(cmd_hca_cap, hcattr, log_max_pd);
733         attr->log_max_srq = MLX5_GET(cmd_hca_cap, hcattr, log_max_srq);
734         attr->log_max_srq_sz = MLX5_GET(cmd_hca_cap, hcattr, log_max_srq_sz);
735         attr->mmo_dma_en = MLX5_GET(cmd_hca_cap, hcattr, dma_mmo);
736         attr->mmo_compress_en = MLX5_GET(cmd_hca_cap, hcattr, compress);
737         attr->mmo_decompress_en = MLX5_GET(cmd_hca_cap, hcattr, decompress);
738         attr->compress_min_block_size = MLX5_GET(cmd_hca_cap, hcattr,
739                                                  compress_min_block_size);
740         attr->log_max_mmo_dma = MLX5_GET(cmd_hca_cap, hcattr, log_dma_mmo_size);
741         attr->log_max_mmo_compress = MLX5_GET(cmd_hca_cap, hcattr,
742                                               log_compress_mmo_size);
743         attr->log_max_mmo_decompress = MLX5_GET(cmd_hca_cap, hcattr,
744                                                 log_decompress_mmo_size);
745         if (attr->qos.sup) {
746                 MLX5_SET(query_hca_cap_in, in, op_mod,
747                          MLX5_GET_HCA_CAP_OP_MOD_QOS_CAP |
748                          MLX5_HCA_CAP_OPMOD_GET_CUR);
749                 rc = mlx5_glue->devx_general_cmd(ctx, in, sizeof(in),
750                                                  out, sizeof(out));
751                 if (rc)
752                         goto error;
753                 if (status) {
754                         DRV_LOG(DEBUG, "Failed to query devx QOS capabilities,"
755                                 " status %x, syndrome = %x", status, syndrome);
756                         return -1;
757                 }
758                 hcattr = MLX5_ADDR_OF(query_hca_cap_out, out, capability);
759                 attr->qos.srtcm_sup =
760                                 MLX5_GET(qos_cap, hcattr, flow_meter_srtcm);
761                 attr->qos.log_max_flow_meter =
762                                 MLX5_GET(qos_cap, hcattr, log_max_flow_meter);
763                 attr->qos.flow_meter_reg_c_ids =
764                                 MLX5_GET(qos_cap, hcattr, flow_meter_reg_id);
765                 attr->qos.flow_meter_reg_share =
766                                 MLX5_GET(qos_cap, hcattr, flow_meter_reg_share);
767                 attr->qos.packet_pacing =
768                                 MLX5_GET(qos_cap, hcattr, packet_pacing);
769                 attr->qos.wqe_rate_pp =
770                                 MLX5_GET(qos_cap, hcattr, wqe_rate_pp);
771         }
772         if (attr->vdpa.valid)
773                 mlx5_devx_cmd_query_hca_vdpa_attr(ctx, &attr->vdpa);
774         if (!attr->eth_net_offloads)
775                 return 0;
776
777         /* Query Flow Sampler Capability From FLow Table Properties Layout. */
778         memset(in, 0, sizeof(in));
779         memset(out, 0, sizeof(out));
780         MLX5_SET(query_hca_cap_in, in, opcode, MLX5_CMD_OP_QUERY_HCA_CAP);
781         MLX5_SET(query_hca_cap_in, in, op_mod,
782                  MLX5_GET_HCA_CAP_OP_MOD_NIC_FLOW_TABLE |
783                  MLX5_HCA_CAP_OPMOD_GET_CUR);
784
785         rc = mlx5_glue->devx_general_cmd(ctx, in, sizeof(in), out, sizeof(out));
786         if (rc)
787                 goto error;
788         status = MLX5_GET(query_hca_cap_out, out, status);
789         syndrome = MLX5_GET(query_hca_cap_out, out, syndrome);
790         if (status) {
791                 DRV_LOG(DEBUG, "Failed to query devx HCA capabilities, "
792                         "status %x, syndrome = %x", status, syndrome);
793                 attr->log_max_ft_sampler_num = 0;
794                 return -1;
795         }
796         hcattr = MLX5_ADDR_OF(query_hca_cap_out, out, capability);
797         attr->log_max_ft_sampler_num =
798                         MLX5_GET(flow_table_nic_cap,
799                         hcattr, flow_table_properties.log_max_ft_sampler_num);
800
801         /* Query HCA offloads for Ethernet protocol. */
802         memset(in, 0, sizeof(in));
803         memset(out, 0, sizeof(out));
804         MLX5_SET(query_hca_cap_in, in, opcode, MLX5_CMD_OP_QUERY_HCA_CAP);
805         MLX5_SET(query_hca_cap_in, in, op_mod,
806                  MLX5_GET_HCA_CAP_OP_MOD_ETHERNET_OFFLOAD_CAPS |
807                  MLX5_HCA_CAP_OPMOD_GET_CUR);
808
809         rc = mlx5_glue->devx_general_cmd(ctx, in, sizeof(in), out, sizeof(out));
810         if (rc) {
811                 attr->eth_net_offloads = 0;
812                 goto error;
813         }
814         status = MLX5_GET(query_hca_cap_out, out, status);
815         syndrome = MLX5_GET(query_hca_cap_out, out, syndrome);
816         if (status) {
817                 DRV_LOG(DEBUG, "Failed to query devx HCA capabilities, "
818                         "status %x, syndrome = %x", status, syndrome);
819                 attr->eth_net_offloads = 0;
820                 return -1;
821         }
822         hcattr = MLX5_ADDR_OF(query_hca_cap_out, out, capability);
823         attr->wqe_vlan_insert = MLX5_GET(per_protocol_networking_offload_caps,
824                                          hcattr, wqe_vlan_insert);
825         attr->lro_cap = MLX5_GET(per_protocol_networking_offload_caps, hcattr,
826                                  lro_cap);
827         attr->tunnel_lro_gre = MLX5_GET(per_protocol_networking_offload_caps,
828                                         hcattr, tunnel_lro_gre);
829         attr->tunnel_lro_vxlan = MLX5_GET(per_protocol_networking_offload_caps,
830                                           hcattr, tunnel_lro_vxlan);
831         attr->lro_max_msg_sz_mode = MLX5_GET
832                                         (per_protocol_networking_offload_caps,
833                                          hcattr, lro_max_msg_sz_mode);
834         for (i = 0 ; i < MLX5_LRO_NUM_SUPP_PERIODS ; i++) {
835                 attr->lro_timer_supported_periods[i] =
836                         MLX5_GET(per_protocol_networking_offload_caps, hcattr,
837                                  lro_timer_supported_periods[i]);
838         }
839         attr->lro_min_mss_size = MLX5_GET(per_protocol_networking_offload_caps,
840                                           hcattr, lro_min_mss_size);
841         attr->tunnel_stateless_geneve_rx =
842                             MLX5_GET(per_protocol_networking_offload_caps,
843                                      hcattr, tunnel_stateless_geneve_rx);
844         attr->geneve_max_opt_len =
845                     MLX5_GET(per_protocol_networking_offload_caps,
846                              hcattr, max_geneve_opt_len);
847         attr->wqe_inline_mode = MLX5_GET(per_protocol_networking_offload_caps,
848                                          hcattr, wqe_inline_mode);
849         attr->tunnel_stateless_gtp = MLX5_GET
850                                         (per_protocol_networking_offload_caps,
851                                          hcattr, tunnel_stateless_gtp);
852         attr->rss_ind_tbl_cap = MLX5_GET
853                                         (per_protocol_networking_offload_caps,
854                                          hcattr, rss_ind_tbl_cap);
855         if (attr->wqe_inline_mode != MLX5_CAP_INLINE_MODE_VPORT_CONTEXT)
856                 return 0;
857         if (attr->eth_virt) {
858                 rc = mlx5_devx_cmd_query_nic_vport_context(ctx, 0, attr);
859                 if (rc) {
860                         attr->eth_virt = 0;
861                         goto error;
862                 }
863         }
864         return 0;
865 error:
866         rc = (rc > 0) ? -rc : rc;
867         return rc;
868 }
869
870 /**
871  * Query TIS transport domain from QP verbs object using DevX API.
872  *
873  * @param[in] qp
874  *   Pointer to verbs QP returned by ibv_create_qp .
875  * @param[in] tis_num
876  *   TIS number of TIS to query.
877  * @param[out] tis_td
878  *   Pointer to TIS transport domain variable, to be set by the routine.
879  *
880  * @return
881  *   0 on success, a negative value otherwise.
882  */
883 int
884 mlx5_devx_cmd_qp_query_tis_td(void *qp, uint32_t tis_num,
885                               uint32_t *tis_td)
886 {
887 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
888         uint32_t in[MLX5_ST_SZ_DW(query_tis_in)] = {0};
889         uint32_t out[MLX5_ST_SZ_DW(query_tis_out)] = {0};
890         int rc;
891         void *tis_ctx;
892
893         MLX5_SET(query_tis_in, in, opcode, MLX5_CMD_OP_QUERY_TIS);
894         MLX5_SET(query_tis_in, in, tisn, tis_num);
895         rc = mlx5_glue->devx_qp_query(qp, in, sizeof(in), out, sizeof(out));
896         if (rc) {
897                 DRV_LOG(ERR, "Failed to query QP using DevX");
898                 return -rc;
899         };
900         tis_ctx = MLX5_ADDR_OF(query_tis_out, out, tis_context);
901         *tis_td = MLX5_GET(tisc, tis_ctx, transport_domain);
902         return 0;
903 #else
904         (void)qp;
905         (void)tis_num;
906         (void)tis_td;
907         return -ENOTSUP;
908 #endif
909 }
910
911 /**
912  * Fill WQ data for DevX API command.
913  * Utility function for use when creating DevX objects containing a WQ.
914  *
915  * @param[in] wq_ctx
916  *   Pointer to WQ context to fill with data.
917  * @param [in] wq_attr
918  *   Pointer to WQ attributes structure to fill in WQ context.
919  */
920 static void
921 devx_cmd_fill_wq_data(void *wq_ctx, struct mlx5_devx_wq_attr *wq_attr)
922 {
923         MLX5_SET(wq, wq_ctx, wq_type, wq_attr->wq_type);
924         MLX5_SET(wq, wq_ctx, wq_signature, wq_attr->wq_signature);
925         MLX5_SET(wq, wq_ctx, end_padding_mode, wq_attr->end_padding_mode);
926         MLX5_SET(wq, wq_ctx, cd_slave, wq_attr->cd_slave);
927         MLX5_SET(wq, wq_ctx, hds_skip_first_sge, wq_attr->hds_skip_first_sge);
928         MLX5_SET(wq, wq_ctx, log2_hds_buf_size, wq_attr->log2_hds_buf_size);
929         MLX5_SET(wq, wq_ctx, page_offset, wq_attr->page_offset);
930         MLX5_SET(wq, wq_ctx, lwm, wq_attr->lwm);
931         MLX5_SET(wq, wq_ctx, pd, wq_attr->pd);
932         MLX5_SET(wq, wq_ctx, uar_page, wq_attr->uar_page);
933         MLX5_SET64(wq, wq_ctx, dbr_addr, wq_attr->dbr_addr);
934         MLX5_SET(wq, wq_ctx, hw_counter, wq_attr->hw_counter);
935         MLX5_SET(wq, wq_ctx, sw_counter, wq_attr->sw_counter);
936         MLX5_SET(wq, wq_ctx, log_wq_stride, wq_attr->log_wq_stride);
937         if (wq_attr->log_wq_pg_sz > MLX5_ADAPTER_PAGE_SHIFT)
938                 MLX5_SET(wq, wq_ctx, log_wq_pg_sz,
939                          wq_attr->log_wq_pg_sz - MLX5_ADAPTER_PAGE_SHIFT);
940         MLX5_SET(wq, wq_ctx, log_wq_sz, wq_attr->log_wq_sz);
941         MLX5_SET(wq, wq_ctx, dbr_umem_valid, wq_attr->dbr_umem_valid);
942         MLX5_SET(wq, wq_ctx, wq_umem_valid, wq_attr->wq_umem_valid);
943         MLX5_SET(wq, wq_ctx, log_hairpin_num_packets,
944                  wq_attr->log_hairpin_num_packets);
945         MLX5_SET(wq, wq_ctx, log_hairpin_data_sz, wq_attr->log_hairpin_data_sz);
946         MLX5_SET(wq, wq_ctx, single_wqe_log_num_of_strides,
947                  wq_attr->single_wqe_log_num_of_strides);
948         MLX5_SET(wq, wq_ctx, two_byte_shift_en, wq_attr->two_byte_shift_en);
949         MLX5_SET(wq, wq_ctx, single_stride_log_num_of_bytes,
950                  wq_attr->single_stride_log_num_of_bytes);
951         MLX5_SET(wq, wq_ctx, dbr_umem_id, wq_attr->dbr_umem_id);
952         MLX5_SET(wq, wq_ctx, wq_umem_id, wq_attr->wq_umem_id);
953         MLX5_SET64(wq, wq_ctx, wq_umem_offset, wq_attr->wq_umem_offset);
954 }
955
956 /**
957  * Create RQ using DevX API.
958  *
959  * @param[in] ctx
960  *   Context returned from mlx5 open_device() glue function.
961  * @param [in] rq_attr
962  *   Pointer to create RQ attributes structure.
963  * @param [in] socket
964  *   CPU socket ID for allocations.
965  *
966  * @return
967  *   The DevX object created, NULL otherwise and rte_errno is set.
968  */
969 struct mlx5_devx_obj *
970 mlx5_devx_cmd_create_rq(void *ctx,
971                         struct mlx5_devx_create_rq_attr *rq_attr,
972                         int socket)
973 {
974         uint32_t in[MLX5_ST_SZ_DW(create_rq_in)] = {0};
975         uint32_t out[MLX5_ST_SZ_DW(create_rq_out)] = {0};
976         void *rq_ctx, *wq_ctx;
977         struct mlx5_devx_wq_attr *wq_attr;
978         struct mlx5_devx_obj *rq = NULL;
979
980         rq = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*rq), 0, socket);
981         if (!rq) {
982                 DRV_LOG(ERR, "Failed to allocate RQ data");
983                 rte_errno = ENOMEM;
984                 return NULL;
985         }
986         MLX5_SET(create_rq_in, in, opcode, MLX5_CMD_OP_CREATE_RQ);
987         rq_ctx = MLX5_ADDR_OF(create_rq_in, in, ctx);
988         MLX5_SET(rqc, rq_ctx, rlky, rq_attr->rlky);
989         MLX5_SET(rqc, rq_ctx, delay_drop_en, rq_attr->delay_drop_en);
990         MLX5_SET(rqc, rq_ctx, scatter_fcs, rq_attr->scatter_fcs);
991         MLX5_SET(rqc, rq_ctx, vsd, rq_attr->vsd);
992         MLX5_SET(rqc, rq_ctx, mem_rq_type, rq_attr->mem_rq_type);
993         MLX5_SET(rqc, rq_ctx, state, rq_attr->state);
994         MLX5_SET(rqc, rq_ctx, flush_in_error_en, rq_attr->flush_in_error_en);
995         MLX5_SET(rqc, rq_ctx, hairpin, rq_attr->hairpin);
996         MLX5_SET(rqc, rq_ctx, user_index, rq_attr->user_index);
997         MLX5_SET(rqc, rq_ctx, cqn, rq_attr->cqn);
998         MLX5_SET(rqc, rq_ctx, counter_set_id, rq_attr->counter_set_id);
999         MLX5_SET(rqc, rq_ctx, rmpn, rq_attr->rmpn);
1000         wq_ctx = MLX5_ADDR_OF(rqc, rq_ctx, wq);
1001         wq_attr = &rq_attr->wq_attr;
1002         devx_cmd_fill_wq_data(wq_ctx, wq_attr);
1003         rq->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in),
1004                                                   out, sizeof(out));
1005         if (!rq->obj) {
1006                 DRV_LOG(ERR, "Failed to create RQ using DevX");
1007                 rte_errno = errno;
1008                 mlx5_free(rq);
1009                 return NULL;
1010         }
1011         rq->id = MLX5_GET(create_rq_out, out, rqn);
1012         return rq;
1013 }
1014
1015 /**
1016  * Modify RQ using DevX API.
1017  *
1018  * @param[in] rq
1019  *   Pointer to RQ object structure.
1020  * @param [in] rq_attr
1021  *   Pointer to modify RQ attributes structure.
1022  *
1023  * @return
1024  *   0 on success, a negative errno value otherwise and rte_errno is set.
1025  */
1026 int
1027 mlx5_devx_cmd_modify_rq(struct mlx5_devx_obj *rq,
1028                         struct mlx5_devx_modify_rq_attr *rq_attr)
1029 {
1030         uint32_t in[MLX5_ST_SZ_DW(modify_rq_in)] = {0};
1031         uint32_t out[MLX5_ST_SZ_DW(modify_rq_out)] = {0};
1032         void *rq_ctx, *wq_ctx;
1033         int ret;
1034
1035         MLX5_SET(modify_rq_in, in, opcode, MLX5_CMD_OP_MODIFY_RQ);
1036         MLX5_SET(modify_rq_in, in, rq_state, rq_attr->rq_state);
1037         MLX5_SET(modify_rq_in, in, rqn, rq->id);
1038         MLX5_SET64(modify_rq_in, in, modify_bitmask, rq_attr->modify_bitmask);
1039         rq_ctx = MLX5_ADDR_OF(modify_rq_in, in, ctx);
1040         MLX5_SET(rqc, rq_ctx, state, rq_attr->state);
1041         if (rq_attr->modify_bitmask &
1042                         MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_SCATTER_FCS)
1043                 MLX5_SET(rqc, rq_ctx, scatter_fcs, rq_attr->scatter_fcs);
1044         if (rq_attr->modify_bitmask & MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_VSD)
1045                 MLX5_SET(rqc, rq_ctx, vsd, rq_attr->vsd);
1046         if (rq_attr->modify_bitmask &
1047                         MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_RQ_COUNTER_SET_ID)
1048                 MLX5_SET(rqc, rq_ctx, counter_set_id, rq_attr->counter_set_id);
1049         MLX5_SET(rqc, rq_ctx, hairpin_peer_sq, rq_attr->hairpin_peer_sq);
1050         MLX5_SET(rqc, rq_ctx, hairpin_peer_vhca, rq_attr->hairpin_peer_vhca);
1051         if (rq_attr->modify_bitmask & MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_WQ_LWM) {
1052                 wq_ctx = MLX5_ADDR_OF(rqc, rq_ctx, wq);
1053                 MLX5_SET(wq, wq_ctx, lwm, rq_attr->lwm);
1054         }
1055         ret = mlx5_glue->devx_obj_modify(rq->obj, in, sizeof(in),
1056                                          out, sizeof(out));
1057         if (ret) {
1058                 DRV_LOG(ERR, "Failed to modify RQ using DevX");
1059                 rte_errno = errno;
1060                 return -errno;
1061         }
1062         return ret;
1063 }
1064
1065 /**
1066  * Create TIR using DevX API.
1067  *
1068  * @param[in] ctx
1069  *  Context returned from mlx5 open_device() glue function.
1070  * @param [in] tir_attr
1071  *   Pointer to TIR attributes structure.
1072  *
1073  * @return
1074  *   The DevX object created, NULL otherwise and rte_errno is set.
1075  */
1076 struct mlx5_devx_obj *
1077 mlx5_devx_cmd_create_tir(void *ctx,
1078                          struct mlx5_devx_tir_attr *tir_attr)
1079 {
1080         uint32_t in[MLX5_ST_SZ_DW(create_tir_in)] = {0};
1081         uint32_t out[MLX5_ST_SZ_DW(create_tir_out)] = {0};
1082         void *tir_ctx, *outer, *inner, *rss_key;
1083         struct mlx5_devx_obj *tir = NULL;
1084
1085         tir = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*tir), 0, SOCKET_ID_ANY);
1086         if (!tir) {
1087                 DRV_LOG(ERR, "Failed to allocate TIR data");
1088                 rte_errno = ENOMEM;
1089                 return NULL;
1090         }
1091         MLX5_SET(create_tir_in, in, opcode, MLX5_CMD_OP_CREATE_TIR);
1092         tir_ctx = MLX5_ADDR_OF(create_tir_in, in, ctx);
1093         MLX5_SET(tirc, tir_ctx, disp_type, tir_attr->disp_type);
1094         MLX5_SET(tirc, tir_ctx, lro_timeout_period_usecs,
1095                  tir_attr->lro_timeout_period_usecs);
1096         MLX5_SET(tirc, tir_ctx, lro_enable_mask, tir_attr->lro_enable_mask);
1097         MLX5_SET(tirc, tir_ctx, lro_max_msg_sz, tir_attr->lro_max_msg_sz);
1098         MLX5_SET(tirc, tir_ctx, inline_rqn, tir_attr->inline_rqn);
1099         MLX5_SET(tirc, tir_ctx, rx_hash_symmetric, tir_attr->rx_hash_symmetric);
1100         MLX5_SET(tirc, tir_ctx, tunneled_offload_en,
1101                  tir_attr->tunneled_offload_en);
1102         MLX5_SET(tirc, tir_ctx, indirect_table, tir_attr->indirect_table);
1103         MLX5_SET(tirc, tir_ctx, rx_hash_fn, tir_attr->rx_hash_fn);
1104         MLX5_SET(tirc, tir_ctx, self_lb_block, tir_attr->self_lb_block);
1105         MLX5_SET(tirc, tir_ctx, transport_domain, tir_attr->transport_domain);
1106         rss_key = MLX5_ADDR_OF(tirc, tir_ctx, rx_hash_toeplitz_key);
1107         memcpy(rss_key, tir_attr->rx_hash_toeplitz_key, MLX5_RSS_HASH_KEY_LEN);
1108         outer = MLX5_ADDR_OF(tirc, tir_ctx, rx_hash_field_selector_outer);
1109         MLX5_SET(rx_hash_field_select, outer, l3_prot_type,
1110                  tir_attr->rx_hash_field_selector_outer.l3_prot_type);
1111         MLX5_SET(rx_hash_field_select, outer, l4_prot_type,
1112                  tir_attr->rx_hash_field_selector_outer.l4_prot_type);
1113         MLX5_SET(rx_hash_field_select, outer, selected_fields,
1114                  tir_attr->rx_hash_field_selector_outer.selected_fields);
1115         inner = MLX5_ADDR_OF(tirc, tir_ctx, rx_hash_field_selector_inner);
1116         MLX5_SET(rx_hash_field_select, inner, l3_prot_type,
1117                  tir_attr->rx_hash_field_selector_inner.l3_prot_type);
1118         MLX5_SET(rx_hash_field_select, inner, l4_prot_type,
1119                  tir_attr->rx_hash_field_selector_inner.l4_prot_type);
1120         MLX5_SET(rx_hash_field_select, inner, selected_fields,
1121                  tir_attr->rx_hash_field_selector_inner.selected_fields);
1122         tir->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in),
1123                                                    out, sizeof(out));
1124         if (!tir->obj) {
1125                 DRV_LOG(ERR, "Failed to create TIR using DevX");
1126                 rte_errno = errno;
1127                 mlx5_free(tir);
1128                 return NULL;
1129         }
1130         tir->id = MLX5_GET(create_tir_out, out, tirn);
1131         return tir;
1132 }
1133
1134 /**
1135  * Modify TIR using DevX API.
1136  *
1137  * @param[in] tir
1138  *   Pointer to TIR DevX object structure.
1139  * @param [in] modify_tir_attr
1140  *   Pointer to TIR modification attributes structure.
1141  *
1142  * @return
1143  *   0 on success, a negative errno value otherwise and rte_errno is set.
1144  */
1145 int
1146 mlx5_devx_cmd_modify_tir(struct mlx5_devx_obj *tir,
1147                          struct mlx5_devx_modify_tir_attr *modify_tir_attr)
1148 {
1149         struct mlx5_devx_tir_attr *tir_attr = &modify_tir_attr->tir;
1150         uint32_t in[MLX5_ST_SZ_DW(modify_tir_in)] = {0};
1151         uint32_t out[MLX5_ST_SZ_DW(modify_tir_out)] = {0};
1152         void *tir_ctx;
1153         int ret;
1154
1155         MLX5_SET(modify_tir_in, in, opcode, MLX5_CMD_OP_MODIFY_TIR);
1156         MLX5_SET(modify_tir_in, in, tirn, modify_tir_attr->tirn);
1157         MLX5_SET64(modify_tir_in, in, modify_bitmask,
1158                    modify_tir_attr->modify_bitmask);
1159         tir_ctx = MLX5_ADDR_OF(modify_rq_in, in, ctx);
1160         if (modify_tir_attr->modify_bitmask &
1161                         MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_LRO) {
1162                 MLX5_SET(tirc, tir_ctx, lro_timeout_period_usecs,
1163                          tir_attr->lro_timeout_period_usecs);
1164                 MLX5_SET(tirc, tir_ctx, lro_enable_mask,
1165                          tir_attr->lro_enable_mask);
1166                 MLX5_SET(tirc, tir_ctx, lro_max_msg_sz,
1167                          tir_attr->lro_max_msg_sz);
1168         }
1169         if (modify_tir_attr->modify_bitmask &
1170                         MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_INDIRECT_TABLE)
1171                 MLX5_SET(tirc, tir_ctx, indirect_table,
1172                          tir_attr->indirect_table);
1173         if (modify_tir_attr->modify_bitmask &
1174                         MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_HASH) {
1175                 int i;
1176                 void *outer, *inner;
1177
1178                 MLX5_SET(tirc, tir_ctx, rx_hash_symmetric,
1179                          tir_attr->rx_hash_symmetric);
1180                 MLX5_SET(tirc, tir_ctx, rx_hash_fn, tir_attr->rx_hash_fn);
1181                 for (i = 0; i < 10; i++) {
1182                         MLX5_SET(tirc, tir_ctx, rx_hash_toeplitz_key[i],
1183                                  tir_attr->rx_hash_toeplitz_key[i]);
1184                 }
1185                 outer = MLX5_ADDR_OF(tirc, tir_ctx,
1186                                      rx_hash_field_selector_outer);
1187                 MLX5_SET(rx_hash_field_select, outer, l3_prot_type,
1188                          tir_attr->rx_hash_field_selector_outer.l3_prot_type);
1189                 MLX5_SET(rx_hash_field_select, outer, l4_prot_type,
1190                          tir_attr->rx_hash_field_selector_outer.l4_prot_type);
1191                 MLX5_SET
1192                 (rx_hash_field_select, outer, selected_fields,
1193                  tir_attr->rx_hash_field_selector_outer.selected_fields);
1194                 inner = MLX5_ADDR_OF(tirc, tir_ctx,
1195                                      rx_hash_field_selector_inner);
1196                 MLX5_SET(rx_hash_field_select, inner, l3_prot_type,
1197                          tir_attr->rx_hash_field_selector_inner.l3_prot_type);
1198                 MLX5_SET(rx_hash_field_select, inner, l4_prot_type,
1199                          tir_attr->rx_hash_field_selector_inner.l4_prot_type);
1200                 MLX5_SET
1201                 (rx_hash_field_select, inner, selected_fields,
1202                  tir_attr->rx_hash_field_selector_inner.selected_fields);
1203         }
1204         if (modify_tir_attr->modify_bitmask &
1205             MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_SELF_LB_EN) {
1206                 MLX5_SET(tirc, tir_ctx, self_lb_block, tir_attr->self_lb_block);
1207         }
1208         ret = mlx5_glue->devx_obj_modify(tir->obj, in, sizeof(in),
1209                                          out, sizeof(out));
1210         if (ret) {
1211                 DRV_LOG(ERR, "Failed to modify TIR using DevX");
1212                 rte_errno = errno;
1213                 return -errno;
1214         }
1215         return ret;
1216 }
1217
1218 /**
1219  * Create RQT using DevX API.
1220  *
1221  * @param[in] ctx
1222  *   Context returned from mlx5 open_device() glue function.
1223  * @param [in] rqt_attr
1224  *   Pointer to RQT attributes structure.
1225  *
1226  * @return
1227  *   The DevX object created, NULL otherwise and rte_errno is set.
1228  */
1229 struct mlx5_devx_obj *
1230 mlx5_devx_cmd_create_rqt(void *ctx,
1231                          struct mlx5_devx_rqt_attr *rqt_attr)
1232 {
1233         uint32_t *in = NULL;
1234         uint32_t inlen = MLX5_ST_SZ_BYTES(create_rqt_in) +
1235                          rqt_attr->rqt_actual_size * sizeof(uint32_t);
1236         uint32_t out[MLX5_ST_SZ_DW(create_rqt_out)] = {0};
1237         void *rqt_ctx;
1238         struct mlx5_devx_obj *rqt = NULL;
1239         int i;
1240
1241         in = mlx5_malloc(MLX5_MEM_ZERO, inlen, 0, SOCKET_ID_ANY);
1242         if (!in) {
1243                 DRV_LOG(ERR, "Failed to allocate RQT IN data");
1244                 rte_errno = ENOMEM;
1245                 return NULL;
1246         }
1247         rqt = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*rqt), 0, SOCKET_ID_ANY);
1248         if (!rqt) {
1249                 DRV_LOG(ERR, "Failed to allocate RQT data");
1250                 rte_errno = ENOMEM;
1251                 mlx5_free(in);
1252                 return NULL;
1253         }
1254         MLX5_SET(create_rqt_in, in, opcode, MLX5_CMD_OP_CREATE_RQT);
1255         rqt_ctx = MLX5_ADDR_OF(create_rqt_in, in, rqt_context);
1256         MLX5_SET(rqtc, rqt_ctx, list_q_type, rqt_attr->rq_type);
1257         MLX5_SET(rqtc, rqt_ctx, rqt_max_size, rqt_attr->rqt_max_size);
1258         MLX5_SET(rqtc, rqt_ctx, rqt_actual_size, rqt_attr->rqt_actual_size);
1259         for (i = 0; i < rqt_attr->rqt_actual_size; i++)
1260                 MLX5_SET(rqtc, rqt_ctx, rq_num[i], rqt_attr->rq_list[i]);
1261         rqt->obj = mlx5_glue->devx_obj_create(ctx, in, inlen, out, sizeof(out));
1262         mlx5_free(in);
1263         if (!rqt->obj) {
1264                 DRV_LOG(ERR, "Failed to create RQT using DevX");
1265                 rte_errno = errno;
1266                 mlx5_free(rqt);
1267                 return NULL;
1268         }
1269         rqt->id = MLX5_GET(create_rqt_out, out, rqtn);
1270         return rqt;
1271 }
1272
1273 /**
1274  * Modify RQT using DevX API.
1275  *
1276  * @param[in] rqt
1277  *   Pointer to RQT DevX object structure.
1278  * @param [in] rqt_attr
1279  *   Pointer to RQT attributes structure.
1280  *
1281  * @return
1282  *   0 on success, a negative errno value otherwise and rte_errno is set.
1283  */
1284 int
1285 mlx5_devx_cmd_modify_rqt(struct mlx5_devx_obj *rqt,
1286                          struct mlx5_devx_rqt_attr *rqt_attr)
1287 {
1288         uint32_t inlen = MLX5_ST_SZ_BYTES(modify_rqt_in) +
1289                          rqt_attr->rqt_actual_size * sizeof(uint32_t);
1290         uint32_t out[MLX5_ST_SZ_DW(modify_rqt_out)] = {0};
1291         uint32_t *in = mlx5_malloc(MLX5_MEM_ZERO, inlen, 0, SOCKET_ID_ANY);
1292         void *rqt_ctx;
1293         int i;
1294         int ret;
1295
1296         if (!in) {
1297                 DRV_LOG(ERR, "Failed to allocate RQT modify IN data.");
1298                 rte_errno = ENOMEM;
1299                 return -ENOMEM;
1300         }
1301         MLX5_SET(modify_rqt_in, in, opcode, MLX5_CMD_OP_MODIFY_RQT);
1302         MLX5_SET(modify_rqt_in, in, rqtn, rqt->id);
1303         MLX5_SET64(modify_rqt_in, in, modify_bitmask, 0x1);
1304         rqt_ctx = MLX5_ADDR_OF(modify_rqt_in, in, rqt_context);
1305         MLX5_SET(rqtc, rqt_ctx, list_q_type, rqt_attr->rq_type);
1306         MLX5_SET(rqtc, rqt_ctx, rqt_max_size, rqt_attr->rqt_max_size);
1307         MLX5_SET(rqtc, rqt_ctx, rqt_actual_size, rqt_attr->rqt_actual_size);
1308         for (i = 0; i < rqt_attr->rqt_actual_size; i++)
1309                 MLX5_SET(rqtc, rqt_ctx, rq_num[i], rqt_attr->rq_list[i]);
1310         ret = mlx5_glue->devx_obj_modify(rqt->obj, in, inlen, out, sizeof(out));
1311         mlx5_free(in);
1312         if (ret) {
1313                 DRV_LOG(ERR, "Failed to modify RQT using DevX.");
1314                 rte_errno = errno;
1315                 return -rte_errno;
1316         }
1317         return ret;
1318 }
1319
1320 /**
1321  * Create SQ using DevX API.
1322  *
1323  * @param[in] ctx
1324  *   Context returned from mlx5 open_device() glue function.
1325  * @param [in] sq_attr
1326  *   Pointer to SQ attributes structure.
1327  * @param [in] socket
1328  *   CPU socket ID for allocations.
1329  *
1330  * @return
1331  *   The DevX object created, NULL otherwise and rte_errno is set.
1332  **/
1333 struct mlx5_devx_obj *
1334 mlx5_devx_cmd_create_sq(void *ctx,
1335                         struct mlx5_devx_create_sq_attr *sq_attr)
1336 {
1337         uint32_t in[MLX5_ST_SZ_DW(create_sq_in)] = {0};
1338         uint32_t out[MLX5_ST_SZ_DW(create_sq_out)] = {0};
1339         void *sq_ctx;
1340         void *wq_ctx;
1341         struct mlx5_devx_wq_attr *wq_attr;
1342         struct mlx5_devx_obj *sq = NULL;
1343
1344         sq = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*sq), 0, SOCKET_ID_ANY);
1345         if (!sq) {
1346                 DRV_LOG(ERR, "Failed to allocate SQ data");
1347                 rte_errno = ENOMEM;
1348                 return NULL;
1349         }
1350         MLX5_SET(create_sq_in, in, opcode, MLX5_CMD_OP_CREATE_SQ);
1351         sq_ctx = MLX5_ADDR_OF(create_sq_in, in, ctx);
1352         MLX5_SET(sqc, sq_ctx, rlky, sq_attr->rlky);
1353         MLX5_SET(sqc, sq_ctx, cd_master, sq_attr->cd_master);
1354         MLX5_SET(sqc, sq_ctx, fre, sq_attr->fre);
1355         MLX5_SET(sqc, sq_ctx, flush_in_error_en, sq_attr->flush_in_error_en);
1356         MLX5_SET(sqc, sq_ctx, allow_multi_pkt_send_wqe,
1357                  sq_attr->allow_multi_pkt_send_wqe);
1358         MLX5_SET(sqc, sq_ctx, min_wqe_inline_mode,
1359                  sq_attr->min_wqe_inline_mode);
1360         MLX5_SET(sqc, sq_ctx, state, sq_attr->state);
1361         MLX5_SET(sqc, sq_ctx, reg_umr, sq_attr->reg_umr);
1362         MLX5_SET(sqc, sq_ctx, allow_swp, sq_attr->allow_swp);
1363         MLX5_SET(sqc, sq_ctx, hairpin, sq_attr->hairpin);
1364         MLX5_SET(sqc, sq_ctx, non_wire, sq_attr->non_wire);
1365         MLX5_SET(sqc, sq_ctx, static_sq_wq, sq_attr->static_sq_wq);
1366         MLX5_SET(sqc, sq_ctx, user_index, sq_attr->user_index);
1367         MLX5_SET(sqc, sq_ctx, cqn, sq_attr->cqn);
1368         MLX5_SET(sqc, sq_ctx, packet_pacing_rate_limit_index,
1369                  sq_attr->packet_pacing_rate_limit_index);
1370         MLX5_SET(sqc, sq_ctx, tis_lst_sz, sq_attr->tis_lst_sz);
1371         MLX5_SET(sqc, sq_ctx, tis_num_0, sq_attr->tis_num);
1372         wq_ctx = MLX5_ADDR_OF(sqc, sq_ctx, wq);
1373         wq_attr = &sq_attr->wq_attr;
1374         devx_cmd_fill_wq_data(wq_ctx, wq_attr);
1375         sq->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in),
1376                                              out, sizeof(out));
1377         if (!sq->obj) {
1378                 DRV_LOG(ERR, "Failed to create SQ using DevX");
1379                 rte_errno = errno;
1380                 mlx5_free(sq);
1381                 return NULL;
1382         }
1383         sq->id = MLX5_GET(create_sq_out, out, sqn);
1384         return sq;
1385 }
1386
1387 /**
1388  * Modify SQ using DevX API.
1389  *
1390  * @param[in] sq
1391  *   Pointer to SQ object structure.
1392  * @param [in] sq_attr
1393  *   Pointer to SQ attributes structure.
1394  *
1395  * @return
1396  *   0 on success, a negative errno value otherwise and rte_errno is set.
1397  */
1398 int
1399 mlx5_devx_cmd_modify_sq(struct mlx5_devx_obj *sq,
1400                         struct mlx5_devx_modify_sq_attr *sq_attr)
1401 {
1402         uint32_t in[MLX5_ST_SZ_DW(modify_sq_in)] = {0};
1403         uint32_t out[MLX5_ST_SZ_DW(modify_sq_out)] = {0};
1404         void *sq_ctx;
1405         int ret;
1406
1407         MLX5_SET(modify_sq_in, in, opcode, MLX5_CMD_OP_MODIFY_SQ);
1408         MLX5_SET(modify_sq_in, in, sq_state, sq_attr->sq_state);
1409         MLX5_SET(modify_sq_in, in, sqn, sq->id);
1410         sq_ctx = MLX5_ADDR_OF(modify_sq_in, in, ctx);
1411         MLX5_SET(sqc, sq_ctx, state, sq_attr->state);
1412         MLX5_SET(sqc, sq_ctx, hairpin_peer_rq, sq_attr->hairpin_peer_rq);
1413         MLX5_SET(sqc, sq_ctx, hairpin_peer_vhca, sq_attr->hairpin_peer_vhca);
1414         ret = mlx5_glue->devx_obj_modify(sq->obj, in, sizeof(in),
1415                                          out, sizeof(out));
1416         if (ret) {
1417                 DRV_LOG(ERR, "Failed to modify SQ using DevX");
1418                 rte_errno = errno;
1419                 return -rte_errno;
1420         }
1421         return ret;
1422 }
1423
1424 /**
1425  * Create TIS using DevX API.
1426  *
1427  * @param[in] ctx
1428  *   Context returned from mlx5 open_device() glue function.
1429  * @param [in] tis_attr
1430  *   Pointer to TIS attributes structure.
1431  *
1432  * @return
1433  *   The DevX object created, NULL otherwise and rte_errno is set.
1434  */
1435 struct mlx5_devx_obj *
1436 mlx5_devx_cmd_create_tis(void *ctx,
1437                          struct mlx5_devx_tis_attr *tis_attr)
1438 {
1439         uint32_t in[MLX5_ST_SZ_DW(create_tis_in)] = {0};
1440         uint32_t out[MLX5_ST_SZ_DW(create_tis_out)] = {0};
1441         struct mlx5_devx_obj *tis = NULL;
1442         void *tis_ctx;
1443
1444         tis = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*tis), 0, SOCKET_ID_ANY);
1445         if (!tis) {
1446                 DRV_LOG(ERR, "Failed to allocate TIS object");
1447                 rte_errno = ENOMEM;
1448                 return NULL;
1449         }
1450         MLX5_SET(create_tis_in, in, opcode, MLX5_CMD_OP_CREATE_TIS);
1451         tis_ctx = MLX5_ADDR_OF(create_tis_in, in, ctx);
1452         MLX5_SET(tisc, tis_ctx, strict_lag_tx_port_affinity,
1453                  tis_attr->strict_lag_tx_port_affinity);
1454         MLX5_SET(tisc, tis_ctx, lag_tx_port_affinity,
1455                  tis_attr->lag_tx_port_affinity);
1456         MLX5_SET(tisc, tis_ctx, prio, tis_attr->prio);
1457         MLX5_SET(tisc, tis_ctx, transport_domain,
1458                  tis_attr->transport_domain);
1459         tis->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in),
1460                                               out, sizeof(out));
1461         if (!tis->obj) {
1462                 DRV_LOG(ERR, "Failed to create TIS using DevX");
1463                 rte_errno = errno;
1464                 mlx5_free(tis);
1465                 return NULL;
1466         }
1467         tis->id = MLX5_GET(create_tis_out, out, tisn);
1468         return tis;
1469 }
1470
1471 /**
1472  * Create transport domain using DevX API.
1473  *
1474  * @param[in] ctx
1475  *   Context returned from mlx5 open_device() glue function.
1476  * @return
1477  *   The DevX object created, NULL otherwise and rte_errno is set.
1478  */
1479 struct mlx5_devx_obj *
1480 mlx5_devx_cmd_create_td(void *ctx)
1481 {
1482         uint32_t in[MLX5_ST_SZ_DW(alloc_transport_domain_in)] = {0};
1483         uint32_t out[MLX5_ST_SZ_DW(alloc_transport_domain_out)] = {0};
1484         struct mlx5_devx_obj *td = NULL;
1485
1486         td = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*td), 0, SOCKET_ID_ANY);
1487         if (!td) {
1488                 DRV_LOG(ERR, "Failed to allocate TD object");
1489                 rte_errno = ENOMEM;
1490                 return NULL;
1491         }
1492         MLX5_SET(alloc_transport_domain_in, in, opcode,
1493                  MLX5_CMD_OP_ALLOC_TRANSPORT_DOMAIN);
1494         td->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in),
1495                                              out, sizeof(out));
1496         if (!td->obj) {
1497                 DRV_LOG(ERR, "Failed to create TIS using DevX");
1498                 rte_errno = errno;
1499                 mlx5_free(td);
1500                 return NULL;
1501         }
1502         td->id = MLX5_GET(alloc_transport_domain_out, out,
1503                            transport_domain);
1504         return td;
1505 }
1506
1507 /**
1508  * Dump all flows to file.
1509  *
1510  * @param[in] fdb_domain
1511  *   FDB domain.
1512  * @param[in] rx_domain
1513  *   RX domain.
1514  * @param[in] tx_domain
1515  *   TX domain.
1516  * @param[out] file
1517  *   Pointer to file stream.
1518  *
1519  * @return
1520  *   0 on success, a nagative value otherwise.
1521  */
1522 int
1523 mlx5_devx_cmd_flow_dump(void *fdb_domain __rte_unused,
1524                         void *rx_domain __rte_unused,
1525                         void *tx_domain __rte_unused, FILE *file __rte_unused)
1526 {
1527         int ret = 0;
1528
1529 #ifdef HAVE_MLX5_DR_FLOW_DUMP
1530         if (fdb_domain) {
1531                 ret = mlx5_glue->dr_dump_domain(file, fdb_domain);
1532                 if (ret)
1533                         return ret;
1534         }
1535         MLX5_ASSERT(rx_domain);
1536         ret = mlx5_glue->dr_dump_domain(file, rx_domain);
1537         if (ret)
1538                 return ret;
1539         MLX5_ASSERT(tx_domain);
1540         ret = mlx5_glue->dr_dump_domain(file, tx_domain);
1541 #else
1542         ret = ENOTSUP;
1543 #endif
1544         return -ret;
1545 }
1546
1547 /*
1548  * Create CQ using DevX API.
1549  *
1550  * @param[in] ctx
1551  *   Context returned from mlx5 open_device() glue function.
1552  * @param [in] attr
1553  *   Pointer to CQ attributes structure.
1554  *
1555  * @return
1556  *   The DevX object created, NULL otherwise and rte_errno is set.
1557  */
1558 struct mlx5_devx_obj *
1559 mlx5_devx_cmd_create_cq(void *ctx, struct mlx5_devx_cq_attr *attr)
1560 {
1561         uint32_t in[MLX5_ST_SZ_DW(create_cq_in)] = {0};
1562         uint32_t out[MLX5_ST_SZ_DW(create_cq_out)] = {0};
1563         struct mlx5_devx_obj *cq_obj = mlx5_malloc(MLX5_MEM_ZERO,
1564                                                    sizeof(*cq_obj),
1565                                                    0, SOCKET_ID_ANY);
1566         void *cqctx = MLX5_ADDR_OF(create_cq_in, in, cq_context);
1567
1568         if (!cq_obj) {
1569                 DRV_LOG(ERR, "Failed to allocate CQ object memory.");
1570                 rte_errno = ENOMEM;
1571                 return NULL;
1572         }
1573         MLX5_SET(create_cq_in, in, opcode, MLX5_CMD_OP_CREATE_CQ);
1574         if (attr->db_umem_valid) {
1575                 MLX5_SET(cqc, cqctx, dbr_umem_valid, attr->db_umem_valid);
1576                 MLX5_SET(cqc, cqctx, dbr_umem_id, attr->db_umem_id);
1577                 MLX5_SET64(cqc, cqctx, dbr_addr, attr->db_umem_offset);
1578         } else {
1579                 MLX5_SET64(cqc, cqctx, dbr_addr, attr->db_addr);
1580         }
1581         MLX5_SET(cqc, cqctx, cqe_sz, (RTE_CACHE_LINE_SIZE == 128) ?
1582                                      MLX5_CQE_SIZE_128B : MLX5_CQE_SIZE_64B);
1583         MLX5_SET(cqc, cqctx, cc, attr->use_first_only);
1584         MLX5_SET(cqc, cqctx, oi, attr->overrun_ignore);
1585         MLX5_SET(cqc, cqctx, log_cq_size, attr->log_cq_size);
1586         if (attr->log_page_size > MLX5_ADAPTER_PAGE_SHIFT)
1587                 MLX5_SET(cqc, cqctx, log_page_size,
1588                          attr->log_page_size - MLX5_ADAPTER_PAGE_SHIFT);
1589         MLX5_SET(cqc, cqctx, c_eqn, attr->eqn);
1590         MLX5_SET(cqc, cqctx, uar_page, attr->uar_page_id);
1591         MLX5_SET(cqc, cqctx, cqe_comp_en, !!attr->cqe_comp_en);
1592         MLX5_SET(cqc, cqctx, mini_cqe_res_format, attr->mini_cqe_res_format);
1593         MLX5_SET(cqc, cqctx, mini_cqe_res_format_ext,
1594                  attr->mini_cqe_res_format_ext);
1595         if (attr->q_umem_valid) {
1596                 MLX5_SET(create_cq_in, in, cq_umem_valid, attr->q_umem_valid);
1597                 MLX5_SET(create_cq_in, in, cq_umem_id, attr->q_umem_id);
1598                 MLX5_SET64(create_cq_in, in, cq_umem_offset,
1599                            attr->q_umem_offset);
1600         }
1601         cq_obj->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in), out,
1602                                                  sizeof(out));
1603         if (!cq_obj->obj) {
1604                 rte_errno = errno;
1605                 DRV_LOG(ERR, "Failed to create CQ using DevX errno=%d.", errno);
1606                 mlx5_free(cq_obj);
1607                 return NULL;
1608         }
1609         cq_obj->id = MLX5_GET(create_cq_out, out, cqn);
1610         return cq_obj;
1611 }
1612
1613 /**
1614  * Create VIRTQ using DevX API.
1615  *
1616  * @param[in] ctx
1617  *   Context returned from mlx5 open_device() glue function.
1618  * @param [in] attr
1619  *   Pointer to VIRTQ attributes structure.
1620  *
1621  * @return
1622  *   The DevX object created, NULL otherwise and rte_errno is set.
1623  */
1624 struct mlx5_devx_obj *
1625 mlx5_devx_cmd_create_virtq(void *ctx,
1626                            struct mlx5_devx_virtq_attr *attr)
1627 {
1628         uint32_t in[MLX5_ST_SZ_DW(create_virtq_in)] = {0};
1629         uint32_t out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)] = {0};
1630         struct mlx5_devx_obj *virtq_obj = mlx5_malloc(MLX5_MEM_ZERO,
1631                                                      sizeof(*virtq_obj),
1632                                                      0, SOCKET_ID_ANY);
1633         void *virtq = MLX5_ADDR_OF(create_virtq_in, in, virtq);
1634         void *hdr = MLX5_ADDR_OF(create_virtq_in, in, hdr);
1635         void *virtctx = MLX5_ADDR_OF(virtio_net_q, virtq, virtio_q_context);
1636
1637         if (!virtq_obj) {
1638                 DRV_LOG(ERR, "Failed to allocate virtq data.");
1639                 rte_errno = ENOMEM;
1640                 return NULL;
1641         }
1642         MLX5_SET(general_obj_in_cmd_hdr, hdr, opcode,
1643                  MLX5_CMD_OP_CREATE_GENERAL_OBJECT);
1644         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_type,
1645                  MLX5_GENERAL_OBJ_TYPE_VIRTQ);
1646         MLX5_SET16(virtio_net_q, virtq, hw_available_index,
1647                    attr->hw_available_index);
1648         MLX5_SET16(virtio_net_q, virtq, hw_used_index, attr->hw_used_index);
1649         MLX5_SET16(virtio_net_q, virtq, tso_ipv4, attr->tso_ipv4);
1650         MLX5_SET16(virtio_net_q, virtq, tso_ipv6, attr->tso_ipv6);
1651         MLX5_SET16(virtio_net_q, virtq, tx_csum, attr->tx_csum);
1652         MLX5_SET16(virtio_net_q, virtq, rx_csum, attr->rx_csum);
1653         MLX5_SET16(virtio_q, virtctx, virtio_version_1_0,
1654                    attr->virtio_version_1_0);
1655         MLX5_SET16(virtio_q, virtctx, event_mode, attr->event_mode);
1656         MLX5_SET(virtio_q, virtctx, event_qpn_or_msix, attr->qp_id);
1657         MLX5_SET64(virtio_q, virtctx, desc_addr, attr->desc_addr);
1658         MLX5_SET64(virtio_q, virtctx, used_addr, attr->used_addr);
1659         MLX5_SET64(virtio_q, virtctx, available_addr, attr->available_addr);
1660         MLX5_SET16(virtio_q, virtctx, queue_index, attr->queue_index);
1661         MLX5_SET16(virtio_q, virtctx, queue_size, attr->q_size);
1662         MLX5_SET(virtio_q, virtctx, virtio_q_mkey, attr->mkey);
1663         MLX5_SET(virtio_q, virtctx, umem_1_id, attr->umems[0].id);
1664         MLX5_SET(virtio_q, virtctx, umem_1_size, attr->umems[0].size);
1665         MLX5_SET64(virtio_q, virtctx, umem_1_offset, attr->umems[0].offset);
1666         MLX5_SET(virtio_q, virtctx, umem_2_id, attr->umems[1].id);
1667         MLX5_SET(virtio_q, virtctx, umem_2_size, attr->umems[1].size);
1668         MLX5_SET64(virtio_q, virtctx, umem_2_offset, attr->umems[1].offset);
1669         MLX5_SET(virtio_q, virtctx, umem_3_id, attr->umems[2].id);
1670         MLX5_SET(virtio_q, virtctx, umem_3_size, attr->umems[2].size);
1671         MLX5_SET64(virtio_q, virtctx, umem_3_offset, attr->umems[2].offset);
1672         MLX5_SET(virtio_q, virtctx, counter_set_id, attr->counters_obj_id);
1673         MLX5_SET(virtio_q, virtctx, pd, attr->pd);
1674         MLX5_SET(virtio_q, virtctx, queue_period_mode, attr->hw_latency_mode);
1675         MLX5_SET(virtio_q, virtctx, queue_period_us, attr->hw_max_latency_us);
1676         MLX5_SET(virtio_q, virtctx, queue_max_count, attr->hw_max_pending_comp);
1677         MLX5_SET(virtio_net_q, virtq, tisn_or_qpn, attr->tis_id);
1678         virtq_obj->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in), out,
1679                                                     sizeof(out));
1680         if (!virtq_obj->obj) {
1681                 rte_errno = errno;
1682                 DRV_LOG(ERR, "Failed to create VIRTQ Obj using DevX.");
1683                 mlx5_free(virtq_obj);
1684                 return NULL;
1685         }
1686         virtq_obj->id = MLX5_GET(general_obj_out_cmd_hdr, out, obj_id);
1687         return virtq_obj;
1688 }
1689
1690 /**
1691  * Modify VIRTQ using DevX API.
1692  *
1693  * @param[in] virtq_obj
1694  *   Pointer to virtq object structure.
1695  * @param [in] attr
1696  *   Pointer to modify virtq attributes structure.
1697  *
1698  * @return
1699  *   0 on success, a negative errno value otherwise and rte_errno is set.
1700  */
1701 int
1702 mlx5_devx_cmd_modify_virtq(struct mlx5_devx_obj *virtq_obj,
1703                            struct mlx5_devx_virtq_attr *attr)
1704 {
1705         uint32_t in[MLX5_ST_SZ_DW(create_virtq_in)] = {0};
1706         uint32_t out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)] = {0};
1707         void *virtq = MLX5_ADDR_OF(create_virtq_in, in, virtq);
1708         void *hdr = MLX5_ADDR_OF(create_virtq_in, in, hdr);
1709         void *virtctx = MLX5_ADDR_OF(virtio_net_q, virtq, virtio_q_context);
1710         int ret;
1711
1712         MLX5_SET(general_obj_in_cmd_hdr, hdr, opcode,
1713                  MLX5_CMD_OP_MODIFY_GENERAL_OBJECT);
1714         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_type,
1715                  MLX5_GENERAL_OBJ_TYPE_VIRTQ);
1716         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_id, virtq_obj->id);
1717         MLX5_SET64(virtio_net_q, virtq, modify_field_select, attr->type);
1718         MLX5_SET16(virtio_q, virtctx, queue_index, attr->queue_index);
1719         switch (attr->type) {
1720         case MLX5_VIRTQ_MODIFY_TYPE_STATE:
1721                 MLX5_SET16(virtio_net_q, virtq, state, attr->state);
1722                 break;
1723         case MLX5_VIRTQ_MODIFY_TYPE_DIRTY_BITMAP_PARAMS:
1724                 MLX5_SET(virtio_net_q, virtq, dirty_bitmap_mkey,
1725                          attr->dirty_bitmap_mkey);
1726                 MLX5_SET64(virtio_net_q, virtq, dirty_bitmap_addr,
1727                          attr->dirty_bitmap_addr);
1728                 MLX5_SET(virtio_net_q, virtq, dirty_bitmap_size,
1729                          attr->dirty_bitmap_size);
1730                 break;
1731         case MLX5_VIRTQ_MODIFY_TYPE_DIRTY_BITMAP_DUMP_ENABLE:
1732                 MLX5_SET(virtio_net_q, virtq, dirty_bitmap_dump_enable,
1733                          attr->dirty_bitmap_dump_enable);
1734                 break;
1735         default:
1736                 rte_errno = EINVAL;
1737                 return -rte_errno;
1738         }
1739         ret = mlx5_glue->devx_obj_modify(virtq_obj->obj, in, sizeof(in),
1740                                          out, sizeof(out));
1741         if (ret) {
1742                 DRV_LOG(ERR, "Failed to modify VIRTQ using DevX.");
1743                 rte_errno = errno;
1744                 return -rte_errno;
1745         }
1746         return ret;
1747 }
1748
1749 /**
1750  * Query VIRTQ using DevX API.
1751  *
1752  * @param[in] virtq_obj
1753  *   Pointer to virtq object structure.
1754  * @param [in/out] attr
1755  *   Pointer to virtq attributes structure.
1756  *
1757  * @return
1758  *   0 on success, a negative errno value otherwise and rte_errno is set.
1759  */
1760 int
1761 mlx5_devx_cmd_query_virtq(struct mlx5_devx_obj *virtq_obj,
1762                            struct mlx5_devx_virtq_attr *attr)
1763 {
1764         uint32_t in[MLX5_ST_SZ_DW(general_obj_in_cmd_hdr)] = {0};
1765         uint32_t out[MLX5_ST_SZ_DW(query_virtq_out)] = {0};
1766         void *hdr = MLX5_ADDR_OF(query_virtq_out, in, hdr);
1767         void *virtq = MLX5_ADDR_OF(query_virtq_out, out, virtq);
1768         int ret;
1769
1770         MLX5_SET(general_obj_in_cmd_hdr, hdr, opcode,
1771                  MLX5_CMD_OP_QUERY_GENERAL_OBJECT);
1772         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_type,
1773                  MLX5_GENERAL_OBJ_TYPE_VIRTQ);
1774         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_id, virtq_obj->id);
1775         ret = mlx5_glue->devx_obj_query(virtq_obj->obj, in, sizeof(in),
1776                                          out, sizeof(out));
1777         if (ret) {
1778                 DRV_LOG(ERR, "Failed to modify VIRTQ using DevX.");
1779                 rte_errno = errno;
1780                 return -errno;
1781         }
1782         attr->hw_available_index = MLX5_GET16(virtio_net_q, virtq,
1783                                               hw_available_index);
1784         attr->hw_used_index = MLX5_GET16(virtio_net_q, virtq, hw_used_index);
1785         attr->state = MLX5_GET16(virtio_net_q, virtq, state);
1786         attr->error_type = MLX5_GET16(virtio_net_q, virtq,
1787                                       virtio_q_context.error_type);
1788         return ret;
1789 }
1790
1791 /**
1792  * Create QP using DevX API.
1793  *
1794  * @param[in] ctx
1795  *   Context returned from mlx5 open_device() glue function.
1796  * @param [in] attr
1797  *   Pointer to QP attributes structure.
1798  *
1799  * @return
1800  *   The DevX object created, NULL otherwise and rte_errno is set.
1801  */
1802 struct mlx5_devx_obj *
1803 mlx5_devx_cmd_create_qp(void *ctx,
1804                         struct mlx5_devx_qp_attr *attr)
1805 {
1806         uint32_t in[MLX5_ST_SZ_DW(create_qp_in)] = {0};
1807         uint32_t out[MLX5_ST_SZ_DW(create_qp_out)] = {0};
1808         struct mlx5_devx_obj *qp_obj = mlx5_malloc(MLX5_MEM_ZERO,
1809                                                    sizeof(*qp_obj),
1810                                                    0, SOCKET_ID_ANY);
1811         void *qpc = MLX5_ADDR_OF(create_qp_in, in, qpc);
1812
1813         if (!qp_obj) {
1814                 DRV_LOG(ERR, "Failed to allocate QP data.");
1815                 rte_errno = ENOMEM;
1816                 return NULL;
1817         }
1818         MLX5_SET(create_qp_in, in, opcode, MLX5_CMD_OP_CREATE_QP);
1819         MLX5_SET(qpc, qpc, st, MLX5_QP_ST_RC);
1820         MLX5_SET(qpc, qpc, pd, attr->pd);
1821         if (attr->uar_index) {
1822                 MLX5_SET(qpc, qpc, pm_state, MLX5_QP_PM_MIGRATED);
1823                 MLX5_SET(qpc, qpc, uar_page, attr->uar_index);
1824                 if (attr->log_page_size > MLX5_ADAPTER_PAGE_SHIFT)
1825                         MLX5_SET(qpc, qpc, log_page_size,
1826                                  attr->log_page_size - MLX5_ADAPTER_PAGE_SHIFT);
1827                 if (attr->sq_size) {
1828                         MLX5_ASSERT(RTE_IS_POWER_OF_2(attr->sq_size));
1829                         MLX5_SET(qpc, qpc, cqn_snd, attr->cqn);
1830                         MLX5_SET(qpc, qpc, log_sq_size,
1831                                  rte_log2_u32(attr->sq_size));
1832                 } else {
1833                         MLX5_SET(qpc, qpc, no_sq, 1);
1834                 }
1835                 if (attr->rq_size) {
1836                         MLX5_ASSERT(RTE_IS_POWER_OF_2(attr->rq_size));
1837                         MLX5_SET(qpc, qpc, cqn_rcv, attr->cqn);
1838                         MLX5_SET(qpc, qpc, log_rq_stride, attr->log_rq_stride -
1839                                  MLX5_LOG_RQ_STRIDE_SHIFT);
1840                         MLX5_SET(qpc, qpc, log_rq_size,
1841                                  rte_log2_u32(attr->rq_size));
1842                         MLX5_SET(qpc, qpc, rq_type, MLX5_NON_ZERO_RQ);
1843                 } else {
1844                         MLX5_SET(qpc, qpc, rq_type, MLX5_ZERO_LEN_RQ);
1845                 }
1846                 if (attr->dbr_umem_valid) {
1847                         MLX5_SET(qpc, qpc, dbr_umem_valid,
1848                                  attr->dbr_umem_valid);
1849                         MLX5_SET(qpc, qpc, dbr_umem_id, attr->dbr_umem_id);
1850                 }
1851                 MLX5_SET64(qpc, qpc, dbr_addr, attr->dbr_address);
1852                 MLX5_SET64(create_qp_in, in, wq_umem_offset,
1853                            attr->wq_umem_offset);
1854                 MLX5_SET(create_qp_in, in, wq_umem_id, attr->wq_umem_id);
1855                 MLX5_SET(create_qp_in, in, wq_umem_valid, 1);
1856         } else {
1857                 /* Special QP to be managed by FW - no SQ\RQ\CQ\UAR\DB rec. */
1858                 MLX5_SET(qpc, qpc, rq_type, MLX5_ZERO_LEN_RQ);
1859                 MLX5_SET(qpc, qpc, no_sq, 1);
1860         }
1861         qp_obj->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in), out,
1862                                                  sizeof(out));
1863         if (!qp_obj->obj) {
1864                 rte_errno = errno;
1865                 DRV_LOG(ERR, "Failed to create QP Obj using DevX.");
1866                 mlx5_free(qp_obj);
1867                 return NULL;
1868         }
1869         qp_obj->id = MLX5_GET(create_qp_out, out, qpn);
1870         return qp_obj;
1871 }
1872
1873 /**
1874  * Modify QP using DevX API.
1875  * Currently supports only force loop-back QP.
1876  *
1877  * @param[in] qp
1878  *   Pointer to QP object structure.
1879  * @param [in] qp_st_mod_op
1880  *   The QP state modification operation.
1881  * @param [in] remote_qp_id
1882  *   The remote QP ID for MLX5_CMD_OP_INIT2RTR_QP operation.
1883  *
1884  * @return
1885  *   0 on success, a negative errno value otherwise and rte_errno is set.
1886  */
1887 int
1888 mlx5_devx_cmd_modify_qp_state(struct mlx5_devx_obj *qp, uint32_t qp_st_mod_op,
1889                               uint32_t remote_qp_id)
1890 {
1891         union {
1892                 uint32_t rst2init[MLX5_ST_SZ_DW(rst2init_qp_in)];
1893                 uint32_t init2rtr[MLX5_ST_SZ_DW(init2rtr_qp_in)];
1894                 uint32_t rtr2rts[MLX5_ST_SZ_DW(rtr2rts_qp_in)];
1895         } in;
1896         union {
1897                 uint32_t rst2init[MLX5_ST_SZ_DW(rst2init_qp_out)];
1898                 uint32_t init2rtr[MLX5_ST_SZ_DW(init2rtr_qp_out)];
1899                 uint32_t rtr2rts[MLX5_ST_SZ_DW(rtr2rts_qp_out)];
1900         } out;
1901         void *qpc;
1902         int ret;
1903         unsigned int inlen;
1904         unsigned int outlen;
1905
1906         memset(&in, 0, sizeof(in));
1907         memset(&out, 0, sizeof(out));
1908         MLX5_SET(rst2init_qp_in, &in, opcode, qp_st_mod_op);
1909         switch (qp_st_mod_op) {
1910         case MLX5_CMD_OP_RST2INIT_QP:
1911                 MLX5_SET(rst2init_qp_in, &in, qpn, qp->id);
1912                 qpc = MLX5_ADDR_OF(rst2init_qp_in, &in, qpc);
1913                 MLX5_SET(qpc, qpc, primary_address_path.vhca_port_num, 1);
1914                 MLX5_SET(qpc, qpc, rre, 1);
1915                 MLX5_SET(qpc, qpc, rwe, 1);
1916                 MLX5_SET(qpc, qpc, pm_state, MLX5_QP_PM_MIGRATED);
1917                 inlen = sizeof(in.rst2init);
1918                 outlen = sizeof(out.rst2init);
1919                 break;
1920         case MLX5_CMD_OP_INIT2RTR_QP:
1921                 MLX5_SET(init2rtr_qp_in, &in, qpn, qp->id);
1922                 qpc = MLX5_ADDR_OF(init2rtr_qp_in, &in, qpc);
1923                 MLX5_SET(qpc, qpc, primary_address_path.fl, 1);
1924                 MLX5_SET(qpc, qpc, primary_address_path.vhca_port_num, 1);
1925                 MLX5_SET(qpc, qpc, mtu, 1);
1926                 MLX5_SET(qpc, qpc, log_msg_max, 30);
1927                 MLX5_SET(qpc, qpc, remote_qpn, remote_qp_id);
1928                 MLX5_SET(qpc, qpc, min_rnr_nak, 0);
1929                 inlen = sizeof(in.init2rtr);
1930                 outlen = sizeof(out.init2rtr);
1931                 break;
1932         case MLX5_CMD_OP_RTR2RTS_QP:
1933                 qpc = MLX5_ADDR_OF(rtr2rts_qp_in, &in, qpc);
1934                 MLX5_SET(rtr2rts_qp_in, &in, qpn, qp->id);
1935                 MLX5_SET(qpc, qpc, primary_address_path.ack_timeout, 14);
1936                 MLX5_SET(qpc, qpc, log_ack_req_freq, 0);
1937                 MLX5_SET(qpc, qpc, retry_count, 7);
1938                 MLX5_SET(qpc, qpc, rnr_retry, 7);
1939                 inlen = sizeof(in.rtr2rts);
1940                 outlen = sizeof(out.rtr2rts);
1941                 break;
1942         default:
1943                 DRV_LOG(ERR, "Invalid or unsupported QP modify op %u.",
1944                         qp_st_mod_op);
1945                 rte_errno = EINVAL;
1946                 return -rte_errno;
1947         }
1948         ret = mlx5_glue->devx_obj_modify(qp->obj, &in, inlen, &out, outlen);
1949         if (ret) {
1950                 DRV_LOG(ERR, "Failed to modify QP using DevX.");
1951                 rte_errno = errno;
1952                 return -rte_errno;
1953         }
1954         return ret;
1955 }
1956
1957 struct mlx5_devx_obj *
1958 mlx5_devx_cmd_create_virtio_q_counters(void *ctx)
1959 {
1960         uint32_t in[MLX5_ST_SZ_DW(create_virtio_q_counters_in)] = {0};
1961         uint32_t out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)] = {0};
1962         struct mlx5_devx_obj *couners_obj = mlx5_malloc(MLX5_MEM_ZERO,
1963                                                        sizeof(*couners_obj), 0,
1964                                                        SOCKET_ID_ANY);
1965         void *hdr = MLX5_ADDR_OF(create_virtio_q_counters_in, in, hdr);
1966
1967         if (!couners_obj) {
1968                 DRV_LOG(ERR, "Failed to allocate virtio queue counters data.");
1969                 rte_errno = ENOMEM;
1970                 return NULL;
1971         }
1972         MLX5_SET(general_obj_in_cmd_hdr, hdr, opcode,
1973                  MLX5_CMD_OP_CREATE_GENERAL_OBJECT);
1974         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_type,
1975                  MLX5_GENERAL_OBJ_TYPE_VIRTIO_Q_COUNTERS);
1976         couners_obj->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in), out,
1977                                                       sizeof(out));
1978         if (!couners_obj->obj) {
1979                 rte_errno = errno;
1980                 DRV_LOG(ERR, "Failed to create virtio queue counters Obj using"
1981                         " DevX.");
1982                 mlx5_free(couners_obj);
1983                 return NULL;
1984         }
1985         couners_obj->id = MLX5_GET(general_obj_out_cmd_hdr, out, obj_id);
1986         return couners_obj;
1987 }
1988
1989 int
1990 mlx5_devx_cmd_query_virtio_q_counters(struct mlx5_devx_obj *couners_obj,
1991                                    struct mlx5_devx_virtio_q_couners_attr *attr)
1992 {
1993         uint32_t in[MLX5_ST_SZ_DW(general_obj_in_cmd_hdr)] = {0};
1994         uint32_t out[MLX5_ST_SZ_DW(query_virtio_q_counters_out)] = {0};
1995         void *hdr = MLX5_ADDR_OF(query_virtio_q_counters_out, in, hdr);
1996         void *virtio_q_counters = MLX5_ADDR_OF(query_virtio_q_counters_out, out,
1997                                                virtio_q_counters);
1998         int ret;
1999
2000         MLX5_SET(general_obj_in_cmd_hdr, hdr, opcode,
2001                  MLX5_CMD_OP_QUERY_GENERAL_OBJECT);
2002         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_type,
2003                  MLX5_GENERAL_OBJ_TYPE_VIRTIO_Q_COUNTERS);
2004         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_id, couners_obj->id);
2005         ret = mlx5_glue->devx_obj_query(couners_obj->obj, in, sizeof(in), out,
2006                                         sizeof(out));
2007         if (ret) {
2008                 DRV_LOG(ERR, "Failed to query virtio q counters using DevX.");
2009                 rte_errno = errno;
2010                 return -errno;
2011         }
2012         attr->received_desc = MLX5_GET64(virtio_q_counters, virtio_q_counters,
2013                                          received_desc);
2014         attr->completed_desc = MLX5_GET64(virtio_q_counters, virtio_q_counters,
2015                                           completed_desc);
2016         attr->error_cqes = MLX5_GET(virtio_q_counters, virtio_q_counters,
2017                                     error_cqes);
2018         attr->bad_desc_errors = MLX5_GET(virtio_q_counters, virtio_q_counters,
2019                                          bad_desc_errors);
2020         attr->exceed_max_chain = MLX5_GET(virtio_q_counters, virtio_q_counters,
2021                                           exceed_max_chain);
2022         attr->invalid_buffer = MLX5_GET(virtio_q_counters, virtio_q_counters,
2023                                         invalid_buffer);
2024         return ret;
2025 }
2026
2027 /**
2028  * Create general object of type FLOW_HIT_ASO using DevX API.
2029  *
2030  * @param[in] ctx
2031  *   Context returned from mlx5 open_device() glue function.
2032  * @param [in] pd
2033  *   PD value to associate the FLOW_HIT_ASO object with.
2034  *
2035  * @return
2036  *   The DevX object created, NULL otherwise and rte_errno is set.
2037  */
2038 struct mlx5_devx_obj *
2039 mlx5_devx_cmd_create_flow_hit_aso_obj(void *ctx, uint32_t pd)
2040 {
2041         uint32_t in[MLX5_ST_SZ_DW(create_flow_hit_aso_in)] = {0};
2042         uint32_t out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)] = {0};
2043         struct mlx5_devx_obj *flow_hit_aso_obj = NULL;
2044         void *ptr = NULL;
2045
2046         flow_hit_aso_obj = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*flow_hit_aso_obj),
2047                                        0, SOCKET_ID_ANY);
2048         if (!flow_hit_aso_obj) {
2049                 DRV_LOG(ERR, "Failed to allocate FLOW_HIT_ASO object data");
2050                 rte_errno = ENOMEM;
2051                 return NULL;
2052         }
2053         ptr = MLX5_ADDR_OF(create_flow_hit_aso_in, in, hdr);
2054         MLX5_SET(general_obj_in_cmd_hdr, ptr, opcode,
2055                  MLX5_CMD_OP_CREATE_GENERAL_OBJECT);
2056         MLX5_SET(general_obj_in_cmd_hdr, ptr, obj_type,
2057                  MLX5_GENERAL_OBJ_TYPE_FLOW_HIT_ASO);
2058         ptr = MLX5_ADDR_OF(create_flow_hit_aso_in, in, flow_hit_aso);
2059         MLX5_SET(flow_hit_aso, ptr, access_pd, pd);
2060         flow_hit_aso_obj->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in),
2061                                                            out, sizeof(out));
2062         if (!flow_hit_aso_obj->obj) {
2063                 rte_errno = errno;
2064                 DRV_LOG(ERR, "Failed to create FLOW_HIT_ASO obj using DevX.");
2065                 mlx5_free(flow_hit_aso_obj);
2066                 return NULL;
2067         }
2068         flow_hit_aso_obj->id = MLX5_GET(general_obj_out_cmd_hdr, out, obj_id);
2069         return flow_hit_aso_obj;
2070 }
2071
2072 /*
2073  * Create PD using DevX API.
2074  *
2075  * @param[in] ctx
2076  *   Context returned from mlx5 open_device() glue function.
2077  *
2078  * @return
2079  *   The DevX object created, NULL otherwise and rte_errno is set.
2080  */
2081 struct mlx5_devx_obj *
2082 mlx5_devx_cmd_alloc_pd(void *ctx)
2083 {
2084         struct mlx5_devx_obj *ppd =
2085                 mlx5_malloc(MLX5_MEM_ZERO, sizeof(*ppd), 0, SOCKET_ID_ANY);
2086         u32 in[MLX5_ST_SZ_DW(alloc_pd_in)] = {0};
2087         u32 out[MLX5_ST_SZ_DW(alloc_pd_out)] = {0};
2088
2089         if (!ppd) {
2090                 DRV_LOG(ERR, "Failed to allocate PD data.");
2091                 rte_errno = ENOMEM;
2092                 return NULL;
2093         }
2094         MLX5_SET(alloc_pd_in, in, opcode, MLX5_CMD_OP_ALLOC_PD);
2095         ppd->obj = mlx5_glue->devx_obj_create(ctx, in, sizeof(in),
2096                                 out, sizeof(out));
2097         if (!ppd->obj) {
2098                 mlx5_free(ppd);
2099                 DRV_LOG(ERR, "Failed to allocate PD Obj using DevX.");
2100                 rte_errno = errno;
2101                 return NULL;
2102         }
2103         ppd->id = MLX5_GET(alloc_pd_out, out, pd);
2104         return ppd;
2105 }
2106
2107 /**
2108  * Create general object of type GENEVE TLV option using DevX API.
2109  *
2110  * @param[in] ctx
2111  *   Context returned from mlx5 open_device() glue function.
2112  * @param [in] class
2113  *   TLV option variable value of class
2114  * @param [in] type
2115  *   TLV option variable value of type
2116  * @param [in] len
2117  *   TLV option variable value of len
2118  *
2119  * @return
2120  *   The DevX object created, NULL otherwise and rte_errno is set.
2121  */
2122 struct mlx5_devx_obj *
2123 mlx5_devx_cmd_create_geneve_tlv_option(void *ctx,
2124                 uint16_t class, uint8_t type, uint8_t len)
2125 {
2126         uint32_t in[MLX5_ST_SZ_DW(create_geneve_tlv_option_in)] = {0};
2127         uint32_t out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)] = {0};
2128         struct mlx5_devx_obj *geneve_tlv_opt_obj = mlx5_malloc(MLX5_MEM_ZERO,
2129                                                    sizeof(*geneve_tlv_opt_obj),
2130                                                    0, SOCKET_ID_ANY);
2131
2132         if (!geneve_tlv_opt_obj) {
2133                 DRV_LOG(ERR, "Failed to allocate geneve tlv option object.");
2134                 rte_errno = ENOMEM;
2135                 return NULL;
2136         }
2137         void *hdr = MLX5_ADDR_OF(create_geneve_tlv_option_in, in, hdr);
2138         void *opt = MLX5_ADDR_OF(create_geneve_tlv_option_in, in,
2139                         geneve_tlv_opt);
2140         MLX5_SET(general_obj_in_cmd_hdr, hdr, opcode,
2141                         MLX5_CMD_OP_CREATE_GENERAL_OBJECT);
2142         MLX5_SET(general_obj_in_cmd_hdr, hdr, obj_type,
2143                         MLX5_OBJ_TYPE_GENEVE_TLV_OPT);
2144         MLX5_SET(geneve_tlv_option, opt, option_class,
2145                         rte_be_to_cpu_16(class));
2146         MLX5_SET(geneve_tlv_option, opt, option_type, type);
2147         MLX5_SET(geneve_tlv_option, opt, option_data_length, len);
2148         geneve_tlv_opt_obj->obj = mlx5_glue->devx_obj_create(ctx, in,
2149                                         sizeof(in), out, sizeof(out));
2150         if (!geneve_tlv_opt_obj->obj) {
2151                 rte_errno = errno;
2152                 DRV_LOG(ERR, "Failed to create Geneve tlv option "
2153                                 "Obj using DevX.");
2154                 mlx5_free(geneve_tlv_opt_obj);
2155                 return NULL;
2156         }
2157         geneve_tlv_opt_obj->id = MLX5_GET(general_obj_out_cmd_hdr, out, obj_id);
2158         return geneve_tlv_opt_obj;
2159 }
2160