net/mlx5: fix Rx queue release of resources
[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                 rxq_ctrl->wq_umem = NULL;
579         }
580 }
581
582 /**
583  * Release an Rx verbs/DevX queue object.
584  *
585  * @param rxq_obj
586  *   Verbs/DevX Rx queue object.
587  *
588  * @return
589  *   1 while a reference on it exists, 0 when freed.
590  */
591 static int
592 mlx5_rxq_obj_release(struct mlx5_rxq_obj *rxq_obj)
593 {
594         assert(rxq_obj);
595         if (rxq_obj->type == MLX5_RXQ_OBJ_TYPE_IBV)
596                 assert(rxq_obj->wq);
597         assert(rxq_obj->cq);
598         if (rte_atomic32_dec_and_test(&rxq_obj->refcnt)) {
599                 rxq_free_elts(rxq_obj->rxq_ctrl);
600                 if (rxq_obj->type == MLX5_RXQ_OBJ_TYPE_IBV) {
601                         claim_zero(mlx5_glue->destroy_wq(rxq_obj->wq));
602                 } else if (rxq_obj->type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ) {
603                         claim_zero(mlx5_devx_cmd_destroy(rxq_obj->rq));
604                         rxq_release_rq_resources(rxq_obj->rxq_ctrl);
605                 }
606                 claim_zero(mlx5_glue->destroy_cq(rxq_obj->cq));
607                 if (rxq_obj->channel)
608                         claim_zero(mlx5_glue->destroy_comp_channel
609                                    (rxq_obj->channel));
610                 LIST_REMOVE(rxq_obj, next);
611                 rte_free(rxq_obj);
612                 return 0;
613         }
614         return 1;
615 }
616
617 /**
618  * Allocate queue vector and fill epoll fd list for Rx interrupts.
619  *
620  * @param dev
621  *   Pointer to Ethernet device.
622  *
623  * @return
624  *   0 on success, a negative errno value otherwise and rte_errno is set.
625  */
626 int
627 mlx5_rx_intr_vec_enable(struct rte_eth_dev *dev)
628 {
629         struct mlx5_priv *priv = dev->data->dev_private;
630         unsigned int i;
631         unsigned int rxqs_n = priv->rxqs_n;
632         unsigned int n = RTE_MIN(rxqs_n, (uint32_t)RTE_MAX_RXTX_INTR_VEC_ID);
633         unsigned int count = 0;
634         struct rte_intr_handle *intr_handle = dev->intr_handle;
635
636         if (!dev->data->dev_conf.intr_conf.rxq)
637                 return 0;
638         mlx5_rx_intr_vec_disable(dev);
639         intr_handle->intr_vec = malloc(n * sizeof(intr_handle->intr_vec[0]));
640         if (intr_handle->intr_vec == NULL) {
641                 DRV_LOG(ERR,
642                         "port %u failed to allocate memory for interrupt"
643                         " vector, Rx interrupts will not be supported",
644                         dev->data->port_id);
645                 rte_errno = ENOMEM;
646                 return -rte_errno;
647         }
648         intr_handle->type = RTE_INTR_HANDLE_EXT;
649         for (i = 0; i != n; ++i) {
650                 /* This rxq obj must not be released in this function. */
651                 struct mlx5_rxq_obj *rxq_obj = mlx5_rxq_obj_get(dev, i);
652                 int fd;
653                 int flags;
654                 int rc;
655
656                 /* Skip queues that cannot request interrupts. */
657                 if (!rxq_obj || !rxq_obj->channel) {
658                         /* Use invalid intr_vec[] index to disable entry. */
659                         intr_handle->intr_vec[i] =
660                                 RTE_INTR_VEC_RXTX_OFFSET +
661                                 RTE_MAX_RXTX_INTR_VEC_ID;
662                         continue;
663                 }
664                 if (count >= RTE_MAX_RXTX_INTR_VEC_ID) {
665                         DRV_LOG(ERR,
666                                 "port %u too many Rx queues for interrupt"
667                                 " vector size (%d), Rx interrupts cannot be"
668                                 " enabled",
669                                 dev->data->port_id, RTE_MAX_RXTX_INTR_VEC_ID);
670                         mlx5_rx_intr_vec_disable(dev);
671                         rte_errno = ENOMEM;
672                         return -rte_errno;
673                 }
674                 fd = rxq_obj->channel->fd;
675                 flags = fcntl(fd, F_GETFL);
676                 rc = fcntl(fd, F_SETFL, flags | O_NONBLOCK);
677                 if (rc < 0) {
678                         rte_errno = errno;
679                         DRV_LOG(ERR,
680                                 "port %u failed to make Rx interrupt file"
681                                 " descriptor %d non-blocking for queue index"
682                                 " %d",
683                                 dev->data->port_id, fd, i);
684                         mlx5_rx_intr_vec_disable(dev);
685                         return -rte_errno;
686                 }
687                 intr_handle->intr_vec[i] = RTE_INTR_VEC_RXTX_OFFSET + count;
688                 intr_handle->efds[count] = fd;
689                 count++;
690         }
691         if (!count)
692                 mlx5_rx_intr_vec_disable(dev);
693         else
694                 intr_handle->nb_efd = count;
695         return 0;
696 }
697
698 /**
699  * Clean up Rx interrupts handler.
700  *
701  * @param dev
702  *   Pointer to Ethernet device.
703  */
704 void
705 mlx5_rx_intr_vec_disable(struct rte_eth_dev *dev)
706 {
707         struct mlx5_priv *priv = dev->data->dev_private;
708         struct rte_intr_handle *intr_handle = dev->intr_handle;
709         unsigned int i;
710         unsigned int rxqs_n = priv->rxqs_n;
711         unsigned int n = RTE_MIN(rxqs_n, (uint32_t)RTE_MAX_RXTX_INTR_VEC_ID);
712
713         if (!dev->data->dev_conf.intr_conf.rxq)
714                 return;
715         if (!intr_handle->intr_vec)
716                 goto free;
717         for (i = 0; i != n; ++i) {
718                 struct mlx5_rxq_ctrl *rxq_ctrl;
719                 struct mlx5_rxq_data *rxq_data;
720
721                 if (intr_handle->intr_vec[i] == RTE_INTR_VEC_RXTX_OFFSET +
722                     RTE_MAX_RXTX_INTR_VEC_ID)
723                         continue;
724                 /**
725                  * Need to access directly the queue to release the reference
726                  * kept in mlx5_rx_intr_vec_enable().
727                  */
728                 rxq_data = (*priv->rxqs)[i];
729                 rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
730                 if (rxq_ctrl->obj)
731                         mlx5_rxq_obj_release(rxq_ctrl->obj);
732         }
733 free:
734         rte_intr_free_epoll_fd(intr_handle);
735         if (intr_handle->intr_vec)
736                 free(intr_handle->intr_vec);
737         intr_handle->nb_efd = 0;
738         intr_handle->intr_vec = NULL;
739 }
740
741 /**
742  *  MLX5 CQ notification .
743  *
744  *  @param rxq
745  *     Pointer to receive queue structure.
746  *  @param sq_n_rxq
747  *     Sequence number per receive queue .
748  */
749 static inline void
750 mlx5_arm_cq(struct mlx5_rxq_data *rxq, int sq_n_rxq)
751 {
752         int sq_n = 0;
753         uint32_t doorbell_hi;
754         uint64_t doorbell;
755         void *cq_db_reg = (char *)rxq->cq_uar + MLX5_CQ_DOORBELL;
756
757         sq_n = sq_n_rxq & MLX5_CQ_SQN_MASK;
758         doorbell_hi = sq_n << MLX5_CQ_SQN_OFFSET | (rxq->cq_ci & MLX5_CI_MASK);
759         doorbell = (uint64_t)doorbell_hi << 32;
760         doorbell |=  rxq->cqn;
761         rxq->cq_db[MLX5_CQ_ARM_DB] = rte_cpu_to_be_32(doorbell_hi);
762         mlx5_uar_write64(rte_cpu_to_be_64(doorbell),
763                          cq_db_reg, rxq->uar_lock_cq);
764 }
765
766 /**
767  * DPDK callback for Rx queue interrupt enable.
768  *
769  * @param dev
770  *   Pointer to Ethernet device structure.
771  * @param rx_queue_id
772  *   Rx queue number.
773  *
774  * @return
775  *   0 on success, a negative errno value otherwise and rte_errno is set.
776  */
777 int
778 mlx5_rx_intr_enable(struct rte_eth_dev *dev, uint16_t rx_queue_id)
779 {
780         struct mlx5_priv *priv = dev->data->dev_private;
781         struct mlx5_rxq_data *rxq_data;
782         struct mlx5_rxq_ctrl *rxq_ctrl;
783
784         rxq_data = (*priv->rxqs)[rx_queue_id];
785         if (!rxq_data) {
786                 rte_errno = EINVAL;
787                 return -rte_errno;
788         }
789         rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
790         if (rxq_ctrl->irq) {
791                 struct mlx5_rxq_obj *rxq_obj;
792
793                 rxq_obj = mlx5_rxq_obj_get(dev, rx_queue_id);
794                 if (!rxq_obj) {
795                         rte_errno = EINVAL;
796                         return -rte_errno;
797                 }
798                 mlx5_arm_cq(rxq_data, rxq_data->cq_arm_sn);
799                 mlx5_rxq_obj_release(rxq_obj);
800         }
801         return 0;
802 }
803
804 /**
805  * DPDK callback for Rx queue interrupt disable.
806  *
807  * @param dev
808  *   Pointer to Ethernet device structure.
809  * @param rx_queue_id
810  *   Rx queue number.
811  *
812  * @return
813  *   0 on success, a negative errno value otherwise and rte_errno is set.
814  */
815 int
816 mlx5_rx_intr_disable(struct rte_eth_dev *dev, uint16_t rx_queue_id)
817 {
818         struct mlx5_priv *priv = dev->data->dev_private;
819         struct mlx5_rxq_data *rxq_data;
820         struct mlx5_rxq_ctrl *rxq_ctrl;
821         struct mlx5_rxq_obj *rxq_obj = NULL;
822         struct ibv_cq *ev_cq;
823         void *ev_ctx;
824         int ret;
825
826         rxq_data = (*priv->rxqs)[rx_queue_id];
827         if (!rxq_data) {
828                 rte_errno = EINVAL;
829                 return -rte_errno;
830         }
831         rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
832         if (!rxq_ctrl->irq)
833                 return 0;
834         rxq_obj = mlx5_rxq_obj_get(dev, rx_queue_id);
835         if (!rxq_obj) {
836                 rte_errno = EINVAL;
837                 return -rte_errno;
838         }
839         ret = mlx5_glue->get_cq_event(rxq_obj->channel, &ev_cq, &ev_ctx);
840         if (ret || ev_cq != rxq_obj->cq) {
841                 rte_errno = EINVAL;
842                 goto exit;
843         }
844         rxq_data->cq_arm_sn++;
845         mlx5_glue->ack_cq_events(rxq_obj->cq, 1);
846         mlx5_rxq_obj_release(rxq_obj);
847         return 0;
848 exit:
849         ret = rte_errno; /* Save rte_errno before cleanup. */
850         if (rxq_obj)
851                 mlx5_rxq_obj_release(rxq_obj);
852         DRV_LOG(WARNING, "port %u unable to disable interrupt on Rx queue %d",
853                 dev->data->port_id, rx_queue_id);
854         rte_errno = ret; /* Restore rte_errno. */
855         return -rte_errno;
856 }
857
858 /**
859  * Create a CQ Verbs object.
860  *
861  * @param dev
862  *   Pointer to Ethernet device.
863  * @param priv
864  *   Pointer to device private data.
865  * @param rxq_data
866  *   Pointer to Rx queue data.
867  * @param cqe_n
868  *   Number of CQEs in CQ.
869  * @param rxq_obj
870  *   Pointer to Rx queue object data.
871  *
872  * @return
873  *   The Verbs object initialised, NULL otherwise and rte_errno is set.
874  */
875 static struct ibv_cq *
876 mlx5_ibv_cq_new(struct rte_eth_dev *dev, struct mlx5_priv *priv,
877                 struct mlx5_rxq_data *rxq_data,
878                 unsigned int cqe_n, struct mlx5_rxq_obj *rxq_obj)
879 {
880         struct {
881                 struct ibv_cq_init_attr_ex ibv;
882                 struct mlx5dv_cq_init_attr mlx5;
883         } cq_attr;
884
885         cq_attr.ibv = (struct ibv_cq_init_attr_ex){
886                 .cqe = cqe_n,
887                 .channel = rxq_obj->channel,
888                 .comp_mask = 0,
889         };
890         cq_attr.mlx5 = (struct mlx5dv_cq_init_attr){
891                 .comp_mask = 0,
892         };
893         if (priv->config.cqe_comp && !rxq_data->hw_timestamp) {
894                 cq_attr.mlx5.comp_mask |=
895                                 MLX5DV_CQ_INIT_ATTR_MASK_COMPRESSED_CQE;
896 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
897                 cq_attr.mlx5.cqe_comp_res_format =
898                                 mlx5_rxq_mprq_enabled(rxq_data) ?
899                                 MLX5DV_CQE_RES_FORMAT_CSUM_STRIDX :
900                                 MLX5DV_CQE_RES_FORMAT_HASH;
901 #else
902                 cq_attr.mlx5.cqe_comp_res_format = MLX5DV_CQE_RES_FORMAT_HASH;
903 #endif
904                 /*
905                  * For vectorized Rx, it must not be doubled in order to
906                  * make cq_ci and rq_ci aligned.
907                  */
908                 if (mlx5_rxq_check_vec_support(rxq_data) < 0)
909                         cq_attr.ibv.cqe *= 2;
910         } else if (priv->config.cqe_comp && rxq_data->hw_timestamp) {
911                 DRV_LOG(DEBUG,
912                         "port %u Rx CQE compression is disabled for HW"
913                         " timestamp",
914                         dev->data->port_id);
915         }
916 #ifdef HAVE_IBV_MLX5_MOD_CQE_128B_PAD
917         if (priv->config.cqe_pad) {
918                 cq_attr.mlx5.comp_mask |= MLX5DV_CQ_INIT_ATTR_MASK_FLAGS;
919                 cq_attr.mlx5.flags |= MLX5DV_CQ_INIT_ATTR_FLAGS_CQE_PAD;
920         }
921 #endif
922         return mlx5_glue->cq_ex_to_cq(mlx5_glue->dv_create_cq(priv->sh->ctx,
923                                                               &cq_attr.ibv,
924                                                               &cq_attr.mlx5));
925 }
926
927 /**
928  * Create a WQ Verbs object.
929  *
930  * @param dev
931  *   Pointer to Ethernet device.
932  * @param priv
933  *   Pointer to device private data.
934  * @param rxq_data
935  *   Pointer to Rx queue data.
936  * @param idx
937  *   Queue index in DPDK Rx queue array
938  * @param wqe_n
939  *   Number of WQEs in WQ.
940  * @param rxq_obj
941  *   Pointer to Rx queue object data.
942  *
943  * @return
944  *   The Verbs object initialised, NULL otherwise and rte_errno is set.
945  */
946 static struct ibv_wq *
947 mlx5_ibv_wq_new(struct rte_eth_dev *dev, struct mlx5_priv *priv,
948                 struct mlx5_rxq_data *rxq_data, uint16_t idx,
949                 unsigned int wqe_n, struct mlx5_rxq_obj *rxq_obj)
950 {
951         struct {
952                 struct ibv_wq_init_attr ibv;
953 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
954                 struct mlx5dv_wq_init_attr mlx5;
955 #endif
956         } wq_attr;
957
958         wq_attr.ibv = (struct ibv_wq_init_attr){
959                 .wq_context = NULL, /* Could be useful in the future. */
960                 .wq_type = IBV_WQT_RQ,
961                 /* Max number of outstanding WRs. */
962                 .max_wr = wqe_n >> rxq_data->sges_n,
963                 /* Max number of scatter/gather elements in a WR. */
964                 .max_sge = 1 << rxq_data->sges_n,
965                 .pd = priv->sh->pd,
966                 .cq = rxq_obj->cq,
967                 .comp_mask = IBV_WQ_FLAGS_CVLAN_STRIPPING | 0,
968                 .create_flags = (rxq_data->vlan_strip ?
969                                  IBV_WQ_FLAGS_CVLAN_STRIPPING : 0),
970         };
971         /* By default, FCS (CRC) is stripped by hardware. */
972         if (rxq_data->crc_present) {
973                 wq_attr.ibv.create_flags |= IBV_WQ_FLAGS_SCATTER_FCS;
974                 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
975         }
976         if (priv->config.hw_padding) {
977 #if defined(HAVE_IBV_WQ_FLAG_RX_END_PADDING)
978                 wq_attr.ibv.create_flags |= IBV_WQ_FLAG_RX_END_PADDING;
979                 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
980 #elif defined(HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING)
981                 wq_attr.ibv.create_flags |= IBV_WQ_FLAGS_PCI_WRITE_END_PADDING;
982                 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS;
983 #endif
984         }
985 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
986         wq_attr.mlx5 = (struct mlx5dv_wq_init_attr){
987                 .comp_mask = 0,
988         };
989         if (mlx5_rxq_mprq_enabled(rxq_data)) {
990                 struct mlx5dv_striding_rq_init_attr *mprq_attr =
991                                                 &wq_attr.mlx5.striding_rq_attrs;
992
993                 wq_attr.mlx5.comp_mask |= MLX5DV_WQ_INIT_ATTR_MASK_STRIDING_RQ;
994                 *mprq_attr = (struct mlx5dv_striding_rq_init_attr){
995                         .single_stride_log_num_of_bytes = rxq_data->strd_sz_n,
996                         .single_wqe_log_num_of_strides = rxq_data->strd_num_n,
997                         .two_byte_shift_en = MLX5_MPRQ_TWO_BYTE_SHIFT,
998                 };
999         }
1000         rxq_obj->wq = mlx5_glue->dv_create_wq(priv->sh->ctx, &wq_attr.ibv,
1001                                               &wq_attr.mlx5);
1002 #else
1003         rxq_obj->wq = mlx5_glue->create_wq(priv->sh->ctx, &wq_attr.ibv);
1004 #endif
1005         if (rxq_obj->wq) {
1006                 /*
1007                  * Make sure number of WRs*SGEs match expectations since a queue
1008                  * cannot allocate more than "desc" buffers.
1009                  */
1010                 if (wq_attr.ibv.max_wr != (wqe_n >> rxq_data->sges_n) ||
1011                     wq_attr.ibv.max_sge != (1u << rxq_data->sges_n)) {
1012                         DRV_LOG(ERR,
1013                                 "port %u Rx queue %u requested %u*%u but got"
1014                                 " %u*%u WRs*SGEs",
1015                                 dev->data->port_id, idx,
1016                                 wqe_n >> rxq_data->sges_n,
1017                                 (1 << rxq_data->sges_n),
1018                                 wq_attr.ibv.max_wr, wq_attr.ibv.max_sge);
1019                         claim_zero(mlx5_glue->destroy_wq(rxq_obj->wq));
1020                         rxq_obj->wq = NULL;
1021                         rte_errno = EINVAL;
1022                 }
1023         }
1024         return rxq_obj->wq;
1025 }
1026
1027 /**
1028  * Fill common fields of create RQ attributes structure.
1029  *
1030  * @param rxq_data
1031  *   Pointer to Rx queue data.
1032  * @param cqn
1033  *   CQ number to use with this RQ.
1034  * @param rq_attr
1035  *   RQ attributes structure to fill..
1036  */
1037 static void
1038 mlx5_devx_create_rq_attr_fill(struct mlx5_rxq_data *rxq_data, uint32_t cqn,
1039                               struct mlx5_devx_create_rq_attr *rq_attr)
1040 {
1041         rq_attr->state = MLX5_RQC_STATE_RST;
1042         rq_attr->vsd = (rxq_data->vlan_strip) ? 0 : 1;
1043         rq_attr->cqn = cqn;
1044         rq_attr->scatter_fcs = (rxq_data->crc_present) ? 1 : 0;
1045 }
1046
1047 /**
1048  * Fill common fields of DevX WQ attributes structure.
1049  *
1050  * @param priv
1051  *   Pointer to device private data.
1052  * @param rxq_ctrl
1053  *   Pointer to Rx queue control structure.
1054  * @param wq_attr
1055  *   WQ attributes structure to fill..
1056  */
1057 static void
1058 mlx5_devx_wq_attr_fill(struct mlx5_priv *priv, struct mlx5_rxq_ctrl *rxq_ctrl,
1059                        struct mlx5_devx_wq_attr *wq_attr)
1060 {
1061         wq_attr->end_padding_mode = priv->config.cqe_pad ?
1062                                         MLX5_WQ_END_PAD_MODE_ALIGN :
1063                                         MLX5_WQ_END_PAD_MODE_NONE;
1064         wq_attr->pd = priv->sh->pdn;
1065         wq_attr->dbr_addr = rxq_ctrl->dbr_offset;
1066         wq_attr->dbr_umem_id = rxq_ctrl->dbr_umem_id;
1067         wq_attr->dbr_umem_valid = 1;
1068         wq_attr->wq_umem_id = rxq_ctrl->wq_umem->umem_id;
1069         wq_attr->wq_umem_valid = 1;
1070 }
1071
1072 /**
1073  * Create a RQ object using DevX.
1074  *
1075  * @param dev
1076  *   Pointer to Ethernet device.
1077  * @param idx
1078  *   Queue index in DPDK Rx queue array
1079  * @param cqn
1080  *   CQ number to use with this RQ.
1081  *
1082  * @return
1083  *   The DevX object initialised, NULL otherwise and rte_errno is set.
1084  */
1085 static struct mlx5_devx_obj *
1086 mlx5_devx_rq_new(struct rte_eth_dev *dev, uint16_t idx, uint32_t cqn)
1087 {
1088         struct mlx5_priv *priv = dev->data->dev_private;
1089         struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
1090         struct mlx5_rxq_ctrl *rxq_ctrl =
1091                 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
1092         struct mlx5_devx_create_rq_attr rq_attr;
1093         uint32_t wqe_n = 1 << rxq_data->elts_n;
1094         uint32_t wq_size = 0;
1095         uint32_t wqe_size = 0;
1096         uint32_t log_wqe_size = 0;
1097         void *buf = NULL;
1098         struct mlx5_devx_obj *rq;
1099
1100         memset(&rq_attr, 0, sizeof(rq_attr));
1101         /* Fill RQ attributes. */
1102         rq_attr.mem_rq_type = MLX5_RQC_MEM_RQ_TYPE_MEMORY_RQ_INLINE;
1103         rq_attr.flush_in_error_en = 1;
1104         mlx5_devx_create_rq_attr_fill(rxq_data, cqn, &rq_attr);
1105         /* Fill WQ attributes for this RQ. */
1106         if (mlx5_rxq_mprq_enabled(rxq_data)) {
1107                 rq_attr.wq_attr.wq_type = MLX5_WQ_TYPE_CYCLIC_STRIDING_RQ;
1108                 /*
1109                  * Number of strides in each WQE:
1110                  * 512*2^single_wqe_log_num_of_strides.
1111                  */
1112                 rq_attr.wq_attr.single_wqe_log_num_of_strides =
1113                                 rxq_data->strd_num_n -
1114                                 MLX5_MIN_SINGLE_WQE_LOG_NUM_STRIDES;
1115                 /* Stride size = (2^single_stride_log_num_of_bytes)*64B. */
1116                 rq_attr.wq_attr.single_stride_log_num_of_bytes =
1117                                 rxq_data->strd_sz_n -
1118                                 MLX5_MIN_SINGLE_STRIDE_LOG_NUM_BYTES;
1119                 wqe_size = sizeof(struct mlx5_wqe_mprq);
1120         } else {
1121                 int max_sge = 0;
1122                 int num_scatter = 0;
1123
1124                 rq_attr.wq_attr.wq_type = MLX5_WQ_TYPE_CYCLIC;
1125                 max_sge = 1 << rxq_data->sges_n;
1126                 num_scatter = RTE_MAX(max_sge, 1);
1127                 wqe_size = sizeof(struct mlx5_wqe_data_seg) * num_scatter;
1128         }
1129         log_wqe_size = log2above(wqe_size);
1130         rq_attr.wq_attr.log_wq_stride = log_wqe_size;
1131         rq_attr.wq_attr.log_wq_sz = rxq_data->elts_n;
1132         /* Calculate and allocate WQ memory space. */
1133         wqe_size = 1 << log_wqe_size; /* round up power of two.*/
1134         wq_size = wqe_n * wqe_size;
1135         buf = rte_calloc_socket(__func__, 1, wq_size, RTE_CACHE_LINE_SIZE,
1136                                 rxq_ctrl->socket);
1137         if (!buf)
1138                 return NULL;
1139         rxq_data->wqes = buf;
1140         rxq_ctrl->wq_umem = mlx5_glue->devx_umem_reg(priv->sh->ctx,
1141                                                      buf, wq_size, 0);
1142         if (!rxq_ctrl->wq_umem) {
1143                 rte_free(buf);
1144                 return NULL;
1145         }
1146         mlx5_devx_wq_attr_fill(priv, rxq_ctrl, &rq_attr.wq_attr);
1147         rq = mlx5_devx_cmd_create_rq(priv->sh->ctx, &rq_attr, rxq_ctrl->socket);
1148         if (!rq)
1149                 rxq_release_rq_resources(rxq_ctrl);
1150         return rq;
1151 }
1152
1153 /**
1154  * Create the Rx queue Verbs/DevX object.
1155  *
1156  * @param dev
1157  *   Pointer to Ethernet device.
1158  * @param idx
1159  *   Queue index in DPDK Rx queue array
1160  * @param type
1161  *   Type of Rx queue object to create.
1162  *
1163  * @return
1164  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
1165  */
1166 struct mlx5_rxq_obj *
1167 mlx5_rxq_obj_new(struct rte_eth_dev *dev, uint16_t idx,
1168                  enum mlx5_rxq_obj_type type)
1169 {
1170         struct mlx5_priv *priv = dev->data->dev_private;
1171         struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx];
1172         struct mlx5_rxq_ctrl *rxq_ctrl =
1173                 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
1174         struct ibv_wq_attr mod;
1175         unsigned int cqe_n;
1176         unsigned int wqe_n = 1 << rxq_data->elts_n;
1177         struct mlx5_rxq_obj *tmpl = NULL;
1178         struct mlx5dv_cq cq_info;
1179         struct mlx5dv_rwq rwq;
1180         int ret = 0;
1181         struct mlx5dv_obj obj;
1182
1183         assert(rxq_data);
1184         assert(!rxq_ctrl->obj);
1185         priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_RX_QUEUE;
1186         priv->verbs_alloc_ctx.obj = rxq_ctrl;
1187         tmpl = rte_calloc_socket(__func__, 1, sizeof(*tmpl), 0,
1188                                  rxq_ctrl->socket);
1189         if (!tmpl) {
1190                 DRV_LOG(ERR,
1191                         "port %u Rx queue %u cannot allocate verbs resources",
1192                         dev->data->port_id, rxq_data->idx);
1193                 rte_errno = ENOMEM;
1194                 goto error;
1195         }
1196         tmpl->type = type;
1197         tmpl->rxq_ctrl = rxq_ctrl;
1198         if (rxq_ctrl->irq) {
1199                 tmpl->channel = mlx5_glue->create_comp_channel(priv->sh->ctx);
1200                 if (!tmpl->channel) {
1201                         DRV_LOG(ERR, "port %u: comp channel creation failure",
1202                                 dev->data->port_id);
1203                         rte_errno = ENOMEM;
1204                         goto error;
1205                 }
1206         }
1207         if (mlx5_rxq_mprq_enabled(rxq_data))
1208                 cqe_n = wqe_n * (1 << rxq_data->strd_num_n) - 1;
1209         else
1210                 cqe_n = wqe_n  - 1;
1211         tmpl->cq = mlx5_ibv_cq_new(dev, priv, rxq_data, cqe_n, tmpl);
1212         if (!tmpl->cq) {
1213                 DRV_LOG(ERR, "port %u Rx queue %u CQ creation failure",
1214                         dev->data->port_id, idx);
1215                 rte_errno = ENOMEM;
1216                 goto error;
1217         }
1218         obj.cq.in = tmpl->cq;
1219         obj.cq.out = &cq_info;
1220         ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_CQ);
1221         if (ret) {
1222                 rte_errno = ret;
1223                 goto error;
1224         }
1225         if (cq_info.cqe_size != RTE_CACHE_LINE_SIZE) {
1226                 DRV_LOG(ERR,
1227                         "port %u wrong MLX5_CQE_SIZE environment variable"
1228                         " value: it should be set to %u",
1229                         dev->data->port_id, RTE_CACHE_LINE_SIZE);
1230                 rte_errno = EINVAL;
1231                 goto error;
1232         }
1233         DRV_LOG(DEBUG, "port %u device_attr.max_qp_wr is %d",
1234                 dev->data->port_id, priv->sh->device_attr.orig_attr.max_qp_wr);
1235         DRV_LOG(DEBUG, "port %u device_attr.max_sge is %d",
1236                 dev->data->port_id, priv->sh->device_attr.orig_attr.max_sge);
1237         /* Allocate door-bell for types created with DevX. */
1238         if (tmpl->type != MLX5_RXQ_OBJ_TYPE_IBV) {
1239                 struct mlx5_devx_dbr_page *dbr_page;
1240                 int64_t dbr_offset;
1241
1242                 dbr_offset = mlx5_get_dbr(dev, &dbr_page);
1243                 if (dbr_offset < 0)
1244                         goto error;
1245                 rxq_ctrl->dbr_offset = dbr_offset;
1246                 rxq_ctrl->dbr_umem_id = dbr_page->umem->umem_id;
1247                 rxq_ctrl->dbr_umem_id_valid = 1;
1248                 rxq_data->rq_db = (uint32_t *)((uintptr_t)dbr_page->dbrs +
1249                                                (uintptr_t)rxq_ctrl->dbr_offset);
1250         }
1251         if (tmpl->type == MLX5_RXQ_OBJ_TYPE_IBV) {
1252                 tmpl->wq = mlx5_ibv_wq_new(dev, priv, rxq_data, idx, wqe_n,
1253                                            tmpl);
1254                 if (!tmpl->wq) {
1255                         DRV_LOG(ERR, "port %u Rx queue %u WQ creation failure",
1256                                 dev->data->port_id, idx);
1257                         rte_errno = ENOMEM;
1258                         goto error;
1259                 }
1260                 /* Change queue state to ready. */
1261                 mod = (struct ibv_wq_attr){
1262                         .attr_mask = IBV_WQ_ATTR_STATE,
1263                         .wq_state = IBV_WQS_RDY,
1264                 };
1265                 ret = mlx5_glue->modify_wq(tmpl->wq, &mod);
1266                 if (ret) {
1267                         DRV_LOG(ERR,
1268                                 "port %u Rx queue %u WQ state to IBV_WQS_RDY"
1269                                 " failed", dev->data->port_id, idx);
1270                         rte_errno = ret;
1271                         goto error;
1272                 }
1273                 obj.rwq.in = tmpl->wq;
1274                 obj.rwq.out = &rwq;
1275                 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_RWQ);
1276                 if (ret) {
1277                         rte_errno = ret;
1278                         goto error;
1279                 }
1280                 rxq_data->wqes = rwq.buf;
1281                 rxq_data->rq_db = rwq.dbrec;
1282         } else if (tmpl->type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ) {
1283                 struct mlx5_devx_modify_rq_attr rq_attr;
1284
1285                 memset(&rq_attr, 0, sizeof(rq_attr));
1286                 tmpl->rq = mlx5_devx_rq_new(dev, idx, cq_info.cqn);
1287                 if (!tmpl->rq) {
1288                         DRV_LOG(ERR, "port %u Rx queue %u RQ creation failure",
1289                                 dev->data->port_id, idx);
1290                         rte_errno = ENOMEM;
1291                         goto error;
1292                 }
1293                 /* Change queue state to ready. */
1294                 rq_attr.rq_state = MLX5_RQC_STATE_RST;
1295                 rq_attr.state = MLX5_RQC_STATE_RDY;
1296                 ret = mlx5_devx_cmd_modify_rq(tmpl->rq, &rq_attr);
1297                 if (ret)
1298                         goto error;
1299         }
1300         /* Fill the rings. */
1301         rxq_data->cqe_n = log2above(cq_info.cqe_cnt);
1302         rxq_data->cq_db = cq_info.dbrec;
1303         rxq_data->cqes = (volatile struct mlx5_cqe (*)[])(uintptr_t)cq_info.buf;
1304         rxq_data->cq_uar = cq_info.cq_uar;
1305         rxq_data->cqn = cq_info.cqn;
1306         rxq_data->cq_arm_sn = 0;
1307         mlx5_rxq_initialize(rxq_data);
1308         rxq_data->cq_ci = 0;
1309         DRV_LOG(DEBUG, "port %u rxq %u updated with %p", dev->data->port_id,
1310                 idx, (void *)&tmpl);
1311         rte_atomic32_inc(&tmpl->refcnt);
1312         LIST_INSERT_HEAD(&priv->rxqsobj, tmpl, next);
1313         priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1314         return tmpl;
1315 error:
1316         if (tmpl) {
1317                 ret = rte_errno; /* Save rte_errno before cleanup. */
1318                 if (tmpl->type == MLX5_RXQ_OBJ_TYPE_IBV && tmpl->wq)
1319                         claim_zero(mlx5_glue->destroy_wq(tmpl->wq));
1320                 else if (tmpl->type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ && tmpl->rq)
1321                         claim_zero(mlx5_devx_cmd_destroy(tmpl->rq));
1322                 if (tmpl->cq)
1323                         claim_zero(mlx5_glue->destroy_cq(tmpl->cq));
1324                 if (tmpl->channel)
1325                         claim_zero(mlx5_glue->destroy_comp_channel
1326                                                         (tmpl->channel));
1327                 rte_free(tmpl);
1328                 rte_errno = ret; /* Restore rte_errno. */
1329         }
1330         if (type == MLX5_RXQ_OBJ_TYPE_DEVX_RQ)
1331                 rxq_release_rq_resources(rxq_ctrl);
1332         priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1333         return NULL;
1334 }
1335
1336 /**
1337  * Verify the Rx queue objects list is empty
1338  *
1339  * @param dev
1340  *   Pointer to Ethernet device.
1341  *
1342  * @return
1343  *   The number of objects not released.
1344  */
1345 int
1346 mlx5_rxq_obj_verify(struct rte_eth_dev *dev)
1347 {
1348         struct mlx5_priv *priv = dev->data->dev_private;
1349         int ret = 0;
1350         struct mlx5_rxq_obj *rxq_obj;
1351
1352         LIST_FOREACH(rxq_obj, &priv->rxqsobj, next) {
1353                 DRV_LOG(DEBUG, "port %u Rx queue %u still referenced",
1354                         dev->data->port_id, rxq_obj->rxq_ctrl->rxq.idx);
1355                 ++ret;
1356         }
1357         return ret;
1358 }
1359
1360 /**
1361  * Callback function to initialize mbufs for Multi-Packet RQ.
1362  */
1363 static inline void
1364 mlx5_mprq_buf_init(struct rte_mempool *mp, void *opaque_arg,
1365                     void *_m, unsigned int i __rte_unused)
1366 {
1367         struct mlx5_mprq_buf *buf = _m;
1368         struct rte_mbuf_ext_shared_info *shinfo;
1369         unsigned int strd_n = (unsigned int)(uintptr_t)opaque_arg;
1370         unsigned int j;
1371
1372         memset(_m, 0, sizeof(*buf));
1373         buf->mp = mp;
1374         rte_atomic16_set(&buf->refcnt, 1);
1375         for (j = 0; j != strd_n; ++j) {
1376                 shinfo = &buf->shinfos[j];
1377                 shinfo->free_cb = mlx5_mprq_buf_free_cb;
1378                 shinfo->fcb_opaque = buf;
1379         }
1380 }
1381
1382 /**
1383  * Free mempool of Multi-Packet RQ.
1384  *
1385  * @param dev
1386  *   Pointer to Ethernet device.
1387  *
1388  * @return
1389  *   0 on success, negative errno value on failure.
1390  */
1391 int
1392 mlx5_mprq_free_mp(struct rte_eth_dev *dev)
1393 {
1394         struct mlx5_priv *priv = dev->data->dev_private;
1395         struct rte_mempool *mp = priv->mprq_mp;
1396         unsigned int i;
1397
1398         if (mp == NULL)
1399                 return 0;
1400         DRV_LOG(DEBUG, "port %u freeing mempool (%s) for Multi-Packet RQ",
1401                 dev->data->port_id, mp->name);
1402         /*
1403          * If a buffer in the pool has been externally attached to a mbuf and it
1404          * is still in use by application, destroying the Rx queue can spoil
1405          * the packet. It is unlikely to happen but if application dynamically
1406          * creates and destroys with holding Rx packets, this can happen.
1407          *
1408          * TODO: It is unavoidable for now because the mempool for Multi-Packet
1409          * RQ isn't provided by application but managed by PMD.
1410          */
1411         if (!rte_mempool_full(mp)) {
1412                 DRV_LOG(ERR,
1413                         "port %u mempool for Multi-Packet RQ is still in use",
1414                         dev->data->port_id);
1415                 rte_errno = EBUSY;
1416                 return -rte_errno;
1417         }
1418         rte_mempool_free(mp);
1419         /* Unset mempool for each Rx queue. */
1420         for (i = 0; i != priv->rxqs_n; ++i) {
1421                 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1422
1423                 if (rxq == NULL)
1424                         continue;
1425                 rxq->mprq_mp = NULL;
1426         }
1427         priv->mprq_mp = NULL;
1428         return 0;
1429 }
1430
1431 /**
1432  * Allocate a mempool for Multi-Packet RQ. All configured Rx queues share the
1433  * mempool. If already allocated, reuse it if there're enough elements.
1434  * Otherwise, resize it.
1435  *
1436  * @param dev
1437  *   Pointer to Ethernet device.
1438  *
1439  * @return
1440  *   0 on success, negative errno value on failure.
1441  */
1442 int
1443 mlx5_mprq_alloc_mp(struct rte_eth_dev *dev)
1444 {
1445         struct mlx5_priv *priv = dev->data->dev_private;
1446         struct rte_mempool *mp = priv->mprq_mp;
1447         char name[RTE_MEMPOOL_NAMESIZE];
1448         unsigned int desc = 0;
1449         unsigned int buf_len;
1450         unsigned int obj_num;
1451         unsigned int obj_size;
1452         unsigned int strd_num_n = 0;
1453         unsigned int strd_sz_n = 0;
1454         unsigned int i;
1455
1456         if (!mlx5_mprq_enabled(dev))
1457                 return 0;
1458         /* Count the total number of descriptors configured. */
1459         for (i = 0; i != priv->rxqs_n; ++i) {
1460                 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1461
1462                 if (rxq == NULL)
1463                         continue;
1464                 desc += 1 << rxq->elts_n;
1465                 /* Get the max number of strides. */
1466                 if (strd_num_n < rxq->strd_num_n)
1467                         strd_num_n = rxq->strd_num_n;
1468                 /* Get the max size of a stride. */
1469                 if (strd_sz_n < rxq->strd_sz_n)
1470                         strd_sz_n = rxq->strd_sz_n;
1471         }
1472         assert(strd_num_n && strd_sz_n);
1473         buf_len = (1 << strd_num_n) * (1 << strd_sz_n);
1474         obj_size = sizeof(struct mlx5_mprq_buf) + buf_len + (1 << strd_num_n) *
1475                 sizeof(struct rte_mbuf_ext_shared_info) + RTE_PKTMBUF_HEADROOM;
1476         /*
1477          * Received packets can be either memcpy'd or externally referenced. In
1478          * case that the packet is attached to an mbuf as an external buffer, as
1479          * it isn't possible to predict how the buffers will be queued by
1480          * application, there's no option to exactly pre-allocate needed buffers
1481          * in advance but to speculatively prepares enough buffers.
1482          *
1483          * In the data path, if this Mempool is depleted, PMD will try to memcpy
1484          * received packets to buffers provided by application (rxq->mp) until
1485          * this Mempool gets available again.
1486          */
1487         desc *= 4;
1488         obj_num = desc + MLX5_MPRQ_MP_CACHE_SZ * priv->rxqs_n;
1489         /*
1490          * rte_mempool_create_empty() has sanity check to refuse large cache
1491          * size compared to the number of elements.
1492          * CACHE_FLUSHTHRESH_MULTIPLIER is defined in a C file, so using a
1493          * constant number 2 instead.
1494          */
1495         obj_num = RTE_MAX(obj_num, MLX5_MPRQ_MP_CACHE_SZ * 2);
1496         /* Check a mempool is already allocated and if it can be resued. */
1497         if (mp != NULL && mp->elt_size >= obj_size && mp->size >= obj_num) {
1498                 DRV_LOG(DEBUG, "port %u mempool %s is being reused",
1499                         dev->data->port_id, mp->name);
1500                 /* Reuse. */
1501                 goto exit;
1502         } else if (mp != NULL) {
1503                 DRV_LOG(DEBUG, "port %u mempool %s should be resized, freeing it",
1504                         dev->data->port_id, mp->name);
1505                 /*
1506                  * If failed to free, which means it may be still in use, no way
1507                  * but to keep using the existing one. On buffer underrun,
1508                  * packets will be memcpy'd instead of external buffer
1509                  * attachment.
1510                  */
1511                 if (mlx5_mprq_free_mp(dev)) {
1512                         if (mp->elt_size >= obj_size)
1513                                 goto exit;
1514                         else
1515                                 return -rte_errno;
1516                 }
1517         }
1518         snprintf(name, sizeof(name), "port-%u-mprq", dev->data->port_id);
1519         mp = rte_mempool_create(name, obj_num, obj_size, MLX5_MPRQ_MP_CACHE_SZ,
1520                                 0, NULL, NULL, mlx5_mprq_buf_init,
1521                                 (void *)(uintptr_t)(1 << strd_num_n),
1522                                 dev->device->numa_node, 0);
1523         if (mp == NULL) {
1524                 DRV_LOG(ERR,
1525                         "port %u failed to allocate a mempool for"
1526                         " Multi-Packet RQ, count=%u, size=%u",
1527                         dev->data->port_id, obj_num, obj_size);
1528                 rte_errno = ENOMEM;
1529                 return -rte_errno;
1530         }
1531         priv->mprq_mp = mp;
1532 exit:
1533         /* Set mempool for each Rx queue. */
1534         for (i = 0; i != priv->rxqs_n; ++i) {
1535                 struct mlx5_rxq_data *rxq = (*priv->rxqs)[i];
1536
1537                 if (rxq == NULL)
1538                         continue;
1539                 rxq->mprq_mp = mp;
1540         }
1541         DRV_LOG(INFO, "port %u Multi-Packet RQ is configured",
1542                 dev->data->port_id);
1543         return 0;
1544 }
1545
1546 /**
1547  * Adjust the maximum LRO massage size.
1548  * LRO massage is contained in the MPRQ strides.
1549  * While the LRO massage size cannot be bigger than 65280 according to the
1550  * PRM, the strides which contain it may be bigger.
1551  * Adjust the maximum LRO massage size to avoid the above option.
1552  *
1553  * @param dev
1554  *   Pointer to Ethernet device.
1555  * @param strd_n
1556  *   Number of strides per WQE..
1557  * @param strd_sz
1558  *   The stride size.
1559  */
1560 static void
1561 mlx5_max_lro_msg_size_adjust(struct rte_eth_dev *dev, uint32_t strd_n,
1562                              uint32_t strd_sz)
1563 {
1564         struct mlx5_priv *priv = dev->data->dev_private;
1565         uint32_t max_buf_len = strd_sz * strd_n;
1566
1567         if (max_buf_len > (uint64_t)UINT16_MAX)
1568                 max_buf_len = RTE_ALIGN_FLOOR((uint32_t)UINT16_MAX, strd_sz);
1569         max_buf_len /= 256;
1570         max_buf_len = RTE_MIN(max_buf_len, (uint32_t)UINT8_MAX);
1571         assert(max_buf_len);
1572         if (priv->max_lro_msg_size)
1573                 priv->max_lro_msg_size =
1574                         RTE_MIN((uint32_t)priv->max_lro_msg_size, max_buf_len);
1575         else
1576                 priv->max_lro_msg_size = max_buf_len;
1577 }
1578
1579 /**
1580  * Create a DPDK Rx queue.
1581  *
1582  * @param dev
1583  *   Pointer to Ethernet device.
1584  * @param idx
1585  *   RX queue index.
1586  * @param desc
1587  *   Number of descriptors to configure in queue.
1588  * @param socket
1589  *   NUMA socket on which memory must be allocated.
1590  *
1591  * @return
1592  *   A DPDK queue object on success, NULL otherwise and rte_errno is set.
1593  */
1594 struct mlx5_rxq_ctrl *
1595 mlx5_rxq_new(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
1596              unsigned int socket, const struct rte_eth_rxconf *conf,
1597              struct rte_mempool *mp)
1598 {
1599         struct mlx5_priv *priv = dev->data->dev_private;
1600         struct mlx5_rxq_ctrl *tmpl;
1601         unsigned int mb_len = rte_pktmbuf_data_room_size(mp);
1602         unsigned int mprq_stride_size;
1603         struct mlx5_dev_config *config = &priv->config;
1604         /*
1605          * LRO packet may consume all the stride memory, hence we cannot
1606          * guaranty head-room. A new striding RQ feature may be added in CX6 DX
1607          * to allow head-room and tail-room for the LRO packets.
1608          */
1609         unsigned int strd_headroom_en = mlx5_lro_on(dev) ? 0 : 1;
1610         /*
1611          * Always allocate extra slots, even if eventually
1612          * the vector Rx will not be used.
1613          */
1614         uint16_t desc_n =
1615                 desc + config->rx_vec_en * MLX5_VPMD_DESCS_PER_LOOP;
1616         uint64_t offloads = conf->offloads |
1617                            dev->data->dev_conf.rxmode.offloads;
1618         const int mprq_en = mlx5_check_mprq_support(dev) > 0;
1619
1620         tmpl = rte_calloc_socket("RXQ", 1,
1621                                  sizeof(*tmpl) +
1622                                  desc_n * sizeof(struct rte_mbuf *),
1623                                  0, socket);
1624         if (!tmpl) {
1625                 rte_errno = ENOMEM;
1626                 return NULL;
1627         }
1628         if (mlx5_mr_btree_init(&tmpl->rxq.mr_ctrl.cache_bh,
1629                                MLX5_MR_BTREE_CACHE_N, socket)) {
1630                 /* rte_errno is already set. */
1631                 goto error;
1632         }
1633         tmpl->socket = socket;
1634         if (dev->data->dev_conf.intr_conf.rxq)
1635                 tmpl->irq = 1;
1636         /*
1637          * This Rx queue can be configured as a Multi-Packet RQ if all of the
1638          * following conditions are met:
1639          *  - MPRQ is enabled.
1640          *  - The number of descs is more than the number of strides.
1641          *  - max_rx_pkt_len plus overhead is less than the max size of a
1642          *    stride.
1643          *  Otherwise, enable Rx scatter if necessary.
1644          */
1645         assert(mb_len >= RTE_PKTMBUF_HEADROOM * strd_headroom_en);
1646         mprq_stride_size = dev->data->dev_conf.rxmode.max_rx_pkt_len +
1647                                 RTE_PKTMBUF_HEADROOM * strd_headroom_en;
1648         if (mprq_en &&
1649             desc > (1U << config->mprq.stride_num_n) &&
1650             mprq_stride_size <= (1U << config->mprq.max_stride_size_n)) {
1651                 /* TODO: Rx scatter isn't supported yet. */
1652                 tmpl->rxq.sges_n = 0;
1653                 /* Trim the number of descs needed. */
1654                 desc >>= config->mprq.stride_num_n;
1655                 tmpl->rxq.strd_num_n = config->mprq.stride_num_n;
1656                 tmpl->rxq.strd_sz_n = RTE_MAX(log2above(mprq_stride_size),
1657                                               config->mprq.min_stride_size_n);
1658                 tmpl->rxq.strd_shift_en = MLX5_MPRQ_TWO_BYTE_SHIFT;
1659                 tmpl->rxq.strd_headroom_en = strd_headroom_en;
1660                 tmpl->rxq.mprq_max_memcpy_len = RTE_MIN(mb_len -
1661                             RTE_PKTMBUF_HEADROOM, config->mprq.max_memcpy_len);
1662                 mlx5_max_lro_msg_size_adjust(dev, (1 << tmpl->rxq.strd_num_n),
1663                                              (1 << tmpl->rxq.strd_sz_n));
1664                 DRV_LOG(DEBUG,
1665                         "port %u Rx queue %u: Multi-Packet RQ is enabled"
1666                         " strd_num_n = %u, strd_sz_n = %u",
1667                         dev->data->port_id, idx,
1668                         tmpl->rxq.strd_num_n, tmpl->rxq.strd_sz_n);
1669         } else if (dev->data->dev_conf.rxmode.max_rx_pkt_len <=
1670                    (mb_len - RTE_PKTMBUF_HEADROOM)) {
1671                 tmpl->rxq.sges_n = 0;
1672         } else if (offloads & DEV_RX_OFFLOAD_SCATTER) {
1673                 unsigned int size =
1674                         RTE_PKTMBUF_HEADROOM +
1675                         dev->data->dev_conf.rxmode.max_rx_pkt_len;
1676                 unsigned int sges_n;
1677
1678                 /*
1679                  * Determine the number of SGEs needed for a full packet
1680                  * and round it to the next power of two.
1681                  */
1682                 sges_n = log2above((size / mb_len) + !!(size % mb_len));
1683                 tmpl->rxq.sges_n = sges_n;
1684                 /* Make sure rxq.sges_n did not overflow. */
1685                 size = mb_len * (1 << tmpl->rxq.sges_n);
1686                 size -= RTE_PKTMBUF_HEADROOM;
1687                 if (size < dev->data->dev_conf.rxmode.max_rx_pkt_len) {
1688                         DRV_LOG(ERR,
1689                                 "port %u too many SGEs (%u) needed to handle"
1690                                 " requested maximum packet size %u",
1691                                 dev->data->port_id,
1692                                 1 << sges_n,
1693                                 dev->data->dev_conf.rxmode.max_rx_pkt_len);
1694                         rte_errno = EOVERFLOW;
1695                         goto error;
1696                 }
1697         } else {
1698                 DRV_LOG(WARNING,
1699                         "port %u the requested maximum Rx packet size (%u) is"
1700                         " larger than a single mbuf (%u) and scattered mode has"
1701                         " not been requested",
1702                         dev->data->port_id,
1703                         dev->data->dev_conf.rxmode.max_rx_pkt_len,
1704                         mb_len - RTE_PKTMBUF_HEADROOM);
1705         }
1706         if (mprq_en && !mlx5_rxq_mprq_enabled(&tmpl->rxq))
1707                 DRV_LOG(WARNING,
1708                         "port %u MPRQ is requested but cannot be enabled"
1709                         " (requested: desc = %u, stride_sz = %u,"
1710                         " supported: min_stride_num = %u, max_stride_sz = %u).",
1711                         dev->data->port_id, desc, mprq_stride_size,
1712                         (1 << config->mprq.stride_num_n),
1713                         (1 << config->mprq.max_stride_size_n));
1714         DRV_LOG(DEBUG, "port %u maximum number of segments per packet: %u",
1715                 dev->data->port_id, 1 << tmpl->rxq.sges_n);
1716         if (desc % (1 << tmpl->rxq.sges_n)) {
1717                 DRV_LOG(ERR,
1718                         "port %u number of Rx queue descriptors (%u) is not a"
1719                         " multiple of SGEs per packet (%u)",
1720                         dev->data->port_id,
1721                         desc,
1722                         1 << tmpl->rxq.sges_n);
1723                 rte_errno = EINVAL;
1724                 goto error;
1725         }
1726         /* Toggle RX checksum offload if hardware supports it. */
1727         tmpl->rxq.csum = !!(offloads & DEV_RX_OFFLOAD_CHECKSUM);
1728         tmpl->rxq.hw_timestamp = !!(offloads & DEV_RX_OFFLOAD_TIMESTAMP);
1729         /* Configure VLAN stripping. */
1730         tmpl->rxq.vlan_strip = !!(offloads & DEV_RX_OFFLOAD_VLAN_STRIP);
1731         /* By default, FCS (CRC) is stripped by hardware. */
1732         tmpl->rxq.crc_present = 0;
1733         if (offloads & DEV_RX_OFFLOAD_KEEP_CRC) {
1734                 if (config->hw_fcs_strip) {
1735                         /*
1736                          * RQs used for LRO-enabled TIRs should not be
1737                          * configured to scatter the FCS.
1738                          */
1739                         if (mlx5_lro_on(dev))
1740                                 DRV_LOG(WARNING,
1741                                         "port %u CRC stripping has been "
1742                                         "disabled but will still be performed "
1743                                         "by hardware, because LRO is enabled",
1744                                         dev->data->port_id);
1745                         else
1746                                 tmpl->rxq.crc_present = 1;
1747                 } else {
1748                         DRV_LOG(WARNING,
1749                                 "port %u CRC stripping has been disabled but will"
1750                                 " still be performed by hardware, make sure MLNX_OFED"
1751                                 " and firmware are up to date",
1752                                 dev->data->port_id);
1753                 }
1754         }
1755         DRV_LOG(DEBUG,
1756                 "port %u CRC stripping is %s, %u bytes will be subtracted from"
1757                 " incoming frames to hide it",
1758                 dev->data->port_id,
1759                 tmpl->rxq.crc_present ? "disabled" : "enabled",
1760                 tmpl->rxq.crc_present << 2);
1761         /* Save port ID. */
1762         tmpl->rxq.rss_hash = !!priv->rss_conf.rss_hf &&
1763                 (!!(dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS));
1764         tmpl->rxq.port_id = dev->data->port_id;
1765         tmpl->priv = priv;
1766         tmpl->rxq.mp = mp;
1767         tmpl->rxq.elts_n = log2above(desc);
1768         tmpl->rxq.rq_repl_thresh =
1769                 MLX5_VPMD_RXQ_RPLNSH_THRESH(1 << tmpl->rxq.elts_n);
1770         tmpl->rxq.elts =
1771                 (struct rte_mbuf *(*)[1 << tmpl->rxq.elts_n])(tmpl + 1);
1772 #ifndef RTE_ARCH_64
1773         tmpl->rxq.uar_lock_cq = &priv->uar_lock_cq;
1774 #endif
1775         tmpl->rxq.idx = idx;
1776         rte_atomic32_inc(&tmpl->refcnt);
1777         LIST_INSERT_HEAD(&priv->rxqsctrl, tmpl, next);
1778         return tmpl;
1779 error:
1780         rte_free(tmpl);
1781         return NULL;
1782 }
1783
1784 /**
1785  * Get a Rx queue.
1786  *
1787  * @param dev
1788  *   Pointer to Ethernet device.
1789  * @param idx
1790  *   RX queue index.
1791  *
1792  * @return
1793  *   A pointer to the queue if it exists, NULL otherwise.
1794  */
1795 struct mlx5_rxq_ctrl *
1796 mlx5_rxq_get(struct rte_eth_dev *dev, uint16_t idx)
1797 {
1798         struct mlx5_priv *priv = dev->data->dev_private;
1799         struct mlx5_rxq_ctrl *rxq_ctrl = NULL;
1800
1801         if ((*priv->rxqs)[idx]) {
1802                 rxq_ctrl = container_of((*priv->rxqs)[idx],
1803                                         struct mlx5_rxq_ctrl,
1804                                         rxq);
1805                 mlx5_rxq_obj_get(dev, idx);
1806                 rte_atomic32_inc(&rxq_ctrl->refcnt);
1807         }
1808         return rxq_ctrl;
1809 }
1810
1811 /**
1812  * Release a Rx queue.
1813  *
1814  * @param dev
1815  *   Pointer to Ethernet device.
1816  * @param idx
1817  *   RX queue index.
1818  *
1819  * @return
1820  *   1 while a reference on it exists, 0 when freed.
1821  */
1822 int
1823 mlx5_rxq_release(struct rte_eth_dev *dev, uint16_t idx)
1824 {
1825         struct mlx5_priv *priv = dev->data->dev_private;
1826         struct mlx5_rxq_ctrl *rxq_ctrl;
1827
1828         if (!(*priv->rxqs)[idx])
1829                 return 0;
1830         rxq_ctrl = container_of((*priv->rxqs)[idx], struct mlx5_rxq_ctrl, rxq);
1831         assert(rxq_ctrl->priv);
1832         if (rxq_ctrl->obj && !mlx5_rxq_obj_release(rxq_ctrl->obj))
1833                 rxq_ctrl->obj = NULL;
1834         if (rte_atomic32_dec_and_test(&rxq_ctrl->refcnt)) {
1835                 if (rxq_ctrl->dbr_umem_id_valid)
1836                         claim_zero(mlx5_release_dbr(dev, rxq_ctrl->dbr_umem_id,
1837                                                     rxq_ctrl->dbr_offset));
1838                 mlx5_mr_btree_free(&rxq_ctrl->rxq.mr_ctrl.cache_bh);
1839                 LIST_REMOVE(rxq_ctrl, next);
1840                 rte_free(rxq_ctrl);
1841                 (*priv->rxqs)[idx] = NULL;
1842                 return 0;
1843         }
1844         return 1;
1845 }
1846
1847 /**
1848  * Verify the Rx Queue list is empty
1849  *
1850  * @param dev
1851  *   Pointer to Ethernet device.
1852  *
1853  * @return
1854  *   The number of object not released.
1855  */
1856 int
1857 mlx5_rxq_verify(struct rte_eth_dev *dev)
1858 {
1859         struct mlx5_priv *priv = dev->data->dev_private;
1860         struct mlx5_rxq_ctrl *rxq_ctrl;
1861         int ret = 0;
1862
1863         LIST_FOREACH(rxq_ctrl, &priv->rxqsctrl, next) {
1864                 DRV_LOG(DEBUG, "port %u Rx Queue %u still referenced",
1865                         dev->data->port_id, rxq_ctrl->rxq.idx);
1866                 ++ret;
1867         }
1868         return ret;
1869 }
1870
1871 /**
1872  * Create an indirection table.
1873  *
1874  * @param dev
1875  *   Pointer to Ethernet device.
1876  * @param queues
1877  *   Queues entering in the indirection table.
1878  * @param queues_n
1879  *   Number of queues in the array.
1880  *
1881  * @return
1882  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
1883  */
1884 static struct mlx5_ind_table_obj *
1885 mlx5_ind_table_obj_new(struct rte_eth_dev *dev, const uint16_t *queues,
1886                        uint32_t queues_n, enum mlx5_ind_tbl_type type)
1887 {
1888         struct mlx5_priv *priv = dev->data->dev_private;
1889         struct mlx5_ind_table_obj *ind_tbl;
1890         unsigned int i = 0, j = 0, k = 0;
1891
1892         ind_tbl = rte_calloc(__func__, 1, sizeof(*ind_tbl) +
1893                              queues_n * sizeof(uint16_t), 0);
1894         if (!ind_tbl) {
1895                 rte_errno = ENOMEM;
1896                 return NULL;
1897         }
1898         ind_tbl->type = type;
1899         if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV) {
1900                 const unsigned int wq_n = rte_is_power_of_2(queues_n) ?
1901                         log2above(queues_n) :
1902                         log2above(priv->config.ind_table_max_size);
1903                 struct ibv_wq *wq[1 << wq_n];
1904
1905                 for (i = 0; i != queues_n; ++i) {
1906                         struct mlx5_rxq_ctrl *rxq = mlx5_rxq_get(dev,
1907                                                                  queues[i]);
1908                         if (!rxq)
1909                                 goto error;
1910                         wq[i] = rxq->obj->wq;
1911                         ind_tbl->queues[i] = queues[i];
1912                 }
1913                 ind_tbl->queues_n = queues_n;
1914                 /* Finalise indirection table. */
1915                 k = i; /* Retain value of i for use in error case. */
1916                 for (j = 0; k != (unsigned int)(1 << wq_n); ++k, ++j)
1917                         wq[k] = wq[j];
1918                 ind_tbl->ind_table = mlx5_glue->create_rwq_ind_table
1919                         (priv->sh->ctx,
1920                          &(struct ibv_rwq_ind_table_init_attr){
1921                                 .log_ind_tbl_size = wq_n,
1922                                 .ind_tbl = wq,
1923                                 .comp_mask = 0,
1924                         });
1925                 if (!ind_tbl->ind_table) {
1926                         rte_errno = errno;
1927                         goto error;
1928                 }
1929         } else { /* ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX */
1930                 struct mlx5_devx_rqt_attr *rqt_attr = NULL;
1931
1932                 rqt_attr = rte_calloc(__func__, 1, sizeof(*rqt_attr) +
1933                                       queues_n * sizeof(uint16_t), 0);
1934                 if (!rqt_attr) {
1935                         DRV_LOG(ERR, "port %u cannot allocate RQT resources",
1936                                 dev->data->port_id);
1937                         rte_errno = ENOMEM;
1938                         goto error;
1939                 }
1940                 rqt_attr->rqt_max_size = priv->config.ind_table_max_size;
1941                 rqt_attr->rqt_actual_size = queues_n;
1942                 for (i = 0; i != queues_n; ++i) {
1943                         struct mlx5_rxq_ctrl *rxq = mlx5_rxq_get(dev,
1944                                                                  queues[i]);
1945                         if (!rxq)
1946                                 goto error;
1947                         rqt_attr->rq_list[i] = rxq->obj->rq->id;
1948                         ind_tbl->queues[i] = queues[i];
1949                 }
1950                 ind_tbl->rqt = mlx5_devx_cmd_create_rqt(priv->sh->ctx,
1951                                                         rqt_attr);
1952                 rte_free(rqt_attr);
1953                 if (!ind_tbl->rqt) {
1954                         DRV_LOG(ERR, "port %u cannot create DevX RQT",
1955                                 dev->data->port_id);
1956                         rte_errno = errno;
1957                         goto error;
1958                 }
1959                 ind_tbl->queues_n = queues_n;
1960         }
1961         rte_atomic32_inc(&ind_tbl->refcnt);
1962         LIST_INSERT_HEAD(&priv->ind_tbls, ind_tbl, next);
1963         return ind_tbl;
1964 error:
1965         for (j = 0; j < i; j++)
1966                 mlx5_rxq_release(dev, ind_tbl->queues[j]);
1967         rte_free(ind_tbl);
1968         DEBUG("port %u cannot create indirection table", dev->data->port_id);
1969         return NULL;
1970 }
1971
1972 /**
1973  * Get an indirection table.
1974  *
1975  * @param dev
1976  *   Pointer to Ethernet device.
1977  * @param queues
1978  *   Queues entering in the indirection table.
1979  * @param queues_n
1980  *   Number of queues in the array.
1981  *
1982  * @return
1983  *   An indirection table if found.
1984  */
1985 static struct mlx5_ind_table_obj *
1986 mlx5_ind_table_obj_get(struct rte_eth_dev *dev, const uint16_t *queues,
1987                        uint32_t queues_n)
1988 {
1989         struct mlx5_priv *priv = dev->data->dev_private;
1990         struct mlx5_ind_table_obj *ind_tbl;
1991
1992         LIST_FOREACH(ind_tbl, &priv->ind_tbls, next) {
1993                 if ((ind_tbl->queues_n == queues_n) &&
1994                     (memcmp(ind_tbl->queues, queues,
1995                             ind_tbl->queues_n * sizeof(ind_tbl->queues[0]))
1996                      == 0))
1997                         break;
1998         }
1999         if (ind_tbl) {
2000                 unsigned int i;
2001
2002                 rte_atomic32_inc(&ind_tbl->refcnt);
2003                 for (i = 0; i != ind_tbl->queues_n; ++i)
2004                         mlx5_rxq_get(dev, ind_tbl->queues[i]);
2005         }
2006         return ind_tbl;
2007 }
2008
2009 /**
2010  * Release an indirection table.
2011  *
2012  * @param dev
2013  *   Pointer to Ethernet device.
2014  * @param ind_table
2015  *   Indirection table to release.
2016  *
2017  * @return
2018  *   1 while a reference on it exists, 0 when freed.
2019  */
2020 static int
2021 mlx5_ind_table_obj_release(struct rte_eth_dev *dev,
2022                            struct mlx5_ind_table_obj *ind_tbl)
2023 {
2024         unsigned int i;
2025
2026         if (rte_atomic32_dec_and_test(&ind_tbl->refcnt)) {
2027                 if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV)
2028                         claim_zero(mlx5_glue->destroy_rwq_ind_table
2029                                                         (ind_tbl->ind_table));
2030                 else if (ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX)
2031                         claim_zero(mlx5_devx_cmd_destroy(ind_tbl->rqt));
2032         }
2033         for (i = 0; i != ind_tbl->queues_n; ++i)
2034                 claim_nonzero(mlx5_rxq_release(dev, ind_tbl->queues[i]));
2035         if (!rte_atomic32_read(&ind_tbl->refcnt)) {
2036                 LIST_REMOVE(ind_tbl, next);
2037                 rte_free(ind_tbl);
2038                 return 0;
2039         }
2040         return 1;
2041 }
2042
2043 /**
2044  * Verify the Rx Queue list is empty
2045  *
2046  * @param dev
2047  *   Pointer to Ethernet device.
2048  *
2049  * @return
2050  *   The number of object not released.
2051  */
2052 int
2053 mlx5_ind_table_obj_verify(struct rte_eth_dev *dev)
2054 {
2055         struct mlx5_priv *priv = dev->data->dev_private;
2056         struct mlx5_ind_table_obj *ind_tbl;
2057         int ret = 0;
2058
2059         LIST_FOREACH(ind_tbl, &priv->ind_tbls, next) {
2060                 DRV_LOG(DEBUG,
2061                         "port %u indirection table obj %p still referenced",
2062                         dev->data->port_id, (void *)ind_tbl);
2063                 ++ret;
2064         }
2065         return ret;
2066 }
2067
2068 /**
2069  * Create an Rx Hash queue.
2070  *
2071  * @param dev
2072  *   Pointer to Ethernet device.
2073  * @param rss_key
2074  *   RSS key for the Rx hash queue.
2075  * @param rss_key_len
2076  *   RSS key length.
2077  * @param hash_fields
2078  *   Verbs protocol hash field to make the RSS on.
2079  * @param queues
2080  *   Queues entering in hash queue. In case of empty hash_fields only the
2081  *   first queue index will be taken for the indirection table.
2082  * @param queues_n
2083  *   Number of queues.
2084  * @param tunnel
2085  *   Tunnel type.
2086  * @param lro
2087  *   Flow rule is relevant for LRO, i.e. contains IPv4/IPv6 and TCP.
2088  *
2089  * @return
2090  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2091  */
2092 struct mlx5_hrxq *
2093 mlx5_hrxq_new(struct rte_eth_dev *dev,
2094               const uint8_t *rss_key, uint32_t rss_key_len,
2095               uint64_t hash_fields,
2096               const uint16_t *queues, uint32_t queues_n,
2097               int tunnel __rte_unused, int lro)
2098 {
2099         struct mlx5_priv *priv = dev->data->dev_private;
2100         struct mlx5_hrxq *hrxq;
2101         struct ibv_qp *qp = NULL;
2102         struct mlx5_ind_table_obj *ind_tbl;
2103         int err;
2104         struct mlx5_devx_obj *tir = NULL;
2105
2106         queues_n = hash_fields ? queues_n : 1;
2107         ind_tbl = mlx5_ind_table_obj_get(dev, queues, queues_n);
2108         if (!ind_tbl) {
2109                 struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[queues[0]];
2110                 struct mlx5_rxq_ctrl *rxq_ctrl =
2111                         container_of(rxq_data, struct mlx5_rxq_ctrl, rxq);
2112                 enum mlx5_ind_tbl_type type;
2113
2114                 type = rxq_ctrl->obj->type == MLX5_RXQ_OBJ_TYPE_IBV ?
2115                                 MLX5_IND_TBL_TYPE_IBV : MLX5_IND_TBL_TYPE_DEVX;
2116                 ind_tbl = mlx5_ind_table_obj_new(dev, queues, queues_n, type);
2117         }
2118         if (!ind_tbl) {
2119                 rte_errno = ENOMEM;
2120                 return NULL;
2121         }
2122         if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV) {
2123 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
2124                 struct mlx5dv_qp_init_attr qp_init_attr;
2125
2126                 memset(&qp_init_attr, 0, sizeof(qp_init_attr));
2127                 if (tunnel) {
2128                         qp_init_attr.comp_mask =
2129                                 MLX5DV_QP_INIT_ATTR_MASK_QP_CREATE_FLAGS;
2130                         qp_init_attr.create_flags =
2131                                 MLX5DV_QP_CREATE_TUNNEL_OFFLOADS;
2132                 }
2133 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2134                 if (dev->data->dev_conf.lpbk_mode) {
2135                         /*
2136                          * Allow packet sent from NIC loop back
2137                          * w/o source MAC check.
2138                          */
2139                         qp_init_attr.comp_mask |=
2140                                 MLX5DV_QP_INIT_ATTR_MASK_QP_CREATE_FLAGS;
2141                         qp_init_attr.create_flags |=
2142                                 MLX5DV_QP_CREATE_TIR_ALLOW_SELF_LOOPBACK_UC;
2143                 }
2144 #endif
2145                 qp = mlx5_glue->dv_create_qp
2146                         (priv->sh->ctx,
2147                          &(struct ibv_qp_init_attr_ex){
2148                                 .qp_type = IBV_QPT_RAW_PACKET,
2149                                 .comp_mask =
2150                                         IBV_QP_INIT_ATTR_PD |
2151                                         IBV_QP_INIT_ATTR_IND_TABLE |
2152                                         IBV_QP_INIT_ATTR_RX_HASH,
2153                                 .rx_hash_conf = (struct ibv_rx_hash_conf){
2154                                         .rx_hash_function =
2155                                                 IBV_RX_HASH_FUNC_TOEPLITZ,
2156                                         .rx_hash_key_len = rss_key_len,
2157                                         .rx_hash_key =
2158                                                 (void *)(uintptr_t)rss_key,
2159                                         .rx_hash_fields_mask = hash_fields,
2160                                 },
2161                                 .rwq_ind_tbl = ind_tbl->ind_table,
2162                                 .pd = priv->sh->pd,
2163                           },
2164                           &qp_init_attr);
2165 #else
2166                 qp = mlx5_glue->create_qp_ex
2167                         (priv->sh->ctx,
2168                          &(struct ibv_qp_init_attr_ex){
2169                                 .qp_type = IBV_QPT_RAW_PACKET,
2170                                 .comp_mask =
2171                                         IBV_QP_INIT_ATTR_PD |
2172                                         IBV_QP_INIT_ATTR_IND_TABLE |
2173                                         IBV_QP_INIT_ATTR_RX_HASH,
2174                                 .rx_hash_conf = (struct ibv_rx_hash_conf){
2175                                         .rx_hash_function =
2176                                                 IBV_RX_HASH_FUNC_TOEPLITZ,
2177                                         .rx_hash_key_len = rss_key_len,
2178                                         .rx_hash_key =
2179                                                 (void *)(uintptr_t)rss_key,
2180                                         .rx_hash_fields_mask = hash_fields,
2181                                 },
2182                                 .rwq_ind_tbl = ind_tbl->ind_table,
2183                                 .pd = priv->sh->pd,
2184                          });
2185 #endif
2186                 if (!qp) {
2187                         rte_errno = errno;
2188                         goto error;
2189                 }
2190         } else { /* ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX */
2191                 struct mlx5_devx_tir_attr tir_attr;
2192
2193                 memset(&tir_attr, 0, sizeof(tir_attr));
2194                 tir_attr.disp_type = MLX5_TIRC_DISP_TYPE_INDIRECT;
2195                 tir_attr.rx_hash_fn = MLX5_RX_HASH_FN_TOEPLITZ;
2196                 memcpy(&tir_attr.rx_hash_field_selector_outer, &hash_fields,
2197                        sizeof(uint64_t));
2198                 tir_attr.transport_domain = priv->sh->tdn;
2199                 memcpy(tir_attr.rx_hash_toeplitz_key, rss_key, rss_key_len);
2200                 tir_attr.indirect_table = ind_tbl->rqt->id;
2201                 if (dev->data->dev_conf.lpbk_mode)
2202                         tir_attr.self_lb_block =
2203                                         MLX5_TIRC_SELF_LB_BLOCK_BLOCK_UNICAST;
2204                 if (lro) {
2205                         tir_attr.lro_timeout_period_usecs =
2206                                         priv->config.lro.timeout;
2207                         tir_attr.lro_max_msg_sz = priv->max_lro_msg_size;
2208                         tir_attr.lro_enable_mask = lro;
2209                 }
2210                 tir = mlx5_devx_cmd_create_tir(priv->sh->ctx, &tir_attr);
2211                 if (!tir) {
2212                         DRV_LOG(ERR, "port %u cannot create DevX TIR",
2213                                 dev->data->port_id);
2214                         rte_errno = errno;
2215                         goto error;
2216                 }
2217         }
2218         hrxq = rte_calloc(__func__, 1, sizeof(*hrxq) + rss_key_len, 0);
2219         if (!hrxq)
2220                 goto error;
2221         hrxq->ind_table = ind_tbl;
2222         if (ind_tbl->type == MLX5_IND_TBL_TYPE_IBV) {
2223                 hrxq->qp = qp;
2224 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2225                 hrxq->action =
2226                         mlx5_glue->dv_create_flow_action_dest_ibv_qp(hrxq->qp);
2227                 if (!hrxq->action) {
2228                         rte_errno = errno;
2229                         goto error;
2230                 }
2231 #endif
2232         } else { /* ind_tbl->type == MLX5_IND_TBL_TYPE_DEVX */
2233                 hrxq->tir = tir;
2234 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2235                 hrxq->action = mlx5_glue->dv_create_flow_action_dest_devx_tir
2236                                                         (hrxq->tir->obj);
2237                 if (!hrxq->action) {
2238                         rte_errno = errno;
2239                         goto error;
2240                 }
2241 #endif
2242         }
2243         hrxq->rss_key_len = rss_key_len;
2244         hrxq->hash_fields = hash_fields;
2245         memcpy(hrxq->rss_key, rss_key, rss_key_len);
2246         rte_atomic32_inc(&hrxq->refcnt);
2247         LIST_INSERT_HEAD(&priv->hrxqs, hrxq, next);
2248         return hrxq;
2249 error:
2250         err = rte_errno; /* Save rte_errno before cleanup. */
2251         mlx5_ind_table_obj_release(dev, ind_tbl);
2252         if (qp)
2253                 claim_zero(mlx5_glue->destroy_qp(qp));
2254         else if (tir)
2255                 claim_zero(mlx5_devx_cmd_destroy(tir));
2256         rte_errno = err; /* Restore rte_errno. */
2257         return NULL;
2258 }
2259
2260 /**
2261  * Get an Rx Hash queue.
2262  *
2263  * @param dev
2264  *   Pointer to Ethernet device.
2265  * @param rss_conf
2266  *   RSS configuration for the Rx hash queue.
2267  * @param queues
2268  *   Queues entering in hash queue. In case of empty hash_fields only the
2269  *   first queue index will be taken for the indirection table.
2270  * @param queues_n
2271  *   Number of queues.
2272  *
2273  * @return
2274  *   An hash Rx queue on success.
2275  */
2276 struct mlx5_hrxq *
2277 mlx5_hrxq_get(struct rte_eth_dev *dev,
2278               const uint8_t *rss_key, uint32_t rss_key_len,
2279               uint64_t hash_fields,
2280               const uint16_t *queues, uint32_t queues_n)
2281 {
2282         struct mlx5_priv *priv = dev->data->dev_private;
2283         struct mlx5_hrxq *hrxq;
2284
2285         queues_n = hash_fields ? queues_n : 1;
2286         LIST_FOREACH(hrxq, &priv->hrxqs, next) {
2287                 struct mlx5_ind_table_obj *ind_tbl;
2288
2289                 if (hrxq->rss_key_len != rss_key_len)
2290                         continue;
2291                 if (memcmp(hrxq->rss_key, rss_key, rss_key_len))
2292                         continue;
2293                 if (hrxq->hash_fields != hash_fields)
2294                         continue;
2295                 ind_tbl = mlx5_ind_table_obj_get(dev, queues, queues_n);
2296                 if (!ind_tbl)
2297                         continue;
2298                 if (ind_tbl != hrxq->ind_table) {
2299                         mlx5_ind_table_obj_release(dev, ind_tbl);
2300                         continue;
2301                 }
2302                 rte_atomic32_inc(&hrxq->refcnt);
2303                 return hrxq;
2304         }
2305         return NULL;
2306 }
2307
2308 /**
2309  * Release the hash Rx queue.
2310  *
2311  * @param dev
2312  *   Pointer to Ethernet device.
2313  * @param hrxq
2314  *   Pointer to Hash Rx queue to release.
2315  *
2316  * @return
2317  *   1 while a reference on it exists, 0 when freed.
2318  */
2319 int
2320 mlx5_hrxq_release(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq)
2321 {
2322         if (rte_atomic32_dec_and_test(&hrxq->refcnt)) {
2323 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2324                 mlx5_glue->destroy_flow_action(hrxq->action);
2325 #endif
2326                 if (hrxq->ind_table->type == MLX5_IND_TBL_TYPE_IBV)
2327                         claim_zero(mlx5_glue->destroy_qp(hrxq->qp));
2328                 else /* hrxq->ind_table->type == MLX5_IND_TBL_TYPE_DEVX */
2329                         claim_zero(mlx5_devx_cmd_destroy(hrxq->tir));
2330                 mlx5_ind_table_obj_release(dev, hrxq->ind_table);
2331                 LIST_REMOVE(hrxq, next);
2332                 rte_free(hrxq);
2333                 return 0;
2334         }
2335         claim_nonzero(mlx5_ind_table_obj_release(dev, hrxq->ind_table));
2336         return 1;
2337 }
2338
2339 /**
2340  * Verify the Rx Queue list is empty
2341  *
2342  * @param dev
2343  *   Pointer to Ethernet device.
2344  *
2345  * @return
2346  *   The number of object not released.
2347  */
2348 int
2349 mlx5_hrxq_verify(struct rte_eth_dev *dev)
2350 {
2351         struct mlx5_priv *priv = dev->data->dev_private;
2352         struct mlx5_hrxq *hrxq;
2353         int ret = 0;
2354
2355         LIST_FOREACH(hrxq, &priv->hrxqs, next) {
2356                 DRV_LOG(DEBUG,
2357                         "port %u hash Rx queue %p still referenced",
2358                         dev->data->port_id, (void *)hrxq);
2359                 ++ret;
2360         }
2361         return ret;
2362 }
2363
2364 /**
2365  * Create a drop Rx queue Verbs/DevX object.
2366  *
2367  * @param dev
2368  *   Pointer to Ethernet device.
2369  *
2370  * @return
2371  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2372  */
2373 static struct mlx5_rxq_obj *
2374 mlx5_rxq_obj_drop_new(struct rte_eth_dev *dev)
2375 {
2376         struct mlx5_priv *priv = dev->data->dev_private;
2377         struct ibv_context *ctx = priv->sh->ctx;
2378         struct ibv_cq *cq;
2379         struct ibv_wq *wq = NULL;
2380         struct mlx5_rxq_obj *rxq;
2381
2382         if (priv->drop_queue.rxq)
2383                 return priv->drop_queue.rxq;
2384         cq = mlx5_glue->create_cq(ctx, 1, NULL, NULL, 0);
2385         if (!cq) {
2386                 DEBUG("port %u cannot allocate CQ for drop queue",
2387                       dev->data->port_id);
2388                 rte_errno = errno;
2389                 goto error;
2390         }
2391         wq = mlx5_glue->create_wq(ctx,
2392                  &(struct ibv_wq_init_attr){
2393                         .wq_type = IBV_WQT_RQ,
2394                         .max_wr = 1,
2395                         .max_sge = 1,
2396                         .pd = priv->sh->pd,
2397                         .cq = cq,
2398                  });
2399         if (!wq) {
2400                 DEBUG("port %u cannot allocate WQ for drop queue",
2401                       dev->data->port_id);
2402                 rte_errno = errno;
2403                 goto error;
2404         }
2405         rxq = rte_calloc(__func__, 1, sizeof(*rxq), 0);
2406         if (!rxq) {
2407                 DEBUG("port %u cannot allocate drop Rx queue memory",
2408                       dev->data->port_id);
2409                 rte_errno = ENOMEM;
2410                 goto error;
2411         }
2412         rxq->cq = cq;
2413         rxq->wq = wq;
2414         priv->drop_queue.rxq = rxq;
2415         return rxq;
2416 error:
2417         if (wq)
2418                 claim_zero(mlx5_glue->destroy_wq(wq));
2419         if (cq)
2420                 claim_zero(mlx5_glue->destroy_cq(cq));
2421         return NULL;
2422 }
2423
2424 /**
2425  * Release a drop Rx queue Verbs/DevX object.
2426  *
2427  * @param dev
2428  *   Pointer to Ethernet device.
2429  *
2430  * @return
2431  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2432  */
2433 static void
2434 mlx5_rxq_obj_drop_release(struct rte_eth_dev *dev)
2435 {
2436         struct mlx5_priv *priv = dev->data->dev_private;
2437         struct mlx5_rxq_obj *rxq = priv->drop_queue.rxq;
2438
2439         if (rxq->wq)
2440                 claim_zero(mlx5_glue->destroy_wq(rxq->wq));
2441         if (rxq->cq)
2442                 claim_zero(mlx5_glue->destroy_cq(rxq->cq));
2443         rte_free(rxq);
2444         priv->drop_queue.rxq = NULL;
2445 }
2446
2447 /**
2448  * Create a drop indirection table.
2449  *
2450  * @param dev
2451  *   Pointer to Ethernet device.
2452  *
2453  * @return
2454  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2455  */
2456 static struct mlx5_ind_table_obj *
2457 mlx5_ind_table_obj_drop_new(struct rte_eth_dev *dev)
2458 {
2459         struct mlx5_priv *priv = dev->data->dev_private;
2460         struct mlx5_ind_table_obj *ind_tbl;
2461         struct mlx5_rxq_obj *rxq;
2462         struct mlx5_ind_table_obj tmpl;
2463
2464         rxq = mlx5_rxq_obj_drop_new(dev);
2465         if (!rxq)
2466                 return NULL;
2467         tmpl.ind_table = mlx5_glue->create_rwq_ind_table
2468                 (priv->sh->ctx,
2469                  &(struct ibv_rwq_ind_table_init_attr){
2470                         .log_ind_tbl_size = 0,
2471                         .ind_tbl = &rxq->wq,
2472                         .comp_mask = 0,
2473                  });
2474         if (!tmpl.ind_table) {
2475                 DEBUG("port %u cannot allocate indirection table for drop"
2476                       " queue",
2477                       dev->data->port_id);
2478                 rte_errno = errno;
2479                 goto error;
2480         }
2481         ind_tbl = rte_calloc(__func__, 1, sizeof(*ind_tbl), 0);
2482         if (!ind_tbl) {
2483                 rte_errno = ENOMEM;
2484                 goto error;
2485         }
2486         ind_tbl->ind_table = tmpl.ind_table;
2487         return ind_tbl;
2488 error:
2489         mlx5_rxq_obj_drop_release(dev);
2490         return NULL;
2491 }
2492
2493 /**
2494  * Release a drop indirection table.
2495  *
2496  * @param dev
2497  *   Pointer to Ethernet device.
2498  */
2499 static void
2500 mlx5_ind_table_obj_drop_release(struct rte_eth_dev *dev)
2501 {
2502         struct mlx5_priv *priv = dev->data->dev_private;
2503         struct mlx5_ind_table_obj *ind_tbl = priv->drop_queue.hrxq->ind_table;
2504
2505         claim_zero(mlx5_glue->destroy_rwq_ind_table(ind_tbl->ind_table));
2506         mlx5_rxq_obj_drop_release(dev);
2507         rte_free(ind_tbl);
2508         priv->drop_queue.hrxq->ind_table = NULL;
2509 }
2510
2511 /**
2512  * Create a drop Rx Hash queue.
2513  *
2514  * @param dev
2515  *   Pointer to Ethernet device.
2516  *
2517  * @return
2518  *   The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
2519  */
2520 struct mlx5_hrxq *
2521 mlx5_hrxq_drop_new(struct rte_eth_dev *dev)
2522 {
2523         struct mlx5_priv *priv = dev->data->dev_private;
2524         struct mlx5_ind_table_obj *ind_tbl;
2525         struct ibv_qp *qp;
2526         struct mlx5_hrxq *hrxq;
2527
2528         if (priv->drop_queue.hrxq) {
2529                 rte_atomic32_inc(&priv->drop_queue.hrxq->refcnt);
2530                 return priv->drop_queue.hrxq;
2531         }
2532         ind_tbl = mlx5_ind_table_obj_drop_new(dev);
2533         if (!ind_tbl)
2534                 return NULL;
2535         qp = mlx5_glue->create_qp_ex(priv->sh->ctx,
2536                  &(struct ibv_qp_init_attr_ex){
2537                         .qp_type = IBV_QPT_RAW_PACKET,
2538                         .comp_mask =
2539                                 IBV_QP_INIT_ATTR_PD |
2540                                 IBV_QP_INIT_ATTR_IND_TABLE |
2541                                 IBV_QP_INIT_ATTR_RX_HASH,
2542                         .rx_hash_conf = (struct ibv_rx_hash_conf){
2543                                 .rx_hash_function =
2544                                         IBV_RX_HASH_FUNC_TOEPLITZ,
2545                                 .rx_hash_key_len = MLX5_RSS_HASH_KEY_LEN,
2546                                 .rx_hash_key = rss_hash_default_key,
2547                                 .rx_hash_fields_mask = 0,
2548                                 },
2549                         .rwq_ind_tbl = ind_tbl->ind_table,
2550                         .pd = priv->sh->pd
2551                  });
2552         if (!qp) {
2553                 DEBUG("port %u cannot allocate QP for drop queue",
2554                       dev->data->port_id);
2555                 rte_errno = errno;
2556                 goto error;
2557         }
2558         hrxq = rte_calloc(__func__, 1, sizeof(*hrxq), 0);
2559         if (!hrxq) {
2560                 DRV_LOG(WARNING,
2561                         "port %u cannot allocate memory for drop queue",
2562                         dev->data->port_id);
2563                 rte_errno = ENOMEM;
2564                 goto error;
2565         }
2566         hrxq->ind_table = ind_tbl;
2567         hrxq->qp = qp;
2568 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2569         hrxq->action = mlx5_glue->dv_create_flow_action_dest_ibv_qp(hrxq->qp);
2570         if (!hrxq->action) {
2571                 rte_errno = errno;
2572                 goto error;
2573         }
2574 #endif
2575         priv->drop_queue.hrxq = hrxq;
2576         rte_atomic32_set(&hrxq->refcnt, 1);
2577         return hrxq;
2578 error:
2579         if (ind_tbl)
2580                 mlx5_ind_table_obj_drop_release(dev);
2581         return NULL;
2582 }
2583
2584 /**
2585  * Release a drop hash Rx queue.
2586  *
2587  * @param dev
2588  *   Pointer to Ethernet device.
2589  */
2590 void
2591 mlx5_hrxq_drop_release(struct rte_eth_dev *dev)
2592 {
2593         struct mlx5_priv *priv = dev->data->dev_private;
2594         struct mlx5_hrxq *hrxq = priv->drop_queue.hrxq;
2595
2596         if (rte_atomic32_dec_and_test(&hrxq->refcnt)) {
2597 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2598                 mlx5_glue->destroy_flow_action(hrxq->action);
2599 #endif
2600                 claim_zero(mlx5_glue->destroy_qp(hrxq->qp));
2601                 mlx5_ind_table_obj_drop_release(dev);
2602                 rte_free(hrxq);
2603                 priv->drop_queue.hrxq = NULL;
2604         }
2605 }