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