New upstream version 17.11.1
[deb_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);
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                            PKT_TX_OIP_IIP_TCP_UDP_CKSUM) {
222                         /* Outer IP, Inner IP, Inner TCP/UDP CSO */
223                         txbd1->lflags |= TX_BD_FLG_TIP_IP_TCP_UDP_CHKSUM;
224                         txbd1->mss = 0;
225                 } else if ((tx_pkt->ol_flags & PKT_TX_IIP_TCP_UDP_CKSUM) ==
226                            PKT_TX_IIP_TCP_UDP_CKSUM) {
227                         /* (Inner) IP, (Inner) TCP/UDP CSO */
228                         txbd1->lflags |= TX_BD_FLG_IP_TCP_UDP_CHKSUM;
229                         txbd1->mss = 0;
230                 } else if ((tx_pkt->ol_flags & PKT_TX_OIP_TCP_UDP_CKSUM) ==
231                            PKT_TX_OIP_TCP_UDP_CKSUM) {
232                         /* Outer IP, (Inner) TCP/UDP CSO */
233                         txbd1->lflags |= TX_BD_FLG_TIP_TCP_UDP_CHKSUM;
234                         txbd1->mss = 0;
235                 } else if ((tx_pkt->ol_flags & PKT_TX_OIP_IIP_CKSUM) ==
236                            PKT_TX_OIP_IIP_CKSUM) {
237                         /* Outer IP, Inner IP CSO */
238                         txbd1->lflags |= TX_BD_FLG_TIP_IP_CHKSUM;
239                         txbd1->mss = 0;
240                 } else if ((tx_pkt->ol_flags & PKT_TX_TCP_UDP_CKSUM) ==
241                            PKT_TX_TCP_UDP_CKSUM) {
242                         /* TCP/UDP CSO */
243                         txbd1->lflags |= TX_BD_LONG_LFLAGS_TCP_UDP_CHKSUM;
244                         txbd1->mss = 0;
245                 } else if (tx_pkt->ol_flags & PKT_TX_IP_CKSUM) {
246                         /* IP CSO */
247                         txbd1->lflags |= TX_BD_LONG_LFLAGS_IP_CHKSUM;
248                         txbd1->mss = 0;
249                 } else if (tx_pkt->ol_flags & PKT_TX_OUTER_IP_CKSUM) {
250                         /* IP CSO */
251                         txbd1->lflags |= TX_BD_LONG_LFLAGS_T_IP_CHKSUM;
252                         txbd1->mss = 0;
253                 }
254         } else {
255                 txbd->flags_type |= TX_BD_SHORT_TYPE_TX_BD_SHORT;
256         }
257
258         m_seg = tx_pkt->next;
259         /* i is set at the end of the if(long_bd) block */
260         while (txr->tx_prod != last_prod) {
261                 txr->tx_prod = RING_NEXT(txr->tx_ring_struct, txr->tx_prod);
262                 tx_buf = &txr->tx_buf_ring[txr->tx_prod];
263
264                 txbd = &txr->tx_desc_ring[txr->tx_prod];
265                 txbd->addr = rte_cpu_to_le_32(RTE_MBUF_DATA_DMA_ADDR(m_seg));
266                 txbd->flags_type = TX_BD_SHORT_TYPE_TX_BD_SHORT;
267                 txbd->len = m_seg->data_len;
268
269                 m_seg = m_seg->next;
270         }
271
272         txbd->flags_type |= TX_BD_LONG_FLAGS_PACKET_END;
273
274         txr->tx_prod = RING_NEXT(txr->tx_ring_struct, txr->tx_prod);
275
276         return 0;
277 }
278
279 static void bnxt_tx_cmp(struct bnxt_tx_queue *txq, int nr_pkts)
280 {
281         struct bnxt_tx_ring_info *txr = txq->tx_ring;
282         uint16_t cons = txr->tx_cons;
283         int i, j;
284
285         for (i = 0; i < nr_pkts; i++) {
286                 struct bnxt_sw_tx_bd *tx_buf;
287                 struct rte_mbuf *mbuf;
288
289                 tx_buf = &txr->tx_buf_ring[cons];
290                 cons = RING_NEXT(txr->tx_ring_struct, cons);
291                 mbuf = tx_buf->mbuf;
292                 tx_buf->mbuf = NULL;
293
294                 /* EW - no need to unmap DMA memory? */
295
296                 for (j = 1; j < tx_buf->nr_bds; j++)
297                         cons = RING_NEXT(txr->tx_ring_struct, cons);
298                 rte_pktmbuf_free(mbuf);
299         }
300
301         txr->tx_cons = cons;
302 }
303
304 static int bnxt_handle_tx_cp(struct bnxt_tx_queue *txq)
305 {
306         struct bnxt_cp_ring_info *cpr = txq->cp_ring;
307         uint32_t raw_cons = cpr->cp_raw_cons;
308         uint32_t cons;
309         int nb_tx_pkts = 0;
310         struct tx_cmpl *txcmp;
311
312         if ((txq->tx_ring->tx_ring_struct->ring_size -
313                         (bnxt_tx_avail(txq->tx_ring))) >
314                         txq->tx_free_thresh) {
315                 while (1) {
316                         cons = RING_CMP(cpr->cp_ring_struct, raw_cons);
317                         txcmp = (struct tx_cmpl *)&cpr->cp_desc_ring[cons];
318
319                         if (!CMP_VALID(txcmp, raw_cons, cpr->cp_ring_struct))
320                                 break;
321                         cpr->valid = FLIP_VALID(cons,
322                                                 cpr->cp_ring_struct->ring_mask,
323                                                 cpr->valid);
324
325                         if (CMP_TYPE(txcmp) == TX_CMPL_TYPE_TX_L2)
326                                 nb_tx_pkts++;
327                         else
328                                 RTE_LOG_DP(DEBUG, PMD,
329                                                 "Unhandled CMP type %02x\n",
330                                                 CMP_TYPE(txcmp));
331                         raw_cons = NEXT_RAW_CMP(raw_cons);
332                 }
333                 if (nb_tx_pkts)
334                         bnxt_tx_cmp(txq, nb_tx_pkts);
335                 cpr->cp_raw_cons = raw_cons;
336                 B_CP_DIS_DB(cpr, cpr->cp_raw_cons);
337         }
338         return nb_tx_pkts;
339 }
340
341 uint16_t bnxt_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
342                                uint16_t nb_pkts)
343 {
344         struct bnxt_tx_queue *txq = tx_queue;
345         uint16_t nb_tx_pkts = 0;
346         uint16_t db_mask = txq->tx_ring->tx_ring_struct->ring_size >> 2;
347         uint16_t last_db_mask = 0;
348
349         /* Handle TX completions */
350         bnxt_handle_tx_cp(txq);
351
352         /* Handle TX burst request */
353         for (nb_tx_pkts = 0; nb_tx_pkts < nb_pkts; nb_tx_pkts++) {
354                 if (bnxt_start_xmit(tx_pkts[nb_tx_pkts], txq)) {
355                         break;
356                 } else if ((nb_tx_pkts & db_mask) != last_db_mask) {
357                         B_TX_DB(txq->tx_ring->tx_doorbell,
358                                         txq->tx_ring->tx_prod);
359                         last_db_mask = nb_tx_pkts & db_mask;
360                 }
361         }
362         if (nb_tx_pkts)
363                 B_TX_DB(txq->tx_ring->tx_doorbell, txq->tx_ring->tx_prod);
364
365         return nb_tx_pkts;
366 }