8793c9d8dba4bf8c66ce16d02d6585770f905363
[dpdk.git] / drivers / net / bnxt / bnxt_txq.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) Broadcom Limited.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Broadcom Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <inttypes.h>
35
36 #include <rte_malloc.h>
37
38 #include "bnxt.h"
39 #include "bnxt_cpr.h"
40 #include "bnxt_ring.h"
41 #include "bnxt_txq.h"
42
43 /*
44  * TX Queues
45  */
46
47 void bnxt_free_txq_stats(struct bnxt_tx_queue *txq)
48 {
49         struct bnxt_cp_ring_info *cpr = txq->cp_ring;
50
51         /* 'Unreserve' rte_memzone */
52
53         if (cpr->hw_stats)
54                 cpr->hw_stats = NULL;
55 }
56
57 static void bnxt_tx_queue_release_mbufs(struct bnxt_tx_queue *txq __rte_unused)
58 {
59         /* TODO: Requires interaction with TX ring */
60 }
61
62 void bnxt_free_tx_mbufs(struct bnxt *bp)
63 {
64         struct bnxt_tx_queue *txq;
65         int i;
66
67         for (i = 0; i < (int)bp->tx_nr_rings; i++) {
68                 txq = bp->tx_queues[i];
69                 bnxt_tx_queue_release_mbufs(txq);
70         }
71 }
72
73 void bnxt_tx_queue_release_op(void *tx_queue)
74 {
75         struct bnxt_tx_queue *txq = (struct bnxt_tx_queue *)tx_queue;
76
77         if (txq) {
78                 /* TODO: Free ring and stats here */
79                 rte_free(txq);
80         }
81 }
82
83 int bnxt_tx_queue_setup_op(struct rte_eth_dev *eth_dev,
84                                uint16_t queue_idx,
85                                uint16_t nb_desc,
86                                unsigned int socket_id,
87                                const struct rte_eth_txconf *tx_conf)
88 {
89         struct bnxt *bp = (struct bnxt *)eth_dev->data->dev_private;
90         struct bnxt_tx_queue *txq;
91
92         if (!nb_desc || nb_desc > MAX_TX_DESC_CNT) {
93                 RTE_LOG(ERR, PMD, "nb_desc %d is invalid", nb_desc);
94                 return -EINVAL;
95         }
96
97         if (eth_dev->data->tx_queues) {
98                 txq = eth_dev->data->tx_queues[queue_idx];
99                 if (txq) {
100                         bnxt_tx_queue_release_op(txq);
101                         txq = NULL;
102                 }
103         }
104         txq = rte_zmalloc_socket("bnxt_tx_queue", sizeof(struct bnxt_tx_queue),
105                                  RTE_CACHE_LINE_SIZE, socket_id);
106         if (txq == NULL) {
107                 RTE_LOG(ERR, PMD, "bnxt_tx_queue allocation failed!");
108                 return -ENOMEM;
109         }
110         txq->bp = bp;
111         txq->nb_tx_desc = nb_desc;
112         txq->tx_free_thresh = tx_conf->tx_free_thresh;
113
114         /* TODO: Initialize ring structure */
115
116         txq->queue_id = queue_idx;
117         txq->port_id = eth_dev->data->port_id;
118
119         /* TODO: Allocate TX ring hardware descriptors */
120
121         /* TODO: Initialize the ring */
122
123         eth_dev->data->tx_queues[queue_idx] = txq;
124         return 0;
125 }