8ca4bbd80a46d46f63ec7cb7bd0e09eddda13d4e
[dpdk.git] / drivers / net / bnxt / bnxt_txr.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_byteorder.h>
37 #include <rte_malloc.h>
38
39 #include "bnxt.h"
40 #include "bnxt_cpr.h"
41 #include "bnxt_ring.h"
42 #include "bnxt_txq.h"
43 #include "bnxt_txr.h"
44 #include "hsi_struct_def_dpdk.h"
45 #include <stdbool.h>
46
47 /*
48  * TX Ring handling
49  */
50
51 void bnxt_free_tx_rings(struct bnxt *bp)
52 {
53         int i;
54
55         for (i = 0; i < (int)bp->tx_nr_rings; i++) {
56                 struct bnxt_tx_queue *txq = bp->tx_queues[i];
57
58                 if (!txq)
59                         continue;
60
61                 bnxt_free_ring(txq->tx_ring->tx_ring_struct);
62                 rte_free(txq->tx_ring->tx_ring_struct);
63                 rte_free(txq->tx_ring);
64
65                 bnxt_free_ring(txq->cp_ring->cp_ring_struct);
66                 rte_free(txq->cp_ring->cp_ring_struct);
67                 rte_free(txq->cp_ring);
68
69                 rte_free(txq);
70                 bp->tx_queues[i] = NULL;
71         }
72 }
73
74 int bnxt_init_one_tx_ring(struct bnxt_tx_queue *txq)
75 {
76         struct bnxt_tx_ring_info *txr = txq->tx_ring;
77         struct bnxt_ring *ring = txr->tx_ring_struct;
78
79         txq->tx_wake_thresh = ring->ring_size / 2;
80         ring->fw_ring_id = INVALID_HW_RING_ID;
81
82         return 0;
83 }
84
85 int bnxt_init_tx_ring_struct(struct bnxt_tx_queue *txq, unsigned int socket_id)
86 {
87         struct bnxt_cp_ring_info *cpr;
88         struct bnxt_tx_ring_info *txr;
89         struct bnxt_ring *ring;
90
91         txr = rte_zmalloc_socket("bnxt_tx_ring",
92                                  sizeof(struct bnxt_tx_ring_info),
93                                  RTE_CACHE_LINE_SIZE, socket_id);
94         if (txr == NULL)
95                 return -ENOMEM;
96         txq->tx_ring = txr;
97
98         ring = rte_zmalloc_socket("bnxt_tx_ring_struct",
99                                   sizeof(struct bnxt_ring),
100                                   RTE_CACHE_LINE_SIZE, socket_id);
101         if (ring == NULL)
102                 return -ENOMEM;
103         txr->tx_ring_struct = ring;
104         ring->ring_size = rte_align32pow2(txq->nb_tx_desc + 1);
105         ring->ring_mask = ring->ring_size - 1;
106         ring->bd = (void *)txr->tx_desc_ring;
107         ring->bd_dma = txr->tx_desc_mapping;
108         ring->vmem_size = ring->ring_size * sizeof(struct bnxt_sw_tx_bd);
109         ring->vmem = (void **)&txr->tx_buf_ring;
110
111         cpr = rte_zmalloc_socket("bnxt_tx_ring",
112                                  sizeof(struct bnxt_cp_ring_info),
113                                  RTE_CACHE_LINE_SIZE, socket_id);
114         if (cpr == NULL)
115                 return -ENOMEM;
116         txq->cp_ring = cpr;
117
118         ring = rte_zmalloc_socket("bnxt_tx_ring_struct",
119                                   sizeof(struct bnxt_ring),
120                                   RTE_CACHE_LINE_SIZE, socket_id);
121         if (ring == NULL)
122                 return -ENOMEM;
123         cpr->cp_ring_struct = ring;
124         ring->ring_size = txr->tx_ring_struct->ring_size;
125         ring->ring_mask = ring->ring_size - 1;
126         ring->bd = (void *)cpr->cp_desc_ring;
127         ring->bd_dma = cpr->cp_desc_mapping;
128         ring->vmem_size = 0;
129         ring->vmem = NULL;
130
131         return 0;
132 }
133
134 static inline uint32_t bnxt_tx_avail(struct bnxt_tx_ring_info *txr)
135 {
136         /* Tell compiler to fetch tx indices from memory. */
137         rte_compiler_barrier();
138
139         return txr->tx_ring_struct->ring_size -
140                 ((txr->tx_prod - txr->tx_cons) &
141                         txr->tx_ring_struct->ring_mask) - 1;
142 }
143
144 static uint16_t bnxt_start_xmit(struct rte_mbuf *tx_pkt,
145                                 struct bnxt_tx_queue *txq)
146 {
147         struct bnxt_tx_ring_info *txr = txq->tx_ring;
148         struct tx_bd_long *txbd;
149         struct tx_bd_long_hi *txbd1;
150         uint32_t vlan_tag_flags, cfa_action;
151         bool long_bd = false;
152         uint16_t last_prod = 0;
153         struct rte_mbuf *m_seg;
154         struct bnxt_sw_tx_bd *tx_buf;
155         static const uint32_t lhint_arr[4] = {
156                 TX_BD_LONG_FLAGS_LHINT_LT512,
157                 TX_BD_LONG_FLAGS_LHINT_LT1K,
158                 TX_BD_LONG_FLAGS_LHINT_LT2K,
159                 TX_BD_LONG_FLAGS_LHINT_LT2K
160         };
161
162         if (tx_pkt->ol_flags & (PKT_TX_TCP_SEG | PKT_TX_TCP_CKSUM |
163                                 PKT_TX_UDP_CKSUM | PKT_TX_IP_CKSUM |
164                                 PKT_TX_VLAN_PKT | PKT_TX_OUTER_IP_CKSUM))
165                 long_bd = true;
166
167         tx_buf = &txr->tx_buf_ring[txr->tx_prod];
168         tx_buf->mbuf = tx_pkt;
169         tx_buf->nr_bds = long_bd + tx_pkt->nb_segs;
170         last_prod = (txr->tx_prod + tx_buf->nr_bds - 1) &
171                                 txr->tx_ring_struct->ring_mask;
172
173         if (unlikely(bnxt_tx_avail(txr) < tx_buf->nr_bds))
174                 return -ENOMEM;
175
176         txbd = &txr->tx_desc_ring[txr->tx_prod];
177         txbd->opaque = txr->tx_prod;
178         txbd->flags_type = tx_buf->nr_bds << TX_BD_LONG_FLAGS_BD_CNT_SFT;
179         txbd->len = tx_pkt->data_len;
180         if (txbd->len >= 2014)
181                 txbd->flags_type |= TX_BD_LONG_FLAGS_LHINT_GTE2K;
182         else
183                 txbd->flags_type |= lhint_arr[txbd->len >> 9];
184         txbd->addr = rte_cpu_to_le_32(RTE_MBUF_DATA_DMA_ADDR(tx_buf->mbuf));
185
186         if (long_bd) {
187                 txbd->flags_type |= TX_BD_LONG_TYPE_TX_BD_LONG;
188                 vlan_tag_flags = 0;
189                 cfa_action = 0;
190                 if (tx_buf->mbuf->ol_flags & PKT_TX_VLAN_PKT) {
191                         /* shurd: Should this mask at
192                          * TX_BD_LONG_CFA_META_VLAN_VID_MASK?
193                          */
194                         vlan_tag_flags = TX_BD_LONG_CFA_META_KEY_VLAN_TAG |
195                                 tx_buf->mbuf->vlan_tci;
196                         /* Currently supports 8021Q, 8021AD vlan offloads
197                          * QINQ1, QINQ2, QINQ3 vlan headers are deprecated
198                          */
199                         /* DPDK only supports 802.11q VLAN packets */
200                         vlan_tag_flags |=
201                                         TX_BD_LONG_CFA_META_VLAN_TPID_TPID8100;
202                 }
203
204                 txr->tx_prod = RING_NEXT(txr->tx_ring_struct, txr->tx_prod);
205
206                 txbd1 = (struct tx_bd_long_hi *)
207                                         &txr->tx_desc_ring[txr->tx_prod];
208                 txbd1->lflags = 0;
209                 txbd1->cfa_meta = vlan_tag_flags;
210                 txbd1->cfa_action = cfa_action;
211
212                 if (tx_pkt->ol_flags & PKT_TX_TCP_SEG) {
213                         /* TSO */
214                         txbd1->lflags |= TX_BD_LONG_LFLAGS_LSO;
215                         txbd1->hdr_size = tx_pkt->l2_len + tx_pkt->l3_len +
216                                         tx_pkt->l4_len + tx_pkt->outer_l2_len +
217                                         tx_pkt->outer_l3_len;
218                         txbd1->mss = tx_pkt->tso_segsz;
219
220                 } else if (tx_pkt->ol_flags & PKT_TX_OIP_IIP_TCP_UDP_CKSUM) {
221                         /* Outer IP, Inner IP, Inner TCP/UDP CSO */
222                         txbd1->lflags |= TX_BD_FLG_TIP_IP_TCP_UDP_CHKSUM;
223                         txbd1->mss = 0;
224                 } else if (tx_pkt->ol_flags & PKT_TX_IIP_TCP_UDP_CKSUM) {
225                         /* (Inner) IP, (Inner) TCP/UDP CSO */
226                         txbd1->lflags |= TX_BD_FLG_IP_TCP_UDP_CHKSUM;
227                         txbd1->mss = 0;
228                 } else if (tx_pkt->ol_flags & PKT_TX_OIP_TCP_UDP_CKSUM) {
229                         /* Outer IP, (Inner) TCP/UDP CSO */
230                         txbd1->lflags |= TX_BD_FLG_TIP_TCP_UDP_CHKSUM;
231                         txbd1->mss = 0;
232                 } else if (tx_pkt->ol_flags & PKT_TX_OIP_IIP_CKSUM) {
233                         /* Outer IP, Inner IP CSO */
234                         txbd1->lflags |= TX_BD_FLG_TIP_IP_CHKSUM;
235                         txbd1->mss = 0;
236                 } else if (tx_pkt->ol_flags & PKT_TX_TCP_UDP_CKSUM) {
237                         /* TCP/UDP CSO */
238                         txbd1->lflags |= TX_BD_LONG_LFLAGS_TCP_UDP_CHKSUM;
239                         txbd1->mss = 0;
240                 } else if (tx_pkt->ol_flags & PKT_TX_IP_CKSUM) {
241                         /* IP CSO */
242                         txbd1->lflags |= TX_BD_LONG_LFLAGS_IP_CHKSUM;
243                         txbd1->mss = 0;
244                 } else if (tx_pkt->ol_flags & PKT_TX_OUTER_IP_CKSUM) {
245                         /* IP CSO */
246                         txbd1->lflags |= TX_BD_LONG_LFLAGS_T_IP_CHKSUM;
247                         txbd1->mss = 0;
248                 }
249         } else {
250                 txbd->flags_type |= TX_BD_SHORT_TYPE_TX_BD_SHORT;
251         }
252
253         m_seg = tx_pkt->next;
254         /* i is set at the end of the if(long_bd) block */
255         while (txr->tx_prod != last_prod) {
256                 txr->tx_prod = RING_NEXT(txr->tx_ring_struct, txr->tx_prod);
257                 tx_buf = &txr->tx_buf_ring[txr->tx_prod];
258
259                 txbd = &txr->tx_desc_ring[txr->tx_prod];
260                 txbd->addr = rte_cpu_to_le_32(RTE_MBUF_DATA_DMA_ADDR(m_seg));
261                 txbd->flags_type = TX_BD_SHORT_TYPE_TX_BD_SHORT;
262                 txbd->len = m_seg->data_len;
263
264                 m_seg = m_seg->next;
265         }
266
267         txbd->flags_type |= TX_BD_LONG_FLAGS_PACKET_END;
268
269         txr->tx_prod = RING_NEXT(txr->tx_ring_struct, txr->tx_prod);
270
271         return 0;
272 }
273
274 static void bnxt_tx_cmp(struct bnxt_tx_queue *txq, int nr_pkts)
275 {
276         struct bnxt_tx_ring_info *txr = txq->tx_ring;
277         uint16_t cons = txr->tx_cons;
278         int i, j;
279
280         for (i = 0; i < nr_pkts; i++) {
281                 struct bnxt_sw_tx_bd *tx_buf;
282                 struct rte_mbuf *mbuf;
283
284                 tx_buf = &txr->tx_buf_ring[cons];
285                 cons = RING_NEXT(txr->tx_ring_struct, cons);
286                 mbuf = tx_buf->mbuf;
287                 tx_buf->mbuf = NULL;
288
289                 /* EW - no need to unmap DMA memory? */
290
291                 for (j = 1; j < tx_buf->nr_bds; j++)
292                         cons = RING_NEXT(txr->tx_ring_struct, cons);
293                 rte_pktmbuf_free(mbuf);
294         }
295
296         txr->tx_cons = cons;
297 }
298
299 static int bnxt_handle_tx_cp(struct bnxt_tx_queue *txq)
300 {
301         struct bnxt_cp_ring_info *cpr = txq->cp_ring;
302         uint32_t raw_cons = cpr->cp_raw_cons;
303         uint32_t cons;
304         int nb_tx_pkts = 0;
305         struct tx_cmpl *txcmp;
306
307         if ((txq->tx_ring->tx_ring_struct->ring_size -
308                         (bnxt_tx_avail(txq->tx_ring))) >
309                         txq->tx_free_thresh) {
310                 while (1) {
311                         cons = RING_CMP(cpr->cp_ring_struct, raw_cons);
312                         txcmp = (struct tx_cmpl *)&cpr->cp_desc_ring[cons];
313
314                         if (!CMP_VALID(txcmp, raw_cons, cpr->cp_ring_struct))
315                                 break;
316                         cpr->valid = FLIP_VALID(cons,
317                                                 cpr->cp_ring_struct->ring_mask,
318                                                 cpr->valid);
319
320                         if (CMP_TYPE(txcmp) == TX_CMPL_TYPE_TX_L2)
321                                 nb_tx_pkts++;
322                         else
323                                 RTE_LOG_DP(DEBUG, PMD,
324                                                 "Unhandled CMP type %02x\n",
325                                                 CMP_TYPE(txcmp));
326                         raw_cons = NEXT_RAW_CMP(raw_cons);
327                 }
328                 if (nb_tx_pkts)
329                         bnxt_tx_cmp(txq, nb_tx_pkts);
330                 cpr->cp_raw_cons = raw_cons;
331                 B_CP_DIS_DB(cpr, cpr->cp_raw_cons);
332         }
333         return nb_tx_pkts;
334 }
335
336 uint16_t bnxt_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
337                                uint16_t nb_pkts)
338 {
339         struct bnxt_tx_queue *txq = tx_queue;
340         uint16_t nb_tx_pkts = 0;
341         uint16_t db_mask = txq->tx_ring->tx_ring_struct->ring_size >> 2;
342         uint16_t last_db_mask = 0;
343
344         /* Handle TX completions */
345         bnxt_handle_tx_cp(txq);
346
347         /* Handle TX burst request */
348         for (nb_tx_pkts = 0; nb_tx_pkts < nb_pkts; nb_tx_pkts++) {
349                 if (bnxt_start_xmit(tx_pkts[nb_tx_pkts], txq)) {
350                         break;
351                 } else if ((nb_tx_pkts & db_mask) != last_db_mask) {
352                         B_TX_DB(txq->tx_ring->tx_doorbell,
353                                         txq->tx_ring->tx_prod);
354                         last_db_mask = nb_tx_pkts & db_mask;
355                 }
356         }
357         if (nb_tx_pkts)
358                 B_TX_DB(txq->tx_ring->tx_doorbell, txq->tx_ring->tx_prod);
359
360         return nb_tx_pkts;
361 }