common/mlx5: remove redundant parameter in MR search
[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_mr.h>
25
26 #include "mlx5_defs.h"
27 #include "mlx5.h"
28 #include "mlx5_tx.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         void *cq_db_reg = (char *)rxq->cq_uar + MLX5_CQ_DOORBELL;
1175
1176         sq_n = sq_n_rxq & MLX5_CQ_SQN_MASK;
1177         doorbell_hi = sq_n << MLX5_CQ_SQN_OFFSET | (rxq->cq_ci & MLX5_CI_MASK);
1178         doorbell = (uint64_t)doorbell_hi << 32;
1179         doorbell |= rxq->cqn;
1180         rxq->cq_db[MLX5_CQ_ARM_DB] = rte_cpu_to_be_32(doorbell_hi);
1181         mlx5_uar_write64(rte_cpu_to_be_64(doorbell),
1182                          cq_db_reg, rxq->uar_lock_cq);
1183 }
1184
1185 /**
1186  * DPDK callback for Rx queue interrupt enable.
1187  *
1188  * @param dev
1189  *   Pointer to Ethernet device structure.
1190  * @param rx_queue_id
1191  *   Rx queue number.
1192  *
1193  * @return
1194  *   0 on success, a negative errno value otherwise and rte_errno is set.
1195  */
1196 int
1197 mlx5_rx_intr_enable(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1198 {
1199         struct mlx5_rxq_priv *rxq = mlx5_rxq_get(dev, rx_queue_id);
1200         if (!rxq)
1201                 goto error;
1202         if (rxq->ctrl->irq) {
1203                 if (!rxq->ctrl->obj)
1204                         goto error;
1205                 mlx5_arm_cq(&rxq->ctrl->rxq, rxq->ctrl->rxq.cq_arm_sn);
1206         }
1207         return 0;
1208 error:
1209         rte_errno = EINVAL;
1210         return -rte_errno;
1211 }
1212
1213 /**
1214  * DPDK callback for Rx queue interrupt disable.
1215  *
1216  * @param dev
1217  *   Pointer to Ethernet device structure.
1218  * @param rx_queue_id
1219  *   Rx queue number.
1220  *
1221  * @return
1222  *   0 on success, a negative errno value otherwise and rte_errno is set.
1223  */
1224 int
1225 mlx5_rx_intr_disable(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1226 {
1227         struct mlx5_priv *priv = dev->data->dev_private;
1228         struct mlx5_rxq_priv *rxq = mlx5_rxq_get(dev, rx_queue_id);
1229         int ret = 0;
1230
1231         if (!rxq) {
1232                 rte_errno = EINVAL;
1233                 return -rte_errno;
1234         }
1235         if (!rxq->ctrl->obj)
1236                 goto error;
1237         if (rxq->ctrl->irq) {
1238                 ret = priv->obj_ops.rxq_event_get(rxq->ctrl->obj);
1239                 if (ret < 0)
1240                         goto error;
1241                 rxq->ctrl->rxq.cq_arm_sn++;
1242         }
1243         return 0;
1244 error:
1245         /**
1246          * The ret variable may be EAGAIN which means the get_event function was
1247          * called before receiving one.
1248          */
1249         if (ret < 0)
1250                 rte_errno = errno;
1251         else
1252                 rte_errno = EINVAL;
1253         if (rte_errno != EAGAIN)
1254                 DRV_LOG(WARNING, "port %u unable to disable interrupt on Rx queue %d",
1255                         dev->data->port_id, rx_queue_id);
1256         return -rte_errno;
1257 }
1258
1259 /**
1260  * Verify the Rx queue objects list is empty
1261  *
1262  * @param dev
1263  *   Pointer to Ethernet device.
1264  *
1265  * @return
1266  *   The number of objects not released.
1267  */
1268 int
1269 mlx5_rxq_obj_verify(struct rte_eth_dev *dev)
1270 {
1271         struct mlx5_priv *priv = dev->data->dev_private;
1272         int ret = 0;
1273         struct mlx5_rxq_obj *rxq_obj;
1274
1275         LIST_FOREACH(rxq_obj, &priv->rxqsobj, next) {
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->mr_scache,
1464                                        priv->sh->cdev->pd, mp, &priv->mp_id);
1465         if (ret < 0 && rte_errno != EEXIST) {
1466                 ret = rte_errno;
1467                 DRV_LOG(ERR, "port %u failed to register a mempool for Multi-Packet RQ",
1468                         dev->data->port_id);
1469                 rte_mempool_free(mp);
1470                 rte_errno = ret;
1471                 return -rte_errno;
1472         }
1473         priv->mprq_mp = mp;
1474 exit:
1475         /* Set mempool for each Rx queue. */
1476         for (i = 0; i != priv->rxqs_n; ++i) {
1477                 struct mlx5_rxq_ctrl *rxq_ctrl = mlx5_rxq_ctrl_get(dev, i);
1478
1479                 if (rxq_ctrl == NULL ||
1480                     rxq_ctrl->type != MLX5_RXQ_TYPE_STANDARD)
1481                         continue;
1482                 rxq_ctrl->rxq.mprq_mp = mp;
1483         }
1484         DRV_LOG(INFO, "port %u Multi-Packet RQ is configured",
1485                 dev->data->port_id);
1486         return 0;
1487 }
1488
1489 #define MLX5_MAX_TCP_HDR_OFFSET ((unsigned int)(sizeof(struct rte_ether_hdr) + \
1490                                         sizeof(struct rte_vlan_hdr) * 2 + \
1491                                         sizeof(struct rte_ipv6_hdr)))
1492 #define MAX_TCP_OPTION_SIZE 40u
1493 #define MLX5_MAX_LRO_HEADER_FIX ((unsigned int)(MLX5_MAX_TCP_HDR_OFFSET + \
1494                                  sizeof(struct rte_tcp_hdr) + \
1495                                  MAX_TCP_OPTION_SIZE))
1496
1497 /**
1498  * Adjust the maximum LRO massage size.
1499  *
1500  * @param dev
1501  *   Pointer to Ethernet device.
1502  * @param idx
1503  *   RX queue index.
1504  * @param max_lro_size
1505  *   The maximum size for LRO packet.
1506  */
1507 static void
1508 mlx5_max_lro_msg_size_adjust(struct rte_eth_dev *dev, uint16_t idx,
1509                              uint32_t max_lro_size)
1510 {
1511         struct mlx5_priv *priv = dev->data->dev_private;
1512
1513         if (priv->config.hca_attr.lro_max_msg_sz_mode ==
1514             MLX5_LRO_MAX_MSG_SIZE_START_FROM_L4 && max_lro_size >
1515             MLX5_MAX_TCP_HDR_OFFSET)
1516                 max_lro_size -= MLX5_MAX_TCP_HDR_OFFSET;
1517         max_lro_size = RTE_MIN(max_lro_size, MLX5_MAX_LRO_SIZE);
1518         MLX5_ASSERT(max_lro_size >= MLX5_LRO_SEG_CHUNK_SIZE);
1519         max_lro_size /= MLX5_LRO_SEG_CHUNK_SIZE;
1520         if (priv->max_lro_msg_size)
1521                 priv->max_lro_msg_size =
1522                         RTE_MIN((uint32_t)priv->max_lro_msg_size, max_lro_size);
1523         else
1524                 priv->max_lro_msg_size = max_lro_size;
1525         DRV_LOG(DEBUG,
1526                 "port %u Rx Queue %u max LRO message size adjusted to %u bytes",
1527                 dev->data->port_id, idx,
1528                 priv->max_lro_msg_size * MLX5_LRO_SEG_CHUNK_SIZE);
1529 }
1530
1531 /**
1532  * Create a DPDK Rx queue.
1533  *
1534  * @param dev
1535  *   Pointer to Ethernet device.
1536  * @param rxq
1537  *   RX queue private data.
1538  * @param desc
1539  *   Number of descriptors to configure in queue.
1540  * @param socket
1541  *   NUMA socket on which memory must be allocated.
1542  *
1543  * @return
1544  *   A DPDK queue object on success, NULL otherwise and rte_errno is set.
1545  */
1546 struct mlx5_rxq_ctrl *
1547 mlx5_rxq_new(struct rte_eth_dev *dev, struct mlx5_rxq_priv *rxq,
1548              uint16_t desc,
1549              unsigned int socket, const struct rte_eth_rxconf *conf,
1550              const struct rte_eth_rxseg_split *rx_seg, uint16_t n_seg)
1551 {
1552         uint16_t idx = rxq->idx;
1553         struct mlx5_priv *priv = dev->data->dev_private;
1554         struct mlx5_rxq_ctrl *tmpl;
1555         unsigned int mb_len = rte_pktmbuf_data_room_size(rx_seg[0].mp);
1556         struct mlx5_dev_config *config = &priv->config;
1557         uint64_t offloads = conf->offloads |
1558                            dev->data->dev_conf.rxmode.offloads;
1559         unsigned int lro_on_queue = !!(offloads & RTE_ETH_RX_OFFLOAD_TCP_LRO);
1560         unsigned int max_rx_pktlen = lro_on_queue ?
1561                         dev->data->dev_conf.rxmode.max_lro_pkt_size :
1562                         dev->data->mtu + (unsigned int)RTE_ETHER_HDR_LEN +
1563                                 RTE_ETHER_CRC_LEN;
1564         unsigned int non_scatter_min_mbuf_size = max_rx_pktlen +
1565                                                         RTE_PKTMBUF_HEADROOM;
1566         unsigned int max_lro_size = 0;
1567         unsigned int first_mb_free_size = mb_len - RTE_PKTMBUF_HEADROOM;
1568         const int mprq_en = mlx5_check_mprq_support(dev) > 0 && n_seg == 1 &&
1569                             !rx_seg[0].offset && !rx_seg[0].length;
1570         unsigned int mprq_stride_nums = config->mprq.stride_num_n ?
1571                 config->mprq.stride_num_n : MLX5_MPRQ_STRIDE_NUM_N;
1572         unsigned int mprq_stride_size = non_scatter_min_mbuf_size <=
1573                 (1U << config->mprq.max_stride_size_n) ?
1574                 log2above(non_scatter_min_mbuf_size) : MLX5_MPRQ_STRIDE_SIZE_N;
1575         unsigned int mprq_stride_cap = (config->mprq.stride_num_n ?
1576                 (1U << config->mprq.stride_num_n) : (1U << mprq_stride_nums)) *
1577                 (config->mprq.stride_size_n ?
1578                 (1U << config->mprq.stride_size_n) : (1U << mprq_stride_size));
1579         /*
1580          * Always allocate extra slots, even if eventually
1581          * the vector Rx will not be used.
1582          */
1583         uint16_t desc_n = desc + config->rx_vec_en * MLX5_VPMD_DESCS_PER_LOOP;
1584         const struct rte_eth_rxseg_split *qs_seg = rx_seg;
1585         unsigned int tail_len;
1586
1587         tmpl = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO,
1588                 sizeof(*tmpl) + desc_n * sizeof(struct rte_mbuf *) +
1589                 (!!mprq_en) *
1590                 (desc >> mprq_stride_nums) * sizeof(struct mlx5_mprq_buf *),
1591                 0, socket);
1592         if (!tmpl) {
1593                 rte_errno = ENOMEM;
1594                 return NULL;
1595         }
1596         LIST_INIT(&tmpl->owners);
1597         if (conf->share_group > 0) {
1598                 tmpl->rxq.shared = 1;
1599                 tmpl->share_group = conf->share_group;
1600                 tmpl->share_qid = conf->share_qid;
1601                 LIST_INSERT_HEAD(&priv->sh->shared_rxqs, tmpl, share_entry);
1602         }
1603         rxq->ctrl = tmpl;
1604         LIST_INSERT_HEAD(&tmpl->owners, rxq, owner_entry);
1605         MLX5_ASSERT(n_seg && n_seg <= MLX5_MAX_RXQ_NSEG);
1606         /*
1607          * Build the array of actual buffer offsets and lengths.
1608          * Pad with the buffers from the last memory pool if
1609          * needed to handle max size packets, replace zero length
1610          * with the buffer length from the pool.
1611          */
1612         tail_len = max_rx_pktlen;
1613         do {
1614                 struct mlx5_eth_rxseg *hw_seg =
1615                                         &tmpl->rxq.rxseg[tmpl->rxq.rxseg_n];
1616                 uint32_t buf_len, offset, seg_len;
1617
1618                 /*
1619                  * For the buffers beyond descriptions offset is zero,
1620                  * the first buffer contains head room.
1621                  */
1622                 buf_len = rte_pktmbuf_data_room_size(qs_seg->mp);
1623                 offset = (tmpl->rxq.rxseg_n >= n_seg ? 0 : qs_seg->offset) +
1624                          (tmpl->rxq.rxseg_n ? 0 : RTE_PKTMBUF_HEADROOM);
1625                 /*
1626                  * For the buffers beyond descriptions the length is
1627                  * pool buffer length, zero lengths are replaced with
1628                  * pool buffer length either.
1629                  */
1630                 seg_len = tmpl->rxq.rxseg_n >= n_seg ? buf_len :
1631                                                        qs_seg->length ?
1632                                                        qs_seg->length :
1633                                                        (buf_len - offset);
1634                 /* Check is done in long int, now overflows. */
1635                 if (buf_len < seg_len + offset) {
1636                         DRV_LOG(ERR, "port %u Rx queue %u: Split offset/length "
1637                                      "%u/%u can't be satisfied",
1638                                      dev->data->port_id, idx,
1639                                      qs_seg->length, qs_seg->offset);
1640                         rte_errno = EINVAL;
1641                         goto error;
1642                 }
1643                 if (seg_len > tail_len)
1644                         seg_len = buf_len - offset;
1645                 if (++tmpl->rxq.rxseg_n > MLX5_MAX_RXQ_NSEG) {
1646                         DRV_LOG(ERR,
1647                                 "port %u too many SGEs (%u) needed to handle"
1648                                 " requested maximum packet size %u, the maximum"
1649                                 " supported are %u", dev->data->port_id,
1650                                 tmpl->rxq.rxseg_n, max_rx_pktlen,
1651                                 MLX5_MAX_RXQ_NSEG);
1652                         rte_errno = ENOTSUP;
1653                         goto error;
1654                 }
1655                 /* Build the actual scattering element in the queue object. */
1656                 hw_seg->mp = qs_seg->mp;
1657                 MLX5_ASSERT(offset <= UINT16_MAX);
1658                 MLX5_ASSERT(seg_len <= UINT16_MAX);
1659                 hw_seg->offset = (uint16_t)offset;
1660                 hw_seg->length = (uint16_t)seg_len;
1661                 /*
1662                  * Advance the segment descriptor, the padding is the based
1663                  * on the attributes of the last descriptor.
1664                  */
1665                 if (tmpl->rxq.rxseg_n < n_seg)
1666                         qs_seg++;
1667                 tail_len -= RTE_MIN(tail_len, seg_len);
1668         } while (tail_len || !rte_is_power_of_2(tmpl->rxq.rxseg_n));
1669         MLX5_ASSERT(tmpl->rxq.rxseg_n &&
1670                     tmpl->rxq.rxseg_n <= MLX5_MAX_RXQ_NSEG);
1671         if (tmpl->rxq.rxseg_n > 1 && !(offloads & RTE_ETH_RX_OFFLOAD_SCATTER)) {
1672                 DRV_LOG(ERR, "port %u Rx queue %u: Scatter offload is not"
1673                         " configured and no enough mbuf space(%u) to contain "
1674                         "the maximum RX packet length(%u) with head-room(%u)",
1675                         dev->data->port_id, idx, mb_len, max_rx_pktlen,
1676                         RTE_PKTMBUF_HEADROOM);
1677                 rte_errno = ENOSPC;
1678                 goto error;
1679         }
1680         tmpl->type = MLX5_RXQ_TYPE_STANDARD;
1681         if (mlx5_mr_ctrl_init(&tmpl->rxq.mr_ctrl, priv->sh->cdev, 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 #ifndef RTE_ARCH_64
1847         tmpl->rxq.uar_lock_cq = &priv->sh->uar_lock_cq;
1848 #endif
1849         tmpl->rxq.idx = idx;
1850         LIST_INSERT_HEAD(&priv->rxqsctrl, tmpl, next);
1851         return tmpl;
1852 error:
1853         mlx5_mr_btree_free(&tmpl->rxq.mr_ctrl.cache_bh);
1854         mlx5_free(tmpl);
1855         return NULL;
1856 }
1857
1858 /**
1859  * Create a DPDK Rx hairpin queue.
1860  *
1861  * @param dev
1862  *   Pointer to Ethernet device.
1863  * @param rxq
1864  *   RX queue.
1865  * @param desc
1866  *   Number of descriptors to configure in queue.
1867  * @param hairpin_conf
1868  *   The hairpin binding configuration.
1869  *
1870  * @return
1871  *   A DPDK queue object on success, NULL otherwise and rte_errno is set.
1872  */
1873 struct mlx5_rxq_ctrl *
1874 mlx5_rxq_hairpin_new(struct rte_eth_dev *dev, struct mlx5_rxq_priv *rxq,
1875                      uint16_t desc,
1876                      const struct rte_eth_hairpin_conf *hairpin_conf)
1877 {
1878         uint16_t idx = rxq->idx;
1879         struct mlx5_priv *priv = dev->data->dev_private;
1880         struct mlx5_rxq_ctrl *tmpl;
1881
1882         tmpl = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO, sizeof(*tmpl), 0,
1883                            SOCKET_ID_ANY);
1884         if (!tmpl) {
1885                 rte_errno = ENOMEM;
1886                 return NULL;
1887         }
1888         LIST_INIT(&tmpl->owners);
1889         rxq->ctrl = tmpl;
1890         LIST_INSERT_HEAD(&tmpl->owners, rxq, owner_entry);
1891         tmpl->type = MLX5_RXQ_TYPE_HAIRPIN;
1892         tmpl->socket = SOCKET_ID_ANY;
1893         tmpl->rxq.rss_hash = 0;
1894         tmpl->rxq.port_id = dev->data->port_id;
1895         tmpl->sh = priv->sh;
1896         tmpl->rxq.mp = NULL;
1897         tmpl->rxq.elts_n = log2above(desc);
1898         tmpl->rxq.elts = NULL;
1899         tmpl->rxq.mr_ctrl.cache_bh = (struct mlx5_mr_btree) { 0 };
1900         tmpl->rxq.idx = idx;
1901         rxq->hairpin_conf = *hairpin_conf;
1902         mlx5_rxq_ref(dev, idx);
1903         LIST_INSERT_HEAD(&priv->rxqsctrl, tmpl, next);
1904         return tmpl;
1905 }
1906
1907 /**
1908  * Increase Rx queue reference count.
1909  *
1910  * @param dev
1911  *   Pointer to Ethernet device.
1912  * @param idx
1913  *   RX queue index.
1914  *
1915  * @return
1916  *   A pointer to the queue if it exists, NULL otherwise.
1917  */
1918 struct mlx5_rxq_priv *
1919 mlx5_rxq_ref(struct rte_eth_dev *dev, uint16_t idx)
1920 {
1921         struct mlx5_rxq_priv *rxq = mlx5_rxq_get(dev, idx);
1922
1923         if (rxq != NULL)
1924                 __atomic_fetch_add(&rxq->refcnt, 1, __ATOMIC_RELAXED);
1925         return rxq;
1926 }
1927
1928 /**
1929  * Dereference a Rx queue.
1930  *
1931  * @param dev
1932  *   Pointer to Ethernet device.
1933  * @param idx
1934  *   RX queue index.
1935  *
1936  * @return
1937  *   Updated reference count.
1938  */
1939 uint32_t
1940 mlx5_rxq_deref(struct rte_eth_dev *dev, uint16_t idx)
1941 {
1942         struct mlx5_rxq_priv *rxq = mlx5_rxq_get(dev, idx);
1943
1944         if (rxq == NULL)
1945                 return 0;
1946         return __atomic_sub_fetch(&rxq->refcnt, 1, __ATOMIC_RELAXED);
1947 }
1948
1949 /**
1950  * Get a Rx queue.
1951  *
1952  * @param dev
1953  *   Pointer to Ethernet device.
1954  * @param idx
1955  *   RX queue index.
1956  *
1957  * @return
1958  *   A pointer to the queue if it exists, NULL otherwise.
1959  */
1960 struct mlx5_rxq_priv *
1961 mlx5_rxq_get(struct rte_eth_dev *dev, uint16_t idx)
1962 {
1963         struct mlx5_priv *priv = dev->data->dev_private;
1964
1965         MLX5_ASSERT(priv->rxq_privs != NULL);
1966         return (*priv->rxq_privs)[idx];
1967 }
1968
1969 /**
1970  * Get Rx queue shareable control.
1971  *
1972  * @param dev
1973  *   Pointer to Ethernet device.
1974  * @param idx
1975  *   RX queue index.
1976  *
1977  * @return
1978  *   A pointer to the queue control if it exists, NULL otherwise.
1979  */
1980 struct mlx5_rxq_ctrl *
1981 mlx5_rxq_ctrl_get(struct rte_eth_dev *dev, uint16_t idx)
1982 {
1983         struct mlx5_rxq_priv *rxq = mlx5_rxq_get(dev, idx);
1984
1985         return rxq == NULL ? NULL : rxq->ctrl;
1986 }
1987
1988 /**
1989  * Get Rx queue shareable data.
1990  *
1991  * @param dev
1992  *   Pointer to Ethernet device.
1993  * @param idx
1994  *   RX queue index.
1995  *
1996  * @return
1997  *   A pointer to the queue data if it exists, NULL otherwise.
1998  */
1999 struct mlx5_rxq_data *
2000 mlx5_rxq_data_get(struct rte_eth_dev *dev, uint16_t idx)
2001 {
2002         struct mlx5_rxq_priv *rxq = mlx5_rxq_get(dev, idx);
2003
2004         return rxq == NULL ? NULL : &rxq->ctrl->rxq;
2005 }
2006
2007 /**
2008  * Release a Rx queue.
2009  *
2010  * @param dev
2011  *   Pointer to Ethernet device.
2012  * @param idx
2013  *   RX queue index.
2014  *
2015  * @return
2016  *   1 while a reference on it exists, 0 when freed.
2017  */
2018 int
2019 mlx5_rxq_release(struct rte_eth_dev *dev, uint16_t idx)
2020 {
2021         struct mlx5_priv *priv = dev->data->dev_private;
2022         struct mlx5_rxq_priv *rxq;
2023         struct mlx5_rxq_ctrl *rxq_ctrl;
2024         uint32_t refcnt;
2025
2026         if (priv->rxq_privs == NULL)
2027                 return 0;
2028         rxq = mlx5_rxq_get(dev, idx);
2029         if (rxq == NULL || rxq->refcnt == 0)
2030                 return 0;
2031         rxq_ctrl = rxq->ctrl;
2032         refcnt = mlx5_rxq_deref(dev, idx);
2033         if (refcnt > 1) {
2034                 return 1;
2035         } else if (refcnt == 1) { /* RxQ stopped. */
2036                 priv->obj_ops.rxq_obj_release(rxq);
2037                 if (!rxq_ctrl->started && rxq_ctrl->obj != NULL) {
2038                         LIST_REMOVE(rxq_ctrl->obj, next);
2039                         mlx5_free(rxq_ctrl->obj);
2040                         rxq_ctrl->obj = NULL;
2041                 }
2042                 if (rxq_ctrl->type == MLX5_RXQ_TYPE_STANDARD) {
2043                         if (!rxq_ctrl->started)
2044                                 rxq_free_elts(rxq_ctrl);
2045                         dev->data->rx_queue_state[idx] =
2046                                         RTE_ETH_QUEUE_STATE_STOPPED;
2047                 }
2048         } else { /* Refcnt zero, closing device. */
2049                 LIST_REMOVE(rxq, owner_entry);
2050                 if (LIST_EMPTY(&rxq_ctrl->owners)) {
2051                         if (rxq_ctrl->type == MLX5_RXQ_TYPE_STANDARD)
2052                                 mlx5_mr_btree_free
2053                                         (&rxq_ctrl->rxq.mr_ctrl.cache_bh);
2054                         if (rxq_ctrl->rxq.shared)
2055                                 LIST_REMOVE(rxq_ctrl, share_entry);
2056                         LIST_REMOVE(rxq_ctrl, next);
2057                         mlx5_free(rxq_ctrl);
2058                 }
2059                 dev->data->rx_queues[idx] = NULL;
2060                 mlx5_free(rxq);
2061                 (*priv->rxq_privs)[idx] = NULL;
2062         }
2063         return 0;
2064 }
2065
2066 /**
2067  * Verify the Rx Queue list is empty
2068  *
2069  * @param dev
2070  *   Pointer to Ethernet device.
2071  *
2072  * @return
2073  *   The number of object not released.
2074  */
2075 int
2076 mlx5_rxq_verify(struct rte_eth_dev *dev)
2077 {
2078         struct mlx5_priv *priv = dev->data->dev_private;
2079         struct mlx5_rxq_ctrl *rxq_ctrl;
2080         int ret = 0;
2081
2082         LIST_FOREACH(rxq_ctrl, &priv->rxqsctrl, next) {
2083                 DRV_LOG(DEBUG, "port %u Rx Queue %u still referenced",
2084                         dev->data->port_id, rxq_ctrl->rxq.idx);
2085                 ++ret;
2086         }
2087         return ret;
2088 }
2089
2090 /**
2091  * Get a Rx queue type.
2092  *
2093  * @param dev
2094  *   Pointer to Ethernet device.
2095  * @param idx
2096  *   Rx queue index.
2097  *
2098  * @return
2099  *   The Rx queue type.
2100  */
2101 enum mlx5_rxq_type
2102 mlx5_rxq_get_type(struct rte_eth_dev *dev, uint16_t idx)
2103 {
2104         struct mlx5_priv *priv = dev->data->dev_private;
2105         struct mlx5_rxq_ctrl *rxq_ctrl = mlx5_rxq_ctrl_get(dev, idx);
2106
2107         if (idx < priv->rxqs_n && rxq_ctrl != NULL)
2108                 return rxq_ctrl->type;
2109         return MLX5_RXQ_TYPE_UNDEFINED;
2110 }
2111
2112 /*
2113  * Get a Rx hairpin queue configuration.
2114  *
2115  * @param dev
2116  *   Pointer to Ethernet device.
2117  * @param idx
2118  *   Rx queue index.
2119  *
2120  * @return
2121  *   Pointer to the configuration if a hairpin RX queue, otherwise NULL.
2122  */
2123 const struct rte_eth_hairpin_conf *
2124 mlx5_rxq_get_hairpin_conf(struct rte_eth_dev *dev, uint16_t idx)
2125 {
2126         struct mlx5_priv *priv = dev->data->dev_private;
2127         struct mlx5_rxq_priv *rxq = mlx5_rxq_get(dev, idx);
2128
2129         if (idx < priv->rxqs_n && rxq != NULL) {
2130                 if (rxq->ctrl->type == MLX5_RXQ_TYPE_HAIRPIN)
2131                         return &rxq->hairpin_conf;
2132         }
2133         return NULL;
2134 }
2135
2136 /**
2137  * Match queues listed in arguments to queues contained in indirection table
2138  * object.
2139  *
2140  * @param ind_tbl
2141  *   Pointer to indirection table to match.
2142  * @param queues
2143  *   Queues to match to ques in indirection table.
2144  * @param queues_n
2145  *   Number of queues in the array.
2146  *
2147  * @return
2148  *   1 if all queues in indirection table match 0 othrwise.
2149  */
2150 static int
2151 mlx5_ind_table_obj_match_queues(const struct mlx5_ind_table_obj *ind_tbl,
2152                        const uint16_t *queues, uint32_t queues_n)
2153 {
2154                 return (ind_tbl->queues_n == queues_n) &&
2155                     (!memcmp(ind_tbl->queues, queues,
2156                             ind_tbl->queues_n * sizeof(ind_tbl->queues[0])));
2157 }
2158
2159 /**
2160  * Get an indirection table.
2161  *
2162  * @param dev
2163  *   Pointer to Ethernet device.
2164  * @param queues
2165  *   Queues entering in the indirection table.
2166  * @param queues_n
2167  *   Number of queues in the array.
2168  *
2169  * @return
2170  *   An indirection table if found.
2171  */
2172 struct mlx5_ind_table_obj *
2173 mlx5_ind_table_obj_get(struct rte_eth_dev *dev, const uint16_t *queues,
2174                        uint32_t queues_n)
2175 {
2176         struct mlx5_priv *priv = dev->data->dev_private;
2177         struct mlx5_ind_table_obj *ind_tbl;
2178
2179         rte_rwlock_read_lock(&priv->ind_tbls_lock);
2180         LIST_FOREACH(ind_tbl, &priv->ind_tbls, next) {
2181                 if ((ind_tbl->queues_n == queues_n) &&
2182                     (memcmp(ind_tbl->queues, queues,
2183                             ind_tbl->queues_n * sizeof(ind_tbl->queues[0]))
2184                      == 0)) {
2185                         __atomic_fetch_add(&ind_tbl->refcnt, 1,
2186                                            __ATOMIC_RELAXED);
2187                         break;
2188                 }
2189         }
2190         rte_rwlock_read_unlock(&priv->ind_tbls_lock);
2191         return ind_tbl;
2192 }
2193
2194 /**
2195  * Release an indirection table.
2196  *
2197  * @param dev
2198  *   Pointer to Ethernet device.
2199  * @param ind_table
2200  *   Indirection table to release.
2201  * @param standalone
2202  *   Indirection table for Standalone queue.
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 {
2212         struct mlx5_priv *priv = dev->data->dev_private;
2213         unsigned int i, ret;
2214
2215         rte_rwlock_write_lock(&priv->ind_tbls_lock);
2216         ret = __atomic_sub_fetch(&ind_tbl->refcnt, 1, __ATOMIC_RELAXED);
2217         if (!ret && !standalone)
2218                 LIST_REMOVE(ind_tbl, next);
2219         rte_rwlock_write_unlock(&priv->ind_tbls_lock);
2220         if (ret)
2221                 return 1;
2222         priv->obj_ops.ind_table_destroy(ind_tbl);
2223         for (i = 0; i != ind_tbl->queues_n; ++i)
2224                 claim_nonzero(mlx5_rxq_deref(dev, ind_tbl->queues[i]));
2225         mlx5_free(ind_tbl);
2226         return 0;
2227 }
2228
2229 /**
2230  * Verify the Rx Queue list is empty
2231  *
2232  * @param dev
2233  *   Pointer to Ethernet device.
2234  *
2235  * @return
2236  *   The number of object not released.
2237  */
2238 int
2239 mlx5_ind_table_obj_verify(struct rte_eth_dev *dev)
2240 {
2241         struct mlx5_priv *priv = dev->data->dev_private;
2242         struct mlx5_ind_table_obj *ind_tbl;
2243         int ret = 0;
2244
2245         rte_rwlock_read_lock(&priv->ind_tbls_lock);
2246         LIST_FOREACH(ind_tbl, &priv->ind_tbls, next) {
2247                 DRV_LOG(DEBUG,
2248                         "port %u indirection table obj %p still referenced",
2249                         dev->data->port_id, (void *)ind_tbl);
2250                 ++ret;
2251         }
2252         rte_rwlock_read_unlock(&priv->ind_tbls_lock);
2253         return ret;
2254 }
2255
2256 /**
2257  * Setup an indirection table structure fields.
2258  *
2259  * @param dev
2260  *   Pointer to Ethernet device.
2261  * @param ind_table
2262  *   Indirection table to modify.
2263  *
2264  * @return
2265  *   0 on success, a negative errno value otherwise and rte_errno is set.
2266  */
2267 int
2268 mlx5_ind_table_obj_setup(struct rte_eth_dev *dev,
2269                          struct mlx5_ind_table_obj *ind_tbl)
2270 {
2271         struct mlx5_priv *priv = dev->data->dev_private;
2272         uint32_t queues_n = ind_tbl->queues_n;
2273         uint16_t *queues = ind_tbl->queues;
2274         unsigned int i, j;
2275         int ret = 0, err;
2276         const unsigned int n = rte_is_power_of_2(queues_n) ?
2277                                log2above(queues_n) :
2278                                log2above(priv->config.ind_table_max_size);
2279
2280         for (i = 0; i != queues_n; ++i) {
2281                 if (mlx5_rxq_ref(dev, queues[i]) == NULL) {
2282                         ret = -rte_errno;
2283                         goto error;
2284                 }
2285         }
2286         ret = priv->obj_ops.ind_table_new(dev, n, ind_tbl);
2287         if (ret)
2288                 goto error;
2289         __atomic_fetch_add(&ind_tbl->refcnt, 1, __ATOMIC_RELAXED);
2290         return 0;
2291 error:
2292         err = rte_errno;
2293         for (j = 0; j < i; j++)
2294                 mlx5_rxq_deref(dev, ind_tbl->queues[j]);
2295         rte_errno = err;
2296         DRV_LOG(DEBUG, "Port %u cannot setup indirection table.",
2297                 dev->data->port_id);
2298         return ret;
2299 }
2300
2301 /**
2302  * Create an indirection table.
2303  *
2304  * @param dev
2305  *   Pointer to Ethernet device.
2306  * @param queues
2307  *   Queues entering in the indirection table.
2308  * @param queues_n
2309  *   Number of queues in the array.
2310  * @param standalone
2311  *   Indirection table for Standalone queue.
2312  *
2313  * @return
2314  *   The Verbs/DevX object initialized, NULL otherwise and rte_errno is set.
2315  */
2316 static struct mlx5_ind_table_obj *
2317 mlx5_ind_table_obj_new(struct rte_eth_dev *dev, const uint16_t *queues,
2318                        uint32_t queues_n, bool standalone)
2319 {
2320         struct mlx5_priv *priv = dev->data->dev_private;
2321         struct mlx5_ind_table_obj *ind_tbl;
2322         int ret;
2323
2324         ind_tbl = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*ind_tbl) +
2325                               queues_n * sizeof(uint16_t), 0, SOCKET_ID_ANY);
2326         if (!ind_tbl) {
2327                 rte_errno = ENOMEM;
2328                 return NULL;
2329         }
2330         ind_tbl->queues_n = queues_n;
2331         ind_tbl->queues = (uint16_t *)(ind_tbl + 1);
2332         memcpy(ind_tbl->queues, queues, queues_n * sizeof(*queues));
2333         ret = mlx5_ind_table_obj_setup(dev, ind_tbl);
2334         if (ret < 0) {
2335                 mlx5_free(ind_tbl);
2336                 return NULL;
2337         }
2338         if (!standalone) {
2339                 rte_rwlock_write_lock(&priv->ind_tbls_lock);
2340                 LIST_INSERT_HEAD(&priv->ind_tbls, ind_tbl, next);
2341                 rte_rwlock_write_unlock(&priv->ind_tbls_lock);
2342         }
2343         return ind_tbl;
2344 }
2345
2346 static int
2347 mlx5_ind_table_obj_check_standalone(struct rte_eth_dev *dev __rte_unused,
2348                                     struct mlx5_ind_table_obj *ind_tbl)
2349 {
2350         uint32_t refcnt;
2351
2352         refcnt = __atomic_load_n(&ind_tbl->refcnt, __ATOMIC_RELAXED);
2353         if (refcnt <= 1)
2354                 return 0;
2355         /*
2356          * Modification of indirection tables having more than 1
2357          * reference is unsupported.
2358          */
2359         DRV_LOG(DEBUG,
2360                 "Port %u cannot modify indirection table %p (refcnt %u > 1).",
2361                 dev->data->port_id, (void *)ind_tbl, refcnt);
2362         rte_errno = EINVAL;
2363         return -rte_errno;
2364 }
2365
2366 /**
2367  * Modify an indirection table.
2368  *
2369  * @param dev
2370  *   Pointer to Ethernet device.
2371  * @param ind_table
2372  *   Indirection table to modify.
2373  * @param queues
2374  *   Queues replacement for the indirection table.
2375  * @param queues_n
2376  *   Number of queues in the array.
2377  * @param standalone
2378  *   Indirection table for Standalone queue.
2379  *
2380  * @return
2381  *   0 on success, a negative errno value otherwise and rte_errno is set.
2382  */
2383 int
2384 mlx5_ind_table_obj_modify(struct rte_eth_dev *dev,
2385                           struct mlx5_ind_table_obj *ind_tbl,
2386                           uint16_t *queues, const uint32_t queues_n,
2387                           bool standalone)
2388 {
2389         struct mlx5_priv *priv = dev->data->dev_private;
2390         unsigned int i;
2391         int ret = 0, err;
2392         const unsigned int n = rte_is_power_of_2(queues_n) ?
2393                                log2above(queues_n) :
2394                                log2above(priv->config.ind_table_max_size);
2395
2396         MLX5_ASSERT(standalone);
2397         RTE_SET_USED(standalone);
2398         if (mlx5_ind_table_obj_check_standalone(dev, ind_tbl) < 0)
2399                 return -rte_errno;
2400         for (i = 0; i != queues_n; ++i) {
2401                 if (!mlx5_rxq_get(dev, queues[i])) {
2402                         ret = -rte_errno;
2403                         goto error;
2404                 }
2405         }
2406         MLX5_ASSERT(priv->obj_ops.ind_table_modify);
2407         ret = priv->obj_ops.ind_table_modify(dev, n, queues, queues_n, ind_tbl);
2408         if (ret)
2409                 goto error;
2410         ind_tbl->queues_n = queues_n;
2411         ind_tbl->queues = queues;
2412         return 0;
2413 error:
2414         err = rte_errno;
2415         rte_errno = err;
2416         DRV_LOG(DEBUG, "Port %u cannot setup indirection table.",
2417                 dev->data->port_id);
2418         return ret;
2419 }
2420
2421 /**
2422  * Attach an indirection table to its queues.
2423  *
2424  * @param dev
2425  *   Pointer to Ethernet device.
2426  * @param ind_table
2427  *   Indirection table to attach.
2428  *
2429  * @return
2430  *   0 on success, a negative errno value otherwise and rte_errno is set.
2431  */
2432 int
2433 mlx5_ind_table_obj_attach(struct rte_eth_dev *dev,
2434                           struct mlx5_ind_table_obj *ind_tbl)
2435 {
2436         unsigned int i;
2437         int ret;
2438
2439         ret = mlx5_ind_table_obj_modify(dev, ind_tbl, ind_tbl->queues,
2440                                         ind_tbl->queues_n, true);
2441         if (ret != 0) {
2442                 DRV_LOG(ERR, "Port %u could not modify indirect table obj %p",
2443                         dev->data->port_id, (void *)ind_tbl);
2444                 return ret;
2445         }
2446         for (i = 0; i < ind_tbl->queues_n; i++)
2447                 mlx5_rxq_get(dev, ind_tbl->queues[i]);
2448         return 0;
2449 }
2450
2451 /**
2452  * Detach an indirection table from its queues.
2453  *
2454  * @param dev
2455  *   Pointer to Ethernet device.
2456  * @param ind_table
2457  *   Indirection table to detach.
2458  *
2459  * @return
2460  *   0 on success, a negative errno value otherwise and rte_errno is set.
2461  */
2462 int
2463 mlx5_ind_table_obj_detach(struct rte_eth_dev *dev,
2464                           struct mlx5_ind_table_obj *ind_tbl)
2465 {
2466         struct mlx5_priv *priv = dev->data->dev_private;
2467         const unsigned int n = rte_is_power_of_2(ind_tbl->queues_n) ?
2468                                log2above(ind_tbl->queues_n) :
2469                                log2above(priv->config.ind_table_max_size);
2470         unsigned int i;
2471         int ret;
2472
2473         ret = mlx5_ind_table_obj_check_standalone(dev, ind_tbl);
2474         if (ret != 0)
2475                 return ret;
2476         MLX5_ASSERT(priv->obj_ops.ind_table_modify);
2477         ret = priv->obj_ops.ind_table_modify(dev, n, NULL, 0, ind_tbl);
2478         if (ret != 0) {
2479                 DRV_LOG(ERR, "Port %u could not modify indirect table obj %p",
2480                         dev->data->port_id, (void *)ind_tbl);
2481                 return ret;
2482         }
2483         for (i = 0; i < ind_tbl->queues_n; i++)
2484                 mlx5_rxq_release(dev, ind_tbl->queues[i]);
2485         return ret;
2486 }
2487
2488 int
2489 mlx5_hrxq_match_cb(void *tool_ctx __rte_unused, struct mlx5_list_entry *entry,
2490                    void *cb_ctx)
2491 {
2492         struct mlx5_flow_cb_ctx *ctx = cb_ctx;
2493         struct mlx5_flow_rss_desc *rss_desc = ctx->data;
2494         struct mlx5_hrxq *hrxq = container_of(entry, typeof(*hrxq), entry);
2495
2496         return (hrxq->rss_key_len != rss_desc->key_len ||
2497             memcmp(hrxq->rss_key, rss_desc->key, rss_desc->key_len) ||
2498             hrxq->hash_fields != rss_desc->hash_fields ||
2499             hrxq->ind_table->queues_n != rss_desc->queue_num ||
2500             memcmp(hrxq->ind_table->queues, rss_desc->queue,
2501             rss_desc->queue_num * sizeof(rss_desc->queue[0])));
2502 }
2503
2504 /**
2505  * Modify an Rx Hash queue configuration.
2506  *
2507  * @param dev
2508  *   Pointer to Ethernet device.
2509  * @param hrxq
2510  *   Index to Hash Rx queue to modify.
2511  * @param rss_key
2512  *   RSS key for the Rx hash queue.
2513  * @param rss_key_len
2514  *   RSS key length.
2515  * @param hash_fields
2516  *   Verbs protocol hash field to make the RSS on.
2517  * @param queues
2518  *   Queues entering in hash queue. In case of empty hash_fields only the
2519  *   first queue index will be taken for the indirection table.
2520  * @param queues_n
2521  *   Number of queues.
2522  *
2523  * @return
2524  *   0 on success, a negative errno value otherwise and rte_errno is set.
2525  */
2526 int
2527 mlx5_hrxq_modify(struct rte_eth_dev *dev, uint32_t hrxq_idx,
2528                  const uint8_t *rss_key, uint32_t rss_key_len,
2529                  uint64_t hash_fields,
2530                  const uint16_t *queues, uint32_t queues_n)
2531 {
2532         int err;
2533         struct mlx5_ind_table_obj *ind_tbl = NULL;
2534         struct mlx5_priv *priv = dev->data->dev_private;
2535         struct mlx5_hrxq *hrxq =
2536                 mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_HRXQ], hrxq_idx);
2537         int ret;
2538
2539         if (!hrxq) {
2540                 rte_errno = EINVAL;
2541                 return -rte_errno;
2542         }
2543         /* validations */
2544         if (hrxq->rss_key_len != rss_key_len) {
2545                 /* rss_key_len is fixed size 40 byte & not supposed to change */
2546                 rte_errno = EINVAL;
2547                 return -rte_errno;
2548         }
2549         queues_n = hash_fields ? queues_n : 1;
2550         if (mlx5_ind_table_obj_match_queues(hrxq->ind_table,
2551                                             queues, queues_n)) {
2552                 ind_tbl = hrxq->ind_table;
2553         } else {
2554                 if (hrxq->standalone) {
2555                         /*
2556                          * Replacement of indirection table unsupported for
2557                          * stanalone hrxq objects (used by shared RSS).
2558                          */
2559                         rte_errno = ENOTSUP;
2560                         return -rte_errno;
2561                 }
2562                 ind_tbl = mlx5_ind_table_obj_get(dev, queues, queues_n);
2563                 if (!ind_tbl)
2564                         ind_tbl = mlx5_ind_table_obj_new(dev, queues, queues_n,
2565                                                          hrxq->standalone);
2566         }
2567         if (!ind_tbl) {
2568                 rte_errno = ENOMEM;
2569                 return -rte_errno;
2570         }
2571         MLX5_ASSERT(priv->obj_ops.hrxq_modify);
2572         ret = priv->obj_ops.hrxq_modify(dev, hrxq, rss_key,
2573                                         hash_fields, ind_tbl);
2574         if (ret) {
2575                 rte_errno = errno;
2576                 goto error;
2577         }
2578         if (ind_tbl != hrxq->ind_table) {
2579                 MLX5_ASSERT(!hrxq->standalone);
2580                 mlx5_ind_table_obj_release(dev, hrxq->ind_table,
2581                                            hrxq->standalone);
2582                 hrxq->ind_table = ind_tbl;
2583         }
2584         hrxq->hash_fields = hash_fields;
2585         memcpy(hrxq->rss_key, rss_key, rss_key_len);
2586         return 0;
2587 error:
2588         err = rte_errno;
2589         if (ind_tbl != hrxq->ind_table) {
2590                 MLX5_ASSERT(!hrxq->standalone);
2591                 mlx5_ind_table_obj_release(dev, ind_tbl, hrxq->standalone);
2592         }
2593         rte_errno = err;
2594         return -rte_errno;
2595 }
2596
2597 static void
2598 __mlx5_hrxq_remove(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq)
2599 {
2600         struct mlx5_priv *priv = dev->data->dev_private;
2601
2602 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2603         mlx5_glue->destroy_flow_action(hrxq->action);
2604 #endif
2605         priv->obj_ops.hrxq_destroy(hrxq);
2606         if (!hrxq->standalone) {
2607                 mlx5_ind_table_obj_release(dev, hrxq->ind_table,
2608                                            hrxq->standalone);
2609         }
2610         mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_HRXQ], hrxq->idx);
2611 }
2612
2613 /**
2614  * Release the hash Rx queue.
2615  *
2616  * @param dev
2617  *   Pointer to Ethernet device.
2618  * @param hrxq
2619  *   Index to Hash Rx queue to release.
2620  *
2621  * @param list
2622  *   mlx5 list pointer.
2623  * @param entry
2624  *   Hash queue entry pointer.
2625  */
2626 void
2627 mlx5_hrxq_remove_cb(void *tool_ctx, struct mlx5_list_entry *entry)
2628 {
2629         struct rte_eth_dev *dev = tool_ctx;
2630         struct mlx5_hrxq *hrxq = container_of(entry, typeof(*hrxq), entry);
2631
2632         __mlx5_hrxq_remove(dev, hrxq);
2633 }
2634
2635 static struct mlx5_hrxq *
2636 __mlx5_hrxq_create(struct rte_eth_dev *dev,
2637                    struct mlx5_flow_rss_desc *rss_desc)
2638 {
2639         struct mlx5_priv *priv = dev->data->dev_private;
2640         const uint8_t *rss_key = rss_desc->key;
2641         uint32_t rss_key_len =  rss_desc->key_len;
2642         bool standalone = !!rss_desc->shared_rss;
2643         const uint16_t *queues =
2644                 standalone ? rss_desc->const_q : rss_desc->queue;
2645         uint32_t queues_n = rss_desc->queue_num;
2646         struct mlx5_hrxq *hrxq = NULL;
2647         uint32_t hrxq_idx = 0;
2648         struct mlx5_ind_table_obj *ind_tbl = rss_desc->ind_tbl;
2649         int ret;
2650
2651         queues_n = rss_desc->hash_fields ? queues_n : 1;
2652         if (!ind_tbl)
2653                 ind_tbl = mlx5_ind_table_obj_get(dev, queues, queues_n);
2654         if (!ind_tbl)
2655                 ind_tbl = mlx5_ind_table_obj_new(dev, queues, queues_n,
2656                                                  standalone);
2657         if (!ind_tbl)
2658                 return NULL;
2659         hrxq = mlx5_ipool_zmalloc(priv->sh->ipool[MLX5_IPOOL_HRXQ], &hrxq_idx);
2660         if (!hrxq)
2661                 goto error;
2662         hrxq->standalone = standalone;
2663         hrxq->idx = hrxq_idx;
2664         hrxq->ind_table = ind_tbl;
2665         hrxq->rss_key_len = rss_key_len;
2666         hrxq->hash_fields = rss_desc->hash_fields;
2667         memcpy(hrxq->rss_key, rss_key, rss_key_len);
2668         ret = priv->obj_ops.hrxq_new(dev, hrxq, rss_desc->tunnel);
2669         if (ret < 0)
2670                 goto error;
2671         return hrxq;
2672 error:
2673         if (!rss_desc->ind_tbl)
2674                 mlx5_ind_table_obj_release(dev, ind_tbl, standalone);
2675         if (hrxq)
2676                 mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_HRXQ], hrxq_idx);
2677         return NULL;
2678 }
2679
2680 struct mlx5_list_entry *
2681 mlx5_hrxq_create_cb(void *tool_ctx, void *cb_ctx)
2682 {
2683         struct rte_eth_dev *dev = tool_ctx;
2684         struct mlx5_flow_cb_ctx *ctx = cb_ctx;
2685         struct mlx5_flow_rss_desc *rss_desc = ctx->data;
2686         struct mlx5_hrxq *hrxq;
2687
2688         hrxq = __mlx5_hrxq_create(dev, rss_desc);
2689         return hrxq ? &hrxq->entry : NULL;
2690 }
2691
2692 struct mlx5_list_entry *
2693 mlx5_hrxq_clone_cb(void *tool_ctx, struct mlx5_list_entry *entry,
2694                     void *cb_ctx __rte_unused)
2695 {
2696         struct rte_eth_dev *dev = tool_ctx;
2697         struct mlx5_priv *priv = dev->data->dev_private;
2698         struct mlx5_hrxq *hrxq;
2699         uint32_t hrxq_idx = 0;
2700
2701         hrxq = mlx5_ipool_zmalloc(priv->sh->ipool[MLX5_IPOOL_HRXQ], &hrxq_idx);
2702         if (!hrxq)
2703                 return NULL;
2704         memcpy(hrxq, entry, sizeof(*hrxq) + MLX5_RSS_HASH_KEY_LEN);
2705         hrxq->idx = hrxq_idx;
2706         return &hrxq->entry;
2707 }
2708
2709 void
2710 mlx5_hrxq_clone_free_cb(void *tool_ctx, struct mlx5_list_entry *entry)
2711 {
2712         struct rte_eth_dev *dev = tool_ctx;
2713         struct mlx5_priv *priv = dev->data->dev_private;
2714         struct mlx5_hrxq *hrxq = container_of(entry, typeof(*hrxq), entry);
2715
2716         mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_HRXQ], hrxq->idx);
2717 }
2718
2719 /**
2720  * Get an Rx Hash queue.
2721  *
2722  * @param dev
2723  *   Pointer to Ethernet device.
2724  * @param rss_desc
2725  *   RSS configuration for the Rx hash queue.
2726  *
2727  * @return
2728  *   An hash Rx queue index on success.
2729  */
2730 uint32_t mlx5_hrxq_get(struct rte_eth_dev *dev,
2731                        struct mlx5_flow_rss_desc *rss_desc)
2732 {
2733         struct mlx5_priv *priv = dev->data->dev_private;
2734         struct mlx5_hrxq *hrxq;
2735         struct mlx5_list_entry *entry;
2736         struct mlx5_flow_cb_ctx ctx = {
2737                 .data = rss_desc,
2738         };
2739
2740         if (rss_desc->shared_rss) {
2741                 hrxq = __mlx5_hrxq_create(dev, rss_desc);
2742         } else {
2743                 entry = mlx5_list_register(priv->hrxqs, &ctx);
2744                 if (!entry)
2745                         return 0;
2746                 hrxq = container_of(entry, typeof(*hrxq), entry);
2747         }
2748         if (hrxq)
2749                 return hrxq->idx;
2750         return 0;
2751 }
2752
2753 /**
2754  * Release the hash Rx queue.
2755  *
2756  * @param dev
2757  *   Pointer to Ethernet device.
2758  * @param hrxq_idx
2759  *   Index to Hash Rx queue to release.
2760  *
2761  * @return
2762  *   1 while a reference on it exists, 0 when freed.
2763  */
2764 int mlx5_hrxq_release(struct rte_eth_dev *dev, uint32_t hrxq_idx)
2765 {
2766         struct mlx5_priv *priv = dev->data->dev_private;
2767         struct mlx5_hrxq *hrxq;
2768
2769         hrxq = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_HRXQ], hrxq_idx);
2770         if (!hrxq)
2771                 return 0;
2772         if (!hrxq->standalone)
2773                 return mlx5_list_unregister(priv->hrxqs, &hrxq->entry);
2774         __mlx5_hrxq_remove(dev, hrxq);
2775         return 0;
2776 }
2777
2778 /**
2779  * Create a drop Rx Hash queue.
2780  *
2781  * @param dev
2782  *   Pointer to Ethernet device.
2783  *
2784  * @return
2785  *   The Verbs/DevX object initialized, NULL otherwise and rte_errno is set.
2786  */
2787 struct mlx5_hrxq *
2788 mlx5_drop_action_create(struct rte_eth_dev *dev)
2789 {
2790         struct mlx5_priv *priv = dev->data->dev_private;
2791         struct mlx5_hrxq *hrxq = NULL;
2792         int ret;
2793
2794         if (priv->drop_queue.hrxq)
2795                 return priv->drop_queue.hrxq;
2796         hrxq = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*hrxq), 0, SOCKET_ID_ANY);
2797         if (!hrxq) {
2798                 DRV_LOG(WARNING,
2799                         "Port %u cannot allocate memory for drop queue.",
2800                         dev->data->port_id);
2801                 rte_errno = ENOMEM;
2802                 goto error;
2803         }
2804         priv->drop_queue.hrxq = hrxq;
2805         hrxq->ind_table = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*hrxq->ind_table),
2806                                       0, SOCKET_ID_ANY);
2807         if (!hrxq->ind_table) {
2808                 rte_errno = ENOMEM;
2809                 goto error;
2810         }
2811         ret = priv->obj_ops.drop_action_create(dev);
2812         if (ret < 0)
2813                 goto error;
2814         return hrxq;
2815 error:
2816         if (hrxq) {
2817                 if (hrxq->ind_table)
2818                         mlx5_free(hrxq->ind_table);
2819                 priv->drop_queue.hrxq = NULL;
2820                 mlx5_free(hrxq);
2821         }
2822         return NULL;
2823 }
2824
2825 /**
2826  * Release a drop hash Rx queue.
2827  *
2828  * @param dev
2829  *   Pointer to Ethernet device.
2830  */
2831 void
2832 mlx5_drop_action_destroy(struct rte_eth_dev *dev)
2833 {
2834         struct mlx5_priv *priv = dev->data->dev_private;
2835         struct mlx5_hrxq *hrxq = priv->drop_queue.hrxq;
2836
2837         if (!priv->drop_queue.hrxq)
2838                 return;
2839         priv->obj_ops.drop_action_destroy(dev);
2840         mlx5_free(priv->drop_queue.rxq);
2841         mlx5_free(hrxq->ind_table);
2842         mlx5_free(hrxq);
2843         priv->drop_queue.rxq = NULL;
2844         priv->drop_queue.hrxq = NULL;
2845 }
2846
2847 /**
2848  * Verify the Rx Queue list is empty
2849  *
2850  * @param dev
2851  *   Pointer to Ethernet device.
2852  *
2853  * @return
2854  *   The number of object not released.
2855  */
2856 uint32_t
2857 mlx5_hrxq_verify(struct rte_eth_dev *dev)
2858 {
2859         struct mlx5_priv *priv = dev->data->dev_private;
2860
2861         return mlx5_list_get_entry_num(priv->hrxqs);
2862 }
2863
2864 /**
2865  * Set the Rx queue timestamp conversion parameters
2866  *
2867  * @param[in] dev
2868  *   Pointer to the Ethernet device structure.
2869  */
2870 void
2871 mlx5_rxq_timestamp_set(struct rte_eth_dev *dev)
2872 {
2873         struct mlx5_priv *priv = dev->data->dev_private;
2874         struct mlx5_dev_ctx_shared *sh = priv->sh;
2875         unsigned int i;
2876
2877         for (i = 0; i != priv->rxqs_n; ++i) {
2878                 struct mlx5_rxq_data *data = mlx5_rxq_data_get(dev, i);
2879
2880                 if (data == NULL)
2881                         continue;
2882                 data->sh = sh;
2883                 data->rt_timestamp = priv->config.rt_timestamp;
2884         }
2885 }