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