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