ef3137bd1453a488126e4b9f44dbfbc1bab004ca
[dpdk.git] / drivers / net / mlx5 / mlx5_txq.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 <unistd.h>
11 #include <inttypes.h>
12
13 #include <rte_mbuf.h>
14 #include <rte_malloc.h>
15 #include <rte_ethdev_driver.h>
16 #include <rte_common.h>
17 #include <rte_eal_paging.h>
18
19 #include <mlx5_glue.h>
20 #include <mlx5_devx_cmds.h>
21 #include <mlx5_common.h>
22 #include <mlx5_common_mr.h>
23 #include <mlx5_common_os.h>
24 #include <mlx5_malloc.h>
25
26 #include "mlx5_defs.h"
27 #include "mlx5_utils.h"
28 #include "mlx5.h"
29 #include "mlx5_rxtx.h"
30 #include "mlx5_autoconf.h"
31
32 /**
33  * Allocate TX queue elements.
34  *
35  * @param txq_ctrl
36  *   Pointer to TX queue structure.
37  */
38 void
39 txq_alloc_elts(struct mlx5_txq_ctrl *txq_ctrl)
40 {
41         const unsigned int elts_n = 1 << txq_ctrl->txq.elts_n;
42         unsigned int i;
43
44         for (i = 0; (i != elts_n); ++i)
45                 txq_ctrl->txq.elts[i] = NULL;
46         DRV_LOG(DEBUG, "port %u Tx queue %u allocated and configured %u WRs",
47                 PORT_ID(txq_ctrl->priv), txq_ctrl->txq.idx, elts_n);
48         txq_ctrl->txq.elts_head = 0;
49         txq_ctrl->txq.elts_tail = 0;
50         txq_ctrl->txq.elts_comp = 0;
51 }
52
53 /**
54  * Free TX queue elements.
55  *
56  * @param txq_ctrl
57  *   Pointer to TX queue structure.
58  */
59 void
60 txq_free_elts(struct mlx5_txq_ctrl *txq_ctrl)
61 {
62         const uint16_t elts_n = 1 << txq_ctrl->txq.elts_n;
63         const uint16_t elts_m = elts_n - 1;
64         uint16_t elts_head = txq_ctrl->txq.elts_head;
65         uint16_t elts_tail = txq_ctrl->txq.elts_tail;
66         struct rte_mbuf *(*elts)[elts_n] = &txq_ctrl->txq.elts;
67
68         DRV_LOG(DEBUG, "port %u Tx queue %u freeing WRs",
69                 PORT_ID(txq_ctrl->priv), txq_ctrl->txq.idx);
70         txq_ctrl->txq.elts_head = 0;
71         txq_ctrl->txq.elts_tail = 0;
72         txq_ctrl->txq.elts_comp = 0;
73
74         while (elts_tail != elts_head) {
75                 struct rte_mbuf *elt = (*elts)[elts_tail & elts_m];
76
77                 MLX5_ASSERT(elt != NULL);
78                 rte_pktmbuf_free_seg(elt);
79 #ifdef RTE_LIBRTE_MLX5_DEBUG
80                 /* Poisoning. */
81                 memset(&(*elts)[elts_tail & elts_m],
82                        0x77,
83                        sizeof((*elts)[elts_tail & elts_m]));
84 #endif
85                 ++elts_tail;
86         }
87 }
88
89 /**
90  * Returns the per-port supported offloads.
91  *
92  * @param dev
93  *   Pointer to Ethernet device.
94  *
95  * @return
96  *   Supported Tx offloads.
97  */
98 uint64_t
99 mlx5_get_tx_port_offloads(struct rte_eth_dev *dev)
100 {
101         struct mlx5_priv *priv = dev->data->dev_private;
102         uint64_t offloads = (DEV_TX_OFFLOAD_MULTI_SEGS |
103                              DEV_TX_OFFLOAD_VLAN_INSERT);
104         struct mlx5_dev_config *config = &priv->config;
105
106         if (config->hw_csum)
107                 offloads |= (DEV_TX_OFFLOAD_IPV4_CKSUM |
108                              DEV_TX_OFFLOAD_UDP_CKSUM |
109                              DEV_TX_OFFLOAD_TCP_CKSUM);
110         if (config->tso)
111                 offloads |= DEV_TX_OFFLOAD_TCP_TSO;
112         if (config->tx_pp)
113                 offloads |= DEV_TX_OFFLOAD_SEND_ON_TIMESTAMP;
114         if (config->swp) {
115                 if (config->hw_csum)
116                         offloads |= DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
117                 if (config->tso)
118                         offloads |= (DEV_TX_OFFLOAD_IP_TNL_TSO |
119                                      DEV_TX_OFFLOAD_UDP_TNL_TSO);
120         }
121         if (config->tunnel_en) {
122                 if (config->hw_csum)
123                         offloads |= DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
124                 if (config->tso)
125                         offloads |= (DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
126                                      DEV_TX_OFFLOAD_GRE_TNL_TSO |
127                                      DEV_TX_OFFLOAD_GENEVE_TNL_TSO);
128         }
129         return offloads;
130 }
131
132 /* Fetches and drops all SW-owned and error CQEs to synchronize CQ. */
133 static void
134 txq_sync_cq(struct mlx5_txq_data *txq)
135 {
136         volatile struct mlx5_cqe *cqe;
137         int ret, i;
138
139         i = txq->cqe_s;
140         do {
141                 cqe = &txq->cqes[txq->cq_ci & txq->cqe_m];
142                 ret = check_cqe(cqe, txq->cqe_s, txq->cq_ci);
143                 if (unlikely(ret != MLX5_CQE_STATUS_SW_OWN)) {
144                         if (likely(ret != MLX5_CQE_STATUS_ERR)) {
145                                 /* No new CQEs in completion queue. */
146                                 MLX5_ASSERT(ret == MLX5_CQE_STATUS_HW_OWN);
147                                 break;
148                         }
149                 }
150                 ++txq->cq_ci;
151         } while (--i);
152         /* Move all CQEs to HW ownership. */
153         for (i = 0; i < txq->cqe_s; i++) {
154                 cqe = &txq->cqes[i];
155                 cqe->op_own = MLX5_CQE_INVALIDATE;
156         }
157         /* Resync CQE and WQE (WQ in reset state). */
158         rte_io_wmb();
159         *txq->cq_db = rte_cpu_to_be_32(txq->cq_ci);
160         rte_io_wmb();
161 }
162
163 /**
164  * Tx queue stop. Device queue goes to the idle state,
165  * all involved mbufs are freed from elts/WQ.
166  *
167  * @param dev
168  *   Pointer to Ethernet device structure.
169  * @param idx
170  *   Tx queue index.
171  *
172  * @return
173  *   0 on success, a negative errno value otherwise and rte_errno is set.
174  */
175 int
176 mlx5_tx_queue_stop_primary(struct rte_eth_dev *dev, uint16_t idx)
177 {
178         struct mlx5_priv *priv = dev->data->dev_private;
179         struct mlx5_txq_data *txq = (*priv->txqs)[idx];
180         struct mlx5_txq_ctrl *txq_ctrl =
181                         container_of(txq, struct mlx5_txq_ctrl, txq);
182         int ret;
183
184         MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
185         /* Move QP to RESET state. */
186         if (txq_ctrl->obj->type == MLX5_TXQ_OBJ_TYPE_DEVX_SQ) {
187                 struct mlx5_devx_modify_sq_attr msq_attr = { 0 };
188
189                 /* Change queue state to reset with DevX. */
190                 msq_attr.sq_state = MLX5_SQC_STATE_RDY;
191                 msq_attr.state = MLX5_SQC_STATE_RST;
192                 ret = mlx5_devx_cmd_modify_sq(txq_ctrl->obj->sq_devx,
193                                               &msq_attr);
194                 if (ret) {
195                         DRV_LOG(ERR, "Cannot change the "
196                                 "Tx QP state to RESET %s",
197                                 strerror(errno));
198                         rte_errno = errno;
199                         return ret;
200                 }
201         } else {
202                 struct ibv_qp_attr mod = {
203                         .qp_state = IBV_QPS_RESET,
204                         .port_num = (uint8_t)priv->dev_port,
205                 };
206                 struct ibv_qp *qp = txq_ctrl->obj->qp;
207
208                 /* Change queue state to reset with Verbs. */
209                 ret = mlx5_glue->modify_qp(qp, &mod, IBV_QP_STATE);
210                 if (ret) {
211                         DRV_LOG(ERR, "Cannot change the Tx QP state to RESET "
212                                 "%s", strerror(errno));
213                         rte_errno = errno;
214                         return ret;
215                 }
216         }
217         /* Handle all send completions. */
218         txq_sync_cq(txq);
219         /* Free elts stored in the SQ. */
220         txq_free_elts(txq_ctrl);
221         /* Prevent writing new pkts to SQ by setting no free WQE.*/
222         txq->wqe_ci = txq->wqe_s;
223         txq->wqe_pi = 0;
224         txq->elts_comp = 0;
225         /* Set the actual queue state. */
226         dev->data->tx_queue_state[idx] = RTE_ETH_QUEUE_STATE_STOPPED;
227         return 0;
228 }
229
230 /**
231  * Tx queue stop. Device queue goes to the idle state,
232  * all involved mbufs are freed from elts/WQ.
233  *
234  * @param dev
235  *   Pointer to Ethernet device structure.
236  * @param idx
237  *   Tx queue index.
238  *
239  * @return
240  *   0 on success, a negative errno value otherwise and rte_errno is set.
241  */
242 int
243 mlx5_tx_queue_stop(struct rte_eth_dev *dev, uint16_t idx)
244 {
245         int ret;
246
247         if (rte_eth_dev_is_tx_hairpin_queue(dev, idx)) {
248                 DRV_LOG(ERR, "Hairpin queue can't be stopped");
249                 rte_errno = EINVAL;
250                 return -EINVAL;
251         }
252         if (dev->data->tx_queue_state[idx] == RTE_ETH_QUEUE_STATE_STOPPED)
253                 return 0;
254         if (rte_eal_process_type() ==  RTE_PROC_SECONDARY) {
255                 ret = mlx5_mp_os_req_queue_control(dev, idx,
256                                                    MLX5_MP_REQ_QUEUE_TX_STOP);
257         } else {
258                 ret = mlx5_tx_queue_stop_primary(dev, idx);
259         }
260         return ret;
261 }
262
263 /**
264  * Rx queue start. Device queue goes to the ready state,
265  * all required mbufs are allocated and WQ is replenished.
266  *
267  * @param dev
268  *   Pointer to Ethernet device structure.
269  * @param idx
270  *   RX queue index.
271  *
272  * @return
273  *   0 on success, a negative errno value otherwise and rte_errno is set.
274  */
275 int
276 mlx5_tx_queue_start_primary(struct rte_eth_dev *dev, uint16_t idx)
277 {
278         struct mlx5_priv *priv = dev->data->dev_private;
279         struct mlx5_txq_data *txq = (*priv->txqs)[idx];
280         struct mlx5_txq_ctrl *txq_ctrl =
281                         container_of(txq, struct mlx5_txq_ctrl, txq);
282         int ret;
283
284         MLX5_ASSERT(rte_eal_process_type() ==  RTE_PROC_PRIMARY);
285         if (txq_ctrl->obj->type == MLX5_TXQ_OBJ_TYPE_DEVX_SQ) {
286                 struct mlx5_devx_modify_sq_attr msq_attr = { 0 };
287                 struct mlx5_txq_obj *obj = txq_ctrl->obj;
288
289                 msq_attr.sq_state = MLX5_SQC_STATE_RDY;
290                 msq_attr.state = MLX5_SQC_STATE_RST;
291                 ret = mlx5_devx_cmd_modify_sq(obj->sq_devx, &msq_attr);
292                 if (ret) {
293                         rte_errno = errno;
294                         DRV_LOG(ERR,
295                                 "Cannot change the Tx QP state to RESET "
296                                 "%s", strerror(errno));
297                         return ret;
298                 }
299                 msq_attr.sq_state = MLX5_SQC_STATE_RST;
300                 msq_attr.state = MLX5_SQC_STATE_RDY;
301                 ret = mlx5_devx_cmd_modify_sq(obj->sq_devx, &msq_attr);
302                 if (ret) {
303                         rte_errno = errno;
304                         DRV_LOG(ERR,
305                                 "Cannot change the Tx QP state to READY "
306                                 "%s", strerror(errno));
307                         return ret;
308                 }
309         } else {
310                 struct ibv_qp_attr mod = {
311                         .qp_state = IBV_QPS_RESET,
312                         .port_num = (uint8_t)priv->dev_port,
313                 };
314                 struct ibv_qp *qp = txq_ctrl->obj->qp;
315
316                 ret = mlx5_glue->modify_qp(qp, &mod, IBV_QP_STATE);
317                 if (ret) {
318                         DRV_LOG(ERR, "Cannot change the Tx QP state to RESET "
319                                 "%s", strerror(errno));
320                         rte_errno = errno;
321                         return ret;
322                 }
323                 mod.qp_state = IBV_QPS_INIT;
324                 ret = mlx5_glue->modify_qp(qp, &mod,
325                                            (IBV_QP_STATE | IBV_QP_PORT));
326                 if (ret) {
327                         DRV_LOG(ERR, "Cannot change Tx QP state to INIT %s",
328                                 strerror(errno));
329                         rte_errno = errno;
330                         return ret;
331                 }
332                 mod.qp_state = IBV_QPS_RTR;
333                 ret = mlx5_glue->modify_qp(qp, &mod, IBV_QP_STATE);
334                 if (ret) {
335                         DRV_LOG(ERR, "Cannot change Tx QP state to RTR %s",
336                                 strerror(errno));
337                         rte_errno = errno;
338                         return ret;
339                 }
340                 mod.qp_state = IBV_QPS_RTS;
341                 ret = mlx5_glue->modify_qp(qp, &mod, IBV_QP_STATE);
342                 if (ret) {
343                         DRV_LOG(ERR, "Cannot change Tx QP state to RTS %s",
344                                 strerror(errno));
345                         rte_errno = errno;
346                         return ret;
347                 }
348         }
349         txq_ctrl->txq.wqe_ci = 0;
350         txq_ctrl->txq.wqe_pi = 0;
351         txq_ctrl->txq.elts_comp = 0;
352         /* Set the actual queue state. */
353         dev->data->tx_queue_state[idx] = RTE_ETH_QUEUE_STATE_STARTED;
354         return 0;
355 }
356
357 /**
358  * Rx queue start. Device queue goes to the ready state,
359  * all required mbufs are allocated and WQ is replenished.
360  *
361  * @param dev
362  *   Pointer to Ethernet device structure.
363  * @param idx
364  *   RX queue index.
365  *
366  * @return
367  *   0 on success, a negative errno value otherwise and rte_errno is set.
368  */
369 int
370 mlx5_tx_queue_start(struct rte_eth_dev *dev, uint16_t idx)
371 {
372         int ret;
373
374         if (rte_eth_dev_is_tx_hairpin_queue(dev, idx)) {
375                 DRV_LOG(ERR, "Hairpin queue can't be started");
376                 rte_errno = EINVAL;
377                 return -EINVAL;
378         }
379         if (dev->data->tx_queue_state[idx] == RTE_ETH_QUEUE_STATE_STARTED)
380                 return 0;
381         if (rte_eal_process_type() ==  RTE_PROC_SECONDARY) {
382                 ret = mlx5_mp_os_req_queue_control(dev, idx,
383                                                    MLX5_MP_REQ_QUEUE_TX_START);
384         } else {
385                 ret = mlx5_tx_queue_start_primary(dev, idx);
386         }
387         return ret;
388 }
389
390 /**
391  * Tx queue presetup checks.
392  *
393  * @param dev
394  *   Pointer to Ethernet device structure.
395  * @param idx
396  *   Tx queue index.
397  * @param desc
398  *   Number of descriptors to configure in queue.
399  *
400  * @return
401  *   0 on success, a negative errno value otherwise and rte_errno is set.
402  */
403 static int
404 mlx5_tx_queue_pre_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t *desc)
405 {
406         struct mlx5_priv *priv = dev->data->dev_private;
407
408         if (*desc <= MLX5_TX_COMP_THRESH) {
409                 DRV_LOG(WARNING,
410                         "port %u number of descriptors requested for Tx queue"
411                         " %u must be higher than MLX5_TX_COMP_THRESH, using %u"
412                         " instead of %u", dev->data->port_id, idx,
413                         MLX5_TX_COMP_THRESH + 1, *desc);
414                 *desc = MLX5_TX_COMP_THRESH + 1;
415         }
416         if (!rte_is_power_of_2(*desc)) {
417                 *desc = 1 << log2above(*desc);
418                 DRV_LOG(WARNING,
419                         "port %u increased number of descriptors in Tx queue"
420                         " %u to the next power of two (%d)",
421                         dev->data->port_id, idx, *desc);
422         }
423         DRV_LOG(DEBUG, "port %u configuring queue %u for %u descriptors",
424                 dev->data->port_id, idx, *desc);
425         if (idx >= priv->txqs_n) {
426                 DRV_LOG(ERR, "port %u Tx queue index out of range (%u >= %u)",
427                         dev->data->port_id, idx, priv->txqs_n);
428                 rte_errno = EOVERFLOW;
429                 return -rte_errno;
430         }
431         if (!mlx5_txq_releasable(dev, idx)) {
432                 rte_errno = EBUSY;
433                 DRV_LOG(ERR, "port %u unable to release queue index %u",
434                         dev->data->port_id, idx);
435                 return -rte_errno;
436         }
437         mlx5_txq_release(dev, idx);
438         return 0;
439 }
440 /**
441  * DPDK callback to configure a TX queue.
442  *
443  * @param dev
444  *   Pointer to Ethernet device structure.
445  * @param idx
446  *   TX queue index.
447  * @param desc
448  *   Number of descriptors to configure in queue.
449  * @param socket
450  *   NUMA socket on which memory must be allocated.
451  * @param[in] conf
452  *   Thresholds parameters.
453  *
454  * @return
455  *   0 on success, a negative errno value otherwise and rte_errno is set.
456  */
457 int
458 mlx5_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
459                     unsigned int socket, const struct rte_eth_txconf *conf)
460 {
461         struct mlx5_priv *priv = dev->data->dev_private;
462         struct mlx5_txq_data *txq = (*priv->txqs)[idx];
463         struct mlx5_txq_ctrl *txq_ctrl =
464                 container_of(txq, struct mlx5_txq_ctrl, txq);
465         int res;
466
467         res = mlx5_tx_queue_pre_setup(dev, idx, &desc);
468         if (res)
469                 return res;
470         txq_ctrl = mlx5_txq_new(dev, idx, desc, socket, conf);
471         if (!txq_ctrl) {
472                 DRV_LOG(ERR, "port %u unable to allocate queue index %u",
473                         dev->data->port_id, idx);
474                 return -rte_errno;
475         }
476         DRV_LOG(DEBUG, "port %u adding Tx queue %u to list",
477                 dev->data->port_id, idx);
478         (*priv->txqs)[idx] = &txq_ctrl->txq;
479         dev->data->tx_queue_state[idx] = RTE_ETH_QUEUE_STATE_STARTED;
480         return 0;
481 }
482
483 /**
484  * DPDK callback to configure a TX hairpin queue.
485  *
486  * @param dev
487  *   Pointer to Ethernet device structure.
488  * @param idx
489  *   TX queue index.
490  * @param desc
491  *   Number of descriptors to configure in queue.
492  * @param[in] hairpin_conf
493  *   The hairpin binding configuration.
494  *
495  * @return
496  *   0 on success, a negative errno value otherwise and rte_errno is set.
497  */
498 int
499 mlx5_tx_hairpin_queue_setup(struct rte_eth_dev *dev, uint16_t idx,
500                             uint16_t desc,
501                             const struct rte_eth_hairpin_conf *hairpin_conf)
502 {
503         struct mlx5_priv *priv = dev->data->dev_private;
504         struct mlx5_txq_data *txq = (*priv->txqs)[idx];
505         struct mlx5_txq_ctrl *txq_ctrl =
506                 container_of(txq, struct mlx5_txq_ctrl, txq);
507         int res;
508
509         res = mlx5_tx_queue_pre_setup(dev, idx, &desc);
510         if (res)
511                 return res;
512         if (hairpin_conf->peer_count != 1 ||
513             hairpin_conf->peers[0].port != dev->data->port_id ||
514             hairpin_conf->peers[0].queue >= priv->rxqs_n) {
515                 DRV_LOG(ERR, "port %u unable to setup hairpin queue index %u "
516                         " invalid hairpind configuration", dev->data->port_id,
517                         idx);
518                 rte_errno = EINVAL;
519                 return -rte_errno;
520         }
521         txq_ctrl = mlx5_txq_hairpin_new(dev, idx, desc, hairpin_conf);
522         if (!txq_ctrl) {
523                 DRV_LOG(ERR, "port %u unable to allocate queue index %u",
524                         dev->data->port_id, idx);
525                 return -rte_errno;
526         }
527         DRV_LOG(DEBUG, "port %u adding Tx queue %u to list",
528                 dev->data->port_id, idx);
529         (*priv->txqs)[idx] = &txq_ctrl->txq;
530         dev->data->tx_queue_state[idx] = RTE_ETH_QUEUE_STATE_HAIRPIN;
531         return 0;
532 }
533
534 /**
535  * DPDK callback to release a TX queue.
536  *
537  * @param dpdk_txq
538  *   Generic TX queue pointer.
539  */
540 void
541 mlx5_tx_queue_release(void *dpdk_txq)
542 {
543         struct mlx5_txq_data *txq = (struct mlx5_txq_data *)dpdk_txq;
544         struct mlx5_txq_ctrl *txq_ctrl;
545         struct mlx5_priv *priv;
546         unsigned int i;
547
548         if (txq == NULL)
549                 return;
550         txq_ctrl = container_of(txq, struct mlx5_txq_ctrl, txq);
551         priv = txq_ctrl->priv;
552         for (i = 0; (i != priv->txqs_n); ++i)
553                 if ((*priv->txqs)[i] == txq) {
554                         DRV_LOG(DEBUG, "port %u removing Tx queue %u from list",
555                                 PORT_ID(priv), txq->idx);
556                         mlx5_txq_release(ETH_DEV(priv), i);
557                         break;
558                 }
559 }
560
561 /**
562  * Configure the doorbell register non-cached attribute.
563  *
564  * @param txq_ctrl
565  *   Pointer to Tx queue control structure.
566  * @param page_size
567  *   Systme page size
568  */
569 static void
570 txq_uar_ncattr_init(struct mlx5_txq_ctrl *txq_ctrl, size_t page_size)
571 {
572         struct mlx5_priv *priv = txq_ctrl->priv;
573         off_t cmd;
574
575         txq_ctrl->txq.db_heu = priv->config.dbnc == MLX5_TXDB_HEURISTIC;
576         txq_ctrl->txq.db_nc = 0;
577         /* Check the doorbell register mapping type. */
578         cmd = txq_ctrl->uar_mmap_offset / page_size;
579         cmd >>= MLX5_UAR_MMAP_CMD_SHIFT;
580         cmd &= MLX5_UAR_MMAP_CMD_MASK;
581         if (cmd == MLX5_MMAP_GET_NC_PAGES_CMD)
582                 txq_ctrl->txq.db_nc = 1;
583 }
584
585 /**
586  * Initialize Tx UAR registers for primary process.
587  *
588  * @param txq_ctrl
589  *   Pointer to Tx queue control structure.
590  */
591 static void
592 txq_uar_init(struct mlx5_txq_ctrl *txq_ctrl)
593 {
594         struct mlx5_priv *priv = txq_ctrl->priv;
595         struct mlx5_proc_priv *ppriv = MLX5_PROC_PRIV(PORT_ID(priv));
596 #ifndef RTE_ARCH_64
597         unsigned int lock_idx;
598 #endif
599         const size_t page_size = rte_mem_page_size();
600         if (page_size == (size_t)-1) {
601                 DRV_LOG(ERR, "Failed to get mem page size");
602                 rte_errno = ENOMEM;
603         }
604
605         if (txq_ctrl->type != MLX5_TXQ_TYPE_STANDARD)
606                 return;
607         MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
608         MLX5_ASSERT(ppriv);
609         ppriv->uar_table[txq_ctrl->txq.idx] = txq_ctrl->bf_reg;
610         txq_uar_ncattr_init(txq_ctrl, page_size);
611 #ifndef RTE_ARCH_64
612         /* Assign an UAR lock according to UAR page number */
613         lock_idx = (txq_ctrl->uar_mmap_offset / page_size) &
614                    MLX5_UAR_PAGE_NUM_MASK;
615         txq_ctrl->txq.uar_lock = &priv->sh->uar_lock[lock_idx];
616 #endif
617 }
618
619 /**
620  * Remap UAR register of a Tx queue for secondary process.
621  *
622  * Remapped address is stored at the table in the process private structure of
623  * the device, indexed by queue index.
624  *
625  * @param txq_ctrl
626  *   Pointer to Tx queue control structure.
627  * @param fd
628  *   Verbs file descriptor to map UAR pages.
629  *
630  * @return
631  *   0 on success, a negative errno value otherwise and rte_errno is set.
632  */
633 static int
634 txq_uar_init_secondary(struct mlx5_txq_ctrl *txq_ctrl, int fd)
635 {
636         struct mlx5_priv *priv = txq_ctrl->priv;
637         struct mlx5_proc_priv *ppriv = MLX5_PROC_PRIV(PORT_ID(priv));
638         struct mlx5_txq_data *txq = &txq_ctrl->txq;
639         void *addr;
640         uintptr_t uar_va;
641         uintptr_t offset;
642         const size_t page_size = rte_mem_page_size();
643         if (page_size == (size_t)-1) {
644                 DRV_LOG(ERR, "Failed to get mem page size");
645                 rte_errno = ENOMEM;
646                 return -rte_errno;
647         }
648
649         if (txq_ctrl->type != MLX5_TXQ_TYPE_STANDARD)
650                 return 0;
651         MLX5_ASSERT(ppriv);
652         /*
653          * As rdma-core, UARs are mapped in size of OS page
654          * size. Ref to libmlx5 function: mlx5_init_context()
655          */
656         uar_va = (uintptr_t)txq_ctrl->bf_reg;
657         offset = uar_va & (page_size - 1); /* Offset in page. */
658         addr = rte_mem_map(NULL, page_size, RTE_PROT_WRITE, RTE_MAP_SHARED,
659                             fd, txq_ctrl->uar_mmap_offset);
660         if (!addr) {
661                 DRV_LOG(ERR,
662                         "port %u mmap failed for BF reg of txq %u",
663                         txq->port_id, txq->idx);
664                 rte_errno = ENXIO;
665                 return -rte_errno;
666         }
667         addr = RTE_PTR_ADD(addr, offset);
668         ppriv->uar_table[txq->idx] = addr;
669         txq_uar_ncattr_init(txq_ctrl, page_size);
670         return 0;
671 }
672
673 /**
674  * Unmap UAR register of a Tx queue for secondary process.
675  *
676  * @param txq_ctrl
677  *   Pointer to Tx queue control structure.
678  */
679 static void
680 txq_uar_uninit_secondary(struct mlx5_txq_ctrl *txq_ctrl)
681 {
682         struct mlx5_proc_priv *ppriv = MLX5_PROC_PRIV(PORT_ID(txq_ctrl->priv));
683         void *addr;
684         const size_t page_size = rte_mem_page_size();
685         if (page_size == (size_t)-1) {
686                 DRV_LOG(ERR, "Failed to get mem page size");
687                 rte_errno = ENOMEM;
688         }
689
690         if (txq_ctrl->type != MLX5_TXQ_TYPE_STANDARD)
691                 return;
692         addr = ppriv->uar_table[txq_ctrl->txq.idx];
693         rte_mem_unmap(RTE_PTR_ALIGN_FLOOR(addr, page_size), page_size);
694 }
695
696 /**
697  * Deinitialize Tx UAR registers for secondary process.
698  *
699  * @param dev
700  *   Pointer to Ethernet device.
701  */
702 void
703 mlx5_tx_uar_uninit_secondary(struct rte_eth_dev *dev)
704 {
705         struct mlx5_priv *priv = dev->data->dev_private;
706         struct mlx5_txq_data *txq;
707         struct mlx5_txq_ctrl *txq_ctrl;
708         unsigned int i;
709
710         MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_SECONDARY);
711         for (i = 0; i != priv->txqs_n; ++i) {
712                 if (!(*priv->txqs)[i])
713                         continue;
714                 txq = (*priv->txqs)[i];
715                 txq_ctrl = container_of(txq, struct mlx5_txq_ctrl, txq);
716                 txq_uar_uninit_secondary(txq_ctrl);
717         }
718 }
719
720 /**
721  * Initialize Tx UAR registers for secondary process.
722  *
723  * @param dev
724  *   Pointer to Ethernet device.
725  * @param fd
726  *   Verbs file descriptor to map UAR pages.
727  *
728  * @return
729  *   0 on success, a negative errno value otherwise and rte_errno is set.
730  */
731 int
732 mlx5_tx_uar_init_secondary(struct rte_eth_dev *dev, int fd)
733 {
734         struct mlx5_priv *priv = dev->data->dev_private;
735         struct mlx5_txq_data *txq;
736         struct mlx5_txq_ctrl *txq_ctrl;
737         unsigned int i;
738         int ret;
739
740         MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_SECONDARY);
741         for (i = 0; i != priv->txqs_n; ++i) {
742                 if (!(*priv->txqs)[i])
743                         continue;
744                 txq = (*priv->txqs)[i];
745                 txq_ctrl = container_of(txq, struct mlx5_txq_ctrl, txq);
746                 if (txq_ctrl->type != MLX5_TXQ_TYPE_STANDARD)
747                         continue;
748                 MLX5_ASSERT(txq->idx == (uint16_t)i);
749                 ret = txq_uar_init_secondary(txq_ctrl, fd);
750                 if (ret)
751                         goto error;
752         }
753         return 0;
754 error:
755         /* Rollback. */
756         do {
757                 if (!(*priv->txqs)[i])
758                         continue;
759                 txq = (*priv->txqs)[i];
760                 txq_ctrl = container_of(txq, struct mlx5_txq_ctrl, txq);
761                 txq_uar_uninit_secondary(txq_ctrl);
762         } while (i--);
763         return -rte_errno;
764 }
765
766 /**
767  * Create the Tx hairpin queue object.
768  *
769  * @param dev
770  *   Pointer to Ethernet device.
771  * @param idx
772  *   Queue index in DPDK Tx queue array
773  *
774  * @return
775  *   The hairpin DevX object initialised, NULL otherwise and rte_errno is set.
776  */
777 static struct mlx5_txq_obj *
778 mlx5_txq_obj_hairpin_new(struct rte_eth_dev *dev, uint16_t idx)
779 {
780         struct mlx5_priv *priv = dev->data->dev_private;
781         struct mlx5_txq_data *txq_data = (*priv->txqs)[idx];
782         struct mlx5_txq_ctrl *txq_ctrl =
783                 container_of(txq_data, struct mlx5_txq_ctrl, txq);
784         struct mlx5_devx_create_sq_attr attr = { 0 };
785         struct mlx5_txq_obj *tmpl = NULL;
786         uint32_t max_wq_data;
787
788         MLX5_ASSERT(txq_data);
789         MLX5_ASSERT(!txq_ctrl->obj);
790         tmpl = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO, sizeof(*tmpl), 0,
791                            txq_ctrl->socket);
792         if (!tmpl) {
793                 DRV_LOG(ERR,
794                         "port %u Tx queue %u cannot allocate memory resources",
795                         dev->data->port_id, txq_data->idx);
796                 rte_errno = ENOMEM;
797                 return NULL;
798         }
799         tmpl->type = MLX5_TXQ_OBJ_TYPE_DEVX_HAIRPIN;
800         tmpl->txq_ctrl = txq_ctrl;
801         attr.hairpin = 1;
802         attr.tis_lst_sz = 1;
803         max_wq_data = priv->config.hca_attr.log_max_hairpin_wq_data_sz;
804         /* Jumbo frames > 9KB should be supported, and more packets. */
805         if (priv->config.log_hp_size != (uint32_t)MLX5_ARG_UNSET) {
806                 if (priv->config.log_hp_size > max_wq_data) {
807                         DRV_LOG(ERR, "total data size %u power of 2 is "
808                                 "too large for hairpin",
809                                 priv->config.log_hp_size);
810                         mlx5_free(tmpl);
811                         rte_errno = ERANGE;
812                         return NULL;
813                 }
814                 attr.wq_attr.log_hairpin_data_sz = priv->config.log_hp_size;
815         } else {
816                 attr.wq_attr.log_hairpin_data_sz =
817                                 (max_wq_data < MLX5_HAIRPIN_JUMBO_LOG_SIZE) ?
818                                  max_wq_data : MLX5_HAIRPIN_JUMBO_LOG_SIZE;
819         }
820         /* Set the packets number to the maximum value for performance. */
821         attr.wq_attr.log_hairpin_num_packets =
822                         attr.wq_attr.log_hairpin_data_sz -
823                         MLX5_HAIRPIN_QUEUE_STRIDE;
824         attr.tis_num = priv->sh->tis->id;
825         tmpl->sq = mlx5_devx_cmd_create_sq(priv->sh->ctx, &attr);
826         if (!tmpl->sq) {
827                 DRV_LOG(ERR,
828                         "port %u tx hairpin queue %u can't create sq object",
829                         dev->data->port_id, idx);
830                 mlx5_free(tmpl);
831                 rte_errno = errno;
832                 return NULL;
833         }
834         DRV_LOG(DEBUG, "port %u sxq %u updated with %p", dev->data->port_id,
835                 idx, (void *)&tmpl);
836         rte_atomic32_inc(&tmpl->refcnt);
837         LIST_INSERT_HEAD(&priv->txqsobj, tmpl, next);
838         return tmpl;
839 }
840
841 /**
842  * Destroy the Tx queue DevX object.
843  *
844  * @param txq_obj
845  *   Txq object to destroy
846  */
847 static void
848 txq_release_sq_resources(struct mlx5_txq_obj *txq_obj)
849 {
850         MLX5_ASSERT(txq_obj->type == MLX5_TXQ_OBJ_TYPE_DEVX_SQ);
851
852         if (txq_obj->sq_devx)
853                 claim_zero(mlx5_devx_cmd_destroy(txq_obj->sq_devx));
854         if (txq_obj->sq_dbrec_page)
855                 claim_zero(mlx5_release_dbr
856                                 (&txq_obj->txq_ctrl->priv->dbrpgs,
857                                 mlx5_os_get_umem_id
858                                         (txq_obj->sq_dbrec_page->umem),
859                                 txq_obj->sq_dbrec_offset));
860         if (txq_obj->sq_umem)
861                 claim_zero(mlx5_glue->devx_umem_dereg(txq_obj->sq_umem));
862         if (txq_obj->sq_buf)
863                 mlx5_free(txq_obj->sq_buf);
864         if (txq_obj->cq_devx)
865                 claim_zero(mlx5_devx_cmd_destroy(txq_obj->cq_devx));
866         if (txq_obj->cq_dbrec_page)
867                 claim_zero(mlx5_release_dbr
868                                 (&txq_obj->txq_ctrl->priv->dbrpgs,
869                                 mlx5_os_get_umem_id
870                                         (txq_obj->cq_dbrec_page->umem),
871                                 txq_obj->cq_dbrec_offset));
872         if (txq_obj->cq_umem)
873                 claim_zero(mlx5_glue->devx_umem_dereg(txq_obj->cq_umem));
874         if (txq_obj->cq_buf)
875                 mlx5_free(txq_obj->cq_buf);
876 }
877
878 /**
879  * Create the Tx queue DevX object.
880  *
881  * @param dev
882  *   Pointer to Ethernet device.
883  * @param idx
884  *   Queue index in DPDK Tx queue array
885  *
886  * @return
887  *   The DevX object initialised, NULL otherwise and rte_errno is set.
888  */
889 static struct mlx5_txq_obj *
890 mlx5_txq_obj_devx_new(struct rte_eth_dev *dev, uint16_t idx)
891 {
892 #ifndef HAVE_MLX5DV_DEVX_UAR_OFFSET
893         DRV_LOG(ERR, "port %u Tx queue %u cannot create with DevX, no UAR",
894                      dev->data->port_id, idx);
895         rte_errno = ENOMEM;
896         return NULL;
897 #else
898         struct mlx5_priv *priv = dev->data->dev_private;
899         struct mlx5_dev_ctx_shared *sh = priv->sh;
900         struct mlx5_txq_data *txq_data = (*priv->txqs)[idx];
901         struct mlx5_txq_ctrl *txq_ctrl =
902                 container_of(txq_data, struct mlx5_txq_ctrl, txq);
903         struct mlx5_devx_create_sq_attr sq_attr = { 0 };
904         struct mlx5_devx_modify_sq_attr msq_attr = { 0 };
905         struct mlx5_devx_cq_attr cq_attr = { 0 };
906         struct mlx5_txq_obj *txq_obj = NULL;
907         size_t page_size;
908         struct mlx5_cqe *cqe;
909         uint32_t i, nqe;
910         void *reg_addr;
911         size_t alignment = (size_t)-1;
912         int ret = 0;
913
914         MLX5_ASSERT(txq_data);
915         MLX5_ASSERT(!txq_ctrl->obj);
916         page_size = rte_mem_page_size();
917         if (page_size == (size_t)-1) {
918                 DRV_LOG(ERR, "Failed to get mem page size");
919                 rte_errno = ENOMEM;
920                 return NULL;
921         }
922         txq_obj = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO,
923                               sizeof(struct mlx5_txq_obj), 0,
924                               txq_ctrl->socket);
925         if (!txq_obj) {
926                 DRV_LOG(ERR,
927                         "port %u Tx queue %u cannot allocate memory resources",
928                         dev->data->port_id, txq_data->idx);
929                 rte_errno = ENOMEM;
930                 return NULL;
931         }
932         txq_obj->type = MLX5_TXQ_OBJ_TYPE_DEVX_SQ;
933         txq_obj->txq_ctrl = txq_ctrl;
934         txq_obj->dev = dev;
935         /* Create the Completion Queue. */
936         nqe = (1UL << txq_data->elts_n) / MLX5_TX_COMP_THRESH +
937                1 + MLX5_TX_COMP_THRESH_INLINE_DIV;
938         nqe = 1UL << log2above(nqe);
939         if (nqe > UINT16_MAX) {
940                 DRV_LOG(ERR,
941                         "port %u Tx queue %u requests to many CQEs %u",
942                         dev->data->port_id, txq_data->idx, nqe);
943                 rte_errno = EINVAL;
944                 goto error;
945         }
946         /* Allocate memory buffer for CQEs. */
947         alignment = MLX5_CQE_BUF_ALIGNMENT;
948         if (alignment == (size_t)-1) {
949                 DRV_LOG(ERR, "Failed to get mem page size");
950                 rte_errno = ENOMEM;
951                 goto error;
952         }
953         txq_obj->cq_buf = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO,
954                                       nqe * sizeof(struct mlx5_cqe),
955                                       alignment,
956                                       sh->numa_node);
957         if (!txq_obj->cq_buf) {
958                 DRV_LOG(ERR,
959                         "port %u Tx queue %u cannot allocate memory (CQ)",
960                         dev->data->port_id, txq_data->idx);
961                 rte_errno = ENOMEM;
962                 goto error;
963         }
964         txq_data->cqe_n = log2above(nqe);
965         txq_data->cqe_s = 1 << txq_data->cqe_n;
966         txq_data->cqe_m = txq_data->cqe_s - 1;
967         txq_data->cqes = (volatile struct mlx5_cqe *)txq_obj->cq_buf;
968         txq_data->cq_ci = 0;
969         txq_data->cq_pi = 0;
970         /* Register allocated buffer in user space with DevX. */
971         txq_obj->cq_umem = mlx5_glue->devx_umem_reg
972                                         (sh->ctx,
973                                          (void *)txq_obj->cq_buf,
974                                          nqe * sizeof(struct mlx5_cqe),
975                                          IBV_ACCESS_LOCAL_WRITE);
976         if (!txq_obj->cq_umem) {
977                 rte_errno = errno;
978                 DRV_LOG(ERR,
979                         "port %u Tx queue %u cannot register memory (CQ)",
980                         dev->data->port_id, txq_data->idx);
981                 goto error;
982         }
983         /* Allocate doorbell record for completion queue. */
984         txq_obj->cq_dbrec_offset = mlx5_get_dbr(sh->ctx,
985                                                 &priv->dbrpgs,
986                                                 &txq_obj->cq_dbrec_page);
987         if (txq_obj->cq_dbrec_offset < 0)
988                 goto error;
989         txq_data->cq_db = (volatile uint32_t *)(txq_obj->cq_dbrec_page->dbrs +
990                                                 txq_obj->cq_dbrec_offset);
991         *txq_data->cq_db = 0;
992         /* Create completion queue object with DevX. */
993         cq_attr.cqe_size = (sizeof(struct mlx5_cqe) == 128) ?
994                             MLX5_CQE_SIZE_128B : MLX5_CQE_SIZE_64B;
995         cq_attr.uar_page_id = mlx5_os_get_devx_uar_page_id(sh->tx_uar);
996         cq_attr.eqn = sh->txpp.eqn;
997         cq_attr.q_umem_valid = 1;
998         cq_attr.q_umem_offset = (uintptr_t)txq_obj->cq_buf % page_size;
999         cq_attr.q_umem_id = mlx5_os_get_umem_id(txq_obj->cq_umem);
1000         cq_attr.db_umem_valid = 1;
1001         cq_attr.db_umem_offset = txq_obj->cq_dbrec_offset;
1002         cq_attr.db_umem_id = mlx5_os_get_umem_id(txq_obj->cq_dbrec_page->umem);
1003         cq_attr.log_cq_size = rte_log2_u32(nqe);
1004         cq_attr.log_page_size = rte_log2_u32(page_size);
1005         txq_obj->cq_devx = mlx5_devx_cmd_create_cq(sh->ctx, &cq_attr);
1006         if (!txq_obj->cq_devx) {
1007                 rte_errno = errno;
1008                 DRV_LOG(ERR, "port %u Tx queue %u CQ creation failure",
1009                         dev->data->port_id, idx);
1010                 goto error;
1011         }
1012         /* Initial fill CQ buffer with invalid CQE opcode. */
1013         cqe = (struct mlx5_cqe *)txq_obj->cq_buf;
1014         for (i = 0; i < txq_data->cqe_s; i++) {
1015                 cqe->op_own = (MLX5_CQE_INVALID << 4) | MLX5_CQE_OWNER_MASK;
1016                 ++cqe;
1017         }
1018         /* Create the Work Queue. */
1019         nqe = RTE_MIN(1UL << txq_data->elts_n,
1020                       (uint32_t)sh->device_attr.max_qp_wr);
1021         txq_obj->sq_buf = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO,
1022                                       nqe * sizeof(struct mlx5_wqe),
1023                                       page_size, sh->numa_node);
1024         if (!txq_obj->sq_buf) {
1025                 DRV_LOG(ERR,
1026                         "port %u Tx queue %u cannot allocate memory (SQ)",
1027                         dev->data->port_id, txq_data->idx);
1028                 rte_errno = ENOMEM;
1029                 goto error;
1030         }
1031         txq_data->wqe_n = log2above(nqe);
1032         txq_data->wqe_s = 1 << txq_data->wqe_n;
1033         txq_data->wqe_m = txq_data->wqe_s - 1;
1034         txq_data->wqes = (struct mlx5_wqe *)txq_obj->sq_buf;
1035         txq_data->wqes_end = txq_data->wqes + txq_data->wqe_s;
1036         txq_data->wqe_ci = 0;
1037         txq_data->wqe_pi = 0;
1038         txq_data->wqe_comp = 0;
1039         txq_data->wqe_thres = txq_data->wqe_s / MLX5_TX_COMP_THRESH_INLINE_DIV;
1040         /* Register allocated buffer in user space with DevX. */
1041         txq_obj->sq_umem = mlx5_glue->devx_umem_reg
1042                                         (sh->ctx,
1043                                          (void *)txq_obj->sq_buf,
1044                                          nqe * sizeof(struct mlx5_wqe),
1045                                          IBV_ACCESS_LOCAL_WRITE);
1046         if (!txq_obj->sq_umem) {
1047                 rte_errno = errno;
1048                 DRV_LOG(ERR,
1049                         "port %u Tx queue %u cannot register memory (SQ)",
1050                         dev->data->port_id, txq_data->idx);
1051                 goto error;
1052         }
1053         /* Allocate doorbell record for send queue. */
1054         txq_obj->sq_dbrec_offset = mlx5_get_dbr(sh->ctx,
1055                                                 &priv->dbrpgs,
1056                                                 &txq_obj->sq_dbrec_page);
1057         if (txq_obj->sq_dbrec_offset < 0)
1058                 goto error;
1059         txq_data->qp_db = (volatile uint32_t *)
1060                                         (txq_obj->sq_dbrec_page->dbrs +
1061                                          txq_obj->sq_dbrec_offset +
1062                                          MLX5_SND_DBR * sizeof(uint32_t));
1063         *txq_data->qp_db = 0;
1064         /* Create Send Queue object with DevX. */
1065         sq_attr.tis_lst_sz = 1;
1066         sq_attr.tis_num = sh->tis->id;
1067         sq_attr.state = MLX5_SQC_STATE_RST;
1068         sq_attr.cqn = txq_obj->cq_devx->id;
1069         sq_attr.flush_in_error_en = 1;
1070         sq_attr.allow_multi_pkt_send_wqe = !!priv->config.mps;
1071         sq_attr.allow_swp = !!priv->config.swp;
1072         sq_attr.min_wqe_inline_mode = priv->config.hca_attr.vport_inline_mode;
1073         sq_attr.wq_attr.uar_page = mlx5_os_get_devx_uar_page_id(sh->tx_uar);
1074         sq_attr.wq_attr.wq_type = MLX5_WQ_TYPE_CYCLIC;
1075         sq_attr.wq_attr.pd = sh->pdn;
1076         sq_attr.wq_attr.log_wq_stride = rte_log2_u32(MLX5_WQE_SIZE);
1077         sq_attr.wq_attr.log_wq_sz = txq_data->wqe_n;
1078         sq_attr.wq_attr.dbr_umem_valid = 1;
1079         sq_attr.wq_attr.dbr_addr = txq_obj->sq_dbrec_offset;
1080         sq_attr.wq_attr.dbr_umem_id =
1081                         mlx5_os_get_umem_id(txq_obj->sq_dbrec_page->umem);
1082         sq_attr.wq_attr.wq_umem_valid = 1;
1083         sq_attr.wq_attr.wq_umem_id = mlx5_os_get_umem_id(txq_obj->sq_umem);
1084         sq_attr.wq_attr.wq_umem_offset = (uintptr_t)txq_obj->sq_buf % page_size;
1085         txq_obj->sq_devx = mlx5_devx_cmd_create_sq(sh->ctx, &sq_attr);
1086         if (!txq_obj->sq_devx) {
1087                 rte_errno = errno;
1088                 DRV_LOG(ERR, "port %u Tx queue %u SQ creation failure",
1089                         dev->data->port_id, idx);
1090                 goto error;
1091         }
1092         txq_data->qp_num_8s = txq_obj->sq_devx->id << 8;
1093         /* Change Send Queue state to Ready-to-Send. */
1094         msq_attr.sq_state = MLX5_SQC_STATE_RST;
1095         msq_attr.state = MLX5_SQC_STATE_RDY;
1096         ret = mlx5_devx_cmd_modify_sq(txq_obj->sq_devx, &msq_attr);
1097         if (ret) {
1098                 rte_errno = errno;
1099                 DRV_LOG(ERR,
1100                         "port %u Tx queue %u SP state to SQC_STATE_RDY failed",
1101                         dev->data->port_id, idx);
1102                 goto error;
1103         }
1104         txq_data->fcqs = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO,
1105                                      txq_data->cqe_s * sizeof(*txq_data->fcqs),
1106                                      RTE_CACHE_LINE_SIZE,
1107                                      txq_ctrl->socket);
1108         if (!txq_data->fcqs) {
1109                 DRV_LOG(ERR, "port %u Tx queue %u cannot allocate memory (FCQ)",
1110                         dev->data->port_id, idx);
1111                 rte_errno = ENOMEM;
1112                 goto error;
1113         }
1114 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
1115         /*
1116          * If using DevX need to query and store TIS transport domain value.
1117          * This is done once per port.
1118          * Will use this value on Rx, when creating matching TIR.
1119          */
1120         if (priv->config.devx && !priv->sh->tdn)
1121                 priv->sh->tdn = priv->sh->td->id;
1122 #endif
1123         MLX5_ASSERT(sh->tx_uar);
1124         reg_addr = mlx5_os_get_devx_uar_reg_addr(sh->tx_uar);
1125         MLX5_ASSERT(reg_addr);
1126         txq_ctrl->bf_reg = reg_addr;
1127         txq_ctrl->uar_mmap_offset =
1128                 mlx5_os_get_devx_uar_mmap_offset(sh->tx_uar);
1129         rte_atomic32_set(&txq_obj->refcnt, 1);
1130         txq_uar_init(txq_ctrl);
1131         LIST_INSERT_HEAD(&priv->txqsobj, txq_obj, next);
1132         return txq_obj;
1133 error:
1134         ret = rte_errno; /* Save rte_errno before cleanup. */
1135         txq_release_sq_resources(txq_obj);
1136         if (txq_data->fcqs) {
1137                 mlx5_free(txq_data->fcqs);
1138                 txq_data->fcqs = NULL;
1139         }
1140         mlx5_free(txq_obj);
1141         rte_errno = ret; /* Restore rte_errno. */
1142         return NULL;
1143 #endif
1144 }
1145
1146 /**
1147  * Create the Tx queue Verbs object.
1148  *
1149  * @param dev
1150  *   Pointer to Ethernet device.
1151  * @param idx
1152  *   Queue index in DPDK Tx queue array.
1153  * @param type
1154  *   Type of the Tx queue object to create.
1155  *
1156  * @return
1157  *   The Verbs object initialised, NULL otherwise and rte_errno is set.
1158  */
1159 struct mlx5_txq_obj *
1160 mlx5_txq_obj_new(struct rte_eth_dev *dev, uint16_t idx,
1161                  enum mlx5_txq_obj_type type)
1162 {
1163         struct mlx5_priv *priv = dev->data->dev_private;
1164         struct mlx5_txq_data *txq_data = (*priv->txqs)[idx];
1165         struct mlx5_txq_ctrl *txq_ctrl =
1166                 container_of(txq_data, struct mlx5_txq_ctrl, txq);
1167         struct mlx5_txq_obj tmpl;
1168         struct mlx5_txq_obj *txq_obj = NULL;
1169         union {
1170                 struct ibv_qp_init_attr_ex init;
1171                 struct ibv_qp_attr mod;
1172         } attr;
1173         unsigned int cqe_n;
1174         struct mlx5dv_qp qp = { .comp_mask = MLX5DV_QP_MASK_UAR_MMAP_OFFSET };
1175         struct mlx5dv_cq cq_info;
1176         struct mlx5dv_obj obj;
1177         const int desc = 1 << txq_data->elts_n;
1178         int ret = 0;
1179
1180         if (type == MLX5_TXQ_OBJ_TYPE_DEVX_HAIRPIN)
1181                 return mlx5_txq_obj_hairpin_new(dev, idx);
1182         if (type == MLX5_TXQ_OBJ_TYPE_DEVX_SQ)
1183                 return mlx5_txq_obj_devx_new(dev, idx);
1184 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
1185         /* If using DevX, need additional mask to read tisn value. */
1186         if (priv->config.devx && !priv->sh->tdn)
1187                 qp.comp_mask |= MLX5DV_QP_MASK_RAW_QP_HANDLES;
1188 #endif
1189         MLX5_ASSERT(txq_data);
1190         priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_TX_QUEUE;
1191         priv->verbs_alloc_ctx.obj = txq_ctrl;
1192         if (mlx5_getenv_int("MLX5_ENABLE_CQE_COMPRESSION")) {
1193                 DRV_LOG(ERR,
1194                         "port %u MLX5_ENABLE_CQE_COMPRESSION must never be set",
1195                         dev->data->port_id);
1196                 rte_errno = EINVAL;
1197                 return NULL;
1198         }
1199         memset(&tmpl, 0, sizeof(struct mlx5_txq_obj));
1200         cqe_n = desc / MLX5_TX_COMP_THRESH +
1201                 1 + MLX5_TX_COMP_THRESH_INLINE_DIV;
1202         tmpl.cq = mlx5_glue->create_cq(priv->sh->ctx, cqe_n, NULL, NULL, 0);
1203         if (tmpl.cq == NULL) {
1204                 DRV_LOG(ERR, "port %u Tx queue %u CQ creation failure",
1205                         dev->data->port_id, idx);
1206                 rte_errno = errno;
1207                 goto error;
1208         }
1209         attr.init = (struct ibv_qp_init_attr_ex){
1210                 /* CQ to be associated with the send queue. */
1211                 .send_cq = tmpl.cq,
1212                 /* CQ to be associated with the receive queue. */
1213                 .recv_cq = tmpl.cq,
1214                 .cap = {
1215                         /* Max number of outstanding WRs. */
1216                         .max_send_wr =
1217                                 ((priv->sh->device_attr.max_qp_wr <
1218                                   desc) ?
1219                                  priv->sh->device_attr.max_qp_wr :
1220                                  desc),
1221                         /*
1222                          * Max number of scatter/gather elements in a WR,
1223                          * must be 1 to prevent libmlx5 from trying to affect
1224                          * too much memory. TX gather is not impacted by the
1225                          * device_attr.max_sge limit and will still work
1226                          * properly.
1227                          */
1228                         .max_send_sge = 1,
1229                 },
1230                 .qp_type = IBV_QPT_RAW_PACKET,
1231                 /*
1232                  * Do *NOT* enable this, completions events are managed per
1233                  * Tx burst.
1234                  */
1235                 .sq_sig_all = 0,
1236                 .pd = priv->sh->pd,
1237                 .comp_mask = IBV_QP_INIT_ATTR_PD,
1238         };
1239         if (txq_data->inlen_send)
1240                 attr.init.cap.max_inline_data = txq_ctrl->max_inline_data;
1241         if (txq_data->tso_en) {
1242                 attr.init.max_tso_header = txq_ctrl->max_tso_header;
1243                 attr.init.comp_mask |= IBV_QP_INIT_ATTR_MAX_TSO_HEADER;
1244         }
1245         tmpl.qp = mlx5_glue->create_qp_ex(priv->sh->ctx, &attr.init);
1246         if (tmpl.qp == NULL) {
1247                 DRV_LOG(ERR, "port %u Tx queue %u QP creation failure",
1248                         dev->data->port_id, idx);
1249                 rte_errno = errno;
1250                 goto error;
1251         }
1252         attr.mod = (struct ibv_qp_attr){
1253                 /* Move the QP to this state. */
1254                 .qp_state = IBV_QPS_INIT,
1255                 /* IB device port number. */
1256                 .port_num = (uint8_t)priv->dev_port,
1257         };
1258         ret = mlx5_glue->modify_qp(tmpl.qp, &attr.mod,
1259                                    (IBV_QP_STATE | IBV_QP_PORT));
1260         if (ret) {
1261                 DRV_LOG(ERR,
1262                         "port %u Tx queue %u QP state to IBV_QPS_INIT failed",
1263                         dev->data->port_id, idx);
1264                 rte_errno = errno;
1265                 goto error;
1266         }
1267         attr.mod = (struct ibv_qp_attr){
1268                 .qp_state = IBV_QPS_RTR
1269         };
1270         ret = mlx5_glue->modify_qp(tmpl.qp, &attr.mod, IBV_QP_STATE);
1271         if (ret) {
1272                 DRV_LOG(ERR,
1273                         "port %u Tx queue %u QP state to IBV_QPS_RTR failed",
1274                         dev->data->port_id, idx);
1275                 rte_errno = errno;
1276                 goto error;
1277         }
1278         attr.mod.qp_state = IBV_QPS_RTS;
1279         ret = mlx5_glue->modify_qp(tmpl.qp, &attr.mod, IBV_QP_STATE);
1280         if (ret) {
1281                 DRV_LOG(ERR,
1282                         "port %u Tx queue %u QP state to IBV_QPS_RTS failed",
1283                         dev->data->port_id, idx);
1284                 rte_errno = errno;
1285                 goto error;
1286         }
1287         txq_obj = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO,
1288                               sizeof(struct mlx5_txq_obj), 0,
1289                               txq_ctrl->socket);
1290         if (!txq_obj) {
1291                 DRV_LOG(ERR, "port %u Tx queue %u cannot allocate memory",
1292                         dev->data->port_id, idx);
1293                 rte_errno = ENOMEM;
1294                 goto error;
1295         }
1296         obj.cq.in = tmpl.cq;
1297         obj.cq.out = &cq_info;
1298         obj.qp.in = tmpl.qp;
1299         obj.qp.out = &qp;
1300         ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_CQ | MLX5DV_OBJ_QP);
1301         if (ret != 0) {
1302                 rte_errno = errno;
1303                 goto error;
1304         }
1305         if (cq_info.cqe_size != RTE_CACHE_LINE_SIZE) {
1306                 DRV_LOG(ERR,
1307                         "port %u wrong MLX5_CQE_SIZE environment variable"
1308                         " value: it should be set to %u",
1309                         dev->data->port_id, RTE_CACHE_LINE_SIZE);
1310                 rte_errno = EINVAL;
1311                 goto error;
1312         }
1313         txq_data->cqe_n = log2above(cq_info.cqe_cnt);
1314         txq_data->cqe_s = 1 << txq_data->cqe_n;
1315         txq_data->cqe_m = txq_data->cqe_s - 1;
1316         txq_data->qp_num_8s = ((struct ibv_qp *)tmpl.qp)->qp_num << 8;
1317         txq_data->wqes = qp.sq.buf;
1318         txq_data->wqe_n = log2above(qp.sq.wqe_cnt);
1319         txq_data->wqe_s = 1 << txq_data->wqe_n;
1320         txq_data->wqe_m = txq_data->wqe_s - 1;
1321         txq_data->wqes_end = txq_data->wqes + txq_data->wqe_s;
1322         txq_data->qp_db = &qp.dbrec[MLX5_SND_DBR];
1323         txq_data->cq_db = cq_info.dbrec;
1324         txq_data->cqes = (volatile struct mlx5_cqe *)cq_info.buf;
1325         txq_data->cq_ci = 0;
1326         txq_data->cq_pi = 0;
1327         txq_data->wqe_ci = 0;
1328         txq_data->wqe_pi = 0;
1329         txq_data->wqe_comp = 0;
1330         txq_data->wqe_thres = txq_data->wqe_s / MLX5_TX_COMP_THRESH_INLINE_DIV;
1331         txq_data->fcqs = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO,
1332                                      txq_data->cqe_s * sizeof(*txq_data->fcqs),
1333                                      RTE_CACHE_LINE_SIZE, txq_ctrl->socket);
1334         if (!txq_data->fcqs) {
1335                 DRV_LOG(ERR, "port %u Tx queue %u cannot allocate memory (FCQ)",
1336                         dev->data->port_id, idx);
1337                 rte_errno = ENOMEM;
1338                 goto error;
1339         }
1340 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
1341         /*
1342          * If using DevX need to query and store TIS transport domain value.
1343          * This is done once per port.
1344          * Will use this value on Rx, when creating matching TIR.
1345          */
1346         if (priv->config.devx && !priv->sh->tdn) {
1347                 ret = mlx5_devx_cmd_qp_query_tis_td(tmpl.qp, qp.tisn,
1348                                                     &priv->sh->tdn);
1349                 if (ret) {
1350                         DRV_LOG(ERR, "Fail to query port %u Tx queue %u QP TIS "
1351                                 "transport domain", dev->data->port_id, idx);
1352                         rte_errno = EINVAL;
1353                         goto error;
1354                 } else {
1355                         DRV_LOG(DEBUG, "port %u Tx queue %u TIS number %d "
1356                                 "transport domain %d", dev->data->port_id,
1357                                 idx, qp.tisn, priv->sh->tdn);
1358                 }
1359         }
1360 #endif
1361         txq_obj->qp = tmpl.qp;
1362         txq_obj->cq = tmpl.cq;
1363         rte_atomic32_inc(&txq_obj->refcnt);
1364         txq_ctrl->bf_reg = qp.bf.reg;
1365         if (qp.comp_mask & MLX5DV_QP_MASK_UAR_MMAP_OFFSET) {
1366                 txq_ctrl->uar_mmap_offset = qp.uar_mmap_offset;
1367                 DRV_LOG(DEBUG, "port %u: uar_mmap_offset 0x%"PRIx64,
1368                         dev->data->port_id, txq_ctrl->uar_mmap_offset);
1369         } else {
1370                 DRV_LOG(ERR,
1371                         "port %u failed to retrieve UAR info, invalid"
1372                         " libmlx5.so",
1373                         dev->data->port_id);
1374                 rte_errno = EINVAL;
1375                 goto error;
1376         }
1377         txq_uar_init(txq_ctrl);
1378         LIST_INSERT_HEAD(&priv->txqsobj, txq_obj, next);
1379         txq_obj->txq_ctrl = txq_ctrl;
1380         priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1381         return txq_obj;
1382 error:
1383         ret = rte_errno; /* Save rte_errno before cleanup. */
1384         if (tmpl.cq)
1385                 claim_zero(mlx5_glue->destroy_cq(tmpl.cq));
1386         if (tmpl.qp)
1387                 claim_zero(mlx5_glue->destroy_qp(tmpl.qp));
1388         if (txq_data && txq_data->fcqs) {
1389                 mlx5_free(txq_data->fcqs);
1390                 txq_data->fcqs = NULL;
1391         }
1392         if (txq_obj)
1393                 mlx5_free(txq_obj);
1394         priv->verbs_alloc_ctx.type = MLX5_VERBS_ALLOC_TYPE_NONE;
1395         rte_errno = ret; /* Restore rte_errno. */
1396         return NULL;
1397 }
1398
1399 /**
1400  * Get an Tx queue Verbs object.
1401  *
1402  * @param dev
1403  *   Pointer to Ethernet device.
1404  * @param idx
1405  *   Queue index in DPDK Tx queue array.
1406  *
1407  * @return
1408  *   The Verbs object if it exists.
1409  */
1410 struct mlx5_txq_obj *
1411 mlx5_txq_obj_get(struct rte_eth_dev *dev, uint16_t idx)
1412 {
1413         struct mlx5_priv *priv = dev->data->dev_private;
1414         struct mlx5_txq_ctrl *txq_ctrl;
1415
1416         if (idx >= priv->txqs_n)
1417                 return NULL;
1418         if (!(*priv->txqs)[idx])
1419                 return NULL;
1420         txq_ctrl = container_of((*priv->txqs)[idx], struct mlx5_txq_ctrl, txq);
1421         if (txq_ctrl->obj)
1422                 rte_atomic32_inc(&txq_ctrl->obj->refcnt);
1423         return txq_ctrl->obj;
1424 }
1425
1426 /**
1427  * Release an Tx verbs queue object.
1428  *
1429  * @param txq_obj
1430  *   Verbs Tx queue object.
1431  *
1432  * @return
1433  *   1 while a reference on it exists, 0 when freed.
1434  */
1435 int
1436 mlx5_txq_obj_release(struct mlx5_txq_obj *txq_obj)
1437 {
1438         MLX5_ASSERT(txq_obj);
1439         if (rte_atomic32_dec_and_test(&txq_obj->refcnt)) {
1440                 if (txq_obj->type == MLX5_TXQ_OBJ_TYPE_DEVX_HAIRPIN) {
1441                         if (txq_obj->tis)
1442                                 claim_zero(mlx5_devx_cmd_destroy(txq_obj->tis));
1443                 } else if (txq_obj->type == MLX5_TXQ_OBJ_TYPE_DEVX_SQ) {
1444                         txq_release_sq_resources(txq_obj);
1445                 } else {
1446                         claim_zero(mlx5_glue->destroy_qp(txq_obj->qp));
1447                         claim_zero(mlx5_glue->destroy_cq(txq_obj->cq));
1448                 }
1449                 if (txq_obj->txq_ctrl->txq.fcqs) {
1450                         mlx5_free(txq_obj->txq_ctrl->txq.fcqs);
1451                         txq_obj->txq_ctrl->txq.fcqs = NULL;
1452                 }
1453                 LIST_REMOVE(txq_obj, next);
1454                 mlx5_free(txq_obj);
1455                 return 0;
1456         }
1457         return 1;
1458 }
1459
1460 /**
1461  * Verify the Verbs Tx queue list is empty
1462  *
1463  * @param dev
1464  *   Pointer to Ethernet device.
1465  *
1466  * @return
1467  *   The number of object not released.
1468  */
1469 int
1470 mlx5_txq_obj_verify(struct rte_eth_dev *dev)
1471 {
1472         struct mlx5_priv *priv = dev->data->dev_private;
1473         int ret = 0;
1474         struct mlx5_txq_obj *txq_obj;
1475
1476         LIST_FOREACH(txq_obj, &priv->txqsobj, next) {
1477                 DRV_LOG(DEBUG, "port %u Verbs Tx queue %u still referenced",
1478                         dev->data->port_id, txq_obj->txq_ctrl->txq.idx);
1479                 ++ret;
1480         }
1481         return ret;
1482 }
1483
1484 /**
1485  * Calculate the total number of WQEBB for Tx queue.
1486  *
1487  * Simplified version of calc_sq_size() in rdma-core.
1488  *
1489  * @param txq_ctrl
1490  *   Pointer to Tx queue control structure.
1491  *
1492  * @return
1493  *   The number of WQEBB.
1494  */
1495 static int
1496 txq_calc_wqebb_cnt(struct mlx5_txq_ctrl *txq_ctrl)
1497 {
1498         unsigned int wqe_size;
1499         const unsigned int desc = 1 << txq_ctrl->txq.elts_n;
1500
1501         wqe_size = MLX5_WQE_CSEG_SIZE +
1502                    MLX5_WQE_ESEG_SIZE +
1503                    MLX5_WSEG_SIZE -
1504                    MLX5_ESEG_MIN_INLINE_SIZE +
1505                    txq_ctrl->max_inline_data;
1506         return rte_align32pow2(wqe_size * desc) / MLX5_WQE_SIZE;
1507 }
1508
1509 /**
1510  * Calculate the maximal inline data size for Tx queue.
1511  *
1512  * @param txq_ctrl
1513  *   Pointer to Tx queue control structure.
1514  *
1515  * @return
1516  *   The maximal inline data size.
1517  */
1518 static unsigned int
1519 txq_calc_inline_max(struct mlx5_txq_ctrl *txq_ctrl)
1520 {
1521         const unsigned int desc = 1 << txq_ctrl->txq.elts_n;
1522         struct mlx5_priv *priv = txq_ctrl->priv;
1523         unsigned int wqe_size;
1524
1525         wqe_size = priv->sh->device_attr.max_qp_wr / desc;
1526         if (!wqe_size)
1527                 return 0;
1528         /*
1529          * This calculation is derived from tthe source of
1530          * mlx5_calc_send_wqe() in rdma_core library.
1531          */
1532         wqe_size = wqe_size * MLX5_WQE_SIZE -
1533                    MLX5_WQE_CSEG_SIZE -
1534                    MLX5_WQE_ESEG_SIZE -
1535                    MLX5_WSEG_SIZE -
1536                    MLX5_WSEG_SIZE +
1537                    MLX5_DSEG_MIN_INLINE_SIZE;
1538         return wqe_size;
1539 }
1540
1541 /**
1542  * Set Tx queue parameters from device configuration.
1543  *
1544  * @param txq_ctrl
1545  *   Pointer to Tx queue control structure.
1546  */
1547 static void
1548 txq_set_params(struct mlx5_txq_ctrl *txq_ctrl)
1549 {
1550         struct mlx5_priv *priv = txq_ctrl->priv;
1551         struct mlx5_dev_config *config = &priv->config;
1552         unsigned int inlen_send; /* Inline data for ordinary SEND.*/
1553         unsigned int inlen_empw; /* Inline data for enhanced MPW. */
1554         unsigned int inlen_mode; /* Minimal required Inline data. */
1555         unsigned int txqs_inline; /* Min Tx queues to enable inline. */
1556         uint64_t dev_txoff = priv->dev_data->dev_conf.txmode.offloads;
1557         bool tso = txq_ctrl->txq.offloads & (DEV_TX_OFFLOAD_TCP_TSO |
1558                                             DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
1559                                             DEV_TX_OFFLOAD_GRE_TNL_TSO |
1560                                             DEV_TX_OFFLOAD_IP_TNL_TSO |
1561                                             DEV_TX_OFFLOAD_UDP_TNL_TSO);
1562         bool vlan_inline;
1563         unsigned int temp;
1564
1565         if (config->txqs_inline == MLX5_ARG_UNSET)
1566                 txqs_inline =
1567 #if defined(RTE_ARCH_ARM64)
1568                 (priv->pci_dev->id.device_id ==
1569                         PCI_DEVICE_ID_MELLANOX_CONNECTX5BF) ?
1570                         MLX5_INLINE_MAX_TXQS_BLUEFIELD :
1571 #endif
1572                         MLX5_INLINE_MAX_TXQS;
1573         else
1574                 txqs_inline = (unsigned int)config->txqs_inline;
1575         inlen_send = (config->txq_inline_max == MLX5_ARG_UNSET) ?
1576                      MLX5_SEND_DEF_INLINE_LEN :
1577                      (unsigned int)config->txq_inline_max;
1578         inlen_empw = (config->txq_inline_mpw == MLX5_ARG_UNSET) ?
1579                      MLX5_EMPW_DEF_INLINE_LEN :
1580                      (unsigned int)config->txq_inline_mpw;
1581         inlen_mode = (config->txq_inline_min == MLX5_ARG_UNSET) ?
1582                      0 : (unsigned int)config->txq_inline_min;
1583         if (config->mps != MLX5_MPW_ENHANCED && config->mps != MLX5_MPW)
1584                 inlen_empw = 0;
1585         /*
1586          * If there is requested minimal amount of data to inline
1587          * we MUST enable inlining. This is a case for ConnectX-4
1588          * which usually requires L2 inlined for correct operating
1589          * and ConnectX-4 Lx which requires L2-L4 inlined to
1590          * support E-Switch Flows.
1591          */
1592         if (inlen_mode) {
1593                 if (inlen_mode <= MLX5_ESEG_MIN_INLINE_SIZE) {
1594                         /*
1595                          * Optimize minimal inlining for single
1596                          * segment packets to fill one WQEBB
1597                          * without gaps.
1598                          */
1599                         temp = MLX5_ESEG_MIN_INLINE_SIZE;
1600                 } else {
1601                         temp = inlen_mode - MLX5_ESEG_MIN_INLINE_SIZE;
1602                         temp = RTE_ALIGN(temp, MLX5_WSEG_SIZE) +
1603                                MLX5_ESEG_MIN_INLINE_SIZE;
1604                         temp = RTE_MIN(temp, MLX5_SEND_MAX_INLINE_LEN);
1605                 }
1606                 if (temp != inlen_mode) {
1607                         DRV_LOG(INFO,
1608                                 "port %u minimal required inline setting"
1609                                 " aligned from %u to %u",
1610                                 PORT_ID(priv), inlen_mode, temp);
1611                         inlen_mode = temp;
1612                 }
1613         }
1614         /*
1615          * If port is configured to support VLAN insertion and device
1616          * does not support this feature by HW (for NICs before ConnectX-5
1617          * or in case of wqe_vlan_insert flag is not set) we must enable
1618          * data inline on all queues because it is supported by single
1619          * tx_burst routine.
1620          */
1621         txq_ctrl->txq.vlan_en = config->hw_vlan_insert;
1622         vlan_inline = (dev_txoff & DEV_TX_OFFLOAD_VLAN_INSERT) &&
1623                       !config->hw_vlan_insert;
1624         /*
1625          * If there are few Tx queues it is prioritized
1626          * to save CPU cycles and disable data inlining at all.
1627          */
1628         if (inlen_send && priv->txqs_n >= txqs_inline) {
1629                 /*
1630                  * The data sent with ordinal MLX5_OPCODE_SEND
1631                  * may be inlined in Ethernet Segment, align the
1632                  * length accordingly to fit entire WQEBBs.
1633                  */
1634                 temp = RTE_MAX(inlen_send,
1635                                MLX5_ESEG_MIN_INLINE_SIZE + MLX5_WQE_DSEG_SIZE);
1636                 temp -= MLX5_ESEG_MIN_INLINE_SIZE + MLX5_WQE_DSEG_SIZE;
1637                 temp = RTE_ALIGN(temp, MLX5_WQE_SIZE);
1638                 temp += MLX5_ESEG_MIN_INLINE_SIZE + MLX5_WQE_DSEG_SIZE;
1639                 temp = RTE_MIN(temp, MLX5_WQE_SIZE_MAX +
1640                                      MLX5_ESEG_MIN_INLINE_SIZE -
1641                                      MLX5_WQE_CSEG_SIZE -
1642                                      MLX5_WQE_ESEG_SIZE -
1643                                      MLX5_WQE_DSEG_SIZE * 2);
1644                 temp = RTE_MIN(temp, MLX5_SEND_MAX_INLINE_LEN);
1645                 temp = RTE_MAX(temp, inlen_mode);
1646                 if (temp != inlen_send) {
1647                         DRV_LOG(INFO,
1648                                 "port %u ordinary send inline setting"
1649                                 " aligned from %u to %u",
1650                                 PORT_ID(priv), inlen_send, temp);
1651                         inlen_send = temp;
1652                 }
1653                 /*
1654                  * Not aligned to cache lines, but to WQEs.
1655                  * First bytes of data (initial alignment)
1656                  * is going to be copied explicitly at the
1657                  * beginning of inlining buffer in Ethernet
1658                  * Segment.
1659                  */
1660                 MLX5_ASSERT(inlen_send >= MLX5_ESEG_MIN_INLINE_SIZE);
1661                 MLX5_ASSERT(inlen_send <= MLX5_WQE_SIZE_MAX +
1662                                           MLX5_ESEG_MIN_INLINE_SIZE -
1663                                           MLX5_WQE_CSEG_SIZE -
1664                                           MLX5_WQE_ESEG_SIZE -
1665                                           MLX5_WQE_DSEG_SIZE * 2);
1666         } else if (inlen_mode) {
1667                 /*
1668                  * If minimal inlining is requested we must
1669                  * enable inlining in general, despite the
1670                  * number of configured queues. Ignore the
1671                  * txq_inline_max devarg, this is not
1672                  * full-featured inline.
1673                  */
1674                 inlen_send = inlen_mode;
1675                 inlen_empw = 0;
1676         } else if (vlan_inline) {
1677                 /*
1678                  * Hardware does not report offload for
1679                  * VLAN insertion, we must enable data inline
1680                  * to implement feature by software.
1681                  */
1682                 inlen_send = MLX5_ESEG_MIN_INLINE_SIZE;
1683                 inlen_empw = 0;
1684         } else {
1685                 inlen_send = 0;
1686                 inlen_empw = 0;
1687         }
1688         txq_ctrl->txq.inlen_send = inlen_send;
1689         txq_ctrl->txq.inlen_mode = inlen_mode;
1690         txq_ctrl->txq.inlen_empw = 0;
1691         if (inlen_send && inlen_empw && priv->txqs_n >= txqs_inline) {
1692                 /*
1693                  * The data sent with MLX5_OPCODE_ENHANCED_MPSW
1694                  * may be inlined in Data Segment, align the
1695                  * length accordingly to fit entire WQEBBs.
1696                  */
1697                 temp = RTE_MAX(inlen_empw,
1698                                MLX5_WQE_SIZE + MLX5_DSEG_MIN_INLINE_SIZE);
1699                 temp -= MLX5_DSEG_MIN_INLINE_SIZE;
1700                 temp = RTE_ALIGN(temp, MLX5_WQE_SIZE);
1701                 temp += MLX5_DSEG_MIN_INLINE_SIZE;
1702                 temp = RTE_MIN(temp, MLX5_WQE_SIZE_MAX +
1703                                      MLX5_DSEG_MIN_INLINE_SIZE -
1704                                      MLX5_WQE_CSEG_SIZE -
1705                                      MLX5_WQE_ESEG_SIZE -
1706                                      MLX5_WQE_DSEG_SIZE);
1707                 temp = RTE_MIN(temp, MLX5_EMPW_MAX_INLINE_LEN);
1708                 if (temp != inlen_empw) {
1709                         DRV_LOG(INFO,
1710                                 "port %u enhanced empw inline setting"
1711                                 " aligned from %u to %u",
1712                                 PORT_ID(priv), inlen_empw, temp);
1713                         inlen_empw = temp;
1714                 }
1715                 MLX5_ASSERT(inlen_empw >= MLX5_ESEG_MIN_INLINE_SIZE);
1716                 MLX5_ASSERT(inlen_empw <= MLX5_WQE_SIZE_MAX +
1717                                           MLX5_DSEG_MIN_INLINE_SIZE -
1718                                           MLX5_WQE_CSEG_SIZE -
1719                                           MLX5_WQE_ESEG_SIZE -
1720                                           MLX5_WQE_DSEG_SIZE);
1721                 txq_ctrl->txq.inlen_empw = inlen_empw;
1722         }
1723         txq_ctrl->max_inline_data = RTE_MAX(inlen_send, inlen_empw);
1724         if (tso) {
1725                 txq_ctrl->max_tso_header = MLX5_MAX_TSO_HEADER;
1726                 txq_ctrl->max_inline_data = RTE_MAX(txq_ctrl->max_inline_data,
1727                                                     MLX5_MAX_TSO_HEADER);
1728                 txq_ctrl->txq.tso_en = 1;
1729         }
1730         txq_ctrl->txq.tunnel_en = config->tunnel_en | config->swp;
1731         txq_ctrl->txq.swp_en = ((DEV_TX_OFFLOAD_IP_TNL_TSO |
1732                                  DEV_TX_OFFLOAD_UDP_TNL_TSO |
1733                                  DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) &
1734                                 txq_ctrl->txq.offloads) && config->swp;
1735 }
1736
1737 /**
1738  * Adjust Tx queue data inline parameters for large queue sizes.
1739  * The data inline feature requires multiple WQEs to fit the packets,
1740  * and if the large amount of Tx descriptors is requested by application
1741  * the total WQE amount may exceed the hardware capabilities. If the
1742  * default inline setting are used we can try to adjust these ones and
1743  * meet the hardware requirements and not exceed the queue size.
1744  *
1745  * @param txq_ctrl
1746  *   Pointer to Tx queue control structure.
1747  *
1748  * @return
1749  *   Zero on success, otherwise the parameters can not be adjusted.
1750  */
1751 static int
1752 txq_adjust_params(struct mlx5_txq_ctrl *txq_ctrl)
1753 {
1754         struct mlx5_priv *priv = txq_ctrl->priv;
1755         struct mlx5_dev_config *config = &priv->config;
1756         unsigned int max_inline;
1757
1758         max_inline = txq_calc_inline_max(txq_ctrl);
1759         if (!txq_ctrl->txq.inlen_send) {
1760                 /*
1761                  * Inline data feature is not engaged at all.
1762                  * There is nothing to adjust.
1763                  */
1764                 return 0;
1765         }
1766         if (txq_ctrl->max_inline_data <= max_inline) {
1767                 /*
1768                  * The requested inline data length does not
1769                  * exceed queue capabilities.
1770                  */
1771                 return 0;
1772         }
1773         if (txq_ctrl->txq.inlen_mode > max_inline) {
1774                 DRV_LOG(ERR,
1775                         "minimal data inline requirements (%u) are not"
1776                         " satisfied (%u) on port %u, try the smaller"
1777                         " Tx queue size (%d)",
1778                         txq_ctrl->txq.inlen_mode, max_inline,
1779                         priv->dev_data->port_id,
1780                         priv->sh->device_attr.max_qp_wr);
1781                 goto error;
1782         }
1783         if (txq_ctrl->txq.inlen_send > max_inline &&
1784             config->txq_inline_max != MLX5_ARG_UNSET &&
1785             config->txq_inline_max > (int)max_inline) {
1786                 DRV_LOG(ERR,
1787                         "txq_inline_max requirements (%u) are not"
1788                         " satisfied (%u) on port %u, try the smaller"
1789                         " Tx queue size (%d)",
1790                         txq_ctrl->txq.inlen_send, max_inline,
1791                         priv->dev_data->port_id,
1792                         priv->sh->device_attr.max_qp_wr);
1793                 goto error;
1794         }
1795         if (txq_ctrl->txq.inlen_empw > max_inline &&
1796             config->txq_inline_mpw != MLX5_ARG_UNSET &&
1797             config->txq_inline_mpw > (int)max_inline) {
1798                 DRV_LOG(ERR,
1799                         "txq_inline_mpw requirements (%u) are not"
1800                         " satisfied (%u) on port %u, try the smaller"
1801                         " Tx queue size (%d)",
1802                         txq_ctrl->txq.inlen_empw, max_inline,
1803                         priv->dev_data->port_id,
1804                         priv->sh->device_attr.max_qp_wr);
1805                 goto error;
1806         }
1807         if (txq_ctrl->txq.tso_en && max_inline < MLX5_MAX_TSO_HEADER) {
1808                 DRV_LOG(ERR,
1809                         "tso header inline requirements (%u) are not"
1810                         " satisfied (%u) on port %u, try the smaller"
1811                         " Tx queue size (%d)",
1812                         MLX5_MAX_TSO_HEADER, max_inline,
1813                         priv->dev_data->port_id,
1814                         priv->sh->device_attr.max_qp_wr);
1815                 goto error;
1816         }
1817         if (txq_ctrl->txq.inlen_send > max_inline) {
1818                 DRV_LOG(WARNING,
1819                         "adjust txq_inline_max (%u->%u)"
1820                         " due to large Tx queue on port %u",
1821                         txq_ctrl->txq.inlen_send, max_inline,
1822                         priv->dev_data->port_id);
1823                 txq_ctrl->txq.inlen_send = max_inline;
1824         }
1825         if (txq_ctrl->txq.inlen_empw > max_inline) {
1826                 DRV_LOG(WARNING,
1827                         "adjust txq_inline_mpw (%u->%u)"
1828                         "due to large Tx queue on port %u",
1829                         txq_ctrl->txq.inlen_empw, max_inline,
1830                         priv->dev_data->port_id);
1831                 txq_ctrl->txq.inlen_empw = max_inline;
1832         }
1833         txq_ctrl->max_inline_data = RTE_MAX(txq_ctrl->txq.inlen_send,
1834                                             txq_ctrl->txq.inlen_empw);
1835         MLX5_ASSERT(txq_ctrl->max_inline_data <= max_inline);
1836         MLX5_ASSERT(txq_ctrl->txq.inlen_mode <= max_inline);
1837         MLX5_ASSERT(txq_ctrl->txq.inlen_mode <= txq_ctrl->txq.inlen_send);
1838         MLX5_ASSERT(txq_ctrl->txq.inlen_mode <= txq_ctrl->txq.inlen_empw ||
1839                     !txq_ctrl->txq.inlen_empw);
1840         return 0;
1841 error:
1842         rte_errno = ENOMEM;
1843         return -ENOMEM;
1844 }
1845
1846 /**
1847  * Create a DPDK Tx queue.
1848  *
1849  * @param dev
1850  *   Pointer to Ethernet device.
1851  * @param idx
1852  *   TX queue index.
1853  * @param desc
1854  *   Number of descriptors to configure in queue.
1855  * @param socket
1856  *   NUMA socket on which memory must be allocated.
1857  * @param[in] conf
1858  *  Thresholds parameters.
1859  *
1860  * @return
1861  *   A DPDK queue object on success, NULL otherwise and rte_errno is set.
1862  */
1863 struct mlx5_txq_ctrl *
1864 mlx5_txq_new(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
1865              unsigned int socket, const struct rte_eth_txconf *conf)
1866 {
1867         struct mlx5_priv *priv = dev->data->dev_private;
1868         struct mlx5_txq_ctrl *tmpl;
1869
1870         tmpl = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO, sizeof(*tmpl) +
1871                            desc * sizeof(struct rte_mbuf *), 0, socket);
1872         if (!tmpl) {
1873                 rte_errno = ENOMEM;
1874                 return NULL;
1875         }
1876         if (mlx5_mr_btree_init(&tmpl->txq.mr_ctrl.cache_bh,
1877                                MLX5_MR_BTREE_CACHE_N, socket)) {
1878                 /* rte_errno is already set. */
1879                 goto error;
1880         }
1881         /* Save pointer of global generation number to check memory event. */
1882         tmpl->txq.mr_ctrl.dev_gen_ptr = &priv->sh->share_cache.dev_gen;
1883         MLX5_ASSERT(desc > MLX5_TX_COMP_THRESH);
1884         tmpl->txq.offloads = conf->offloads |
1885                              dev->data->dev_conf.txmode.offloads;
1886         tmpl->priv = priv;
1887         tmpl->socket = socket;
1888         tmpl->txq.elts_n = log2above(desc);
1889         tmpl->txq.elts_s = desc;
1890         tmpl->txq.elts_m = desc - 1;
1891         tmpl->txq.port_id = dev->data->port_id;
1892         tmpl->txq.idx = idx;
1893         txq_set_params(tmpl);
1894         if (txq_adjust_params(tmpl))
1895                 goto error;
1896         if (txq_calc_wqebb_cnt(tmpl) >
1897             priv->sh->device_attr.max_qp_wr) {
1898                 DRV_LOG(ERR,
1899                         "port %u Tx WQEBB count (%d) exceeds the limit (%d),"
1900                         " try smaller queue size",
1901                         dev->data->port_id, txq_calc_wqebb_cnt(tmpl),
1902                         priv->sh->device_attr.max_qp_wr);
1903                 rte_errno = ENOMEM;
1904                 goto error;
1905         }
1906         rte_atomic32_inc(&tmpl->refcnt);
1907         tmpl->type = MLX5_TXQ_TYPE_STANDARD;
1908         LIST_INSERT_HEAD(&priv->txqsctrl, tmpl, next);
1909         return tmpl;
1910 error:
1911         mlx5_free(tmpl);
1912         return NULL;
1913 }
1914
1915 /**
1916  * Create a DPDK Tx hairpin queue.
1917  *
1918  * @param dev
1919  *   Pointer to Ethernet device.
1920  * @param idx
1921  *   TX queue index.
1922  * @param desc
1923  *   Number of descriptors to configure in queue.
1924  * @param hairpin_conf
1925  *  The hairpin configuration.
1926  *
1927  * @return
1928  *   A DPDK queue object on success, NULL otherwise and rte_errno is set.
1929  */
1930 struct mlx5_txq_ctrl *
1931 mlx5_txq_hairpin_new(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
1932                      const struct rte_eth_hairpin_conf *hairpin_conf)
1933 {
1934         struct mlx5_priv *priv = dev->data->dev_private;
1935         struct mlx5_txq_ctrl *tmpl;
1936
1937         tmpl = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO, sizeof(*tmpl), 0,
1938                            SOCKET_ID_ANY);
1939         if (!tmpl) {
1940                 rte_errno = ENOMEM;
1941                 return NULL;
1942         }
1943         tmpl->priv = priv;
1944         tmpl->socket = SOCKET_ID_ANY;
1945         tmpl->txq.elts_n = log2above(desc);
1946         tmpl->txq.port_id = dev->data->port_id;
1947         tmpl->txq.idx = idx;
1948         tmpl->hairpin_conf = *hairpin_conf;
1949         tmpl->type = MLX5_TXQ_TYPE_HAIRPIN;
1950         rte_atomic32_inc(&tmpl->refcnt);
1951         LIST_INSERT_HEAD(&priv->txqsctrl, tmpl, next);
1952         return tmpl;
1953 }
1954
1955 /**
1956  * Get a Tx queue.
1957  *
1958  * @param dev
1959  *   Pointer to Ethernet device.
1960  * @param idx
1961  *   TX queue index.
1962  *
1963  * @return
1964  *   A pointer to the queue if it exists.
1965  */
1966 struct mlx5_txq_ctrl *
1967 mlx5_txq_get(struct rte_eth_dev *dev, uint16_t idx)
1968 {
1969         struct mlx5_priv *priv = dev->data->dev_private;
1970         struct mlx5_txq_ctrl *ctrl = NULL;
1971
1972         if ((*priv->txqs)[idx]) {
1973                 ctrl = container_of((*priv->txqs)[idx], struct mlx5_txq_ctrl,
1974                                     txq);
1975                 mlx5_txq_obj_get(dev, idx);
1976                 rte_atomic32_inc(&ctrl->refcnt);
1977         }
1978         return ctrl;
1979 }
1980
1981 /**
1982  * Release a Tx queue.
1983  *
1984  * @param dev
1985  *   Pointer to Ethernet device.
1986  * @param idx
1987  *   TX queue index.
1988  *
1989  * @return
1990  *   1 while a reference on it exists, 0 when freed.
1991  */
1992 int
1993 mlx5_txq_release(struct rte_eth_dev *dev, uint16_t idx)
1994 {
1995         struct mlx5_priv *priv = dev->data->dev_private;
1996         struct mlx5_txq_ctrl *txq;
1997
1998         if (!(*priv->txqs)[idx])
1999                 return 0;
2000         txq = container_of((*priv->txqs)[idx], struct mlx5_txq_ctrl, txq);
2001         if (txq->obj && !mlx5_txq_obj_release(txq->obj))
2002                 txq->obj = NULL;
2003         if (rte_atomic32_dec_and_test(&txq->refcnt)) {
2004                 txq_free_elts(txq);
2005                 mlx5_mr_btree_free(&txq->txq.mr_ctrl.cache_bh);
2006                 LIST_REMOVE(txq, next);
2007                 mlx5_free(txq);
2008                 (*priv->txqs)[idx] = NULL;
2009                 dev->data->tx_queue_state[idx] = RTE_ETH_QUEUE_STATE_STOPPED;
2010                 return 0;
2011         }
2012         return 1;
2013 }
2014
2015 /**
2016  * Verify if the queue can be released.
2017  *
2018  * @param dev
2019  *   Pointer to Ethernet device.
2020  * @param idx
2021  *   TX queue index.
2022  *
2023  * @return
2024  *   1 if the queue can be released.
2025  */
2026 int
2027 mlx5_txq_releasable(struct rte_eth_dev *dev, uint16_t idx)
2028 {
2029         struct mlx5_priv *priv = dev->data->dev_private;
2030         struct mlx5_txq_ctrl *txq;
2031
2032         if (!(*priv->txqs)[idx])
2033                 return -1;
2034         txq = container_of((*priv->txqs)[idx], struct mlx5_txq_ctrl, txq);
2035         return (rte_atomic32_read(&txq->refcnt) == 1);
2036 }
2037
2038 /**
2039  * Verify the Tx Queue list is empty
2040  *
2041  * @param dev
2042  *   Pointer to Ethernet device.
2043  *
2044  * @return
2045  *   The number of object not released.
2046  */
2047 int
2048 mlx5_txq_verify(struct rte_eth_dev *dev)
2049 {
2050         struct mlx5_priv *priv = dev->data->dev_private;
2051         struct mlx5_txq_ctrl *txq_ctrl;
2052         int ret = 0;
2053
2054         LIST_FOREACH(txq_ctrl, &priv->txqsctrl, next) {
2055                 DRV_LOG(DEBUG, "port %u Tx queue %u still referenced",
2056                         dev->data->port_id, txq_ctrl->txq.idx);
2057                 ++ret;
2058         }
2059         return ret;
2060 }
2061
2062 /**
2063  * Set the Tx queue dynamic timestamp (mask and offset)
2064  *
2065  * @param[in] dev
2066  *   Pointer to the Ethernet device structure.
2067  */
2068 void
2069 mlx5_txq_dynf_timestamp_set(struct rte_eth_dev *dev)
2070 {
2071         struct mlx5_priv *priv = dev->data->dev_private;
2072         struct mlx5_dev_ctx_shared *sh = priv->sh;
2073         struct mlx5_txq_data *data;
2074         int off, nbit;
2075         unsigned int i;
2076         uint64_t mask = 0;
2077
2078         nbit = rte_mbuf_dynflag_lookup
2079                                 (RTE_MBUF_DYNFLAG_TX_TIMESTAMP_NAME, NULL);
2080         off = rte_mbuf_dynfield_lookup
2081                                 (RTE_MBUF_DYNFIELD_TIMESTAMP_NAME, NULL);
2082         if (nbit > 0 && off >= 0 && sh->txpp.refcnt)
2083                 mask = 1ULL << nbit;
2084         for (i = 0; i != priv->txqs_n; ++i) {
2085                 data = (*priv->txqs)[i];
2086                 if (!data)
2087                         continue;
2088                 data->sh = sh;
2089                 data->ts_mask = mask;
2090                 data->ts_offset = off;
2091         }
2092 }