net/mlx5: fix getting Rx queue type
[dpdk.git] / drivers / net / mlx5 / mlx5_rxq.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2015 6WIND S.A.
3  * Copyright 2015 Mellanox Technologies, Ltd
4  */
5
6 #include <stddef.h>
7 #include <assert.h>
8 #include <errno.h>
9 #include <string.h>
10 #include <stdint.h>
11 #include <fcntl.h>
12 #include <sys/queue.h>
13
14 /* Verbs header. */
15 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
16 #ifdef PEDANTIC
17 #pragma GCC diagnostic ignored "-Wpedantic"
18 #endif
19 #include <infiniband/verbs.h>
20 #include <infiniband/mlx5dv.h>
21 #ifdef PEDANTIC
22 #pragma GCC diagnostic error "-Wpedantic"
23 #endif
24
25 #include <rte_mbuf.h>
26 #include <rte_malloc.h>
27 #include <rte_ethdev_driver.h>
28 #include <rte_common.h>
29 #include <rte_interrupts.h>
30 #include <rte_debug.h>
31 #include <rte_io.h>
32
33 #include "mlx5.h"
34 #include "mlx5_rxtx.h"
35 #include "mlx5_utils.h"
36 #include "mlx5_autoconf.h"
37 #include "mlx5_defs.h"
38 #include "mlx5_glue.h"
39
40 /* Default RSS hash key also used for ConnectX-3. */
41 uint8_t rss_hash_default_key[] = {
42         0x2c, 0xc6, 0x81, 0xd1,
43         0x5b, 0xdb, 0xf4, 0xf7,
44         0xfc, 0xa2, 0x83, 0x19,
45         0xdb, 0x1a, 0x3e, 0x94,
46         0x6b, 0x9e, 0x38, 0xd9,
47         0x2c, 0x9c, 0x03, 0xd1,
48         0xad, 0x99, 0x44, 0xa7,
49         0xd9, 0x56, 0x3d, 0x59,
50         0x06, 0x3c, 0x25, 0xf3,
51         0xfc, 0x1f, 0xdc, 0x2a,
52 };
53
54 /* Length of the default RSS hash key. */
55 static_assert(MLX5_RSS_HASH_KEY_LEN ==
56               (unsigned int)sizeof(rss_hash_default_key),
57               "wrong RSS default key size.");
58
59 /**
60  * Check whether Multi-Packet RQ can be enabled for the device.
61  *
62  * @param dev
63  *   Pointer to Ethernet device.
64  *
65  * @return
66  *   1 if supported, negative errno value if not.
67  */
68 inline int
69 mlx5_check_mprq_support(struct rte_eth_dev *dev)
70 {
71         struct mlx5_priv *priv = dev->data->dev_private;
72
73         if (priv->config.mprq.enabled &&
74             priv->rxqs_n >= priv->config.mprq.min_rxqs_num)
75                 return 1;
76         return -ENOTSUP;
77 }
78
79 /**
80  * Check whether Multi-Packet RQ is enabled for the Rx queue.
81  *
82  *  @param rxq
83  *     Pointer to receive queue structure.
84  *
85  * @return
86  *   0 if disabled, otherwise enabled.
87  */
88 inline int
89 mlx5_rxq_mprq_enabled(struct mlx5_rxq_data *rxq)
90 {
91         return rxq->strd_num_n > 0;
92 }
93
94 /**
95  * Check whether Multi-Packet RQ is enabled for the device.
96  *
97  * @param dev
98  *   Pointer to Ethernet device.
99  *
100  * @return
101  *   0 if disabled, otherwise enabled.
102  */
103 inline int
104 mlx5_mprq_enabled(struct rte_eth_dev *dev)
105 {
106         struct mlx5_priv *priv = dev->data->dev_private;
107         uint16_t i;
108         uint16_t n = 0;
109         uint16_t n_ibv = 0;
110
111         if (mlx5_check_mprq_support(dev) < 0)
112                 return 0;
113         /* All the configured queues should be enabled. */
114         for (i = 0; i < priv->rxqs_n; ++i) {
115                 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
116                 struct mlx5_rxq_ctrl *rxq_ctrl = container_of
117                         (rxq, struct mlx5_rxq_ctrl, rxq);
118
119                 if (rxq == NULL || rxq_ctrl->type != MLX5_RXQ_TYPE_STANDARD)
120                         continue;
121                 n_ibv++;
122                 if (mlx5_rxq_mprq_enabled(rxq))
123                         ++n;
124         }
125         /* Multi-Packet RQ can't be partially configured. */
126         assert(n == 0 || n == n_ibv);
127         return n == n_ibv;
128 }
129
130 /**
131  * Allocate RX queue elements for Multi-Packet RQ.
132  *
133  * @param rxq_ctrl
134  *   Pointer to RX queue structure.
135  *
136  * @return
137  *   0 on success, a negative errno value otherwise and rte_errno is set.
138  */
139 static int
140 rxq_alloc_elts_mprq(struct mlx5_rxq_ctrl *rxq_ctrl)
141 {
142         struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
143         unsigned int wqe_n = 1 << rxq->elts_n;
144         unsigned int i;
145         int err;
146
147         /* Iterate on segments. */
148         for (i = 0; i <= wqe_n; ++i) {
149                 struct mlx5_mprq_buf *buf;
150
151                 if (rte_mempool_get(rxq->mprq_mp, (void **)&buf) < 0) {
152                         DRV_LOG(ERR, "port %u empty mbuf pool", rxq->port_id);
153                         rte_errno = ENOMEM;
154                         goto error;
155                 }
156                 if (i < wqe_n)
157                         (*rxq->mprq_bufs)[i] = buf;
158                 else
159                         rxq->mprq_repl = buf;
160         }
161         DRV_LOG(DEBUG,
162                 "port %u Rx queue %u allocated and configured %u segments",
163                 rxq->port_id, rxq->idx, wqe_n);
164         return 0;
165 error:
166         err = rte_errno; /* Save rte_errno before cleanup. */
167         wqe_n = i;
168         for (i = 0; (i != wqe_n); ++i) {
169                 if ((*rxq->mprq_bufs)[i] != NULL)
170                         rte_mempool_put(rxq->mprq_mp,
171                                         (*rxq->mprq_bufs)[i]);
172                 (*rxq->mprq_bufs)[i] = NULL;
173         }
174         DRV_LOG(DEBUG, "port %u Rx queue %u failed, freed everything",
175                 rxq->port_id, rxq->idx);
176         rte_errno = err; /* Restore rte_errno. */
177         return -rte_errno;
178 }
179
180 /**
181  * Allocate RX queue elements for Single-Packet RQ.
182  *
183  * @param rxq_ctrl
184  *   Pointer to RX queue structure.
185  *
186  * @return
187  *   0 on success, errno value on failure.
188  */
189 static int
190 rxq_alloc_elts_sprq(struct mlx5_rxq_ctrl *rxq_ctrl)
191 {
192         const unsigned int sges_n = 1 << rxq_ctrl->rxq.sges_n;
193         unsigned int elts_n = 1 << rxq_ctrl->rxq.elts_n;
194         unsigned int i;
195         int err;
196
197         /* Iterate on segments. */
198         for (i = 0; (i != elts_n); ++i) {
199                 struct rte_mbuf *buf;
200
201                 buf = rte_pktmbuf_alloc(rxq_ctrl->rxq.mp);
202                 if (buf == NULL) {
203                         DRV_LOG(ERR, "port %u empty mbuf pool",
204                                 PORT_ID(rxq_ctrl->priv));
205                         rte_errno = ENOMEM;
206                         goto error;
207                 }
208                 /* Headroom is reserved by rte_pktmbuf_alloc(). */
209                 assert(DATA_OFF(buf) == RTE_PKTMBUF_HEADROOM);
210                 /* Buffer is supposed to be empty. */
211                 assert(rte_pktmbuf_data_len(buf) == 0);
212                 assert(rte_pktmbuf_pkt_len(buf) == 0);
213                 assert(!buf->next);
214                 /* Only the first segment keeps headroom. */
215                 if (i % sges_n)
216                         SET_DATA_OFF(buf, 0);
217                 PORT(buf) = rxq_ctrl->rxq.port_id;
218                 DATA_LEN(buf) = rte_pktmbuf_tailroom(buf);
219                 PKT_LEN(buf) = DATA_LEN(buf);
220                 NB_SEGS(buf) = 1;
221                 (*rxq_ctrl->rxq.elts)[i] = buf;
222         }
223         /* If Rx vector is activated. */
224         if (mlx5_rxq_check_vec_support(&rxq_ctrl->rxq) > 0) {
225                 struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
226                 struct rte_mbuf *mbuf_init = &rxq->fake_mbuf;
227                 int j;
228
229                 /* Initialize default rearm_data for vPMD. */
230                 mbuf_init->data_off = RTE_PKTMBUF_HEADROOM;
231                 rte_mbuf_refcnt_set(mbuf_init, 1);
232                 mbuf_init->nb_segs = 1;
233                 mbuf_init->port = rxq->port_id;
234                 /*
235                  * prevent compiler reordering:
236                  * rearm_data covers previous fields.
237                  */
238                 rte_compiler_barrier();
239                 rxq->mbuf_initializer =
240                         *(uint64_t *)&mbuf_init->rearm_data;
241                 /* Padding with a fake mbuf for vectorized Rx. */
242                 for (j = 0; j < MLX5_VPMD_DESCS_PER_LOOP; ++j)
243                         (*rxq->elts)[elts_n + j] = &rxq->fake_mbuf;
244         }
245         DRV_LOG(DEBUG,
246                 "port %u Rx queue %u allocated and configured %u segments"
247                 " (max %u packets)",
248                 PORT_ID(rxq_ctrl->priv), rxq_ctrl->rxq.idx, elts_n,
249                 elts_n / (1 << rxq_ctrl->rxq.sges_n));
250         return 0;
251 error:
252         err = rte_errno; /* Save rte_errno before cleanup. */
253         elts_n = i;
254         for (i = 0; (i != elts_n); ++i) {
255                 if ((*rxq_ctrl->rxq.elts)[i] != NULL)
256                         rte_pktmbuf_free_seg((*rxq_ctrl->rxq.elts)[i]);
257                 (*rxq_ctrl->rxq.elts)[i] = NULL;
258         }
259         DRV_LOG(DEBUG, "port %u Rx queue %u failed, freed everything",
260                 PORT_ID(rxq_ctrl->priv), rxq_ctrl->rxq.idx);
261         rte_errno = err; /* Restore rte_errno. */
262         return -rte_errno;
263 }
264
265 /**
266  * Allocate RX queue elements.
267  *
268  * @param rxq_ctrl
269  *   Pointer to RX queue structure.
270  *
271  * @return
272  *   0 on success, errno value on failure.
273  */
274 int
275 rxq_alloc_elts(struct mlx5_rxq_ctrl *rxq_ctrl)
276 {
277         return mlx5_rxq_mprq_enabled(&rxq_ctrl->rxq) ?
278                rxq_alloc_elts_mprq(rxq_ctrl) : rxq_alloc_elts_sprq(rxq_ctrl);
279 }
280
281 /**
282  * Free RX queue elements for Multi-Packet RQ.
283  *
284  * @param rxq_ctrl
285  *   Pointer to RX queue structure.
286  */
287 static void
288 rxq_free_elts_mprq(struct mlx5_rxq_ctrl *rxq_ctrl)
289 {
290         struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
291         uint16_t i;
292
293         DRV_LOG(DEBUG, "port %u Multi-Packet Rx queue %u freeing WRs",
294                 rxq->port_id, rxq->idx);
295         if (rxq->mprq_bufs == NULL)
296                 return;
297         assert(mlx5_rxq_check_vec_support(rxq) < 0);
298         for (i = 0; (i != (1u << rxq->elts_n)); ++i) {
299                 if ((*rxq->mprq_bufs)[i] != NULL)
300                         mlx5_mprq_buf_free((*rxq->mprq_bufs)[i]);
301                 (*rxq->mprq_bufs)[i] = NULL;
302         }
303         if (rxq->mprq_repl != NULL) {
304                 mlx5_mprq_buf_free(rxq->mprq_repl);
305                 rxq->mprq_repl = NULL;
306         }
307 }
308
309 /**
310  * Free RX queue elements for Single-Packet RQ.
311  *
312  * @param rxq_ctrl
313  *   Pointer to RX queue structure.
314  */
315 static void
316 rxq_free_elts_sprq(struct mlx5_rxq_ctrl *rxq_ctrl)
317 {
318         struct mlx5_rxq_data *rxq = &rxq_ctrl->rxq;
319         const uint16_t q_n = (1 << rxq->elts_n);
320         const uint16_t q_mask = q_n - 1;
321         uint16_t used = q_n - (rxq->rq_ci - rxq->rq_pi);
322         uint16_t i;
323
324         DRV_LOG(DEBUG, "port %u Rx queue %u freeing WRs",
325                 PORT_ID(rxq_ctrl->priv), rxq->idx);
326         if (rxq->elts == NULL)
327                 return;
328         /**
329          * Some mbuf in the Ring belongs to the application.  They cannot be
330          * freed.
331          */
332         if (mlx5_rxq_check_vec_support(rxq) > 0) {
333                 for (i = 0; i < used; ++i)
334                         (*rxq->elts)[(rxq->rq_ci + i) & q_mask] = NULL;
335                 rxq->rq_pi = rxq->rq_ci;
336         }
337         for (i = 0; (i != (1u << rxq->elts_n)); ++i) {
338                 if ((*rxq->elts)[i] != NULL)
339                         rte_pktmbuf_free_seg((*rxq->elts)[i]);
340                 (*rxq->elts)[i] = NULL;
341         }
342 }
343
344 /**
345  * Free RX queue elements.
346  *
347  * @param rxq_ctrl
348  *   Pointer to RX queue structure.
349  */
350 static void
351 rxq_free_elts(struct mlx5_rxq_ctrl *rxq_ctrl)
352 {
353         if (mlx5_rxq_mprq_enabled(&rxq_ctrl->rxq))
354                 rxq_free_elts_mprq(rxq_ctrl);
355         else
356                 rxq_free_elts_sprq(rxq_ctrl);
357 }
358
359 /**
360  * Returns the per-queue supported offloads.
361  *
362  * @param dev
363  *   Pointer to Ethernet device.
364  *
365  * @return
366  *   Supported Rx offloads.
367  */
368 uint64_t
369 mlx5_get_rx_queue_offloads(struct rte_eth_dev *dev)
370 {
371         struct mlx5_priv *priv = dev->data->dev_private;
372         struct mlx5_dev_config *config = &priv->config;
373         uint64_t offloads = (DEV_RX_OFFLOAD_SCATTER |
374                              DEV_RX_OFFLOAD_TIMESTAMP |
375                              DEV_RX_OFFLOAD_JUMBO_FRAME |
376                              DEV_RX_OFFLOAD_RSS_HASH);
377
378         if (config->hw_fcs_strip)
379                 offloads |= DEV_RX_OFFLOAD_KEEP_CRC;
380
381         if (config->hw_csum)
382                 offloads |= (DEV_RX_OFFLOAD_IPV4_CKSUM |
383                              DEV_RX_OFFLOAD_UDP_CKSUM |
384                              DEV_RX_OFFLOAD_TCP_CKSUM);
385         if (config->hw_vlan_strip)
386                 offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
387         if (MLX5_LRO_SUPPORTED(dev))
388                 offloads |= DEV_RX_OFFLOAD_TCP_LRO;
389         return offloads;
390 }
391
392
393 /**
394  * Returns the per-port supported offloads.
395  *
396  * @return
397  *   Supported Rx offloads.
398  */
399 uint64_t
400 mlx5_get_rx_port_offloads(void)
401 {
402         uint64_t offloads = DEV_RX_OFFLOAD_VLAN_FILTER;
403
404         return offloads;
405 }
406
407 /**
408  * Verify if the queue can be released.
409  *
410  * @param dev
411  *   Pointer to Ethernet device.
412  * @param idx
413  *   RX queue index.
414  *
415  * @return
416  *   1 if the queue can be released
417  *   0 if the queue can not be released, there are references to it.
418  *   Negative errno and rte_errno is set if queue doesn't exist.
419  */
420 static int
421 mlx5_rxq_releasable(struct rte_eth_dev *dev, uint16_t idx)
422 {
423         struct mlx5_priv *priv = dev->data->dev_private;
424         struct mlx5_rxq_ctrl *rxq_ctrl;
425
426         if (!(*priv->rxqs)[idx]) {
427                 rte_errno = EINVAL;
428                 return -rte_errno;
429         }
430         rxq_ctrl = container_of((*priv->rxqs)[idx], struct mlx5_rxq_ctrl, rxq);
431         return (rte_atomic32_read(&rxq_ctrl->refcnt) == 1);
432 }
433
434 /**
435  * Rx queue presetup checks.
436  *
437  * @param dev
438  *   Pointer to Ethernet device structure.
439  * @param idx
440  *   RX queue index.
441  * @param desc
442  *   Number of descriptors to configure in queue.
443  *
444  * @return
445  *   0 on success, a negative errno value otherwise and rte_errno is set.
446  */
447 static int
448 mlx5_rx_queue_pre_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc)
449 {
450         struct mlx5_priv *priv = dev->data->dev_private;
451
452         if (!rte_is_power_of_2(desc)) {
453                 desc = 1 << log2above(desc);
454                 DRV_LOG(WARNING,
455                         "port %u increased number of descriptors in Rx queue %u"
456                         " to the next power of two (%d)",
457                         dev->data->port_id, idx, desc);
458         }
459         DRV_LOG(DEBUG, "port %u configuring Rx queue %u for %u descriptors",
460                 dev->data->port_id, idx, desc);
461         if (idx >= priv->rxqs_n) {
462                 DRV_LOG(ERR, "port %u Rx queue index out of range (%u >= %u)",
463                         dev->data->port_id, idx, priv->rxqs_n);
464                 rte_errno = EOVERFLOW;
465                 return -rte_errno;
466         }
467         if (!mlx5_rxq_releasable(dev, idx)) {
468                 DRV_LOG(ERR, "port %u unable to release queue index %u",
469                         dev->data->port_id, idx);
470                 rte_errno = EBUSY;
471                 return -rte_errno;
472         }
473         mlx5_rxq_release(dev, idx);
474         return 0;
475 }
476
477 /**
478  *
479  * @param dev
480  *   Pointer to Ethernet device structure.
481  * @param idx
482  *   RX queue index.
483  * @param desc
484  *   Number of descriptors to configure in queue.
485  * @param socket
486  *   NUMA socket on which memory must be allocated.
487  * @param[in] conf
488  *   Thresholds parameters.
489  * @param mp
490  *   Memory pool for buffer allocations.
491  *
492  * @return
493  *   0 on success, a negative errno value otherwise and rte_errno is set.
494  */
495 int
496 mlx5_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
497                     unsigned int socket, const struct rte_eth_rxconf *conf,
498                     struct rte_mempool *mp)
499 {
500         struct mlx5_priv *priv = dev->data->dev_private;
501         struct mlx5_rxq_data *rxq = (*priv->rxqs)[idx];
502         struct mlx5_rxq_ctrl *rxq_ctrl =
503                 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
504         int res;
505
506         res = mlx5_rx_queue_pre_setup(dev, idx, desc);
507         if (res)
508                 return res;
509         rxq_ctrl = mlx5_rxq_new(dev, idx, desc, socket, conf, mp);
510         if (!rxq_ctrl) {
511                 DRV_LOG(ERR, "port %u unable to allocate queue index %u",
512                         dev->data->port_id, idx);
513                 rte_errno = ENOMEM;
514                 return -rte_errno;
515         }
516         DRV_LOG(DEBUG, "port %u adding Rx queue %u to list",
517                 dev->data->port_id, idx);
518         (*priv->rxqs)[idx] = &rxq_ctrl->rxq;
519         return 0;
520 }
521
522 /**
523  *
524  * @param dev
525  *   Pointer to Ethernet device structure.
526  * @param idx
527  *   RX queue index.
528  * @param desc
529  *   Number of descriptors to configure in queue.
530  * @param hairpin_conf
531  *   Hairpin configuration parameters.
532  *
533  * @return
534  *   0 on success, a negative errno value otherwise and rte_errno is set.
535  */
536 int
537 mlx5_rx_hairpin_queue_setup(struct rte_eth_dev *dev, uint16_t idx,
538                             uint16_t desc,
539                             const struct rte_eth_hairpin_conf *hairpin_conf)
540 {
541         struct mlx5_priv *priv = dev->data->dev_private;
542         struct mlx5_rxq_data *rxq = (*priv->rxqs)[idx];
543         struct mlx5_rxq_ctrl *rxq_ctrl =
544                 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
545         int res;
546
547         res = mlx5_rx_queue_pre_setup(dev, idx, desc);
548         if (res)
549                 return res;
550         if (hairpin_conf->peer_count != 1 ||
551             hairpin_conf->peers[0].port != dev->data->port_id ||
552             hairpin_conf->peers[0].queue >= priv->txqs_n) {
553                 DRV_LOG(ERR, "port %u unable to setup hairpin queue index %u "
554                         " invalid hairpind configuration", dev->data->port_id,
555                         idx);
556                 rte_errno = EINVAL;
557                 return -rte_errno;
558         }
559         rxq_ctrl = mlx5_rxq_hairpin_new(dev, idx, desc, hairpin_conf);
560         if (!rxq_ctrl) {
561                 DRV_LOG(ERR, "port %u unable to allocate queue index %u",
562                         dev->data->port_id, idx);
563                 rte_errno = ENOMEM;
564                 return -rte_errno;
565         }
566         DRV_LOG(DEBUG, "port %u adding Rx queue %u to list",
567                 dev->data->port_id, idx);
568         (*priv->rxqs)[idx] = &rxq_ctrl->rxq;
569         return 0;
570 }
571
572 /**
573  * DPDK callback to release a RX queue.
574  *
575  * @param dpdk_rxq
576  *   Generic RX queue pointer.
577  */
578 void
579 mlx5_rx_queue_release(void *dpdk_rxq)
580 {
581         struct mlx5_rxq_data *rxq = (struct mlx5_rxq_data *)dpdk_rxq;
582         struct mlx5_rxq_ctrl *rxq_ctrl;
583         struct mlx5_priv *priv;
584
585         if (rxq == NULL)
586                 return;
587         rxq_ctrl = container_of(rxq, struct mlx5_rxq_ctrl, rxq);
588         priv = rxq_ctrl->priv;
589         if (!mlx5_rxq_releasable(ETH_DEV(priv), rxq_ctrl->rxq.idx))
590                 rte_panic("port %u Rx queue %u is still used by a flow and"
591                           " cannot be removed\n",
592                           PORT_ID(priv), rxq->idx);
593         mlx5_rxq_release(ETH_DEV(priv), rxq_ctrl->rxq.idx);
594 }
595
596 /**
597  * Get an Rx queue Verbs/DevX object.
598  *
599  * @param dev
600  *   Pointer to Ethernet device.
601  * @param idx
602  *   Queue index in DPDK Rx queue array
603  *
604  * @return
605  *   The Verbs/DevX object if it exists.
606  */
607 static struct mlx5_rxq_obj *
608 mlx5_rxq_obj_get(struct rte_eth_dev *dev, uint16_t idx)
609 {
610         struct mlx5_priv *priv = dev->data->dev_private;
611         struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
612         struct mlx5_rxq_ctrl *rxq_ctrl;
613
614         if (idx >= priv->rxqs_n)
615                 return NULL;
616         if (!rxq_data)
617                 return NULL;
618         rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
619         if (rxq_ctrl->obj)
620                 rte_atomic32_inc(&rxq_ctrl->obj->refcnt);
621         return rxq_ctrl->obj;
622 }
623
624 /**
625  * Release the resources allocated for an RQ DevX object.
626  *
627  * @param rxq_ctrl
628  *   DevX Rx queue object.
629  */
630 static void
631 rxq_release_rq_resources(struct mlx5_rxq_ctrl *rxq_ctrl)
632 {
633         if (rxq_ctrl->rxq.wqes) {
634                 rte_free((void *)(uintptr_t)rxq_ctrl->rxq.wqes);
635                 rxq_ctrl->rxq.wqes = NULL;
636         }
637         if (rxq_ctrl->wq_umem) {
638                 mlx5_glue->devx_umem_dereg(rxq_ctrl->wq_umem);
639                 rxq_ctrl->wq_umem = NULL;
640         }
641 }
642
643 /**
644  * Release an Rx hairpin related resources.
645  *
646  * @param rxq_obj
647  *   Hairpin Rx queue object.
648  */
649 static void
650 rxq_obj_hairpin_release(struct mlx5_rxq_obj *rxq_obj)
651 {
652         struct mlx5_devx_modify_rq_attr rq_attr = { 0 };
653
654         assert(rxq_obj);
655         rq_attr.state = MLX5_RQC_STATE_RST;
656         rq_attr.rq_state = MLX5_RQC_STATE_RDY;
657         mlx5_devx_cmd_modify_rq(rxq_obj->rq, &rq_attr);
658         claim_zero(mlx5_devx_cmd_destroy(rxq_obj->rq));
659 }
660
661 /**
662  * Release an Rx verbs/DevX queue object.
663  *
664  * @param rxq_obj
665  *   Verbs/DevX Rx queue object.
666  *
667  * @return
668  *   1 while a reference on it exists, 0 when freed.
669  */
670 static int
671 mlx5_rxq_obj_release(struct mlx5_rxq_obj *rxq_obj)
672 {
673         assert(rxq_obj);
674         if (rxq_obj->type == MLX5_RXQ_OBJ_TYPE_IBV)
675                 assert(rxq_obj->wq);
676         assert(rxq_obj->cq);
677         if (rte_atomic32_dec_and_test(&rxq_obj->refcnt)) {
678                 switch (rxq_obj->type) {
679                 case MLX5_RXQ_OBJ_TYPE_IBV:
680                         rxq_free_elts(rxq_obj->rxq_ctrl);
681                         claim_zero(mlx5_glue->destroy_wq(rxq_obj->wq));
682                         claim_zero(mlx5_glue->destroy_cq(rxq_obj->cq));
683                         break;
684                 case MLX5_RXQ_OBJ_TYPE_DEVX_RQ:
685                         rxq_free_elts(rxq_obj->rxq_ctrl);
686                         claim_zero(mlx5_devx_cmd_destroy(rxq_obj->rq));
687                         rxq_release_rq_resources(rxq_obj->rxq_ctrl);
688                         claim_zero(mlx5_glue->destroy_cq(rxq_obj->cq));
689                         break;
690                 case MLX5_RXQ_OBJ_TYPE_DEVX_HAIRPIN:
691                         rxq_obj_hairpin_release(rxq_obj);
692                         break;
693                 }
694                 if (rxq_obj->channel)
695                         claim_zero(mlx5_glue->destroy_comp_channel
696                                    (rxq_obj->channel));
697                 LIST_REMOVE(rxq_obj, next);
698                 rte_free(rxq_obj);
699                 return 0;
700         }
701         return 1;
702 }
703
704 /**
705  * Allocate queue vector and fill epoll fd list for Rx interrupts.
706  *
707  * @param dev
708  *   Pointer to Ethernet device.
709  *
710  * @return
711  *   0 on success, a negative errno value otherwise and rte_errno is set.
712  */
713 int
714 mlx5_rx_intr_vec_enable(struct rte_eth_dev *dev)
715 {
716         struct mlx5_priv *priv = dev->data->dev_private;
717         unsigned int i;
718         unsigned int rxqs_n = priv->rxqs_n;
719         unsigned int n = RTE_MIN(rxqs_n, (uint32_t)RTE_MAX_RXTX_INTR_VEC_ID);
720         unsigned int count = 0;
721         struct rte_intr_handle *intr_handle = dev->intr_handle;
722
723         if (!dev->data->dev_conf.intr_conf.rxq)
724                 return 0;
725         mlx5_rx_intr_vec_disable(dev);
726         intr_handle->intr_vec = malloc(n * sizeof(intr_handle->intr_vec[0]));
727         if (intr_handle->intr_vec == NULL) {
728                 DRV_LOG(ERR,
729                         "port %u failed to allocate memory for interrupt"
730                         " vector, Rx interrupts will not be supported",
731                         dev->data->port_id);
732                 rte_errno = ENOMEM;
733                 return -rte_errno;
734         }
735         intr_handle->type = RTE_INTR_HANDLE_EXT;
736         for (i = 0; i != n; ++i) {
737                 /* This rxq obj must not be released in this function. */
738                 struct mlx5_rxq_obj *rxq_obj = mlx5_rxq_obj_get(dev, i);
739                 int fd;
740                 int flags;
741                 int rc;
742
743                 /* Skip queues that cannot request interrupts. */
744                 if (!rxq_obj || !rxq_obj->channel) {
745                         /* Use invalid intr_vec[] index to disable entry. */
746                         intr_handle->intr_vec[i] =
747                                 RTE_INTR_VEC_RXTX_OFFSET +
748                                 RTE_MAX_RXTX_INTR_VEC_ID;
749                         continue;
750                 }
751                 if (count >= RTE_MAX_RXTX_INTR_VEC_ID) {
752                         DRV_LOG(ERR,
753                                 "port %u too many Rx queues for interrupt"
754                                 " vector size (%d), Rx interrupts cannot be"
755                                 " enabled",
756                                 dev->data->port_id, RTE_MAX_RXTX_INTR_VEC_ID);
757                         mlx5_rx_intr_vec_disable(dev);
758                         rte_errno = ENOMEM;
759                         return -rte_errno;
760                 }
761                 fd = rxq_obj->channel->fd;
762                 flags = fcntl(fd, F_GETFL);
763                 rc = fcntl(fd, F_SETFL, flags | O_NONBLOCK);
764                 if (rc < 0) {
765                         rte_errno = errno;
766                         DRV_LOG(ERR,
767                                 "port %u failed to make Rx interrupt file"
768                                 " descriptor %d non-blocking for queue index"
769                                 " %d",
770                                 dev->data->port_id, fd, i);
771                         mlx5_rx_intr_vec_disable(dev);
772                         return -rte_errno;
773                 }
774                 intr_handle->intr_vec[i] = RTE_INTR_VEC_RXTX_OFFSET + count;
775                 intr_handle->efds[count] = fd;
776                 count++;
777         }
778         if (!count)
779                 mlx5_rx_intr_vec_disable(dev);
780         else
781                 intr_handle->nb_efd = count;
782         return 0;
783 }
784
785 /**
786  * Clean up Rx interrupts handler.
787  *
788  * @param dev
789  *   Pointer to Ethernet device.
790  */
791 void
792 mlx5_rx_intr_vec_disable(struct rte_eth_dev *dev)
793 {
794         struct mlx5_priv *priv = dev->data->dev_private;
795         struct rte_intr_handle *intr_handle = dev->intr_handle;
796         unsigned int i;
797         unsigned int rxqs_n = priv->rxqs_n;
798         unsigned int n = RTE_MIN(rxqs_n, (uint32_t)RTE_MAX_RXTX_INTR_VEC_ID);
799
800         if (!dev->data->dev_conf.intr_conf.rxq)
801                 return;
802         if (!intr_handle->intr_vec)
803                 goto free;
804         for (i = 0; i != n; ++i) {
805                 struct mlx5_rxq_ctrl *rxq_ctrl;
806                 struct mlx5_rxq_data *rxq_data;
807
808                 if (intr_handle->intr_vec[i] == RTE_INTR_VEC_RXTX_OFFSET +
809                     RTE_MAX_RXTX_INTR_VEC_ID)
810                         continue;
811                 /**
812                  * Need to access directly the queue to release the reference
813                  * kept in mlx5_rx_intr_vec_enable().
814                  */
815                 rxq_data = (*priv->rxqs)[i];
816                 rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
817                 if (rxq_ctrl->obj)
818                         mlx5_rxq_obj_release(rxq_ctrl->obj);
819         }
820 free:
821         rte_intr_free_epoll_fd(intr_handle);
822         if (intr_handle->intr_vec)
823                 free(intr_handle->intr_vec);
824         intr_handle->nb_efd = 0;
825         intr_handle->intr_vec = NULL;
826 }
827
828 /**
829  *  MLX5 CQ notification .
830  *
831  *  @param rxq
832  *     Pointer to receive queue structure.
833  *  @param sq_n_rxq
834  *     Sequence number per receive queue .
835  */
836 static inline void
837 mlx5_arm_cq(struct mlx5_rxq_data *rxq, int sq_n_rxq)
838 {
839         int sq_n = 0;
840         uint32_t doorbell_hi;
841         uint64_t doorbell;
842         void *cq_db_reg = (char *)rxq->cq_uar + MLX5_CQ_DOORBELL;
843
844         sq_n = sq_n_rxq & MLX5_CQ_SQN_MASK;
845         doorbell_hi = sq_n << MLX5_CQ_SQN_OFFSET | (rxq->cq_ci & MLX5_CI_MASK);
846         doorbell = (uint64_t)doorbell_hi << 32;
847         doorbell |=  rxq->cqn;
848         rxq->cq_db[MLX5_CQ_ARM_DB] = rte_cpu_to_be_32(doorbell_hi);
849         mlx5_uar_write64(rte_cpu_to_be_64(doorbell),
850                          cq_db_reg, rxq->uar_lock_cq);
851 }
852
853 /**
854  * DPDK callback for Rx queue interrupt enable.
855  *
856  * @param dev
857  *   Pointer to Ethernet device structure.
858  * @param rx_queue_id
859  *   Rx queue number.
860  *
861  * @return
862  *   0 on success, a negative errno value otherwise and rte_errno is set.
863  */
864 int
865 mlx5_rx_intr_enable(struct rte_eth_dev *dev, uint16_t rx_queue_id)
866 {
867         struct mlx5_priv *priv = dev->data->dev_private;
868         struct mlx5_rxq_data *rxq_data;
869         struct mlx5_rxq_ctrl *rxq_ctrl;
870
871         rxq_data = (*priv->rxqs)[rx_queue_id];
872         if (!rxq_data) {
873                 rte_errno = EINVAL;
874                 return -rte_errno;
875         }
876         rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
877         if (rxq_ctrl->irq) {
878                 struct mlx5_rxq_obj *rxq_obj;
879
880                 rxq_obj = mlx5_rxq_obj_get(dev, rx_queue_id);
881                 if (!rxq_obj) {
882                         rte_errno = EINVAL;
883                         return -rte_errno;
884                 }
885                 mlx5_arm_cq(rxq_data, rxq_data->cq_arm_sn);
886                 mlx5_rxq_obj_release(rxq_obj);
887         }
888         return 0;
889 }
890
891 /**
892  * DPDK callback for Rx queue interrupt disable.
893  *
894  * @param dev
895  *   Pointer to Ethernet device structure.
896  * @param rx_queue_id
897  *   Rx queue number.
898  *
899  * @return
900  *   0 on success, a negative errno value otherwise and rte_errno is set.
901  */
902 int
903 mlx5_rx_intr_disable(struct rte_eth_dev *dev, uint16_t rx_queue_id)
904 {
905         struct mlx5_priv *priv = dev->data->dev_private;
906         struct mlx5_rxq_data *rxq_data;
907         struct mlx5_rxq_ctrl *rxq_ctrl;
908         struct mlx5_rxq_obj *rxq_obj = NULL;
909         struct ibv_cq *ev_cq;
910         void *ev_ctx;
911         int ret;
912
913         rxq_data = (*priv->rxqs)[rx_queue_id];
914         if (!rxq_data) {
915                 rte_errno = EINVAL;
916                 return -rte_errno;
917         }
918         rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
919         if (!rxq_ctrl->irq)
920                 return 0;
921         rxq_obj = mlx5_rxq_obj_get(dev, rx_queue_id);
922         if (!rxq_obj) {
923                 rte_errno = EINVAL;
924                 return -rte_errno;
925         }
926         ret = mlx5_glue->get_cq_event(rxq_obj->channel, &ev_cq, &ev_ctx);
927         if (ret || ev_cq != rxq_obj->cq) {
928                 rte_errno = EINVAL;
929                 goto exit;
930         }
931         rxq_data->cq_arm_sn++;
932         mlx5_glue->ack_cq_events(rxq_obj->cq, 1);
933         mlx5_rxq_obj_release(rxq_obj);
934         return 0;
935 exit:
936         ret = rte_errno; /* Save rte_errno before cleanup. */
937         if (rxq_obj)
938                 mlx5_rxq_obj_release(rxq_obj);
939         DRV_LOG(WARNING, "port %u unable to disable interrupt on Rx queue %d",
940                 dev->data->port_id, rx_queue_id);
941         rte_errno = ret; /* Restore rte_errno. */
942         return -rte_errno;
943 }
944
945 /**
946  * Create a CQ Verbs object.
947  *
948  * @param dev
949  *   Pointer to Ethernet device.
950  * @param priv
951  *   Pointer to device private data.
952  * @param rxq_data
953  *   Pointer to Rx queue data.
954  * @param cqe_n
955  *   Number of CQEs in CQ.
956  * @param rxq_obj
957  *   Pointer to Rx queue object data.
958  *
959  * @return
960  *   The Verbs object initialised, NULL otherwise and rte_errno is set.
961  */
962 static struct ibv_cq *
963 mlx5_ibv_cq_new(struct rte_eth_dev *dev, struct mlx5_priv *priv,
964                 struct mlx5_rxq_data *rxq_data,
965                 unsigned int cqe_n, struct mlx5_rxq_obj *rxq_obj)
966 {
967         struct {
968                 struct ibv_cq_init_attr_ex ibv;
969                 struct mlx5dv_cq_init_attr mlx5;
970         } cq_attr;
971
972         cq_attr.ibv = (struct ibv_cq_init_attr_ex){
973                 .cqe = cqe_n,
974                 .channel = rxq_obj->channel,
975                 .comp_mask = 0,
976         };
977         cq_attr.mlx5 = (struct mlx5dv_cq_init_attr){
978                 .comp_mask = 0,
979         };
980         if (priv->config.cqe_comp && !rxq_data->hw_timestamp &&
981             !rxq_data->lro) {
982                 cq_attr.mlx5.comp_mask |=
983                                 MLX5DV_CQ_INIT_ATTR_MASK_COMPRESSED_CQE;
984 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
985                 cq_attr.mlx5.cqe_comp_res_format =
986                                 mlx5_rxq_mprq_enabled(rxq_data) ?
987                                 MLX5DV_CQE_RES_FORMAT_CSUM_STRIDX :
988                                 MLX5DV_CQE_RES_FORMAT_HASH;
989 #else
990                 cq_attr.mlx5.cqe_comp_res_format = MLX5DV_CQE_RES_FORMAT_HASH;
991 #endif
992                 /*
993                  * For vectorized Rx, it must not be doubled in order to
994                  * make cq_ci and rq_ci aligned.
995                  */
996                 if (mlx5_rxq_check_vec_support(rxq_data) < 0)
997                         cq_attr.ibv.cqe *= 2;
998         } else if (priv->config.cqe_comp && rxq_data->hw_timestamp) {
999                 DRV_LOG(DEBUG,
1000                         "port %u Rx CQE compression is disabled for HW"
1001                         " timestamp",
1002                         dev->data->port_id);
1003         } else if (priv->config.cqe_comp && rxq_data->lro) {
1004                 DRV_LOG(DEBUG,
1005                         "port %u Rx CQE compression is disabled for LRO",
1006                         dev->data->port_id);
1007         }
1008 #ifdef HAVE_IBV_MLX5_MOD_CQE_128B_PAD
1009         if (priv->config.cqe_pad) {
1010                 cq_attr.mlx5.comp_mask |= MLX5DV_CQ_INIT_ATTR_MASK_FLAGS;
1011                 cq_attr.mlx5.flags |= MLX5DV_CQ_INIT_ATTR_FLAGS_CQE_PAD;
1012         }
1013 #endif
1014         return mlx5_glue->cq_ex_to_cq(mlx5_glue->dv_create_cq(priv->sh->ctx,
1015                                                               &cq_attr.ibv,
1016                                                               &cq_attr.mlx5));
1017 }
1018
1019 /**
1020  * Create a WQ Verbs object.
1021  *
1022  * @param dev
1023  *   Pointer to Ethernet device.
1024  * @param priv
1025  *   Pointer to device private data.
1026  * @param rxq_data
1027  *   Pointer to Rx queue data.
1028  * @param idx
1029  *   Queue index in DPDK Rx queue array
1030  * @param wqe_n
1031  *   Number of WQEs in WQ.
1032  * @param rxq_obj
1033  *   Pointer to Rx queue object data.
1034  *
1035  * @return
1036  *   The Verbs object initialised, NULL otherwise and rte_errno is set.
1037  */
1038 static struct ibv_wq *
1039 mlx5_ibv_wq_new(struct rte_eth_dev *dev, struct mlx5_priv *priv,
1040                 struct mlx5_rxq_data *rxq_data, uint16_t idx,
1041                 unsigned int wqe_n, struct mlx5_rxq_obj *rxq_obj)
1042 {
1043         struct {
1044                 struct ibv_wq_init_attr ibv;
1045 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
1046                 struct mlx5dv_wq_init_attr mlx5;
1047 #endif
1048         } wq_attr;
1049
1050         wq_attr.ibv = (struct ibv_wq_init_attr){
1051                 .wq_context = NULL, /* Could be useful in the future. */
1052                 .wq_type = IBV_WQT_RQ,
1053                 /* Max number of outstanding WRs. */
1054                 .max_wr = wqe_n >> rxq_data->sges_n,
1055                 /* Max number of scatter/gather elements in a WR. */
1056                 .max_sge = 1 << rxq_data->sges_n,
1057                 .pd = priv->sh->pd,
1058                 .cq = rxq_obj->cq,
1059                 .comp_mask = IBV_WQ_FLAGS_CVLAN_STRIPPING | 0,
1060                 .create_flags = (rxq_data->vlan_strip ?
1061                                  IBV_WQ_FLAGS_CVLAN_STRIPPING : 0),
1062         };
1063         /* By default, FCS (CRC) is stripped by hardware. */
1064         if (rxq_data->crc_present) {
1065                 wq_attr.ibv.create_flags |= IBV_WQ_FLAGS_SCATTER_FCS;
1066                 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
1067         }
1068         if (priv->config.hw_padding) {
1069 #if defined(HAVE_IBV_WQ_FLAG_RX_END_PADDING)
1070                 wq_attr.ibv.create_flags |= IBV_WQ_FLAG_RX_END_PADDING;
1071                 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
1072 #elif defined(HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING)
1073                 wq_attr.ibv.create_flags |= IBV_WQ_FLAGS_PCI_WRITE_END_PADDING;
1074                 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
1075 #endif
1076         }
1077 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
1078         wq_attr.mlx5 = (struct mlx5dv_wq_init_attr){
1079                 .comp_mask = 0,
1080         };
1081         if (mlx5_rxq_mprq_enabled(rxq_data)) {
1082                 struct mlx5dv_striding_rq_init_attr *mprq_attr =
1083                                                 &wq_attr.mlx5.striding_rq_attrs;
1084
1085                 wq_attr.mlx5.comp_mask |= MLX5DV_WQ_INIT_ATTR_MASK_STRIDING_RQ;
1086                 *mprq_attr = (struct mlx5dv_striding_rq_init_attr){
1087                         .single_stride_log_num_of_bytes = rxq_data->strd_sz_n,
1088                         .single_wqe_log_num_of_strides = rxq_data->strd_num_n,
1089                         .two_byte_shift_en = MLX5_MPRQ_TWO_BYTE_SHIFT,
1090                 };
1091         }
1092         rxq_obj->wq = mlx5_glue->dv_create_wq(priv->sh->ctx, &wq_attr.ibv,
1093                                               &wq_attr.mlx5);
1094 #else
1095         rxq_obj->wq = mlx5_glue->create_wq(priv->sh->ctx, &wq_attr.ibv);
1096 #endif
1097         if (rxq_obj->wq) {
1098                 /*
1099                  * Make sure number of WRs*SGEs match expectations since a queue
1100                  * cannot allocate more than "desc" buffers.
1101                  */
1102                 if (wq_attr.ibv.max_wr != (wqe_n >> rxq_data->sges_n) ||
1103                     wq_attr.ibv.max_sge != (1u << rxq_data->sges_n)) {
1104                         DRV_LOG(ERR,
1105                                 "port %u Rx queue %u requested %u*%u but got"
1106                                 " %u*%u WRs*SGEs",
1107                                 dev->data->port_id, idx,
1108                                 wqe_n >> rxq_data->sges_n,
1109                                 (1 << rxq_data->sges_n),
1110                                 wq_attr.ibv.max_wr, wq_attr.ibv.max_sge);
1111                         claim_zero(mlx5_glue->destroy_wq(rxq_obj->wq));
1112                         rxq_obj->wq = NULL;
1113                         rte_errno = EINVAL;
1114                 }
1115         }
1116         return rxq_obj->wq;
1117 }
1118
1119 /**
1120  * Fill common fields of create RQ attributes structure.
1121  *
1122  * @param rxq_data
1123  *   Pointer to Rx queue data.
1124  * @param cqn
1125  *   CQ number to use with this RQ.
1126  * @param rq_attr
1127  *   RQ attributes structure to fill..
1128  */
1129 static void
1130 mlx5_devx_create_rq_attr_fill(struct mlx5_rxq_data *rxq_data, uint32_t cqn,
1131                               struct mlx5_devx_create_rq_attr *rq_attr)
1132 {
1133         rq_attr->state = MLX5_RQC_STATE_RST;
1134         rq_attr->vsd = (rxq_data->vlan_strip) ? 0 : 1;
1135         rq_attr->cqn = cqn;
1136         rq_attr->scatter_fcs = (rxq_data->crc_present) ? 1 : 0;
1137 }
1138
1139 /**
1140  * Fill common fields of DevX WQ attributes structure.
1141  *
1142  * @param priv
1143  *   Pointer to device private data.
1144  * @param rxq_ctrl
1145  *   Pointer to Rx queue control structure.
1146  * @param wq_attr
1147  *   WQ attributes structure to fill..
1148  */
1149 static void
1150 mlx5_devx_wq_attr_fill(struct mlx5_priv *priv, struct mlx5_rxq_ctrl *rxq_ctrl,
1151                        struct mlx5_devx_wq_attr *wq_attr)
1152 {
1153         wq_attr->end_padding_mode = priv->config.cqe_pad ?
1154                                         MLX5_WQ_END_PAD_MODE_ALIGN :
1155                                         MLX5_WQ_END_PAD_MODE_NONE;
1156         wq_attr->pd = priv->sh->pdn;
1157         wq_attr->dbr_addr = rxq_ctrl->dbr_offset;
1158         wq_attr->dbr_umem_id = rxq_ctrl->dbr_umem_id;
1159         wq_attr->dbr_umem_valid = 1;
1160         wq_attr->wq_umem_id = rxq_ctrl->wq_umem->umem_id;
1161         wq_attr->wq_umem_valid = 1;
1162 }
1163
1164 /**
1165  * Create a RQ object using DevX.
1166  *
1167  * @param dev
1168  *   Pointer to Ethernet device.
1169  * @param idx
1170  *   Queue index in DPDK Rx queue array
1171  * @param cqn
1172  *   CQ number to use with this RQ.
1173  *
1174  * @return
1175  *   The DevX object initialised, NULL otherwise and rte_errno is set.
1176  */
1177 static struct mlx5_devx_obj *
1178 mlx5_devx_rq_new(struct rte_eth_dev *dev, uint16_t idx, uint32_t cqn)
1179 {
1180         struct mlx5_priv *priv = dev->data->dev_private;
1181         struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
1182         struct mlx5_rxq_ctrl *rxq_ctrl =
1183                 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
1184         struct mlx5_devx_create_rq_attr rq_attr;
1185         uint32_t wqe_n = 1 << (rxq_data->elts_n - rxq_data->sges_n);
1186         uint32_t wq_size = 0;
1187         uint32_t wqe_size = 0;
1188         uint32_t log_wqe_size = 0;
1189         void *buf = NULL;
1190         struct mlx5_devx_obj *rq;
1191
1192         memset(&rq_attr, 0, sizeof(rq_attr));
1193         /* Fill RQ attributes. */
1194         rq_attr.mem_rq_type = MLX5_RQC_MEM_RQ_TYPE_MEMORY_RQ_INLINE;
1195         rq_attr.flush_in_error_en = 1;
1196         mlx5_devx_create_rq_attr_fill(rxq_data, cqn, &rq_attr);
1197         /* Fill WQ attributes for this RQ. */
1198         if (mlx5_rxq_mprq_enabled(rxq_data)) {
1199                 rq_attr.wq_attr.wq_type = MLX5_WQ_TYPE_CYCLIC_STRIDING_RQ;
1200                 /*
1201                  * Number of strides in each WQE:
1202                  * 512*2^single_wqe_log_num_of_strides.
1203                  */
1204                 rq_attr.wq_attr.single_wqe_log_num_of_strides =
1205                                 rxq_data->strd_num_n -
1206                                 MLX5_MIN_SINGLE_WQE_LOG_NUM_STRIDES;
1207                 /* Stride size = (2^single_stride_log_num_of_bytes)*64B. */
1208                 rq_attr.wq_attr.single_stride_log_num_of_bytes =
1209                                 rxq_data->strd_sz_n -
1210                                 MLX5_MIN_SINGLE_STRIDE_LOG_NUM_BYTES;
1211                 wqe_size = sizeof(struct mlx5_wqe_mprq);
1212         } else {
1213                 rq_attr.wq_attr.wq_type = MLX5_WQ_TYPE_CYCLIC;
1214                 wqe_size = sizeof(struct mlx5_wqe_data_seg);
1215         }
1216         log_wqe_size = log2above(wqe_size) + rxq_data->sges_n;
1217         rq_attr.wq_attr.log_wq_stride = log_wqe_size;
1218         rq_attr.wq_attr.log_wq_sz = rxq_data->elts_n - rxq_data->sges_n;
1219         /* Calculate and allocate WQ memory space. */
1220         wqe_size = 1 << log_wqe_size; /* round up power of two.*/
1221         wq_size = wqe_n * wqe_size;
1222         buf = rte_calloc_socket(__func__, 1, wq_size, MLX5_WQE_BUF_ALIGNMENT,
1223                                 rxq_ctrl->socket);
1224         if (!buf)
1225                 return NULL;
1226         rxq_data->wqes = buf;
1227         rxq_ctrl->wq_umem = mlx5_glue->devx_umem_reg(priv->sh->ctx,
1228                                                      buf, wq_size, 0);
1229         if (!rxq_ctrl->wq_umem) {
1230                 rte_free(buf);
1231                 return NULL;
1232         }
1233         mlx5_devx_wq_attr_fill(priv, rxq_ctrl, &rq_attr.wq_attr);
1234         rq = mlx5_devx_cmd_create_rq(priv->sh->ctx, &rq_attr, rxq_ctrl->socket);
1235         if (!rq)
1236                 rxq_release_rq_resources(rxq_ctrl);
1237         return rq;
1238 }
1239
1240 /**
1241  * Create the Rx hairpin queue object.
1242  *
1243  * @param dev
1244  *   Pointer to Ethernet device.
1245  * @param idx
1246  *   Queue index in DPDK Rx queue array
1247  *
1248  * @return
1249  *   The hairpin DevX object initialised, NULL otherwise and rte_errno is set.
1250  */
1251 static struct mlx5_rxq_obj *
1252 mlx5_rxq_obj_hairpin_new(struct rte_eth_dev *dev, uint16_t idx)
1253 {
1254         struct mlx5_priv *priv = dev->data->dev_private;
1255         struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
1256         struct mlx5_rxq_ctrl *rxq_ctrl =
1257                 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
1258         struct mlx5_devx_create_rq_attr attr = { 0 };
1259         struct mlx5_rxq_obj *tmpl = NULL;
1260         int ret = 0;
1261
1262         assert(rxq_data);
1263         assert(!rxq_ctrl->obj);
1264         tmpl = rte_calloc_socket(__func__, 1, sizeof(*tmpl), 0,
1265                                  rxq_ctrl->socket);
1266         if (!tmpl) {
1267                 DRV_LOG(ERR,
1268                         "port %u Rx queue %u cannot allocate verbs resources",
1269                         dev->data->port_id, rxq_data->idx);
1270                 rte_errno = ENOMEM;
1271                 goto error;
1272         }
1273         tmpl->type = MLX5_RXQ_OBJ_TYPE_DEVX_HAIRPIN;
1274         tmpl->rxq_ctrl = rxq_ctrl;
1275         attr.hairpin = 1;
1276         /* Workaround for hairpin startup */
1277         attr.wq_attr.log_hairpin_num_packets = log2above(32);
1278         /* Workaround for packets larger than 1KB */
1279         attr.wq_attr.log_hairpin_data_sz =
1280                         priv->config.hca_attr.log_max_hairpin_wq_data_sz;
1281         tmpl->rq = mlx5_devx_cmd_create_rq(priv->sh->ctx, &attr,
1282                                            rxq_ctrl->socket);
1283         if (!tmpl->rq) {
1284                 DRV_LOG(ERR,
1285                         "port %u Rx hairpin queue %u can't create rq object",
1286                         dev->data->port_id, idx);
1287                 rte_errno = errno;
1288                 goto error;
1289         }
1290         DRV_LOG(DEBUG, "port %u rxq %u updated with %p", dev->data->port_id,
1291                 idx, (void *)&tmpl);
1292         rte_atomic32_inc(&tmpl->refcnt);
1293         LIST_INSERT_HEAD(&priv->rxqsobj, tmpl, next);
1294         priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1295         return tmpl;
1296 error:
1297         ret = rte_errno; /* Save rte_errno before cleanup. */
1298         if (tmpl->rq)
1299                 mlx5_devx_cmd_destroy(tmpl->rq);
1300         rte_errno = ret; /* Restore rte_errno. */
1301         return NULL;
1302 }
1303
1304 /**
1305  * Create the Rx queue Verbs/DevX object.
1306  *
1307  * @param dev
1308  *   Pointer to Ethernet device.
1309  * @param idx
1310  *   Queue index in DPDK Rx queue array
1311  * @param type
1312  *   Type of Rx queue object to create.
1313  *
1314  * @return
1315  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
1316  */
1317 struct mlx5_rxq_obj *
1318 mlx5_rxq_obj_new(struct rte_eth_dev *dev, uint16_t idx,
1319                  enum mlx5_rxq_obj_type type)
1320 {
1321         struct mlx5_priv *priv = dev->data->dev_private;
1322         struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
1323         struct mlx5_rxq_ctrl *rxq_ctrl =
1324                 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
1325         struct ibv_wq_attr mod;
1326         unsigned int cqe_n;
1327         unsigned int wqe_n = 1 << rxq_data->elts_n;
1328         struct mlx5_rxq_obj *tmpl = NULL;
1329         struct mlx5dv_cq cq_info;
1330         struct mlx5dv_rwq rwq;
1331         int ret = 0;
1332         struct mlx5dv_obj obj;
1333
1334         assert(rxq_data);
1335         assert(!rxq_ctrl->obj);
1336         if (type == MLX5_RXQ_OBJ_TYPE_DEVX_HAIRPIN)
1337                 return mlx5_rxq_obj_hairpin_new(dev, idx);
1338         priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_RX_QUEUE;
1339         priv->verbs_alloc_ctx.obj = rxq_ctrl;
1340         tmpl = rte_calloc_socket(__func__, 1, sizeof(*tmpl), 0,
1341                                  rxq_ctrl->socket);
1342         if (!tmpl) {
1343                 DRV_LOG(ERR,
1344                         "port %u Rx queue %u cannot allocate verbs resources",
1345                         dev->data->port_id, rxq_data->idx);
1346                 rte_errno = ENOMEM;
1347                 goto error;
1348         }
1349         tmpl->type = type;
1350         tmpl->rxq_ctrl = rxq_ctrl;
1351         if (rxq_ctrl->irq) {
1352                 tmpl->channel = mlx5_glue->create_comp_channel(priv->sh->ctx);
1353                 if (!tmpl->channel) {
1354                         DRV_LOG(ERR, "port %u: comp channel creation failure",
1355                                 dev->data->port_id);
1356                         rte_errno = ENOMEM;
1357                         goto error;
1358                 }
1359         }
1360         if (mlx5_rxq_mprq_enabled(rxq_data))
1361                 cqe_n = wqe_n * (1 << rxq_data->strd_num_n) - 1;
1362         else
1363                 cqe_n = wqe_n  - 1;
1364         tmpl->cq = mlx5_ibv_cq_new(dev, priv, rxq_data, cqe_n, tmpl);
1365         if (!tmpl->cq) {
1366                 DRV_LOG(ERR, "port %u Rx queue %u CQ creation failure",
1367                         dev->data->port_id, idx);
1368                 rte_errno = ENOMEM;
1369                 goto error;
1370         }
1371         obj.cq.in = tmpl->cq;
1372         obj.cq.out = &cq_info;
1373         ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_CQ);
1374         if (ret) {
1375                 rte_errno = ret;
1376                 goto error;
1377         }
1378         if (cq_info.cqe_size != RTE_CACHE_LINE_SIZE) {
1379                 DRV_LOG(ERR,
1380                         "port %u wrong MLX5_CQE_SIZE environment variable"
1381                         " value: it should be set to %u",
1382                         dev->data->port_id, RTE_CACHE_LINE_SIZE);
1383                 rte_errno = EINVAL;
1384                 goto error;
1385         }
1386         DRV_LOG(DEBUG, "port %u device_attr.max_qp_wr is %d",
1387                 dev->data->port_id, priv->sh->device_attr.orig_attr.max_qp_wr);
1388         DRV_LOG(DEBUG, "port %u device_attr.max_sge is %d",
1389                 dev->data->port_id, priv->sh->device_attr.orig_attr.max_sge);
1390         /* Allocate door-bell for types created with DevX. */
1391         if (tmpl->type != MLX5_RXQ_OBJ_TYPE_IBV) {
1392                 struct mlx5_devx_dbr_page *dbr_page;
1393                 int64_t dbr_offset;
1394
1395                 dbr_offset = mlx5_get_dbr(dev, &dbr_page);
1396                 if (dbr_offset < 0)
1397                         goto error;
1398                 rxq_ctrl->dbr_offset = dbr_offset;
1399                 rxq_ctrl->dbr_umem_id = dbr_page->umem->umem_id;
1400                 rxq_ctrl->dbr_umem_id_valid = 1;
1401                 rxq_data->rq_db = (uint32_t *)((uintptr_t)dbr_page->dbrs +
1402                                                (uintptr_t)rxq_ctrl->dbr_offset);
1403         }
1404         if (tmpl->type == MLX5_RXQ_OBJ_TYPE_IBV) {
1405                 tmpl->wq = mlx5_ibv_wq_new(dev, priv, rxq_data, idx, wqe_n,
1406                                            tmpl);
1407                 if (!tmpl->wq) {
1408                         DRV_LOG(ERR, "port %u Rx queue %u WQ creation failure",
1409                                 dev->data->port_id, idx);
1410                         rte_errno = ENOMEM;
1411                         goto error;
1412                 }
1413                 /* Change queue state to ready. */
1414                 mod = (struct ibv_wq_attr){
1415                         .attr_mask = IBV_WQ_ATTR_STATE,
1416                         .wq_state = IBV_WQS_RDY,
1417                 };
1418                 ret = mlx5_glue->modify_wq(tmpl->wq, &mod);
1419                 if (ret) {
1420                         DRV_LOG(ERR,
1421                                 "port %u Rx queue %u WQ state to IBV_WQS_RDY"
1422                                 " failed", dev->data->port_id, idx);
1423                         rte_errno = ret;
1424                         goto error;
1425                 }
1426                 obj.rwq.in = tmpl->wq;
1427                 obj.rwq.out = &rwq;
1428                 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_RWQ);
1429                 if (ret) {
1430                         rte_errno = ret;
1431                         goto error;
1432                 }
1433                 rxq_data->wqes = rwq.buf;
1434                 rxq_data->rq_db = rwq.dbrec;
1435         } else if (tmpl->type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ) {
1436                 struct mlx5_devx_modify_rq_attr rq_attr;
1437
1438                 memset(&rq_attr, 0, sizeof(rq_attr));
1439                 tmpl->rq = mlx5_devx_rq_new(dev, idx, cq_info.cqn);
1440                 if (!tmpl->rq) {
1441                         DRV_LOG(ERR, "port %u Rx queue %u RQ creation failure",
1442                                 dev->data->port_id, idx);
1443                         rte_errno = ENOMEM;
1444                         goto error;
1445                 }
1446                 /* Change queue state to ready. */
1447                 rq_attr.rq_state = MLX5_RQC_STATE_RST;
1448                 rq_attr.state = MLX5_RQC_STATE_RDY;
1449                 ret = mlx5_devx_cmd_modify_rq(tmpl->rq, &rq_attr);
1450                 if (ret)
1451                         goto error;
1452         }
1453         /* Fill the rings. */
1454         rxq_data->cqe_n = log2above(cq_info.cqe_cnt);
1455         rxq_data->cq_db = cq_info.dbrec;
1456         rxq_data->cqes = (volatile struct mlx5_cqe (*)[])(uintptr_t)cq_info.buf;
1457         rxq_data->cq_uar = cq_info.cq_uar;
1458         rxq_data->cqn = cq_info.cqn;
1459         rxq_data->cq_arm_sn = 0;
1460         mlx5_rxq_initialize(rxq_data);
1461         rxq_data->cq_ci = 0;
1462         DRV_LOG(DEBUG, "port %u rxq %u updated with %p", dev->data->port_id,
1463                 idx, (void *)&tmpl);
1464         rte_atomic32_inc(&tmpl->refcnt);
1465         LIST_INSERT_HEAD(&priv->rxqsobj, tmpl, next);
1466         priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1467         return tmpl;
1468 error:
1469         if (tmpl) {
1470                 ret = rte_errno; /* Save rte_errno before cleanup. */
1471                 if (tmpl->type == MLX5_RXQ_OBJ_TYPE_IBV && tmpl->wq)
1472                         claim_zero(mlx5_glue->destroy_wq(tmpl->wq));
1473                 else if (tmpl->type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ && tmpl->rq)
1474                         claim_zero(mlx5_devx_cmd_destroy(tmpl->rq));
1475                 if (tmpl->cq)
1476                         claim_zero(mlx5_glue->destroy_cq(tmpl->cq));
1477                 if (tmpl->channel)
1478                         claim_zero(mlx5_glue->destroy_comp_channel
1479                                                         (tmpl->channel));
1480                 rte_free(tmpl);
1481                 rte_errno = ret; /* Restore rte_errno. */
1482         }
1483         if (type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ)
1484                 rxq_release_rq_resources(rxq_ctrl);
1485         priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1486         return NULL;
1487 }
1488
1489 /**
1490  * Verify the Rx queue objects list is empty
1491  *
1492  * @param dev
1493  *   Pointer to Ethernet device.
1494  *
1495  * @return
1496  *   The number of objects not released.
1497  */
1498 int
1499 mlx5_rxq_obj_verify(struct rte_eth_dev *dev)
1500 {
1501         struct mlx5_priv *priv = dev->data->dev_private;
1502         int ret = 0;
1503         struct mlx5_rxq_obj *rxq_obj;
1504
1505         LIST_FOREACH(rxq_obj, &priv->rxqsobj, next) {
1506                 DRV_LOG(DEBUG, "port %u Rx queue %u still referenced",
1507                         dev->data->port_id, rxq_obj->rxq_ctrl->rxq.idx);
1508                 ++ret;
1509         }
1510         return ret;
1511 }
1512
1513 /**
1514  * Callback function to initialize mbufs for Multi-Packet RQ.
1515  */
1516 static inline void
1517 mlx5_mprq_buf_init(struct rte_mempool *mp, void *opaque_arg,
1518                     void *_m, unsigned int i __rte_unused)
1519 {
1520         struct mlx5_mprq_buf *buf = _m;
1521         struct rte_mbuf_ext_shared_info *shinfo;
1522         unsigned int strd_n = (unsigned int)(uintptr_t)opaque_arg;
1523         unsigned int j;
1524
1525         memset(_m, 0, sizeof(*buf));
1526         buf->mp = mp;
1527         rte_atomic16_set(&buf->refcnt, 1);
1528         for (j = 0; j != strd_n; ++j) {
1529                 shinfo = &buf->shinfos[j];
1530                 shinfo->free_cb = mlx5_mprq_buf_free_cb;
1531                 shinfo->fcb_opaque = buf;
1532         }
1533 }
1534
1535 /**
1536  * Free mempool of Multi-Packet RQ.
1537  *
1538  * @param dev
1539  *   Pointer to Ethernet device.
1540  *
1541  * @return
1542  *   0 on success, negative errno value on failure.
1543  */
1544 int
1545 mlx5_mprq_free_mp(struct rte_eth_dev *dev)
1546 {
1547         struct mlx5_priv *priv = dev->data->dev_private;
1548         struct rte_mempool *mp = priv->mprq_mp;
1549         unsigned int i;
1550
1551         if (mp == NULL)
1552                 return 0;
1553         DRV_LOG(DEBUG, "port %u freeing mempool (%s) for Multi-Packet RQ",
1554                 dev->data->port_id, mp->name);
1555         /*
1556          * If a buffer in the pool has been externally attached to a mbuf and it
1557          * is still in use by application, destroying the Rx queue can spoil
1558          * the packet. It is unlikely to happen but if application dynamically
1559          * creates and destroys with holding Rx packets, this can happen.
1560          *
1561          * TODO: It is unavoidable for now because the mempool for Multi-Packet
1562          * RQ isn't provided by application but managed by PMD.
1563          */
1564         if (!rte_mempool_full(mp)) {
1565                 DRV_LOG(ERR,
1566                         "port %u mempool for Multi-Packet RQ is still in use",
1567                         dev->data->port_id);
1568                 rte_errno = EBUSY;
1569                 return -rte_errno;
1570         }
1571         rte_mempool_free(mp);
1572         /* Unset mempool for each Rx queue. */
1573         for (i = 0; i != priv->rxqs_n; ++i) {
1574                 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1575
1576                 if (rxq == NULL)
1577                         continue;
1578                 rxq->mprq_mp = NULL;
1579         }
1580         priv->mprq_mp = NULL;
1581         return 0;
1582 }
1583
1584 /**
1585  * Allocate a mempool for Multi-Packet RQ. All configured Rx queues share the
1586  * mempool. If already allocated, reuse it if there're enough elements.
1587  * Otherwise, resize it.
1588  *
1589  * @param dev
1590  *   Pointer to Ethernet device.
1591  *
1592  * @return
1593  *   0 on success, negative errno value on failure.
1594  */
1595 int
1596 mlx5_mprq_alloc_mp(struct rte_eth_dev *dev)
1597 {
1598         struct mlx5_priv *priv = dev->data->dev_private;
1599         struct rte_mempool *mp = priv->mprq_mp;
1600         char name[RTE_MEMPOOL_NAMESIZE];
1601         unsigned int desc = 0;
1602         unsigned int buf_len;
1603         unsigned int obj_num;
1604         unsigned int obj_size;
1605         unsigned int strd_num_n = 0;
1606         unsigned int strd_sz_n = 0;
1607         unsigned int i;
1608         unsigned int n_ibv = 0;
1609
1610         if (!mlx5_mprq_enabled(dev))
1611                 return 0;
1612         /* Count the total number of descriptors configured. */
1613         for (i = 0; i != priv->rxqs_n; ++i) {
1614                 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1615                 struct mlx5_rxq_ctrl *rxq_ctrl = container_of
1616                         (rxq, struct mlx5_rxq_ctrl, rxq);
1617
1618                 if (rxq == NULL || rxq_ctrl->type != MLX5_RXQ_TYPE_STANDARD)
1619                         continue;
1620                 n_ibv++;
1621                 desc += 1 << rxq->elts_n;
1622                 /* Get the max number of strides. */
1623                 if (strd_num_n < rxq->strd_num_n)
1624                         strd_num_n = rxq->strd_num_n;
1625                 /* Get the max size of a stride. */
1626                 if (strd_sz_n < rxq->strd_sz_n)
1627                         strd_sz_n = rxq->strd_sz_n;
1628         }
1629         assert(strd_num_n && strd_sz_n);
1630         buf_len = (1 << strd_num_n) * (1 << strd_sz_n);
1631         obj_size = sizeof(struct mlx5_mprq_buf) + buf_len + (1 << strd_num_n) *
1632                 sizeof(struct rte_mbuf_ext_shared_info) + RTE_PKTMBUF_HEADROOM;
1633         /*
1634          * Received packets can be either memcpy'd or externally referenced. In
1635          * case that the packet is attached to an mbuf as an external buffer, as
1636          * it isn't possible to predict how the buffers will be queued by
1637          * application, there's no option to exactly pre-allocate needed buffers
1638          * in advance but to speculatively prepares enough buffers.
1639          *
1640          * In the data path, if this Mempool is depleted, PMD will try to memcpy
1641          * received packets to buffers provided by application (rxq->mp) until
1642          * this Mempool gets available again.
1643          */
1644         desc *= 4;
1645         obj_num = desc + MLX5_MPRQ_MP_CACHE_SZ * n_ibv;
1646         /*
1647          * rte_mempool_create_empty() has sanity check to refuse large cache
1648          * size compared to the number of elements.
1649          * CACHE_FLUSHTHRESH_MULTIPLIER is defined in a C file, so using a
1650          * constant number 2 instead.
1651          */
1652         obj_num = RTE_MAX(obj_num, MLX5_MPRQ_MP_CACHE_SZ * 2);
1653         /* Check a mempool is already allocated and if it can be resued. */
1654         if (mp != NULL && mp->elt_size >= obj_size && mp->size >= obj_num) {
1655                 DRV_LOG(DEBUG, "port %u mempool %s is being reused",
1656                         dev->data->port_id, mp->name);
1657                 /* Reuse. */
1658                 goto exit;
1659         } else if (mp != NULL) {
1660                 DRV_LOG(DEBUG, "port %u mempool %s should be resized, freeing it",
1661                         dev->data->port_id, mp->name);
1662                 /*
1663                  * If failed to free, which means it may be still in use, no way
1664                  * but to keep using the existing one. On buffer underrun,
1665                  * packets will be memcpy'd instead of external buffer
1666                  * attachment.
1667                  */
1668                 if (mlx5_mprq_free_mp(dev)) {
1669                         if (mp->elt_size >= obj_size)
1670                                 goto exit;
1671                         else
1672                                 return -rte_errno;
1673                 }
1674         }
1675         snprintf(name, sizeof(name), "port-%u-mprq", dev->data->port_id);
1676         mp = rte_mempool_create(name, obj_num, obj_size, MLX5_MPRQ_MP_CACHE_SZ,
1677                                 0, NULL, NULL, mlx5_mprq_buf_init,
1678                                 (void *)(uintptr_t)(1 << strd_num_n),
1679                                 dev->device->numa_node, 0);
1680         if (mp == NULL) {
1681                 DRV_LOG(ERR,
1682                         "port %u failed to allocate a mempool for"
1683                         " Multi-Packet RQ, count=%u, size=%u",
1684                         dev->data->port_id, obj_num, obj_size);
1685                 rte_errno = ENOMEM;
1686                 return -rte_errno;
1687         }
1688         priv->mprq_mp = mp;
1689 exit:
1690         /* Set mempool for each Rx queue. */
1691         for (i = 0; i != priv->rxqs_n; ++i) {
1692                 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1693                 struct mlx5_rxq_ctrl *rxq_ctrl = container_of
1694                         (rxq, struct mlx5_rxq_ctrl, rxq);
1695
1696                 if (rxq == NULL || rxq_ctrl->type != MLX5_RXQ_TYPE_STANDARD)
1697                         continue;
1698                 rxq->mprq_mp = mp;
1699         }
1700         DRV_LOG(INFO, "port %u Multi-Packet RQ is configured",
1701                 dev->data->port_id);
1702         return 0;
1703 }
1704
1705 #define MLX5_MAX_TCP_HDR_OFFSET ((unsigned int)(sizeof(struct rte_ether_hdr) + \
1706                                         sizeof(struct rte_vlan_hdr) * 2 + \
1707                                         sizeof(struct rte_ipv6_hdr)))
1708 #define MAX_TCP_OPTION_SIZE 40u
1709 #define MLX5_MAX_LRO_HEADER_FIX ((unsigned int)(MLX5_MAX_TCP_HDR_OFFSET + \
1710                                  sizeof(struct rte_tcp_hdr) + \
1711                                  MAX_TCP_OPTION_SIZE))
1712
1713 /**
1714  * Adjust the maximum LRO massage size.
1715  *
1716  * @param dev
1717  *   Pointer to Ethernet device.
1718  * @param max_lro_size
1719  *   The maximum size for LRO packet.
1720  */
1721 static void
1722 mlx5_max_lro_msg_size_adjust(struct rte_eth_dev *dev, uint32_t max_lro_size)
1723 {
1724         struct mlx5_priv *priv = dev->data->dev_private;
1725
1726         if (priv->config.hca_attr.lro_max_msg_sz_mode ==
1727             MLX5_LRO_MAX_MSG_SIZE_START_FROM_L4 && max_lro_size >
1728             MLX5_MAX_TCP_HDR_OFFSET)
1729                 max_lro_size -= MLX5_MAX_TCP_HDR_OFFSET;
1730         max_lro_size = RTE_MIN(max_lro_size, MLX5_MAX_LRO_SIZE);
1731         assert(max_lro_size >= 256u);
1732         max_lro_size /= 256u;
1733         if (priv->max_lro_msg_size)
1734                 priv->max_lro_msg_size =
1735                         RTE_MIN((uint32_t)priv->max_lro_msg_size, max_lro_size);
1736         else
1737                 priv->max_lro_msg_size = max_lro_size;
1738 }
1739
1740 /**
1741  * Create a DPDK Rx queue.
1742  *
1743  * @param dev
1744  *   Pointer to Ethernet device.
1745  * @param idx
1746  *   RX queue index.
1747  * @param desc
1748  *   Number of descriptors to configure in queue.
1749  * @param socket
1750  *   NUMA socket on which memory must be allocated.
1751  *
1752  * @return
1753  *   A DPDK queue object on success, NULL otherwise and rte_errno is set.
1754  */
1755 struct mlx5_rxq_ctrl *
1756 mlx5_rxq_new(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
1757              unsigned int socket, const struct rte_eth_rxconf *conf,
1758              struct rte_mempool *mp)
1759 {
1760         struct mlx5_priv *priv = dev->data->dev_private;
1761         struct mlx5_rxq_ctrl *tmpl;
1762         unsigned int mb_len = rte_pktmbuf_data_room_size(mp);
1763         unsigned int mprq_stride_size;
1764         struct mlx5_dev_config *config = &priv->config;
1765         unsigned int strd_headroom_en;
1766         /*
1767          * Always allocate extra slots, even if eventually
1768          * the vector Rx will not be used.
1769          */
1770         uint16_t desc_n =
1771                 desc + config->rx_vec_en * MLX5_VPMD_DESCS_PER_LOOP;
1772         uint64_t offloads = conf->offloads |
1773                            dev->data->dev_conf.rxmode.offloads;
1774         unsigned int lro_on_queue = !!(offloads & DEV_RX_OFFLOAD_TCP_LRO);
1775         const int mprq_en = mlx5_check_mprq_support(dev) > 0;
1776         unsigned int max_rx_pkt_len = lro_on_queue ?
1777                         dev->data->dev_conf.rxmode.max_lro_pkt_size :
1778                         dev->data->dev_conf.rxmode.max_rx_pkt_len;
1779         unsigned int non_scatter_min_mbuf_size = max_rx_pkt_len +
1780                                                         RTE_PKTMBUF_HEADROOM;
1781         unsigned int max_lro_size = 0;
1782         unsigned int first_mb_free_size = mb_len - RTE_PKTMBUF_HEADROOM;
1783
1784         if (non_scatter_min_mbuf_size > mb_len && !(offloads &
1785                                                     DEV_RX_OFFLOAD_SCATTER)) {
1786                 DRV_LOG(ERR, "port %u Rx queue %u: Scatter offload is not"
1787                         " configured and no enough mbuf space(%u) to contain "
1788                         "the maximum RX packet length(%u) with head-room(%u)",
1789                         dev->data->port_id, idx, mb_len, max_rx_pkt_len,
1790                         RTE_PKTMBUF_HEADROOM);
1791                 rte_errno = ENOSPC;
1792                 return NULL;
1793         }
1794         tmpl = rte_calloc_socket("RXQ", 1,
1795                                  sizeof(*tmpl) +
1796                                  desc_n * sizeof(struct rte_mbuf *),
1797                                  0, socket);
1798         if (!tmpl) {
1799                 rte_errno = ENOMEM;
1800                 return NULL;
1801         }
1802         tmpl->type = MLX5_RXQ_TYPE_STANDARD;
1803         if (mlx5_mr_btree_init(&tmpl->rxq.mr_ctrl.cache_bh,
1804                                MLX5_MR_BTREE_CACHE_N, socket)) {
1805                 /* rte_errno is already set. */
1806                 goto error;
1807         }
1808         tmpl->socket = socket;
1809         if (dev->data->dev_conf.intr_conf.rxq)
1810                 tmpl->irq = 1;
1811         /*
1812          * LRO packet may consume all the stride memory, hence we cannot
1813          * guaranty head-room near the packet memory in the stride.
1814          * In this case scatter is, for sure, enabled and an empty mbuf may be
1815          * added in the start for the head-room.
1816          */
1817         if (lro_on_queue && RTE_PKTMBUF_HEADROOM > 0 &&
1818             non_scatter_min_mbuf_size > mb_len) {
1819                 strd_headroom_en = 0;
1820                 mprq_stride_size = RTE_MIN(max_rx_pkt_len,
1821                                         1u << config->mprq.max_stride_size_n);
1822         } else {
1823                 strd_headroom_en = 1;
1824                 mprq_stride_size = non_scatter_min_mbuf_size;
1825         }
1826         /*
1827          * This Rx queue can be configured as a Multi-Packet RQ if all of the
1828          * following conditions are met:
1829          *  - MPRQ is enabled.
1830          *  - The number of descs is more than the number of strides.
1831          *  - max_rx_pkt_len plus overhead is less than the max size of a
1832          *    stride.
1833          *  Otherwise, enable Rx scatter if necessary.
1834          */
1835         if (mprq_en &&
1836             desc > (1U << config->mprq.stride_num_n) &&
1837             mprq_stride_size <= (1U << config->mprq.max_stride_size_n)) {
1838                 /* TODO: Rx scatter isn't supported yet. */
1839                 tmpl->rxq.sges_n = 0;
1840                 /* Trim the number of descs needed. */
1841                 desc >>= config->mprq.stride_num_n;
1842                 tmpl->rxq.strd_num_n = config->mprq.stride_num_n;
1843                 tmpl->rxq.strd_sz_n = RTE_MAX(log2above(mprq_stride_size),
1844                                               config->mprq.min_stride_size_n);
1845                 tmpl->rxq.strd_shift_en = MLX5_MPRQ_TWO_BYTE_SHIFT;
1846                 tmpl->rxq.strd_headroom_en = strd_headroom_en;
1847                 tmpl->rxq.mprq_max_memcpy_len = RTE_MIN(first_mb_free_size,
1848                                 config->mprq.max_memcpy_len);
1849                 max_lro_size = RTE_MIN(max_rx_pkt_len,
1850                                        (1u << tmpl->rxq.strd_num_n) *
1851                                        (1u << tmpl->rxq.strd_sz_n));
1852                 DRV_LOG(DEBUG,
1853                         "port %u Rx queue %u: Multi-Packet RQ is enabled"
1854                         " strd_num_n = %u, strd_sz_n = %u",
1855                         dev->data->port_id, idx,
1856                         tmpl->rxq.strd_num_n, tmpl->rxq.strd_sz_n);
1857         } else if (max_rx_pkt_len <= first_mb_free_size) {
1858                 tmpl->rxq.sges_n = 0;
1859                 max_lro_size = max_rx_pkt_len;
1860         } else if (offloads & DEV_RX_OFFLOAD_SCATTER) {
1861                 unsigned int size = non_scatter_min_mbuf_size;
1862                 unsigned int sges_n;
1863
1864                 if (lro_on_queue && first_mb_free_size <
1865                     MLX5_MAX_LRO_HEADER_FIX) {
1866                         DRV_LOG(ERR, "Not enough space in the first segment(%u)"
1867                                 " to include the max header size(%u) for LRO",
1868                                 first_mb_free_size, MLX5_MAX_LRO_HEADER_FIX);
1869                         rte_errno = ENOTSUP;
1870                         goto error;
1871                 }
1872                 /*
1873                  * Determine the number of SGEs needed for a full packet
1874                  * and round it to the next power of two.
1875                  */
1876                 sges_n = log2above((size / mb_len) + !!(size % mb_len));
1877                 if (sges_n > MLX5_MAX_LOG_RQ_SEGS) {
1878                         DRV_LOG(ERR,
1879                                 "port %u too many SGEs (%u) needed to handle"
1880                                 " requested maximum packet size %u, the maximum"
1881                                 " supported are %u", dev->data->port_id,
1882                                 1 << sges_n, max_rx_pkt_len,
1883                                 1u << MLX5_MAX_LOG_RQ_SEGS);
1884                         rte_errno = ENOTSUP;
1885                         goto error;
1886                 }
1887                 tmpl->rxq.sges_n = sges_n;
1888                 max_lro_size = max_rx_pkt_len;
1889         }
1890         if (mprq_en && !mlx5_rxq_mprq_enabled(&tmpl->rxq))
1891                 DRV_LOG(WARNING,
1892                         "port %u MPRQ is requested but cannot be enabled"
1893                         " (requested: desc = %u, stride_sz = %u,"
1894                         " supported: min_stride_num = %u, max_stride_sz = %u).",
1895                         dev->data->port_id, desc, mprq_stride_size,
1896                         (1 << config->mprq.stride_num_n),
1897                         (1 << config->mprq.max_stride_size_n));
1898         DRV_LOG(DEBUG, "port %u maximum number of segments per packet: %u",
1899                 dev->data->port_id, 1 << tmpl->rxq.sges_n);
1900         if (desc % (1 << tmpl->rxq.sges_n)) {
1901                 DRV_LOG(ERR,
1902                         "port %u number of Rx queue descriptors (%u) is not a"
1903                         " multiple of SGEs per packet (%u)",
1904                         dev->data->port_id,
1905                         desc,
1906                         1 << tmpl->rxq.sges_n);
1907                 rte_errno = EINVAL;
1908                 goto error;
1909         }
1910         mlx5_max_lro_msg_size_adjust(dev, max_lro_size);
1911         /* Toggle RX checksum offload if hardware supports it. */
1912         tmpl->rxq.csum = !!(offloads & DEV_RX_OFFLOAD_CHECKSUM);
1913         tmpl->rxq.hw_timestamp = !!(offloads & DEV_RX_OFFLOAD_TIMESTAMP);
1914         /* Configure VLAN stripping. */
1915         tmpl->rxq.vlan_strip = !!(offloads & DEV_RX_OFFLOAD_VLAN_STRIP);
1916         /* By default, FCS (CRC) is stripped by hardware. */
1917         tmpl->rxq.crc_present = 0;
1918         tmpl->rxq.lro = lro_on_queue;
1919         if (offloads & DEV_RX_OFFLOAD_KEEP_CRC) {
1920                 if (config->hw_fcs_strip) {
1921                         /*
1922                          * RQs used for LRO-enabled TIRs should not be
1923                          * configured to scatter the FCS.
1924                          */
1925                         if (lro_on_queue)
1926                                 DRV_LOG(WARNING,
1927                                         "port %u CRC stripping has been "
1928                                         "disabled but will still be performed "
1929                                         "by hardware, because LRO is enabled",
1930                                         dev->data->port_id);
1931                         else
1932                                 tmpl->rxq.crc_present = 1;
1933                 } else {
1934                         DRV_LOG(WARNING,
1935                                 "port %u CRC stripping has been disabled but will"
1936                                 " still be performed by hardware, make sure MLNX_OFED"
1937                                 " and firmware are up to date",
1938                                 dev->data->port_id);
1939                 }
1940         }
1941         DRV_LOG(DEBUG,
1942                 "port %u CRC stripping is %s, %u bytes will be subtracted from"
1943                 " incoming frames to hide it",
1944                 dev->data->port_id,
1945                 tmpl->rxq.crc_present ? "disabled" : "enabled",
1946                 tmpl->rxq.crc_present << 2);
1947         /* Save port ID. */
1948         tmpl->rxq.rss_hash = !!priv->rss_conf.rss_hf &&
1949                 (!!(dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS));
1950         tmpl->rxq.port_id = dev->data->port_id;
1951         tmpl->priv = priv;
1952         tmpl->rxq.mp = mp;
1953         tmpl->rxq.elts_n = log2above(desc);
1954         tmpl->rxq.rq_repl_thresh =
1955                 MLX5_VPMD_RXQ_RPLNSH_THRESH(1 << tmpl->rxq.elts_n);
1956         tmpl->rxq.elts =
1957                 (struct rte_mbuf *(*)[1 << tmpl->rxq.elts_n])(tmpl + 1);
1958 #ifndef RTE_ARCH_64
1959         tmpl->rxq.uar_lock_cq = &priv->uar_lock_cq;
1960 #endif
1961         tmpl->rxq.idx = idx;
1962         rte_atomic32_inc(&tmpl->refcnt);
1963         LIST_INSERT_HEAD(&priv->rxqsctrl, tmpl, next);
1964         return tmpl;
1965 error:
1966         rte_free(tmpl);
1967         return NULL;
1968 }
1969
1970 /**
1971  * Create a DPDK Rx hairpin queue.
1972  *
1973  * @param dev
1974  *   Pointer to Ethernet device.
1975  * @param idx
1976  *   RX queue index.
1977  * @param desc
1978  *   Number of descriptors to configure in queue.
1979  * @param hairpin_conf
1980  *   The hairpin binding configuration.
1981  *
1982  * @return
1983  *   A DPDK queue object on success, NULL otherwise and rte_errno is set.
1984  */
1985 struct mlx5_rxq_ctrl *
1986 mlx5_rxq_hairpin_new(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
1987                      const struct rte_eth_hairpin_conf *hairpin_conf)
1988 {
1989         struct mlx5_priv *priv = dev->data->dev_private;
1990         struct mlx5_rxq_ctrl *tmpl;
1991
1992         tmpl = rte_calloc_socket("RXQ", 1, sizeof(*tmpl), 0, SOCKET_ID_ANY);
1993         if (!tmpl) {
1994                 rte_errno = ENOMEM;
1995                 return NULL;
1996         }
1997         tmpl->type = MLX5_RXQ_TYPE_HAIRPIN;
1998         tmpl->socket = SOCKET_ID_ANY;
1999         tmpl->rxq.rss_hash = 0;
2000         tmpl->rxq.port_id = dev->data->port_id;
2001         tmpl->priv = priv;
2002         tmpl->rxq.mp = NULL;
2003         tmpl->rxq.elts_n = log2above(desc);
2004         tmpl->rxq.elts = NULL;
2005         tmpl->rxq.mr_ctrl.cache_bh = (struct mlx5_mr_btree) { 0 };
2006         tmpl->hairpin_conf = *hairpin_conf;
2007         tmpl->rxq.idx = idx;
2008         rte_atomic32_inc(&tmpl->refcnt);
2009         LIST_INSERT_HEAD(&priv->rxqsctrl, tmpl, next);
2010         return tmpl;
2011 }
2012
2013 /**
2014  * Get a Rx queue.
2015  *
2016  * @param dev
2017  *   Pointer to Ethernet device.
2018  * @param idx
2019  *   RX queue index.
2020  *
2021  * @return
2022  *   A pointer to the queue if it exists, NULL otherwise.
2023  */
2024 struct mlx5_rxq_ctrl *
2025 mlx5_rxq_get(struct rte_eth_dev *dev, uint16_t idx)
2026 {
2027         struct mlx5_priv *priv = dev->data->dev_private;
2028         struct mlx5_rxq_ctrl *rxq_ctrl = NULL;
2029
2030         if ((*priv->rxqs)[idx]) {
2031                 rxq_ctrl = container_of((*priv->rxqs)[idx],
2032                                         struct mlx5_rxq_ctrl,
2033                                         rxq);
2034                 mlx5_rxq_obj_get(dev, idx);
2035                 rte_atomic32_inc(&rxq_ctrl->refcnt);
2036         }
2037         return rxq_ctrl;
2038 }
2039
2040 /**
2041  * Release a Rx queue.
2042  *
2043  * @param dev
2044  *   Pointer to Ethernet device.
2045  * @param idx
2046  *   RX queue index.
2047  *
2048  * @return
2049  *   1 while a reference on it exists, 0 when freed.
2050  */
2051 int
2052 mlx5_rxq_release(struct rte_eth_dev *dev, uint16_t idx)
2053 {
2054         struct mlx5_priv *priv = dev->data->dev_private;
2055         struct mlx5_rxq_ctrl *rxq_ctrl;
2056
2057         if (!(*priv->rxqs)[idx])
2058                 return 0;
2059         rxq_ctrl = container_of((*priv->rxqs)[idx], struct mlx5_rxq_ctrl, rxq);
2060         assert(rxq_ctrl->priv);
2061         if (rxq_ctrl->obj && !mlx5_rxq_obj_release(rxq_ctrl->obj))
2062                 rxq_ctrl->obj = NULL;
2063         if (rte_atomic32_dec_and_test(&rxq_ctrl->refcnt)) {
2064                 if (rxq_ctrl->dbr_umem_id_valid)
2065                         claim_zero(mlx5_release_dbr(dev, rxq_ctrl->dbr_umem_id,
2066                                                     rxq_ctrl->dbr_offset));
2067                 if (rxq_ctrl->type == MLX5_RXQ_TYPE_STANDARD)
2068                         mlx5_mr_btree_free(&rxq_ctrl->rxq.mr_ctrl.cache_bh);
2069                 LIST_REMOVE(rxq_ctrl, next);
2070                 rte_free(rxq_ctrl);
2071                 (*priv->rxqs)[idx] = NULL;
2072                 return 0;
2073         }
2074         return 1;
2075 }
2076
2077 /**
2078  * Verify the Rx Queue list is empty
2079  *
2080  * @param dev
2081  *   Pointer to Ethernet device.
2082  *
2083  * @return
2084  *   The number of object not released.
2085  */
2086 int
2087 mlx5_rxq_verify(struct rte_eth_dev *dev)
2088 {
2089         struct mlx5_priv *priv = dev->data->dev_private;
2090         struct mlx5_rxq_ctrl *rxq_ctrl;
2091         int ret = 0;
2092
2093         LIST_FOREACH(rxq_ctrl, &priv->rxqsctrl, next) {
2094                 DRV_LOG(DEBUG, "port %u Rx Queue %u still referenced",
2095                         dev->data->port_id, rxq_ctrl->rxq.idx);
2096                 ++ret;
2097         }
2098         return ret;
2099 }
2100
2101 /**
2102  * Get a Rx queue type.
2103  *
2104  * @param dev
2105  *   Pointer to Ethernet device.
2106  * @param idx
2107  *   Rx queue index.
2108  *
2109  * @return
2110  *   The Rx queue type.
2111  */
2112 enum mlx5_rxq_type
2113 mlx5_rxq_get_type(struct rte_eth_dev *dev, uint16_t idx)
2114 {
2115         struct mlx5_priv *priv = dev->data->dev_private;
2116         struct mlx5_rxq_ctrl *rxq_ctrl = NULL;
2117
2118         if (idx < priv->rxqs_n && (*priv->rxqs)[idx]) {
2119                 rxq_ctrl = container_of((*priv->rxqs)[idx],
2120                                         struct mlx5_rxq_ctrl,
2121                                         rxq);
2122                 return rxq_ctrl->type;
2123         }
2124         return MLX5_RXQ_TYPE_UNDEFINED;
2125 }
2126
2127 /**
2128  * Create an indirection table.
2129  *
2130  * @param dev
2131  *   Pointer to Ethernet device.
2132  * @param queues
2133  *   Queues entering in the indirection table.
2134  * @param queues_n
2135  *   Number of queues in the array.
2136  *
2137  * @return
2138  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2139  */
2140 static struct mlx5_ind_table_obj *
2141 mlx5_ind_table_obj_new(struct rte_eth_dev *dev, const uint16_t *queues,
2142                        uint32_t queues_n, enum mlx5_ind_tbl_type type)
2143 {
2144         struct mlx5_priv *priv = dev->data->dev_private;
2145         struct mlx5_ind_table_obj *ind_tbl;
2146         unsigned int i = 0, j = 0, k = 0;
2147
2148         ind_tbl = rte_calloc(__func__, 1, sizeof(*ind_tbl) +
2149                              queues_n * sizeof(uint16_t), 0);
2150         if (!ind_tbl) {
2151                 rte_errno = ENOMEM;
2152                 return NULL;
2153         }
2154         ind_tbl->type = type;
2155         if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV) {
2156                 const unsigned int wq_n = rte_is_power_of_2(queues_n) ?
2157                         log2above(queues_n) :
2158                         log2above(priv->config.ind_table_max_size);
2159                 struct ibv_wq *wq[1 << wq_n];
2160
2161                 for (i = 0; i != queues_n; ++i) {
2162                         struct mlx5_rxq_ctrl *rxq = mlx5_rxq_get(dev,
2163                                                                  queues[i]);
2164                         if (!rxq)
2165                                 goto error;
2166                         wq[i] = rxq->obj->wq;
2167                         ind_tbl->queues[i] = queues[i];
2168                 }
2169                 ind_tbl->queues_n = queues_n;
2170                 /* Finalise indirection table. */
2171                 k = i; /* Retain value of i for use in error case. */
2172                 for (j = 0; k != (unsigned int)(1 << wq_n); ++k, ++j)
2173                         wq[k] = wq[j];
2174                 ind_tbl->ind_table = mlx5_glue->create_rwq_ind_table
2175                         (priv->sh->ctx,
2176                          &(struct ibv_rwq_ind_table_init_attr){
2177                                 .log_ind_tbl_size = wq_n,
2178                                 .ind_tbl = wq,
2179                                 .comp_mask = 0,
2180                         });
2181                 if (!ind_tbl->ind_table) {
2182                         rte_errno = errno;
2183                         goto error;
2184                 }
2185         } else { /* ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX */
2186                 struct mlx5_devx_rqt_attr *rqt_attr = NULL;
2187                 const unsigned int rqt_n =
2188                         1 << (rte_is_power_of_2(queues_n) ?
2189                               log2above(queues_n) :
2190                               log2above(priv->config.ind_table_max_size));
2191
2192                 rqt_attr = rte_calloc(__func__, 1, sizeof(*rqt_attr) +
2193                                       rqt_n * sizeof(uint32_t), 0);
2194                 if (!rqt_attr) {
2195                         DRV_LOG(ERR, "port %u cannot allocate RQT resources",
2196                                 dev->data->port_id);
2197                         rte_errno = ENOMEM;
2198                         goto error;
2199                 }
2200                 rqt_attr->rqt_max_size = priv->config.ind_table_max_size;
2201                 rqt_attr->rqt_actual_size = rqt_n;
2202                 for (i = 0; i != queues_n; ++i) {
2203                         struct mlx5_rxq_ctrl *rxq = mlx5_rxq_get(dev,
2204                                                                  queues[i]);
2205                         if (!rxq)
2206                                 goto error;
2207                         rqt_attr->rq_list[i] = rxq->obj->rq->id;
2208                         ind_tbl->queues[i] = queues[i];
2209                 }
2210                 k = i; /* Retain value of i for use in error case. */
2211                 for (j = 0; k != rqt_n; ++k, ++j)
2212                         rqt_attr->rq_list[k] = rqt_attr->rq_list[j];
2213                 ind_tbl->rqt = mlx5_devx_cmd_create_rqt(priv->sh->ctx,
2214                                                         rqt_attr);
2215                 rte_free(rqt_attr);
2216                 if (!ind_tbl->rqt) {
2217                         DRV_LOG(ERR, "port %u cannot create DevX RQT",
2218                                 dev->data->port_id);
2219                         rte_errno = errno;
2220                         goto error;
2221                 }
2222                 ind_tbl->queues_n = queues_n;
2223         }
2224         rte_atomic32_inc(&ind_tbl->refcnt);
2225         LIST_INSERT_HEAD(&priv->ind_tbls, ind_tbl, next);
2226         return ind_tbl;
2227 error:
2228         for (j = 0; j < i; j++)
2229                 mlx5_rxq_release(dev, ind_tbl->queues[j]);
2230         rte_free(ind_tbl);
2231         DEBUG("port %u cannot create indirection table", dev->data->port_id);
2232         return NULL;
2233 }
2234
2235 /**
2236  * Get an indirection table.
2237  *
2238  * @param dev
2239  *   Pointer to Ethernet device.
2240  * @param queues
2241  *   Queues entering in the indirection table.
2242  * @param queues_n
2243  *   Number of queues in the array.
2244  *
2245  * @return
2246  *   An indirection table if found.
2247  */
2248 static struct mlx5_ind_table_obj *
2249 mlx5_ind_table_obj_get(struct rte_eth_dev *dev, const uint16_t *queues,
2250                        uint32_t queues_n)
2251 {
2252         struct mlx5_priv *priv = dev->data->dev_private;
2253         struct mlx5_ind_table_obj *ind_tbl;
2254
2255         LIST_FOREACH(ind_tbl, &priv->ind_tbls, next) {
2256                 if ((ind_tbl->queues_n == queues_n) &&
2257                     (memcmp(ind_tbl->queues, queues,
2258                             ind_tbl->queues_n * sizeof(ind_tbl->queues[0]))
2259                      == 0))
2260                         break;
2261         }
2262         if (ind_tbl) {
2263                 unsigned int i;
2264
2265                 rte_atomic32_inc(&ind_tbl->refcnt);
2266                 for (i = 0; i != ind_tbl->queues_n; ++i)
2267                         mlx5_rxq_get(dev, ind_tbl->queues[i]);
2268         }
2269         return ind_tbl;
2270 }
2271
2272 /**
2273  * Release an indirection table.
2274  *
2275  * @param dev
2276  *   Pointer to Ethernet device.
2277  * @param ind_table
2278  *   Indirection table to release.
2279  *
2280  * @return
2281  *   1 while a reference on it exists, 0 when freed.
2282  */
2283 static int
2284 mlx5_ind_table_obj_release(struct rte_eth_dev *dev,
2285                            struct mlx5_ind_table_obj *ind_tbl)
2286 {
2287         unsigned int i;
2288
2289         if (rte_atomic32_dec_and_test(&ind_tbl->refcnt)) {
2290                 if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV)
2291                         claim_zero(mlx5_glue->destroy_rwq_ind_table
2292                                                         (ind_tbl->ind_table));
2293                 else if (ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX)
2294                         claim_zero(mlx5_devx_cmd_destroy(ind_tbl->rqt));
2295         }
2296         for (i = 0; i != ind_tbl->queues_n; ++i)
2297                 claim_nonzero(mlx5_rxq_release(dev, ind_tbl->queues[i]));
2298         if (!rte_atomic32_read(&ind_tbl->refcnt)) {
2299                 LIST_REMOVE(ind_tbl, next);
2300                 rte_free(ind_tbl);
2301                 return 0;
2302         }
2303         return 1;
2304 }
2305
2306 /**
2307  * Verify the Rx Queue list is empty
2308  *
2309  * @param dev
2310  *   Pointer to Ethernet device.
2311  *
2312  * @return
2313  *   The number of object not released.
2314  */
2315 int
2316 mlx5_ind_table_obj_verify(struct rte_eth_dev *dev)
2317 {
2318         struct mlx5_priv *priv = dev->data->dev_private;
2319         struct mlx5_ind_table_obj *ind_tbl;
2320         int ret = 0;
2321
2322         LIST_FOREACH(ind_tbl, &priv->ind_tbls, next) {
2323                 DRV_LOG(DEBUG,
2324                         "port %u indirection table obj %p still referenced",
2325                         dev->data->port_id, (void *)ind_tbl);
2326                 ++ret;
2327         }
2328         return ret;
2329 }
2330
2331 /**
2332  * Create an Rx Hash queue.
2333  *
2334  * @param dev
2335  *   Pointer to Ethernet device.
2336  * @param rss_key
2337  *   RSS key for the Rx hash queue.
2338  * @param rss_key_len
2339  *   RSS key length.
2340  * @param hash_fields
2341  *   Verbs protocol hash field to make the RSS on.
2342  * @param queues
2343  *   Queues entering in hash queue. In case of empty hash_fields only the
2344  *   first queue index will be taken for the indirection table.
2345  * @param queues_n
2346  *   Number of queues.
2347  * @param tunnel
2348  *   Tunnel type.
2349  *
2350  * @return
2351  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2352  */
2353 struct mlx5_hrxq *
2354 mlx5_hrxq_new(struct rte_eth_dev *dev,
2355               const uint8_t *rss_key, uint32_t rss_key_len,
2356               uint64_t hash_fields,
2357               const uint16_t *queues, uint32_t queues_n,
2358               int tunnel __rte_unused)
2359 {
2360         struct mlx5_priv *priv = dev->data->dev_private;
2361         struct mlx5_hrxq *hrxq;
2362         struct ibv_qp *qp = NULL;
2363         struct mlx5_ind_table_obj *ind_tbl;
2364         int err;
2365         struct mlx5_devx_obj *tir = NULL;
2366         struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[queues[0]];
2367         struct mlx5_rxq_ctrl *rxq_ctrl =
2368                 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
2369
2370         queues_n = hash_fields ? queues_n : 1;
2371         ind_tbl = mlx5_ind_table_obj_get(dev, queues, queues_n);
2372         if (!ind_tbl) {
2373                 enum mlx5_ind_tbl_type type;
2374
2375                 type = rxq_ctrl->obj->type == MLX5_RXQ_OBJ_TYPE_IBV ?
2376                                 MLX5_IND_TBL_TYPE_IBV : MLX5_IND_TBL_TYPE_DEVX;
2377                 ind_tbl = mlx5_ind_table_obj_new(dev, queues, queues_n, type);
2378         }
2379         if (!ind_tbl) {
2380                 rte_errno = ENOMEM;
2381                 return NULL;
2382         }
2383         if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV) {
2384 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
2385                 struct mlx5dv_qp_init_attr qp_init_attr;
2386
2387                 memset(&qp_init_attr, 0, sizeof(qp_init_attr));
2388                 if (tunnel) {
2389                         qp_init_attr.comp_mask =
2390                                 MLX5DV_QP_INIT_ATTR_MASK_QP_CREATE_FLAGS;
2391                         qp_init_attr.create_flags =
2392                                 MLX5DV_QP_CREATE_TUNNEL_OFFLOADS;
2393                 }
2394 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2395                 if (dev->data->dev_conf.lpbk_mode) {
2396                         /*
2397                          * Allow packet sent from NIC loop back
2398                          * w/o source MAC check.
2399                          */
2400                         qp_init_attr.comp_mask |=
2401                                 MLX5DV_QP_INIT_ATTR_MASK_QP_CREATE_FLAGS;
2402                         qp_init_attr.create_flags |=
2403                                 MLX5DV_QP_CREATE_TIR_ALLOW_SELF_LOOPBACK_UC;
2404                 }
2405 #endif
2406                 qp = mlx5_glue->dv_create_qp
2407                         (priv->sh->ctx,
2408                          &(struct ibv_qp_init_attr_ex){
2409                                 .qp_type = IBV_QPT_RAW_PACKET,
2410                                 .comp_mask =
2411                                         IBV_QP_INIT_ATTR_PD |
2412                                         IBV_QP_INIT_ATTR_IND_TABLE |
2413                                         IBV_QP_INIT_ATTR_RX_HASH,
2414                                 .rx_hash_conf = (struct ibv_rx_hash_conf){
2415                                         .rx_hash_function =
2416                                                 IBV_RX_HASH_FUNC_TOEPLITZ,
2417                                         .rx_hash_key_len = rss_key_len,
2418                                         .rx_hash_key =
2419                                                 (void *)(uintptr_t)rss_key,
2420                                         .rx_hash_fields_mask = hash_fields,
2421                                 },
2422                                 .rwq_ind_tbl = ind_tbl->ind_table,
2423                                 .pd = priv->sh->pd,
2424                           },
2425                           &qp_init_attr);
2426 #else
2427                 qp = mlx5_glue->create_qp_ex
2428                         (priv->sh->ctx,
2429                          &(struct ibv_qp_init_attr_ex){
2430                                 .qp_type = IBV_QPT_RAW_PACKET,
2431                                 .comp_mask =
2432                                         IBV_QP_INIT_ATTR_PD |
2433                                         IBV_QP_INIT_ATTR_IND_TABLE |
2434                                         IBV_QP_INIT_ATTR_RX_HASH,
2435                                 .rx_hash_conf = (struct ibv_rx_hash_conf){
2436                                         .rx_hash_function =
2437                                                 IBV_RX_HASH_FUNC_TOEPLITZ,
2438                                         .rx_hash_key_len = rss_key_len,
2439                                         .rx_hash_key =
2440                                                 (void *)(uintptr_t)rss_key,
2441                                         .rx_hash_fields_mask = hash_fields,
2442                                 },
2443                                 .rwq_ind_tbl = ind_tbl->ind_table,
2444                                 .pd = priv->sh->pd,
2445                          });
2446 #endif
2447                 if (!qp) {
2448                         rte_errno = errno;
2449                         goto error;
2450                 }
2451         } else { /* ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX */
2452                 struct mlx5_devx_tir_attr tir_attr;
2453                 uint32_t i;
2454                 uint32_t lro = 1;
2455
2456                 /* Enable TIR LRO only if all the queues were configured for. */
2457                 for (i = 0; i < queues_n; ++i) {
2458                         if (!(*priv->rxqs)[queues[i]]->lro) {
2459                                 lro = 0;
2460                                 break;
2461                         }
2462                 }
2463                 memset(&tir_attr, 0, sizeof(tir_attr));
2464                 tir_attr.disp_type = MLX5_TIRC_DISP_TYPE_INDIRECT;
2465                 tir_attr.rx_hash_fn = MLX5_RX_HASH_FN_TOEPLITZ;
2466                 memcpy(&tir_attr.rx_hash_field_selector_outer, &hash_fields,
2467                        sizeof(uint64_t));
2468                 if (rxq_ctrl->obj->type == MLX5_RXQ_OBJ_TYPE_DEVX_HAIRPIN)
2469                         tir_attr.transport_domain = priv->sh->td->id;
2470                 else
2471                         tir_attr.transport_domain = priv->sh->tdn;
2472                 memcpy(tir_attr.rx_hash_toeplitz_key, rss_key, rss_key_len);
2473                 tir_attr.indirect_table = ind_tbl->rqt->id;
2474                 if (dev->data->dev_conf.lpbk_mode)
2475                         tir_attr.self_lb_block =
2476                                         MLX5_TIRC_SELF_LB_BLOCK_BLOCK_UNICAST;
2477                 if (lro) {
2478                         tir_attr.lro_timeout_period_usecs =
2479                                         priv->config.lro.timeout;
2480                         tir_attr.lro_max_msg_sz = priv->max_lro_msg_size;
2481                         tir_attr.lro_enable_mask =
2482                                         MLX5_TIRC_LRO_ENABLE_MASK_IPV4_LRO |
2483                                         MLX5_TIRC_LRO_ENABLE_MASK_IPV6_LRO;
2484                 }
2485                 tir = mlx5_devx_cmd_create_tir(priv->sh->ctx, &tir_attr);
2486                 if (!tir) {
2487                         DRV_LOG(ERR, "port %u cannot create DevX TIR",
2488                                 dev->data->port_id);
2489                         rte_errno = errno;
2490                         goto error;
2491                 }
2492         }
2493         hrxq = rte_calloc(__func__, 1, sizeof(*hrxq) + rss_key_len, 0);
2494         if (!hrxq)
2495                 goto error;
2496         hrxq->ind_table = ind_tbl;
2497         if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV) {
2498                 hrxq->qp = qp;
2499 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2500                 hrxq->action =
2501                         mlx5_glue->dv_create_flow_action_dest_ibv_qp(hrxq->qp);
2502                 if (!hrxq->action) {
2503                         rte_errno = errno;
2504                         goto error;
2505                 }
2506 #endif
2507         } else { /* ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX */
2508                 hrxq->tir = tir;
2509 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2510                 hrxq->action = mlx5_glue->dv_create_flow_action_dest_devx_tir
2511                                                         (hrxq->tir->obj);
2512                 if (!hrxq->action) {
2513                         rte_errno = errno;
2514                         goto error;
2515                 }
2516 #endif
2517         }
2518         hrxq->rss_key_len = rss_key_len;
2519         hrxq->hash_fields = hash_fields;
2520         memcpy(hrxq->rss_key, rss_key, rss_key_len);
2521         rte_atomic32_inc(&hrxq->refcnt);
2522         LIST_INSERT_HEAD(&priv->hrxqs, hrxq, next);
2523         return hrxq;
2524 error:
2525         err = rte_errno; /* Save rte_errno before cleanup. */
2526         mlx5_ind_table_obj_release(dev, ind_tbl);
2527         if (qp)
2528                 claim_zero(mlx5_glue->destroy_qp(qp));
2529         else if (tir)
2530                 claim_zero(mlx5_devx_cmd_destroy(tir));
2531         rte_errno = err; /* Restore rte_errno. */
2532         return NULL;
2533 }
2534
2535 /**
2536  * Get an Rx Hash queue.
2537  *
2538  * @param dev
2539  *   Pointer to Ethernet device.
2540  * @param rss_conf
2541  *   RSS configuration for the Rx hash queue.
2542  * @param queues
2543  *   Queues entering in hash queue. In case of empty hash_fields only the
2544  *   first queue index will be taken for the indirection table.
2545  * @param queues_n
2546  *   Number of queues.
2547  *
2548  * @return
2549  *   An hash Rx queue on success.
2550  */
2551 struct mlx5_hrxq *
2552 mlx5_hrxq_get(struct rte_eth_dev *dev,
2553               const uint8_t *rss_key, uint32_t rss_key_len,
2554               uint64_t hash_fields,
2555               const uint16_t *queues, uint32_t queues_n)
2556 {
2557         struct mlx5_priv *priv = dev->data->dev_private;
2558         struct mlx5_hrxq *hrxq;
2559
2560         queues_n = hash_fields ? queues_n : 1;
2561         LIST_FOREACH(hrxq, &priv->hrxqs, next) {
2562                 struct mlx5_ind_table_obj *ind_tbl;
2563
2564                 if (hrxq->rss_key_len != rss_key_len)
2565                         continue;
2566                 if (memcmp(hrxq->rss_key, rss_key, rss_key_len))
2567                         continue;
2568                 if (hrxq->hash_fields != hash_fields)
2569                         continue;
2570                 ind_tbl = mlx5_ind_table_obj_get(dev, queues, queues_n);
2571                 if (!ind_tbl)
2572                         continue;
2573                 if (ind_tbl != hrxq->ind_table) {
2574                         mlx5_ind_table_obj_release(dev, ind_tbl);
2575                         continue;
2576                 }
2577                 rte_atomic32_inc(&hrxq->refcnt);
2578                 return hrxq;
2579         }
2580         return NULL;
2581 }
2582
2583 /**
2584  * Release the hash Rx queue.
2585  *
2586  * @param dev
2587  *   Pointer to Ethernet device.
2588  * @param hrxq
2589  *   Pointer to Hash Rx queue to release.
2590  *
2591  * @return
2592  *   1 while a reference on it exists, 0 when freed.
2593  */
2594 int
2595 mlx5_hrxq_release(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq)
2596 {
2597         if (rte_atomic32_dec_and_test(&hrxq->refcnt)) {
2598 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2599                 mlx5_glue->destroy_flow_action(hrxq->action);
2600 #endif
2601                 if (hrxq->ind_table->type == MLX5_IND_TBL_TYPE_IBV)
2602                         claim_zero(mlx5_glue->destroy_qp(hrxq->qp));
2603                 else /* hrxq->ind_table->type == MLX5_IND_TBL_TYPE_DEVX */
2604                         claim_zero(mlx5_devx_cmd_destroy(hrxq->tir));
2605                 mlx5_ind_table_obj_release(dev, hrxq->ind_table);
2606                 LIST_REMOVE(hrxq, next);
2607                 rte_free(hrxq);
2608                 return 0;
2609         }
2610         claim_nonzero(mlx5_ind_table_obj_release(dev, hrxq->ind_table));
2611         return 1;
2612 }
2613
2614 /**
2615  * Verify the Rx Queue list is empty
2616  *
2617  * @param dev
2618  *   Pointer to Ethernet device.
2619  *
2620  * @return
2621  *   The number of object not released.
2622  */
2623 int
2624 mlx5_hrxq_verify(struct rte_eth_dev *dev)
2625 {
2626         struct mlx5_priv *priv = dev->data->dev_private;
2627         struct mlx5_hrxq *hrxq;
2628         int ret = 0;
2629
2630         LIST_FOREACH(hrxq, &priv->hrxqs, next) {
2631                 DRV_LOG(DEBUG,
2632                         "port %u hash Rx queue %p still referenced",
2633                         dev->data->port_id, (void *)hrxq);
2634                 ++ret;
2635         }
2636         return ret;
2637 }
2638
2639 /**
2640  * Create a drop Rx queue Verbs/DevX object.
2641  *
2642  * @param dev
2643  *   Pointer to Ethernet device.
2644  *
2645  * @return
2646  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2647  */
2648 static struct mlx5_rxq_obj *
2649 mlx5_rxq_obj_drop_new(struct rte_eth_dev *dev)
2650 {
2651         struct mlx5_priv *priv = dev->data->dev_private;
2652         struct ibv_context *ctx = priv->sh->ctx;
2653         struct ibv_cq *cq;
2654         struct ibv_wq *wq = NULL;
2655         struct mlx5_rxq_obj *rxq;
2656
2657         if (priv->drop_queue.rxq)
2658                 return priv->drop_queue.rxq;
2659         cq = mlx5_glue->create_cq(ctx, 1, NULL, NULL, 0);
2660         if (!cq) {
2661                 DEBUG("port %u cannot allocate CQ for drop queue",
2662                       dev->data->port_id);
2663                 rte_errno = errno;
2664                 goto error;
2665         }
2666         wq = mlx5_glue->create_wq(ctx,
2667                  &(struct ibv_wq_init_attr){
2668                         .wq_type = IBV_WQT_RQ,
2669                         .max_wr = 1,
2670                         .max_sge = 1,
2671                         .pd = priv->sh->pd,
2672                         .cq = cq,
2673                  });
2674         if (!wq) {
2675                 DEBUG("port %u cannot allocate WQ for drop queue",
2676                       dev->data->port_id);
2677                 rte_errno = errno;
2678                 goto error;
2679         }
2680         rxq = rte_calloc(__func__, 1, sizeof(*rxq), 0);
2681         if (!rxq) {
2682                 DEBUG("port %u cannot allocate drop Rx queue memory",
2683                       dev->data->port_id);
2684                 rte_errno = ENOMEM;
2685                 goto error;
2686         }
2687         rxq->cq = cq;
2688         rxq->wq = wq;
2689         priv->drop_queue.rxq = rxq;
2690         return rxq;
2691 error:
2692         if (wq)
2693                 claim_zero(mlx5_glue->destroy_wq(wq));
2694         if (cq)
2695                 claim_zero(mlx5_glue->destroy_cq(cq));
2696         return NULL;
2697 }
2698
2699 /**
2700  * Release a drop Rx queue Verbs/DevX object.
2701  *
2702  * @param dev
2703  *   Pointer to Ethernet device.
2704  *
2705  * @return
2706  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2707  */
2708 static void
2709 mlx5_rxq_obj_drop_release(struct rte_eth_dev *dev)
2710 {
2711         struct mlx5_priv *priv = dev->data->dev_private;
2712         struct mlx5_rxq_obj *rxq = priv->drop_queue.rxq;
2713
2714         if (rxq->wq)
2715                 claim_zero(mlx5_glue->destroy_wq(rxq->wq));
2716         if (rxq->cq)
2717                 claim_zero(mlx5_glue->destroy_cq(rxq->cq));
2718         rte_free(rxq);
2719         priv->drop_queue.rxq = NULL;
2720 }
2721
2722 /**
2723  * Create a drop indirection table.
2724  *
2725  * @param dev
2726  *   Pointer to Ethernet device.
2727  *
2728  * @return
2729  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2730  */
2731 static struct mlx5_ind_table_obj *
2732 mlx5_ind_table_obj_drop_new(struct rte_eth_dev *dev)
2733 {
2734         struct mlx5_priv *priv = dev->data->dev_private;
2735         struct mlx5_ind_table_obj *ind_tbl;
2736         struct mlx5_rxq_obj *rxq;
2737         struct mlx5_ind_table_obj tmpl;
2738
2739         rxq = mlx5_rxq_obj_drop_new(dev);
2740         if (!rxq)
2741                 return NULL;
2742         tmpl.ind_table = mlx5_glue->create_rwq_ind_table
2743                 (priv->sh->ctx,
2744                  &(struct ibv_rwq_ind_table_init_attr){
2745                         .log_ind_tbl_size = 0,
2746                         .ind_tbl = &rxq->wq,
2747                         .comp_mask = 0,
2748                  });
2749         if (!tmpl.ind_table) {
2750                 DEBUG("port %u cannot allocate indirection table for drop"
2751                       " queue",
2752                       dev->data->port_id);
2753                 rte_errno = errno;
2754                 goto error;
2755         }
2756         ind_tbl = rte_calloc(__func__, 1, sizeof(*ind_tbl), 0);
2757         if (!ind_tbl) {
2758                 rte_errno = ENOMEM;
2759                 goto error;
2760         }
2761         ind_tbl->ind_table = tmpl.ind_table;
2762         return ind_tbl;
2763 error:
2764         mlx5_rxq_obj_drop_release(dev);
2765         return NULL;
2766 }
2767
2768 /**
2769  * Release a drop indirection table.
2770  *
2771  * @param dev
2772  *   Pointer to Ethernet device.
2773  */
2774 static void
2775 mlx5_ind_table_obj_drop_release(struct rte_eth_dev *dev)
2776 {
2777         struct mlx5_priv *priv = dev->data->dev_private;
2778         struct mlx5_ind_table_obj *ind_tbl = priv->drop_queue.hrxq->ind_table;
2779
2780         claim_zero(mlx5_glue->destroy_rwq_ind_table(ind_tbl->ind_table));
2781         mlx5_rxq_obj_drop_release(dev);
2782         rte_free(ind_tbl);
2783         priv->drop_queue.hrxq->ind_table = NULL;
2784 }
2785
2786 /**
2787  * Create a drop Rx Hash queue.
2788  *
2789  * @param dev
2790  *   Pointer to Ethernet device.
2791  *
2792  * @return
2793  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2794  */
2795 struct mlx5_hrxq *
2796 mlx5_hrxq_drop_new(struct rte_eth_dev *dev)
2797 {
2798         struct mlx5_priv *priv = dev->data->dev_private;
2799         struct mlx5_ind_table_obj *ind_tbl = NULL;
2800         struct ibv_qp *qp = NULL;
2801         struct mlx5_hrxq *hrxq = NULL;
2802
2803         if (priv->drop_queue.hrxq) {
2804                 rte_atomic32_inc(&priv->drop_queue.hrxq->refcnt);
2805                 return priv->drop_queue.hrxq;
2806         }
2807         hrxq = rte_calloc(__func__, 1, sizeof(*hrxq), 0);
2808         if (!hrxq) {
2809                 DRV_LOG(WARNING,
2810                         "port %u cannot allocate memory for drop queue",
2811                         dev->data->port_id);
2812                 rte_errno = ENOMEM;
2813                 goto error;
2814         }
2815         priv->drop_queue.hrxq = hrxq;
2816         ind_tbl = mlx5_ind_table_obj_drop_new(dev);
2817         if (!ind_tbl)
2818                 goto error;
2819         hrxq->ind_table = ind_tbl;
2820         qp = mlx5_glue->create_qp_ex(priv->sh->ctx,
2821                  &(struct ibv_qp_init_attr_ex){
2822                         .qp_type = IBV_QPT_RAW_PACKET,
2823                         .comp_mask =
2824                                 IBV_QP_INIT_ATTR_PD |
2825                                 IBV_QP_INIT_ATTR_IND_TABLE |
2826                                 IBV_QP_INIT_ATTR_RX_HASH,
2827                         .rx_hash_conf = (struct ibv_rx_hash_conf){
2828                                 .rx_hash_function =
2829                                         IBV_RX_HASH_FUNC_TOEPLITZ,
2830                                 .rx_hash_key_len = MLX5_RSS_HASH_KEY_LEN,
2831                                 .rx_hash_key = rss_hash_default_key,
2832                                 .rx_hash_fields_mask = 0,
2833                                 },
2834                         .rwq_ind_tbl = ind_tbl->ind_table,
2835                         .pd = priv->sh->pd
2836                  });
2837         if (!qp) {
2838                 DEBUG("port %u cannot allocate QP for drop queue",
2839                       dev->data->port_id);
2840                 rte_errno = errno;
2841                 goto error;
2842         }
2843         hrxq->qp = qp;
2844 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2845         hrxq->action = mlx5_glue->dv_create_flow_action_dest_ibv_qp(hrxq->qp);
2846         if (!hrxq->action) {
2847                 rte_errno = errno;
2848                 goto error;
2849         }
2850 #endif
2851         rte_atomic32_set(&hrxq->refcnt, 1);
2852         return hrxq;
2853 error:
2854 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2855         if (hrxq && hrxq->action)
2856                 mlx5_glue->destroy_flow_action(hrxq->action);
2857 #endif
2858         if (qp)
2859                 claim_zero(mlx5_glue->destroy_qp(hrxq->qp));
2860         if (ind_tbl)
2861                 mlx5_ind_table_obj_drop_release(dev);
2862         if (hrxq) {
2863                 priv->drop_queue.hrxq = NULL;
2864                 rte_free(hrxq);
2865         }
2866         return NULL;
2867 }
2868
2869 /**
2870  * Release a drop hash Rx queue.
2871  *
2872  * @param dev
2873  *   Pointer to Ethernet device.
2874  */
2875 void
2876 mlx5_hrxq_drop_release(struct rte_eth_dev *dev)
2877 {
2878         struct mlx5_priv *priv = dev->data->dev_private;
2879         struct mlx5_hrxq *hrxq = priv->drop_queue.hrxq;
2880
2881         if (rte_atomic32_dec_and_test(&hrxq->refcnt)) {
2882 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2883                 mlx5_glue->destroy_flow_action(hrxq->action);
2884 #endif
2885                 claim_zero(mlx5_glue->destroy_qp(hrxq->qp));
2886                 mlx5_ind_table_obj_drop_release(dev);
2887                 rte_free(hrxq);
2888                 priv->drop_queue.hrxq = NULL;
2889         }
2890 }