net/bnxt: support runtime queue setup
[dpdk.git] / drivers / net / bnxt / bnxt_txq.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2014-2021 Broadcom
3  * All rights reserved.
4  */
5
6 #include <inttypes.h>
7
8 #include <rte_malloc.h>
9
10 #include "bnxt.h"
11 #include "bnxt_hwrm.h"
12 #include "bnxt_ring.h"
13 #include "bnxt_txq.h"
14 #include "bnxt_txr.h"
15
16 /*
17  * TX Queues
18  */
19
20 void bnxt_free_txq_stats(struct bnxt_tx_queue *txq)
21 {
22         if (txq && txq->cp_ring && txq->cp_ring->hw_stats)
23                 txq->cp_ring->hw_stats = NULL;
24 }
25
26 static void bnxt_tx_queue_release_mbufs(struct bnxt_tx_queue *txq)
27 {
28         struct rte_mbuf **sw_ring;
29         uint16_t i;
30
31         if (!txq || !txq->tx_ring)
32                 return;
33
34         sw_ring = txq->tx_ring->tx_buf_ring;
35         if (sw_ring) {
36                 for (i = 0; i < txq->tx_ring->tx_ring_struct->ring_size; i++) {
37                         if (sw_ring[i]) {
38                                 rte_pktmbuf_free_seg(sw_ring[i]);
39                                 sw_ring[i] = NULL;
40                         }
41                 }
42         }
43 }
44
45 void bnxt_free_tx_mbufs(struct bnxt *bp)
46 {
47         struct bnxt_tx_queue *txq;
48         int i;
49
50         for (i = 0; i < (int)bp->tx_nr_rings; i++) {
51                 txq = bp->tx_queues[i];
52                 bnxt_tx_queue_release_mbufs(txq);
53         }
54 }
55
56 void bnxt_tx_queue_release_op(void *tx_queue)
57 {
58         struct bnxt_tx_queue *txq = (struct bnxt_tx_queue *)tx_queue;
59
60         if (txq) {
61                 if (is_bnxt_in_error(txq->bp))
62                         return;
63
64                 /* Free TX ring hardware descriptors */
65                 bnxt_free_hwrm_tx_ring(txq->bp, txq->queue_id);
66                 bnxt_tx_queue_release_mbufs(txq);
67                 if (txq->tx_ring) {
68                         bnxt_free_ring(txq->tx_ring->tx_ring_struct);
69                         rte_free(txq->tx_ring->tx_ring_struct);
70                         rte_free(txq->tx_ring);
71                 }
72
73                 /* Free TX completion ring hardware descriptors */
74                 if (txq->cp_ring) {
75                         bnxt_free_ring(txq->cp_ring->cp_ring_struct);
76                         rte_free(txq->cp_ring->cp_ring_struct);
77                         rte_free(txq->cp_ring);
78                 }
79
80                 bnxt_free_txq_stats(txq);
81                 rte_memzone_free(txq->mz);
82                 txq->mz = NULL;
83
84                 rte_free(txq->free);
85                 rte_free(txq);
86         }
87 }
88
89 int bnxt_tx_queue_setup_op(struct rte_eth_dev *eth_dev,
90                                uint16_t queue_idx,
91                                uint16_t nb_desc,
92                                unsigned int socket_id,
93                                const struct rte_eth_txconf *tx_conf)
94 {
95         struct bnxt *bp = eth_dev->data->dev_private;
96         struct bnxt_tx_queue *txq;
97         int rc = 0;
98
99         rc = is_bnxt_in_error(bp);
100         if (rc)
101                 return rc;
102
103         if (queue_idx >= bnxt_max_rings(bp)) {
104                 PMD_DRV_LOG(ERR,
105                         "Cannot create Tx ring %d. Only %d rings available\n",
106                         queue_idx, bp->max_tx_rings);
107                 return -EINVAL;
108         }
109
110         if (nb_desc < BNXT_MIN_RING_DESC || nb_desc > MAX_TX_DESC_CNT) {
111                 PMD_DRV_LOG(ERR, "nb_desc %d is invalid", nb_desc);
112                 return -EINVAL;
113         }
114
115         if (eth_dev->data->tx_queues) {
116                 txq = eth_dev->data->tx_queues[queue_idx];
117                 if (txq) {
118                         bnxt_tx_queue_release_op(txq);
119                         txq = NULL;
120                 }
121         }
122         txq = rte_zmalloc_socket("bnxt_tx_queue", sizeof(struct bnxt_tx_queue),
123                                  RTE_CACHE_LINE_SIZE, socket_id);
124         if (!txq) {
125                 PMD_DRV_LOG(ERR, "bnxt_tx_queue allocation failed!");
126                 return -ENOMEM;
127         }
128
129         txq->free = rte_zmalloc_socket(NULL,
130                                        sizeof(struct rte_mbuf *) * nb_desc,
131                                        RTE_CACHE_LINE_SIZE, socket_id);
132         if (!txq->free) {
133                 PMD_DRV_LOG(ERR, "allocation of tx mbuf free array failed!");
134                 rc = -ENOMEM;
135                 goto err;
136         }
137         txq->bp = bp;
138         txq->nb_tx_desc = nb_desc;
139         txq->tx_free_thresh =
140                 RTE_MIN(rte_align32pow2(nb_desc) / 4, RTE_BNXT_MAX_TX_BURST);
141         txq->offloads = eth_dev->data->dev_conf.txmode.offloads |
142                         tx_conf->offloads;
143
144         txq->tx_deferred_start = tx_conf->tx_deferred_start;
145
146         rc = bnxt_init_tx_ring_struct(txq, socket_id);
147         if (rc)
148                 goto err;
149
150         txq->queue_id = queue_idx;
151         txq->port_id = eth_dev->data->port_id;
152
153         /* Allocate TX ring hardware descriptors */
154         if (bnxt_alloc_rings(bp, socket_id, queue_idx, txq, NULL, txq->cp_ring,
155                              NULL, "txr")) {
156                 PMD_DRV_LOG(ERR, "ring_dma_zone_reserve for tx_ring failed!");
157                 rc = -ENOMEM;
158                 goto err;
159         }
160
161         if (bnxt_init_one_tx_ring(txq)) {
162                 PMD_DRV_LOG(ERR, "bnxt_init_one_tx_ring failed!");
163                 rc = -ENOMEM;
164                 goto err;
165         }
166
167         eth_dev->data->tx_queues[queue_idx] = txq;
168
169         if (txq->tx_deferred_start)
170                 txq->tx_started = false;
171         else
172                 txq->tx_started = true;
173
174         return 0;
175 err:
176         bnxt_tx_queue_release_op(txq);
177         return rc;
178 }