net/hns3: check max SIMD bitwidth
[dpdk.git] / drivers / net / hns3 / hns3_rxtx.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018-2021 HiSilicon Limited.
3  */
4
5 #include <rte_bus_pci.h>
6 #include <rte_common.h>
7 #include <rte_cycles.h>
8 #include <rte_geneve.h>
9 #include <rte_vxlan.h>
10 #include <ethdev_driver.h>
11 #include <rte_io.h>
12 #include <rte_net.h>
13 #include <rte_malloc.h>
14 #if defined(RTE_ARCH_ARM64)
15 #include <rte_cpuflags.h>
16 #include <rte_vect.h>
17 #endif
18
19 #include "hns3_ethdev.h"
20 #include "hns3_rxtx.h"
21 #include "hns3_regs.h"
22 #include "hns3_logs.h"
23
24 #define HNS3_CFG_DESC_NUM(num)  ((num) / 8 - 1)
25 #define HNS3_RX_RING_PREFETCTH_MASK     3
26
27 static void
28 hns3_rx_queue_release_mbufs(struct hns3_rx_queue *rxq)
29 {
30         uint16_t i;
31
32         /* Note: Fake rx queue will not enter here */
33         if (rxq->sw_ring == NULL)
34                 return;
35
36         if (rxq->rx_rearm_nb == 0) {
37                 for (i = 0; i < rxq->nb_rx_desc; i++) {
38                         if (rxq->sw_ring[i].mbuf != NULL) {
39                                 rte_pktmbuf_free_seg(rxq->sw_ring[i].mbuf);
40                                 rxq->sw_ring[i].mbuf = NULL;
41                         }
42                 }
43         } else {
44                 for (i = rxq->next_to_use;
45                      i != rxq->rx_rearm_start;
46                      i = (i + 1) % rxq->nb_rx_desc) {
47                         if (rxq->sw_ring[i].mbuf != NULL) {
48                                 rte_pktmbuf_free_seg(rxq->sw_ring[i].mbuf);
49                                 rxq->sw_ring[i].mbuf = NULL;
50                         }
51                 }
52         }
53
54         for (i = 0; i < rxq->bulk_mbuf_num; i++)
55                 rte_pktmbuf_free_seg(rxq->bulk_mbuf[i]);
56         rxq->bulk_mbuf_num = 0;
57
58         if (rxq->pkt_first_seg) {
59                 rte_pktmbuf_free(rxq->pkt_first_seg);
60                 rxq->pkt_first_seg = NULL;
61         }
62 }
63
64 static void
65 hns3_tx_queue_release_mbufs(struct hns3_tx_queue *txq)
66 {
67         uint16_t i;
68
69         /* Note: Fake tx queue will not enter here */
70         if (txq->sw_ring) {
71                 for (i = 0; i < txq->nb_tx_desc; i++) {
72                         if (txq->sw_ring[i].mbuf) {
73                                 rte_pktmbuf_free_seg(txq->sw_ring[i].mbuf);
74                                 txq->sw_ring[i].mbuf = NULL;
75                         }
76                 }
77         }
78 }
79
80 static void
81 hns3_rx_queue_release(void *queue)
82 {
83         struct hns3_rx_queue *rxq = queue;
84         if (rxq) {
85                 hns3_rx_queue_release_mbufs(rxq);
86                 if (rxq->mz)
87                         rte_memzone_free(rxq->mz);
88                 if (rxq->sw_ring)
89                         rte_free(rxq->sw_ring);
90                 rte_free(rxq);
91         }
92 }
93
94 static void
95 hns3_tx_queue_release(void *queue)
96 {
97         struct hns3_tx_queue *txq = queue;
98         if (txq) {
99                 hns3_tx_queue_release_mbufs(txq);
100                 if (txq->mz)
101                         rte_memzone_free(txq->mz);
102                 if (txq->sw_ring)
103                         rte_free(txq->sw_ring);
104                 if (txq->free)
105                         rte_free(txq->free);
106                 rte_free(txq);
107         }
108 }
109
110 void
111 hns3_dev_rx_queue_release(void *queue)
112 {
113         struct hns3_rx_queue *rxq = queue;
114         struct hns3_adapter *hns;
115
116         if (rxq == NULL)
117                 return;
118
119         hns = rxq->hns;
120         rte_spinlock_lock(&hns->hw.lock);
121         hns3_rx_queue_release(queue);
122         rte_spinlock_unlock(&hns->hw.lock);
123 }
124
125 void
126 hns3_dev_tx_queue_release(void *queue)
127 {
128         struct hns3_tx_queue *txq = queue;
129         struct hns3_adapter *hns;
130
131         if (txq == NULL)
132                 return;
133
134         hns = txq->hns;
135         rte_spinlock_lock(&hns->hw.lock);
136         hns3_tx_queue_release(queue);
137         rte_spinlock_unlock(&hns->hw.lock);
138 }
139
140 static void
141 hns3_fake_rx_queue_release(struct hns3_rx_queue *queue)
142 {
143         struct hns3_rx_queue *rxq = queue;
144         struct hns3_adapter *hns;
145         struct hns3_hw *hw;
146         uint16_t idx;
147
148         if (rxq == NULL)
149                 return;
150
151         hns = rxq->hns;
152         hw = &hns->hw;
153         idx = rxq->queue_id;
154         if (hw->fkq_data.rx_queues[idx]) {
155                 hns3_rx_queue_release(hw->fkq_data.rx_queues[idx]);
156                 hw->fkq_data.rx_queues[idx] = NULL;
157         }
158
159         /* free fake rx queue arrays */
160         if (idx == (hw->fkq_data.nb_fake_rx_queues - 1)) {
161                 hw->fkq_data.nb_fake_rx_queues = 0;
162                 rte_free(hw->fkq_data.rx_queues);
163                 hw->fkq_data.rx_queues = NULL;
164         }
165 }
166
167 static void
168 hns3_fake_tx_queue_release(struct hns3_tx_queue *queue)
169 {
170         struct hns3_tx_queue *txq = queue;
171         struct hns3_adapter *hns;
172         struct hns3_hw *hw;
173         uint16_t idx;
174
175         if (txq == NULL)
176                 return;
177
178         hns = txq->hns;
179         hw = &hns->hw;
180         idx = txq->queue_id;
181         if (hw->fkq_data.tx_queues[idx]) {
182                 hns3_tx_queue_release(hw->fkq_data.tx_queues[idx]);
183                 hw->fkq_data.tx_queues[idx] = NULL;
184         }
185
186         /* free fake tx queue arrays */
187         if (idx == (hw->fkq_data.nb_fake_tx_queues - 1)) {
188                 hw->fkq_data.nb_fake_tx_queues = 0;
189                 rte_free(hw->fkq_data.tx_queues);
190                 hw->fkq_data.tx_queues = NULL;
191         }
192 }
193
194 static void
195 hns3_free_rx_queues(struct rte_eth_dev *dev)
196 {
197         struct hns3_adapter *hns = dev->data->dev_private;
198         struct hns3_fake_queue_data *fkq_data;
199         struct hns3_hw *hw = &hns->hw;
200         uint16_t nb_rx_q;
201         uint16_t i;
202
203         nb_rx_q = hw->data->nb_rx_queues;
204         for (i = 0; i < nb_rx_q; i++) {
205                 if (dev->data->rx_queues[i]) {
206                         hns3_rx_queue_release(dev->data->rx_queues[i]);
207                         dev->data->rx_queues[i] = NULL;
208                 }
209         }
210
211         /* Free fake Rx queues */
212         fkq_data = &hw->fkq_data;
213         for (i = 0; i < fkq_data->nb_fake_rx_queues; i++) {
214                 if (fkq_data->rx_queues[i])
215                         hns3_fake_rx_queue_release(fkq_data->rx_queues[i]);
216         }
217 }
218
219 static void
220 hns3_free_tx_queues(struct rte_eth_dev *dev)
221 {
222         struct hns3_adapter *hns = dev->data->dev_private;
223         struct hns3_fake_queue_data *fkq_data;
224         struct hns3_hw *hw = &hns->hw;
225         uint16_t nb_tx_q;
226         uint16_t i;
227
228         nb_tx_q = hw->data->nb_tx_queues;
229         for (i = 0; i < nb_tx_q; i++) {
230                 if (dev->data->tx_queues[i]) {
231                         hns3_tx_queue_release(dev->data->tx_queues[i]);
232                         dev->data->tx_queues[i] = NULL;
233                 }
234         }
235
236         /* Free fake Tx queues */
237         fkq_data = &hw->fkq_data;
238         for (i = 0; i < fkq_data->nb_fake_tx_queues; i++) {
239                 if (fkq_data->tx_queues[i])
240                         hns3_fake_tx_queue_release(fkq_data->tx_queues[i]);
241         }
242 }
243
244 void
245 hns3_free_all_queues(struct rte_eth_dev *dev)
246 {
247         hns3_free_rx_queues(dev);
248         hns3_free_tx_queues(dev);
249 }
250
251 static int
252 hns3_alloc_rx_queue_mbufs(struct hns3_hw *hw, struct hns3_rx_queue *rxq)
253 {
254         struct rte_mbuf *mbuf;
255         uint64_t dma_addr;
256         uint16_t i;
257
258         for (i = 0; i < rxq->nb_rx_desc; i++) {
259                 mbuf = rte_mbuf_raw_alloc(rxq->mb_pool);
260                 if (unlikely(mbuf == NULL)) {
261                         hns3_err(hw, "Failed to allocate RXD[%u] for rx queue!",
262                                  i);
263                         hns3_rx_queue_release_mbufs(rxq);
264                         return -ENOMEM;
265                 }
266
267                 rte_mbuf_refcnt_set(mbuf, 1);
268                 mbuf->next = NULL;
269                 mbuf->data_off = RTE_PKTMBUF_HEADROOM;
270                 mbuf->nb_segs = 1;
271                 mbuf->port = rxq->port_id;
272
273                 rxq->sw_ring[i].mbuf = mbuf;
274                 dma_addr = rte_cpu_to_le_64(rte_mbuf_data_iova_default(mbuf));
275                 rxq->rx_ring[i].addr = dma_addr;
276                 rxq->rx_ring[i].rx.bd_base_info = 0;
277         }
278
279         return 0;
280 }
281
282 static int
283 hns3_buf_size2type(uint32_t buf_size)
284 {
285         int bd_size_type;
286
287         switch (buf_size) {
288         case 512:
289                 bd_size_type = HNS3_BD_SIZE_512_TYPE;
290                 break;
291         case 1024:
292                 bd_size_type = HNS3_BD_SIZE_1024_TYPE;
293                 break;
294         case 4096:
295                 bd_size_type = HNS3_BD_SIZE_4096_TYPE;
296                 break;
297         default:
298                 bd_size_type = HNS3_BD_SIZE_2048_TYPE;
299         }
300
301         return bd_size_type;
302 }
303
304 static void
305 hns3_init_rx_queue_hw(struct hns3_rx_queue *rxq)
306 {
307         uint32_t rx_buf_len = rxq->rx_buf_len;
308         uint64_t dma_addr = rxq->rx_ring_phys_addr;
309
310         hns3_write_dev(rxq, HNS3_RING_RX_BASEADDR_L_REG, (uint32_t)dma_addr);
311         hns3_write_dev(rxq, HNS3_RING_RX_BASEADDR_H_REG,
312                        (uint32_t)((dma_addr >> 31) >> 1));
313
314         hns3_write_dev(rxq, HNS3_RING_RX_BD_LEN_REG,
315                        hns3_buf_size2type(rx_buf_len));
316         hns3_write_dev(rxq, HNS3_RING_RX_BD_NUM_REG,
317                        HNS3_CFG_DESC_NUM(rxq->nb_rx_desc));
318 }
319
320 static void
321 hns3_init_tx_queue_hw(struct hns3_tx_queue *txq)
322 {
323         uint64_t dma_addr = txq->tx_ring_phys_addr;
324
325         hns3_write_dev(txq, HNS3_RING_TX_BASEADDR_L_REG, (uint32_t)dma_addr);
326         hns3_write_dev(txq, HNS3_RING_TX_BASEADDR_H_REG,
327                        (uint32_t)((dma_addr >> 31) >> 1));
328
329         hns3_write_dev(txq, HNS3_RING_TX_BD_NUM_REG,
330                        HNS3_CFG_DESC_NUM(txq->nb_tx_desc));
331 }
332
333 void
334 hns3_update_all_queues_pvid_proc_en(struct hns3_hw *hw)
335 {
336         uint16_t nb_rx_q = hw->data->nb_rx_queues;
337         uint16_t nb_tx_q = hw->data->nb_tx_queues;
338         struct hns3_rx_queue *rxq;
339         struct hns3_tx_queue *txq;
340         bool pvid_en;
341         int i;
342
343         pvid_en = hw->port_base_vlan_cfg.state == HNS3_PORT_BASE_VLAN_ENABLE;
344         for (i = 0; i < hw->cfg_max_queues; i++) {
345                 if (i < nb_rx_q) {
346                         rxq = hw->data->rx_queues[i];
347                         if (rxq != NULL)
348                                 rxq->pvid_sw_discard_en = pvid_en;
349                 }
350                 if (i < nb_tx_q) {
351                         txq = hw->data->tx_queues[i];
352                         if (txq != NULL)
353                                 txq->pvid_sw_shift_en = pvid_en;
354                 }
355         }
356 }
357
358 static void
359 hns3_stop_unused_queue(void *tqp_base, enum hns3_ring_type queue_type)
360 {
361         uint32_t reg_offset;
362         uint32_t reg;
363
364         reg_offset = queue_type == HNS3_RING_TYPE_TX ?
365                                    HNS3_RING_TX_EN_REG : HNS3_RING_RX_EN_REG;
366         reg = hns3_read_reg(tqp_base, reg_offset);
367         reg &= ~BIT(HNS3_RING_EN_B);
368         hns3_write_reg(tqp_base, reg_offset, reg);
369 }
370
371 void
372 hns3_enable_all_queues(struct hns3_hw *hw, bool en)
373 {
374         uint16_t nb_rx_q = hw->data->nb_rx_queues;
375         uint16_t nb_tx_q = hw->data->nb_tx_queues;
376         struct hns3_rx_queue *rxq;
377         struct hns3_tx_queue *txq;
378         uint32_t rcb_reg;
379         void *tqp_base;
380         int i;
381
382         for (i = 0; i < hw->cfg_max_queues; i++) {
383                 if (hns3_dev_indep_txrx_supported(hw)) {
384                         rxq = i < nb_rx_q ? hw->data->rx_queues[i] : NULL;
385                         txq = i < nb_tx_q ? hw->data->tx_queues[i] : NULL;
386
387                         tqp_base = (void *)((char *)hw->io_base +
388                                         hns3_get_tqp_reg_offset(i));
389                         /*
390                          * If queue struct is not initialized, it means the
391                          * related HW ring has not been initialized yet.
392                          * So, these queues should be disabled before enable
393                          * the tqps to avoid a HW exception since the queues
394                          * are enabled by default.
395                          */
396                         if (rxq == NULL)
397                                 hns3_stop_unused_queue(tqp_base,
398                                                         HNS3_RING_TYPE_RX);
399                         if (txq == NULL)
400                                 hns3_stop_unused_queue(tqp_base,
401                                                         HNS3_RING_TYPE_TX);
402                 } else {
403                         rxq = i < nb_rx_q ? hw->data->rx_queues[i] :
404                               hw->fkq_data.rx_queues[i - nb_rx_q];
405
406                         tqp_base = rxq->io_base;
407                 }
408                 /*
409                  * This is the master switch that used to control the enabling
410                  * of a pair of Tx and Rx queues. Both the Rx and Tx point to
411                  * the same register
412                  */
413                 rcb_reg = hns3_read_reg(tqp_base, HNS3_RING_EN_REG);
414                 if (en)
415                         rcb_reg |= BIT(HNS3_RING_EN_B);
416                 else
417                         rcb_reg &= ~BIT(HNS3_RING_EN_B);
418                 hns3_write_reg(tqp_base, HNS3_RING_EN_REG, rcb_reg);
419         }
420 }
421
422 static void
423 hns3_enable_txq(struct hns3_tx_queue *txq, bool en)
424 {
425         struct hns3_hw *hw = &txq->hns->hw;
426         uint32_t reg;
427
428         if (hns3_dev_indep_txrx_supported(hw)) {
429                 reg = hns3_read_dev(txq, HNS3_RING_TX_EN_REG);
430                 if (en)
431                         reg |= BIT(HNS3_RING_EN_B);
432                 else
433                         reg &= ~BIT(HNS3_RING_EN_B);
434                 hns3_write_dev(txq, HNS3_RING_TX_EN_REG, reg);
435         }
436         txq->enabled = en;
437 }
438
439 static void
440 hns3_enable_rxq(struct hns3_rx_queue *rxq, bool en)
441 {
442         struct hns3_hw *hw = &rxq->hns->hw;
443         uint32_t reg;
444
445         if (hns3_dev_indep_txrx_supported(hw)) {
446                 reg = hns3_read_dev(rxq, HNS3_RING_RX_EN_REG);
447                 if (en)
448                         reg |= BIT(HNS3_RING_EN_B);
449                 else
450                         reg &= ~BIT(HNS3_RING_EN_B);
451                 hns3_write_dev(rxq, HNS3_RING_RX_EN_REG, reg);
452         }
453         rxq->enabled = en;
454 }
455
456 int
457 hns3_start_all_txqs(struct rte_eth_dev *dev)
458 {
459         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
460         struct hns3_tx_queue *txq;
461         uint16_t i, j;
462
463         for (i = 0; i < dev->data->nb_tx_queues; i++) {
464                 txq = hw->data->tx_queues[i];
465                 if (!txq) {
466                         hns3_err(hw, "Tx queue %u not available or setup.", i);
467                         goto start_txqs_fail;
468                 }
469                 /*
470                  * Tx queue is enabled by default. Therefore, the Tx queues
471                  * needs to be disabled when deferred_start is set. There is
472                  * another master switch used to control the enabling of a pair
473                  * of Tx and Rx queues. And the master switch is disabled by
474                  * default.
475                  */
476                 if (txq->tx_deferred_start)
477                         hns3_enable_txq(txq, false);
478                 else
479                         hns3_enable_txq(txq, true);
480         }
481         return 0;
482
483 start_txqs_fail:
484         for (j = 0; j < i; j++) {
485                 txq = hw->data->tx_queues[j];
486                 hns3_enable_txq(txq, false);
487         }
488         return -EINVAL;
489 }
490
491 int
492 hns3_start_all_rxqs(struct rte_eth_dev *dev)
493 {
494         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
495         struct hns3_rx_queue *rxq;
496         uint16_t i, j;
497
498         for (i = 0; i < dev->data->nb_rx_queues; i++) {
499                 rxq = hw->data->rx_queues[i];
500                 if (!rxq) {
501                         hns3_err(hw, "Rx queue %u not available or setup.", i);
502                         goto start_rxqs_fail;
503                 }
504                 /*
505                  * Rx queue is enabled by default. Therefore, the Rx queues
506                  * needs to be disabled when deferred_start is set. There is
507                  * another master switch used to control the enabling of a pair
508                  * of Tx and Rx queues. And the master switch is disabled by
509                  * default.
510                  */
511                 if (rxq->rx_deferred_start)
512                         hns3_enable_rxq(rxq, false);
513                 else
514                         hns3_enable_rxq(rxq, true);
515         }
516         return 0;
517
518 start_rxqs_fail:
519         for (j = 0; j < i; j++) {
520                 rxq = hw->data->rx_queues[j];
521                 hns3_enable_rxq(rxq, false);
522         }
523         return -EINVAL;
524 }
525
526 void
527 hns3_restore_tqp_enable_state(struct hns3_hw *hw)
528 {
529         struct hns3_rx_queue *rxq;
530         struct hns3_tx_queue *txq;
531         uint16_t i;
532
533         for (i = 0; i < hw->data->nb_rx_queues; i++) {
534                 rxq = hw->data->rx_queues[i];
535                 if (rxq != NULL)
536                         hns3_enable_rxq(rxq, rxq->enabled);
537         }
538
539         for (i = 0; i < hw->data->nb_tx_queues; i++) {
540                 txq = hw->data->tx_queues[i];
541                 if (txq != NULL)
542                         hns3_enable_txq(txq, txq->enabled);
543         }
544 }
545
546 void
547 hns3_stop_all_txqs(struct rte_eth_dev *dev)
548 {
549         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
550         struct hns3_tx_queue *txq;
551         uint16_t i;
552
553         for (i = 0; i < dev->data->nb_tx_queues; i++) {
554                 txq = hw->data->tx_queues[i];
555                 if (!txq)
556                         continue;
557                 hns3_enable_txq(txq, false);
558         }
559 }
560
561 static int
562 hns3_tqp_enable(struct hns3_hw *hw, uint16_t queue_id, bool enable)
563 {
564         struct hns3_cfg_com_tqp_queue_cmd *req;
565         struct hns3_cmd_desc desc;
566         int ret;
567
568         req = (struct hns3_cfg_com_tqp_queue_cmd *)desc.data;
569
570         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CFG_COM_TQP_QUEUE, false);
571         req->tqp_id = rte_cpu_to_le_16(queue_id);
572         req->stream_id = 0;
573         hns3_set_bit(req->enable, HNS3_TQP_ENABLE_B, enable ? 1 : 0);
574
575         ret = hns3_cmd_send(hw, &desc, 1);
576         if (ret)
577                 hns3_err(hw, "TQP enable fail, ret = %d", ret);
578
579         return ret;
580 }
581
582 static int
583 hns3_send_reset_tqp_cmd(struct hns3_hw *hw, uint16_t queue_id, bool enable)
584 {
585         struct hns3_reset_tqp_queue_cmd *req;
586         struct hns3_cmd_desc desc;
587         int ret;
588
589         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RESET_TQP_QUEUE, false);
590
591         req = (struct hns3_reset_tqp_queue_cmd *)desc.data;
592         req->tqp_id = rte_cpu_to_le_16(queue_id);
593         hns3_set_bit(req->reset_req, HNS3_TQP_RESET_B, enable ? 1 : 0);
594         ret = hns3_cmd_send(hw, &desc, 1);
595         if (ret)
596                 hns3_err(hw, "send tqp reset cmd error, queue_id = %u, "
597                              "ret = %d", queue_id, ret);
598
599         return ret;
600 }
601
602 static int
603 hns3_get_tqp_reset_status(struct hns3_hw *hw, uint16_t queue_id,
604                           uint8_t *reset_status)
605 {
606         struct hns3_reset_tqp_queue_cmd *req;
607         struct hns3_cmd_desc desc;
608         int ret;
609
610         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RESET_TQP_QUEUE, true);
611
612         req = (struct hns3_reset_tqp_queue_cmd *)desc.data;
613         req->tqp_id = rte_cpu_to_le_16(queue_id);
614
615         ret = hns3_cmd_send(hw, &desc, 1);
616         if (ret) {
617                 hns3_err(hw, "get tqp reset status error, queue_id = %u, "
618                              "ret = %d.", queue_id, ret);
619                 return ret;
620         }
621         *reset_status = hns3_get_bit(req->ready_to_reset, HNS3_TQP_RESET_B);
622         return ret;
623 }
624
625 static int
626 hns3pf_reset_tqp(struct hns3_hw *hw, uint16_t queue_id)
627 {
628 #define HNS3_TQP_RESET_TRY_MS   200
629         uint16_t wait_time = 0;
630         uint8_t reset_status;
631         int ret;
632
633         /*
634          * In current version VF is not supported when PF is driven by DPDK
635          * driver, all task queue pairs are mapped to PF function, so PF's queue
636          * id is equals to the global queue id in PF range.
637          */
638         ret = hns3_send_reset_tqp_cmd(hw, queue_id, true);
639         if (ret) {
640                 hns3_err(hw, "Send reset tqp cmd fail, ret = %d", ret);
641                 return ret;
642         }
643
644         do {
645                 /* Wait for tqp hw reset */
646                 rte_delay_ms(HNS3_POLL_RESPONE_MS);
647                 wait_time += HNS3_POLL_RESPONE_MS;
648                 ret = hns3_get_tqp_reset_status(hw, queue_id, &reset_status);
649                 if (ret)
650                         goto tqp_reset_fail;
651
652                 if (reset_status)
653                         break;
654         } while (wait_time < HNS3_TQP_RESET_TRY_MS);
655
656         if (!reset_status) {
657                 ret = -ETIMEDOUT;
658                 hns3_err(hw, "reset tqp timeout, queue_id = %u, ret = %d",
659                              queue_id, ret);
660                 goto tqp_reset_fail;
661         }
662
663         ret = hns3_send_reset_tqp_cmd(hw, queue_id, false);
664         if (ret)
665                 hns3_err(hw, "Deassert the soft reset fail, ret = %d", ret);
666
667         return ret;
668
669 tqp_reset_fail:
670         hns3_send_reset_tqp_cmd(hw, queue_id, false);
671         return ret;
672 }
673
674 static int
675 hns3vf_reset_tqp(struct hns3_hw *hw, uint16_t queue_id)
676 {
677         uint8_t msg_data[2];
678         int ret;
679
680         memcpy(msg_data, &queue_id, sizeof(uint16_t));
681
682         ret = hns3_send_mbx_msg(hw, HNS3_MBX_QUEUE_RESET, 0, msg_data,
683                                  sizeof(msg_data), true, NULL, 0);
684         if (ret)
685                 hns3_err(hw, "fail to reset tqp, queue_id = %u, ret = %d.",
686                          queue_id, ret);
687         return ret;
688 }
689
690 static int
691 hns3_reset_rcb_cmd(struct hns3_hw *hw, uint8_t *reset_status)
692 {
693         struct hns3_reset_cmd *req;
694         struct hns3_cmd_desc desc;
695         int ret;
696
697         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CFG_RST_TRIGGER, false);
698         req = (struct hns3_reset_cmd *)desc.data;
699         hns3_set_bit(req->mac_func_reset, HNS3_CFG_RESET_RCB_B, 1);
700
701         /*
702          * The start qid should be the global qid of the first tqp of the
703          * function which should be reset in this port. Since our PF not
704          * support take over of VFs, so we only need to reset function 0,
705          * and its start qid is always 0.
706          */
707         req->fun_reset_rcb_vqid_start = rte_cpu_to_le_16(0);
708         req->fun_reset_rcb_vqid_num = rte_cpu_to_le_16(hw->cfg_max_queues);
709
710         ret = hns3_cmd_send(hw, &desc, 1);
711         if (ret) {
712                 hns3_err(hw, "fail to send rcb reset cmd, ret = %d.", ret);
713                 return ret;
714         }
715
716         *reset_status = req->fun_reset_rcb_return_status;
717         return 0;
718 }
719
720 static int
721 hns3pf_reset_all_tqps(struct hns3_hw *hw)
722 {
723 #define HNS3_RESET_RCB_NOT_SUPPORT      0U
724 #define HNS3_RESET_ALL_TQP_SUCCESS      1U
725         uint8_t reset_status;
726         int ret;
727         int i;
728
729         ret = hns3_reset_rcb_cmd(hw, &reset_status);
730         if (ret)
731                 return ret;
732
733         /*
734          * If the firmware version is low, it may not support the rcb reset
735          * which means reset all the tqps at a time. In this case, we should
736          * reset tqps one by one.
737          */
738         if (reset_status == HNS3_RESET_RCB_NOT_SUPPORT) {
739                 for (i = 0; i < hw->cfg_max_queues; i++) {
740                         ret = hns3pf_reset_tqp(hw, i);
741                         if (ret) {
742                                 hns3_err(hw,
743                                   "fail to reset tqp, queue_id = %d, ret = %d.",
744                                   i, ret);
745                                 return ret;
746                         }
747                 }
748         } else if (reset_status != HNS3_RESET_ALL_TQP_SUCCESS) {
749                 hns3_err(hw, "fail to reset all tqps, reset_status = %u.",
750                                 reset_status);
751                 return -EIO;
752         }
753
754         return 0;
755 }
756
757 static int
758 hns3vf_reset_all_tqps(struct hns3_hw *hw)
759 {
760 #define HNS3VF_RESET_ALL_TQP_DONE       1U
761         uint8_t reset_status;
762         uint8_t msg_data[2];
763         int ret;
764         int i;
765
766         memset(msg_data, 0, sizeof(uint16_t));
767         ret = hns3_send_mbx_msg(hw, HNS3_MBX_QUEUE_RESET, 0, msg_data,
768                                 sizeof(msg_data), true, &reset_status,
769                                 sizeof(reset_status));
770         if (ret) {
771                 hns3_err(hw, "fail to send rcb reset mbx, ret = %d.", ret);
772                 return ret;
773         }
774
775         if (reset_status == HNS3VF_RESET_ALL_TQP_DONE)
776                 return 0;
777
778         /*
779          * If the firmware version or kernel PF version is low, it may not
780          * support the rcb reset which means reset all the tqps at a time.
781          * In this case, we should reset tqps one by one.
782          */
783         for (i = 1; i < hw->cfg_max_queues; i++) {
784                 ret = hns3vf_reset_tqp(hw, i);
785                 if (ret)
786                         return ret;
787         }
788
789         return 0;
790 }
791
792 int
793 hns3_reset_all_tqps(struct hns3_adapter *hns)
794 {
795         struct hns3_hw *hw = &hns->hw;
796         int ret, i;
797
798         /* Disable all queues before reset all queues */
799         for (i = 0; i < hw->cfg_max_queues; i++) {
800                 ret = hns3_tqp_enable(hw, i, false);
801                 if (ret) {
802                         hns3_err(hw,
803                             "fail to disable tqps before tqps reset, ret = %d.",
804                             ret);
805                         return ret;
806                 }
807         }
808
809         if (hns->is_vf)
810                 return hns3vf_reset_all_tqps(hw);
811         else
812                 return hns3pf_reset_all_tqps(hw);
813 }
814
815 static int
816 hns3_send_reset_queue_cmd(struct hns3_hw *hw, uint16_t queue_id,
817                           enum hns3_ring_type queue_type, bool enable)
818 {
819         struct hns3_reset_tqp_queue_cmd *req;
820         struct hns3_cmd_desc desc;
821         int queue_direction;
822         int ret;
823
824         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RESET_TQP_QUEUE_INDEP, false);
825
826         req = (struct hns3_reset_tqp_queue_cmd *)desc.data;
827         req->tqp_id = rte_cpu_to_le_16(queue_id);
828         queue_direction = queue_type == HNS3_RING_TYPE_TX ? 0 : 1;
829         req->queue_direction = rte_cpu_to_le_16(queue_direction);
830         hns3_set_bit(req->reset_req, HNS3_TQP_RESET_B, enable ? 1 : 0);
831
832         ret = hns3_cmd_send(hw, &desc, 1);
833         if (ret)
834                 hns3_err(hw, "send queue reset cmd error, queue_id = %u, "
835                          "queue_type = %s, ret = %d.", queue_id,
836                          queue_type == HNS3_RING_TYPE_TX ? "Tx" : "Rx", ret);
837         return ret;
838 }
839
840 static int
841 hns3_get_queue_reset_status(struct hns3_hw *hw, uint16_t queue_id,
842                             enum hns3_ring_type queue_type,
843                             uint8_t *reset_status)
844 {
845         struct hns3_reset_tqp_queue_cmd *req;
846         struct hns3_cmd_desc desc;
847         int queue_direction;
848         int ret;
849
850         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RESET_TQP_QUEUE_INDEP, true);
851
852         req = (struct hns3_reset_tqp_queue_cmd *)desc.data;
853         req->tqp_id = rte_cpu_to_le_16(queue_id);
854         queue_direction = queue_type == HNS3_RING_TYPE_TX ? 0 : 1;
855         req->queue_direction = rte_cpu_to_le_16(queue_direction);
856
857         ret = hns3_cmd_send(hw, &desc, 1);
858         if (ret) {
859                 hns3_err(hw, "get queue reset status error, queue_id = %u "
860                          "queue_type = %s, ret = %d.", queue_id,
861                          queue_type == HNS3_RING_TYPE_TX ? "Tx" : "Rx", ret);
862                 return ret;
863         }
864
865         *reset_status = hns3_get_bit(req->ready_to_reset, HNS3_TQP_RESET_B);
866         return  ret;
867 }
868
869 static int
870 hns3_reset_queue(struct hns3_hw *hw, uint16_t queue_id,
871                  enum hns3_ring_type queue_type)
872 {
873 #define HNS3_QUEUE_RESET_TRY_MS 200
874         struct hns3_tx_queue *txq;
875         struct hns3_rx_queue *rxq;
876         uint32_t reset_wait_times;
877         uint32_t max_wait_times;
878         uint8_t reset_status;
879         int ret;
880
881         if (queue_type == HNS3_RING_TYPE_TX) {
882                 txq = hw->data->tx_queues[queue_id];
883                 hns3_enable_txq(txq, false);
884         } else {
885                 rxq = hw->data->rx_queues[queue_id];
886                 hns3_enable_rxq(rxq, false);
887         }
888
889         ret = hns3_send_reset_queue_cmd(hw, queue_id, queue_type, true);
890         if (ret) {
891                 hns3_err(hw, "send reset queue cmd fail, ret = %d.", ret);
892                 return ret;
893         }
894
895         reset_wait_times = 0;
896         max_wait_times = HNS3_QUEUE_RESET_TRY_MS / HNS3_POLL_RESPONE_MS;
897         while (reset_wait_times < max_wait_times) {
898                 /* Wait for queue hw reset */
899                 rte_delay_ms(HNS3_POLL_RESPONE_MS);
900                 ret = hns3_get_queue_reset_status(hw, queue_id,
901                                                 queue_type, &reset_status);
902                 if (ret)
903                         goto queue_reset_fail;
904
905                 if (reset_status)
906                         break;
907                 reset_wait_times++;
908         }
909
910         if (!reset_status) {
911                 hns3_err(hw, "reset queue timeout, queue_id = %u, "
912                              "queue_type = %s", queue_id,
913                              queue_type == HNS3_RING_TYPE_TX ? "Tx" : "Rx");
914                 ret = -ETIMEDOUT;
915                 goto queue_reset_fail;
916         }
917
918         ret = hns3_send_reset_queue_cmd(hw, queue_id, queue_type, false);
919         if (ret)
920                 hns3_err(hw, "deassert queue reset fail, ret = %d.", ret);
921
922         return ret;
923
924 queue_reset_fail:
925         hns3_send_reset_queue_cmd(hw, queue_id, queue_type, false);
926         return ret;
927 }
928
929 uint32_t
930 hns3_get_tqp_intr_reg_offset(uint16_t tqp_intr_id)
931 {
932         uint32_t reg_offset;
933
934         /* Need an extend offset to config queues > 64 */
935         if (tqp_intr_id < HNS3_MIN_EXT_TQP_INTR_ID)
936                 reg_offset = HNS3_TQP_INTR_REG_BASE +
937                              tqp_intr_id * HNS3_TQP_INTR_LOW_ORDER_OFFSET;
938         else
939                 reg_offset = HNS3_TQP_INTR_EXT_REG_BASE +
940                              tqp_intr_id / HNS3_MIN_EXT_TQP_INTR_ID *
941                              HNS3_TQP_INTR_HIGH_ORDER_OFFSET +
942                              tqp_intr_id % HNS3_MIN_EXT_TQP_INTR_ID *
943                              HNS3_TQP_INTR_LOW_ORDER_OFFSET;
944
945         return reg_offset;
946 }
947
948 void
949 hns3_set_queue_intr_gl(struct hns3_hw *hw, uint16_t queue_id,
950                        uint8_t gl_idx, uint16_t gl_value)
951 {
952         uint32_t offset[] = {HNS3_TQP_INTR_GL0_REG,
953                              HNS3_TQP_INTR_GL1_REG,
954                              HNS3_TQP_INTR_GL2_REG};
955         uint32_t addr, value;
956
957         if (gl_idx >= RTE_DIM(offset) || gl_value > HNS3_TQP_INTR_GL_MAX)
958                 return;
959
960         addr = offset[gl_idx] + hns3_get_tqp_intr_reg_offset(queue_id);
961         if (hw->intr.gl_unit == HNS3_INTR_COALESCE_GL_UINT_1US)
962                 value = gl_value | HNS3_TQP_INTR_GL_UNIT_1US;
963         else
964                 value = HNS3_GL_USEC_TO_REG(gl_value);
965
966         hns3_write_dev(hw, addr, value);
967 }
968
969 void
970 hns3_set_queue_intr_rl(struct hns3_hw *hw, uint16_t queue_id, uint16_t rl_value)
971 {
972         uint32_t addr, value;
973
974         if (rl_value > HNS3_TQP_INTR_RL_MAX)
975                 return;
976
977         addr = HNS3_TQP_INTR_RL_REG + hns3_get_tqp_intr_reg_offset(queue_id);
978         value = HNS3_RL_USEC_TO_REG(rl_value);
979         if (value > 0)
980                 value |= HNS3_TQP_INTR_RL_ENABLE_MASK;
981
982         hns3_write_dev(hw, addr, value);
983 }
984
985 void
986 hns3_set_queue_intr_ql(struct hns3_hw *hw, uint16_t queue_id, uint16_t ql_value)
987 {
988         uint32_t addr;
989
990         /*
991          * int_ql_max == 0 means the hardware does not support QL,
992          * QL regs config is not permitted if QL is not supported,
993          * here just return.
994          */
995         if (hw->intr.int_ql_max == HNS3_INTR_QL_NONE)
996                 return;
997
998         addr = HNS3_TQP_INTR_TX_QL_REG + hns3_get_tqp_intr_reg_offset(queue_id);
999         hns3_write_dev(hw, addr, ql_value);
1000
1001         addr = HNS3_TQP_INTR_RX_QL_REG + hns3_get_tqp_intr_reg_offset(queue_id);
1002         hns3_write_dev(hw, addr, ql_value);
1003 }
1004
1005 static void
1006 hns3_queue_intr_enable(struct hns3_hw *hw, uint16_t queue_id, bool en)
1007 {
1008         uint32_t addr, value;
1009
1010         addr = HNS3_TQP_INTR_CTRL_REG + hns3_get_tqp_intr_reg_offset(queue_id);
1011         value = en ? 1 : 0;
1012
1013         hns3_write_dev(hw, addr, value);
1014 }
1015
1016 /*
1017  * Enable all rx queue interrupt when in interrupt rx mode.
1018  * This api was called before enable queue rx&tx (in normal start or reset
1019  * recover scenes), used to fix hardware rx queue interrupt enable was clear
1020  * when FLR.
1021  */
1022 void
1023 hns3_dev_all_rx_queue_intr_enable(struct hns3_hw *hw, bool en)
1024 {
1025         struct rte_eth_dev *dev = &rte_eth_devices[hw->data->port_id];
1026         uint16_t nb_rx_q = hw->data->nb_rx_queues;
1027         int i;
1028
1029         if (dev->data->dev_conf.intr_conf.rxq == 0)
1030                 return;
1031
1032         for (i = 0; i < nb_rx_q; i++)
1033                 hns3_queue_intr_enable(hw, i, en);
1034 }
1035
1036 int
1037 hns3_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
1038 {
1039         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1040         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1041         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1042
1043         if (dev->data->dev_conf.intr_conf.rxq == 0)
1044                 return -ENOTSUP;
1045
1046         hns3_queue_intr_enable(hw, queue_id, true);
1047
1048         return rte_intr_ack(intr_handle);
1049 }
1050
1051 int
1052 hns3_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
1053 {
1054         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1055
1056         if (dev->data->dev_conf.intr_conf.rxq == 0)
1057                 return -ENOTSUP;
1058
1059         hns3_queue_intr_enable(hw, queue_id, false);
1060
1061         return 0;
1062 }
1063
1064 static int
1065 hns3_init_rxq(struct hns3_adapter *hns, uint16_t idx)
1066 {
1067         struct hns3_hw *hw = &hns->hw;
1068         struct hns3_rx_queue *rxq;
1069         int ret;
1070
1071         PMD_INIT_FUNC_TRACE();
1072
1073         rxq = (struct hns3_rx_queue *)hw->data->rx_queues[idx];
1074         ret = hns3_alloc_rx_queue_mbufs(hw, rxq);
1075         if (ret) {
1076                 hns3_err(hw, "fail to alloc mbuf for Rx queue %u, ret = %d.",
1077                          idx, ret);
1078                 return ret;
1079         }
1080
1081         rxq->next_to_use = 0;
1082         rxq->rx_rearm_start = 0;
1083         rxq->rx_free_hold = 0;
1084         rxq->rx_rearm_nb = 0;
1085         rxq->pkt_first_seg = NULL;
1086         rxq->pkt_last_seg = NULL;
1087         hns3_init_rx_queue_hw(rxq);
1088         hns3_rxq_vec_setup(rxq);
1089
1090         return 0;
1091 }
1092
1093 static void
1094 hns3_init_fake_rxq(struct hns3_adapter *hns, uint16_t idx)
1095 {
1096         struct hns3_hw *hw = &hns->hw;
1097         struct hns3_rx_queue *rxq;
1098
1099         rxq = (struct hns3_rx_queue *)hw->fkq_data.rx_queues[idx];
1100         rxq->next_to_use = 0;
1101         rxq->rx_free_hold = 0;
1102         rxq->rx_rearm_start = 0;
1103         rxq->rx_rearm_nb = 0;
1104         hns3_init_rx_queue_hw(rxq);
1105 }
1106
1107 static void
1108 hns3_init_txq(struct hns3_tx_queue *txq)
1109 {
1110         struct hns3_desc *desc;
1111         int i;
1112
1113         /* Clear tx bd */
1114         desc = txq->tx_ring;
1115         for (i = 0; i < txq->nb_tx_desc; i++) {
1116                 desc->tx.tp_fe_sc_vld_ra_ri = 0;
1117                 desc++;
1118         }
1119
1120         txq->next_to_use = 0;
1121         txq->next_to_clean = 0;
1122         txq->tx_bd_ready = txq->nb_tx_desc - 1;
1123         hns3_init_tx_queue_hw(txq);
1124 }
1125
1126 static void
1127 hns3_init_tx_ring_tc(struct hns3_adapter *hns)
1128 {
1129         struct hns3_hw *hw = &hns->hw;
1130         struct hns3_tx_queue *txq;
1131         int i, num;
1132
1133         for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
1134                 struct hns3_tc_queue_info *tc_queue = &hw->tc_queue[i];
1135                 int j;
1136
1137                 if (!tc_queue->enable)
1138                         continue;
1139
1140                 for (j = 0; j < tc_queue->tqp_count; j++) {
1141                         num = tc_queue->tqp_offset + j;
1142                         txq = (struct hns3_tx_queue *)hw->data->tx_queues[num];
1143                         if (txq == NULL)
1144                                 continue;
1145
1146                         hns3_write_dev(txq, HNS3_RING_TX_TC_REG, tc_queue->tc);
1147                 }
1148         }
1149 }
1150
1151 static int
1152 hns3_init_rx_queues(struct hns3_adapter *hns)
1153 {
1154         struct hns3_hw *hw = &hns->hw;
1155         struct hns3_rx_queue *rxq;
1156         uint16_t i, j;
1157         int ret;
1158
1159         /* Initialize RSS for queues */
1160         ret = hns3_config_rss(hns);
1161         if (ret) {
1162                 hns3_err(hw, "failed to configure rss, ret = %d.", ret);
1163                 return ret;
1164         }
1165
1166         for (i = 0; i < hw->data->nb_rx_queues; i++) {
1167                 rxq = (struct hns3_rx_queue *)hw->data->rx_queues[i];
1168                 if (!rxq) {
1169                         hns3_err(hw, "Rx queue %u not available or setup.", i);
1170                         goto out;
1171                 }
1172
1173                 if (rxq->rx_deferred_start)
1174                         continue;
1175
1176                 ret = hns3_init_rxq(hns, i);
1177                 if (ret) {
1178                         hns3_err(hw, "failed to init Rx queue %u, ret = %d.", i,
1179                                  ret);
1180                         goto out;
1181                 }
1182         }
1183
1184         for (i = 0; i < hw->fkq_data.nb_fake_rx_queues; i++)
1185                 hns3_init_fake_rxq(hns, i);
1186
1187         return 0;
1188
1189 out:
1190         for (j = 0; j < i; j++) {
1191                 rxq = (struct hns3_rx_queue *)hw->data->rx_queues[j];
1192                 hns3_rx_queue_release_mbufs(rxq);
1193         }
1194
1195         return ret;
1196 }
1197
1198 static int
1199 hns3_init_tx_queues(struct hns3_adapter *hns)
1200 {
1201         struct hns3_hw *hw = &hns->hw;
1202         struct hns3_tx_queue *txq;
1203         uint16_t i;
1204
1205         for (i = 0; i < hw->data->nb_tx_queues; i++) {
1206                 txq = (struct hns3_tx_queue *)hw->data->tx_queues[i];
1207                 if (!txq) {
1208                         hns3_err(hw, "Tx queue %u not available or setup.", i);
1209                         return -EINVAL;
1210                 }
1211
1212                 if (txq->tx_deferred_start)
1213                         continue;
1214                 hns3_init_txq(txq);
1215         }
1216
1217         for (i = 0; i < hw->fkq_data.nb_fake_tx_queues; i++) {
1218                 txq = (struct hns3_tx_queue *)hw->fkq_data.tx_queues[i];
1219                 hns3_init_txq(txq);
1220         }
1221         hns3_init_tx_ring_tc(hns);
1222
1223         return 0;
1224 }
1225
1226 /*
1227  * Init all queues.
1228  * Note: just init and setup queues, and don't enable tqps.
1229  */
1230 int
1231 hns3_init_queues(struct hns3_adapter *hns, bool reset_queue)
1232 {
1233         struct hns3_hw *hw = &hns->hw;
1234         int ret;
1235
1236         if (reset_queue) {
1237                 ret = hns3_reset_all_tqps(hns);
1238                 if (ret) {
1239                         hns3_err(hw, "failed to reset all queues, ret = %d.",
1240                                  ret);
1241                         return ret;
1242                 }
1243         }
1244
1245         ret = hns3_init_rx_queues(hns);
1246         if (ret) {
1247                 hns3_err(hw, "failed to init rx queues, ret = %d.", ret);
1248                 return ret;
1249         }
1250
1251         ret = hns3_init_tx_queues(hns);
1252         if (ret) {
1253                 hns3_dev_release_mbufs(hns);
1254                 hns3_err(hw, "failed to init tx queues, ret = %d.", ret);
1255         }
1256
1257         return ret;
1258 }
1259
1260 void
1261 hns3_start_tqps(struct hns3_hw *hw)
1262 {
1263         struct hns3_tx_queue *txq;
1264         struct hns3_rx_queue *rxq;
1265         uint16_t i;
1266
1267         hns3_enable_all_queues(hw, true);
1268
1269         for (i = 0; i < hw->data->nb_tx_queues; i++) {
1270                 txq = hw->data->tx_queues[i];
1271                 if (txq->enabled)
1272                         hw->data->tx_queue_state[i] =
1273                                 RTE_ETH_QUEUE_STATE_STARTED;
1274         }
1275
1276         for (i = 0; i < hw->data->nb_rx_queues; i++) {
1277                 rxq = hw->data->rx_queues[i];
1278                 if (rxq->enabled)
1279                         hw->data->rx_queue_state[i] =
1280                                 RTE_ETH_QUEUE_STATE_STARTED;
1281         }
1282 }
1283
1284 void
1285 hns3_stop_tqps(struct hns3_hw *hw)
1286 {
1287         uint16_t i;
1288
1289         hns3_enable_all_queues(hw, false);
1290
1291         for (i = 0; i < hw->data->nb_tx_queues; i++)
1292                 hw->data->tx_queue_state[i] = RTE_ETH_QUEUE_STATE_STOPPED;
1293
1294         for (i = 0; i < hw->data->nb_rx_queues; i++)
1295                 hw->data->rx_queue_state[i] = RTE_ETH_QUEUE_STATE_STOPPED;
1296 }
1297
1298 /*
1299  * Iterate over all Rx Queue, and call the callback() function for each Rx
1300  * queue.
1301  *
1302  * @param[in] dev
1303  *   The target eth dev.
1304  * @param[in] callback
1305  *   The function to call for each queue.
1306  *   if callback function return nonzero will stop iterate and return it's value
1307  * @param[in] arg
1308  *   The arguments to provide the callback function with.
1309  *
1310  * @return
1311  *   0 on success, otherwise with errno set.
1312  */
1313 int
1314 hns3_rxq_iterate(struct rte_eth_dev *dev,
1315                  int (*callback)(struct hns3_rx_queue *, void *), void *arg)
1316 {
1317         uint32_t i;
1318         int ret;
1319
1320         if (dev->data->rx_queues == NULL)
1321                 return -EINVAL;
1322
1323         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1324                 ret = callback(dev->data->rx_queues[i], arg);
1325                 if (ret != 0)
1326                         return ret;
1327         }
1328
1329         return 0;
1330 }
1331
1332 static void*
1333 hns3_alloc_rxq_and_dma_zone(struct rte_eth_dev *dev,
1334                             struct hns3_queue_info *q_info)
1335 {
1336         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1337         const struct rte_memzone *rx_mz;
1338         struct hns3_rx_queue *rxq;
1339         unsigned int rx_desc;
1340
1341         rxq = rte_zmalloc_socket(q_info->type, sizeof(struct hns3_rx_queue),
1342                                  RTE_CACHE_LINE_SIZE, q_info->socket_id);
1343         if (rxq == NULL) {
1344                 hns3_err(hw, "Failed to allocate memory for No.%u rx ring!",
1345                          q_info->idx);
1346                 return NULL;
1347         }
1348
1349         /* Allocate rx ring hardware descriptors. */
1350         rxq->queue_id = q_info->idx;
1351         rxq->nb_rx_desc = q_info->nb_desc;
1352
1353         /*
1354          * Allocate a litter more memory because rx vector functions
1355          * don't check boundaries each time.
1356          */
1357         rx_desc = (rxq->nb_rx_desc + HNS3_DEFAULT_RX_BURST) *
1358                         sizeof(struct hns3_desc);
1359         rx_mz = rte_eth_dma_zone_reserve(dev, q_info->ring_name, q_info->idx,
1360                                          rx_desc, HNS3_RING_BASE_ALIGN,
1361                                          q_info->socket_id);
1362         if (rx_mz == NULL) {
1363                 hns3_err(hw, "Failed to reserve DMA memory for No.%u rx ring!",
1364                          q_info->idx);
1365                 hns3_rx_queue_release(rxq);
1366                 return NULL;
1367         }
1368         rxq->mz = rx_mz;
1369         rxq->rx_ring = (struct hns3_desc *)rx_mz->addr;
1370         rxq->rx_ring_phys_addr = rx_mz->iova;
1371
1372         hns3_dbg(hw, "No.%u rx descriptors iova 0x%" PRIx64, q_info->idx,
1373                  rxq->rx_ring_phys_addr);
1374
1375         return rxq;
1376 }
1377
1378 static int
1379 hns3_fake_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx,
1380                          uint16_t nb_desc, unsigned int socket_id)
1381 {
1382         struct hns3_adapter *hns = dev->data->dev_private;
1383         struct hns3_hw *hw = &hns->hw;
1384         struct hns3_queue_info q_info;
1385         struct hns3_rx_queue *rxq;
1386         uint16_t nb_rx_q;
1387
1388         if (hw->fkq_data.rx_queues[idx]) {
1389                 hns3_rx_queue_release(hw->fkq_data.rx_queues[idx]);
1390                 hw->fkq_data.rx_queues[idx] = NULL;
1391         }
1392
1393         q_info.idx = idx;
1394         q_info.socket_id = socket_id;
1395         q_info.nb_desc = nb_desc;
1396         q_info.type = "hns3 fake RX queue";
1397         q_info.ring_name = "rx_fake_ring";
1398         rxq = hns3_alloc_rxq_and_dma_zone(dev, &q_info);
1399         if (rxq == NULL) {
1400                 hns3_err(hw, "Failed to setup No.%u fake rx ring.", idx);
1401                 return -ENOMEM;
1402         }
1403
1404         /* Don't need alloc sw_ring, because upper applications don't use it */
1405         rxq->sw_ring = NULL;
1406
1407         rxq->hns = hns;
1408         rxq->rx_deferred_start = false;
1409         rxq->port_id = dev->data->port_id;
1410         rxq->configured = true;
1411         nb_rx_q = dev->data->nb_rx_queues;
1412         rxq->io_base = (void *)((char *)hw->io_base + HNS3_TQP_REG_OFFSET +
1413                                 (nb_rx_q + idx) * HNS3_TQP_REG_SIZE);
1414         rxq->rx_buf_len = HNS3_MIN_BD_BUF_SIZE;
1415
1416         rte_spinlock_lock(&hw->lock);
1417         hw->fkq_data.rx_queues[idx] = rxq;
1418         rte_spinlock_unlock(&hw->lock);
1419
1420         return 0;
1421 }
1422
1423 static void*
1424 hns3_alloc_txq_and_dma_zone(struct rte_eth_dev *dev,
1425                             struct hns3_queue_info *q_info)
1426 {
1427         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1428         const struct rte_memzone *tx_mz;
1429         struct hns3_tx_queue *txq;
1430         struct hns3_desc *desc;
1431         unsigned int tx_desc;
1432         int i;
1433
1434         txq = rte_zmalloc_socket(q_info->type, sizeof(struct hns3_tx_queue),
1435                                  RTE_CACHE_LINE_SIZE, q_info->socket_id);
1436         if (txq == NULL) {
1437                 hns3_err(hw, "Failed to allocate memory for No.%u tx ring!",
1438                          q_info->idx);
1439                 return NULL;
1440         }
1441
1442         /* Allocate tx ring hardware descriptors. */
1443         txq->queue_id = q_info->idx;
1444         txq->nb_tx_desc = q_info->nb_desc;
1445         tx_desc = txq->nb_tx_desc * sizeof(struct hns3_desc);
1446         tx_mz = rte_eth_dma_zone_reserve(dev, q_info->ring_name, q_info->idx,
1447                                          tx_desc, HNS3_RING_BASE_ALIGN,
1448                                          q_info->socket_id);
1449         if (tx_mz == NULL) {
1450                 hns3_err(hw, "Failed to reserve DMA memory for No.%u tx ring!",
1451                          q_info->idx);
1452                 hns3_tx_queue_release(txq);
1453                 return NULL;
1454         }
1455         txq->mz = tx_mz;
1456         txq->tx_ring = (struct hns3_desc *)tx_mz->addr;
1457         txq->tx_ring_phys_addr = tx_mz->iova;
1458
1459         hns3_dbg(hw, "No.%u tx descriptors iova 0x%" PRIx64, q_info->idx,
1460                  txq->tx_ring_phys_addr);
1461
1462         /* Clear tx bd */
1463         desc = txq->tx_ring;
1464         for (i = 0; i < txq->nb_tx_desc; i++) {
1465                 desc->tx.tp_fe_sc_vld_ra_ri = 0;
1466                 desc++;
1467         }
1468
1469         return txq;
1470 }
1471
1472 static int
1473 hns3_fake_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx,
1474                          uint16_t nb_desc, unsigned int socket_id)
1475 {
1476         struct hns3_adapter *hns = dev->data->dev_private;
1477         struct hns3_hw *hw = &hns->hw;
1478         struct hns3_queue_info q_info;
1479         struct hns3_tx_queue *txq;
1480         uint16_t nb_tx_q;
1481
1482         if (hw->fkq_data.tx_queues[idx] != NULL) {
1483                 hns3_tx_queue_release(hw->fkq_data.tx_queues[idx]);
1484                 hw->fkq_data.tx_queues[idx] = NULL;
1485         }
1486
1487         q_info.idx = idx;
1488         q_info.socket_id = socket_id;
1489         q_info.nb_desc = nb_desc;
1490         q_info.type = "hns3 fake TX queue";
1491         q_info.ring_name = "tx_fake_ring";
1492         txq = hns3_alloc_txq_and_dma_zone(dev, &q_info);
1493         if (txq == NULL) {
1494                 hns3_err(hw, "Failed to setup No.%u fake tx ring.", idx);
1495                 return -ENOMEM;
1496         }
1497
1498         /* Don't need alloc sw_ring, because upper applications don't use it */
1499         txq->sw_ring = NULL;
1500         txq->free = NULL;
1501
1502         txq->hns = hns;
1503         txq->tx_deferred_start = false;
1504         txq->port_id = dev->data->port_id;
1505         txq->configured = true;
1506         nb_tx_q = dev->data->nb_tx_queues;
1507         txq->io_base = (void *)((char *)hw->io_base + HNS3_TQP_REG_OFFSET +
1508                                 (nb_tx_q + idx) * HNS3_TQP_REG_SIZE);
1509
1510         rte_spinlock_lock(&hw->lock);
1511         hw->fkq_data.tx_queues[idx] = txq;
1512         rte_spinlock_unlock(&hw->lock);
1513
1514         return 0;
1515 }
1516
1517 static int
1518 hns3_fake_rx_queue_config(struct hns3_hw *hw, uint16_t nb_queues)
1519 {
1520         uint16_t old_nb_queues = hw->fkq_data.nb_fake_rx_queues;
1521         void **rxq;
1522         uint16_t i;
1523
1524         if (hw->fkq_data.rx_queues == NULL && nb_queues != 0) {
1525                 /* first time configuration */
1526                 uint32_t size;
1527                 size = sizeof(hw->fkq_data.rx_queues[0]) * nb_queues;
1528                 hw->fkq_data.rx_queues = rte_zmalloc("fake_rx_queues", size,
1529                                                      RTE_CACHE_LINE_SIZE);
1530                 if (hw->fkq_data.rx_queues == NULL) {
1531                         hw->fkq_data.nb_fake_rx_queues = 0;
1532                         return -ENOMEM;
1533                 }
1534         } else if (hw->fkq_data.rx_queues != NULL && nb_queues != 0) {
1535                 /* re-configure */
1536                 rxq = hw->fkq_data.rx_queues;
1537                 for (i = nb_queues; i < old_nb_queues; i++)
1538                         hns3_dev_rx_queue_release(rxq[i]);
1539
1540                 rxq = rte_realloc(rxq, sizeof(rxq[0]) * nb_queues,
1541                                   RTE_CACHE_LINE_SIZE);
1542                 if (rxq == NULL)
1543                         return -ENOMEM;
1544                 if (nb_queues > old_nb_queues) {
1545                         uint16_t new_qs = nb_queues - old_nb_queues;
1546                         memset(rxq + old_nb_queues, 0, sizeof(rxq[0]) * new_qs);
1547                 }
1548
1549                 hw->fkq_data.rx_queues = rxq;
1550         } else if (hw->fkq_data.rx_queues != NULL && nb_queues == 0) {
1551                 rxq = hw->fkq_data.rx_queues;
1552                 for (i = nb_queues; i < old_nb_queues; i++)
1553                         hns3_dev_rx_queue_release(rxq[i]);
1554
1555                 rte_free(hw->fkq_data.rx_queues);
1556                 hw->fkq_data.rx_queues = NULL;
1557         }
1558
1559         hw->fkq_data.nb_fake_rx_queues = nb_queues;
1560
1561         return 0;
1562 }
1563
1564 static int
1565 hns3_fake_tx_queue_config(struct hns3_hw *hw, uint16_t nb_queues)
1566 {
1567         uint16_t old_nb_queues = hw->fkq_data.nb_fake_tx_queues;
1568         void **txq;
1569         uint16_t i;
1570
1571         if (hw->fkq_data.tx_queues == NULL && nb_queues != 0) {
1572                 /* first time configuration */
1573                 uint32_t size;
1574                 size = sizeof(hw->fkq_data.tx_queues[0]) * nb_queues;
1575                 hw->fkq_data.tx_queues = rte_zmalloc("fake_tx_queues", size,
1576                                                      RTE_CACHE_LINE_SIZE);
1577                 if (hw->fkq_data.tx_queues == NULL) {
1578                         hw->fkq_data.nb_fake_tx_queues = 0;
1579                         return -ENOMEM;
1580                 }
1581         } else if (hw->fkq_data.tx_queues != NULL && nb_queues != 0) {
1582                 /* re-configure */
1583                 txq = hw->fkq_data.tx_queues;
1584                 for (i = nb_queues; i < old_nb_queues; i++)
1585                         hns3_dev_tx_queue_release(txq[i]);
1586                 txq = rte_realloc(txq, sizeof(txq[0]) * nb_queues,
1587                                   RTE_CACHE_LINE_SIZE);
1588                 if (txq == NULL)
1589                         return -ENOMEM;
1590                 if (nb_queues > old_nb_queues) {
1591                         uint16_t new_qs = nb_queues - old_nb_queues;
1592                         memset(txq + old_nb_queues, 0, sizeof(txq[0]) * new_qs);
1593                 }
1594
1595                 hw->fkq_data.tx_queues = txq;
1596         } else if (hw->fkq_data.tx_queues != NULL && nb_queues == 0) {
1597                 txq = hw->fkq_data.tx_queues;
1598                 for (i = nb_queues; i < old_nb_queues; i++)
1599                         hns3_dev_tx_queue_release(txq[i]);
1600
1601                 rte_free(hw->fkq_data.tx_queues);
1602                 hw->fkq_data.tx_queues = NULL;
1603         }
1604         hw->fkq_data.nb_fake_tx_queues = nb_queues;
1605
1606         return 0;
1607 }
1608
1609 int
1610 hns3_set_fake_rx_or_tx_queues(struct rte_eth_dev *dev, uint16_t nb_rx_q,
1611                               uint16_t nb_tx_q)
1612 {
1613         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1614         uint16_t rx_need_add_nb_q;
1615         uint16_t tx_need_add_nb_q;
1616         uint16_t port_id;
1617         uint16_t q;
1618         int ret;
1619
1620         /* Setup new number of fake RX/TX queues and reconfigure device. */
1621         rx_need_add_nb_q = hw->cfg_max_queues - nb_rx_q;
1622         tx_need_add_nb_q = hw->cfg_max_queues - nb_tx_q;
1623         ret = hns3_fake_rx_queue_config(hw, rx_need_add_nb_q);
1624         if (ret) {
1625                 hns3_err(hw, "Fail to configure fake rx queues: %d", ret);
1626                 return ret;
1627         }
1628
1629         ret = hns3_fake_tx_queue_config(hw, tx_need_add_nb_q);
1630         if (ret) {
1631                 hns3_err(hw, "Fail to configure fake rx queues: %d", ret);
1632                 goto cfg_fake_tx_q_fail;
1633         }
1634
1635         /* Allocate and set up fake RX queue per Ethernet port. */
1636         port_id = hw->data->port_id;
1637         for (q = 0; q < rx_need_add_nb_q; q++) {
1638                 ret = hns3_fake_rx_queue_setup(dev, q, HNS3_MIN_RING_DESC,
1639                                                rte_eth_dev_socket_id(port_id));
1640                 if (ret)
1641                         goto setup_fake_rx_q_fail;
1642         }
1643
1644         /* Allocate and set up fake TX queue per Ethernet port. */
1645         for (q = 0; q < tx_need_add_nb_q; q++) {
1646                 ret = hns3_fake_tx_queue_setup(dev, q, HNS3_MIN_RING_DESC,
1647                                                rte_eth_dev_socket_id(port_id));
1648                 if (ret)
1649                         goto setup_fake_tx_q_fail;
1650         }
1651
1652         return 0;
1653
1654 setup_fake_tx_q_fail:
1655 setup_fake_rx_q_fail:
1656         (void)hns3_fake_tx_queue_config(hw, 0);
1657 cfg_fake_tx_q_fail:
1658         (void)hns3_fake_rx_queue_config(hw, 0);
1659
1660         return ret;
1661 }
1662
1663 void
1664 hns3_dev_release_mbufs(struct hns3_adapter *hns)
1665 {
1666         struct rte_eth_dev_data *dev_data = hns->hw.data;
1667         struct hns3_rx_queue *rxq;
1668         struct hns3_tx_queue *txq;
1669         int i;
1670
1671         if (dev_data->rx_queues)
1672                 for (i = 0; i < dev_data->nb_rx_queues; i++) {
1673                         rxq = dev_data->rx_queues[i];
1674                         if (rxq == NULL)
1675                                 continue;
1676                         hns3_rx_queue_release_mbufs(rxq);
1677                 }
1678
1679         if (dev_data->tx_queues)
1680                 for (i = 0; i < dev_data->nb_tx_queues; i++) {
1681                         txq = dev_data->tx_queues[i];
1682                         if (txq == NULL)
1683                                 continue;
1684                         hns3_tx_queue_release_mbufs(txq);
1685                 }
1686 }
1687
1688 static int
1689 hns3_rx_buf_len_calc(struct rte_mempool *mp, uint16_t *rx_buf_len)
1690 {
1691         uint16_t vld_buf_size;
1692         uint16_t num_hw_specs;
1693         uint16_t i;
1694
1695         /*
1696          * hns3 network engine only support to set 4 typical specification, and
1697          * different buffer size will affect the max packet_len and the max
1698          * number of segmentation when hw gro is turned on in receive side. The
1699          * relationship between them is as follows:
1700          *      rx_buf_size     |  max_gro_pkt_len  |  max_gro_nb_seg
1701          * ---------------------|-------------------|----------------
1702          * HNS3_4K_BD_BUF_SIZE  |        60KB       |       15
1703          * HNS3_2K_BD_BUF_SIZE  |        62KB       |       31
1704          * HNS3_1K_BD_BUF_SIZE  |        63KB       |       63
1705          * HNS3_512_BD_BUF_SIZE |      31.5KB       |       63
1706          */
1707         static const uint16_t hw_rx_buf_size[] = {
1708                 HNS3_4K_BD_BUF_SIZE,
1709                 HNS3_2K_BD_BUF_SIZE,
1710                 HNS3_1K_BD_BUF_SIZE,
1711                 HNS3_512_BD_BUF_SIZE
1712         };
1713
1714         vld_buf_size = (uint16_t)(rte_pktmbuf_data_room_size(mp) -
1715                         RTE_PKTMBUF_HEADROOM);
1716         if (vld_buf_size < HNS3_MIN_BD_BUF_SIZE)
1717                 return -EINVAL;
1718
1719         num_hw_specs = RTE_DIM(hw_rx_buf_size);
1720         for (i = 0; i < num_hw_specs; i++) {
1721                 if (vld_buf_size >= hw_rx_buf_size[i]) {
1722                         *rx_buf_len = hw_rx_buf_size[i];
1723                         break;
1724                 }
1725         }
1726         return 0;
1727 }
1728
1729 static int
1730 hns3_rxq_conf_runtime_check(struct hns3_hw *hw, uint16_t buf_size,
1731                                 uint16_t nb_desc)
1732 {
1733         struct rte_eth_dev *dev = &rte_eth_devices[hw->data->port_id];
1734         struct rte_eth_rxmode *rxmode = &hw->data->dev_conf.rxmode;
1735         eth_rx_burst_t pkt_burst = dev->rx_pkt_burst;
1736         uint16_t min_vec_bds;
1737
1738         /*
1739          * HNS3 hardware network engine set scattered as default. If the driver
1740          * is not work in scattered mode and the pkts greater than buf_size
1741          * but smaller than max_rx_pkt_len will be distributed to multiple BDs.
1742          * Driver cannot handle this situation.
1743          */
1744         if (!hw->data->scattered_rx && rxmode->max_rx_pkt_len > buf_size) {
1745                 hns3_err(hw, "max_rx_pkt_len is not allowed to be set greater "
1746                              "than rx_buf_len if scattered is off.");
1747                 return -EINVAL;
1748         }
1749
1750         if (pkt_burst == hns3_recv_pkts_vec) {
1751                 min_vec_bds = HNS3_DEFAULT_RXQ_REARM_THRESH +
1752                               HNS3_DEFAULT_RX_BURST;
1753                 if (nb_desc < min_vec_bds ||
1754                     nb_desc % HNS3_DEFAULT_RXQ_REARM_THRESH) {
1755                         hns3_err(hw, "if Rx burst mode is vector, "
1756                                  "number of descriptor is required to be "
1757                                  "bigger than min vector bds:%u, and could be "
1758                                  "divided by rxq rearm thresh:%u.",
1759                                  min_vec_bds, HNS3_DEFAULT_RXQ_REARM_THRESH);
1760                         return -EINVAL;
1761                 }
1762         }
1763         return 0;
1764 }
1765
1766 static int
1767 hns3_rx_queue_conf_check(struct hns3_hw *hw, const struct rte_eth_rxconf *conf,
1768                          struct rte_mempool *mp, uint16_t nb_desc,
1769                          uint16_t *buf_size)
1770 {
1771         int ret;
1772
1773         if (nb_desc > HNS3_MAX_RING_DESC || nb_desc < HNS3_MIN_RING_DESC ||
1774             nb_desc % HNS3_ALIGN_RING_DESC) {
1775                 hns3_err(hw, "Number (%u) of rx descriptors is invalid",
1776                          nb_desc);
1777                 return -EINVAL;
1778         }
1779
1780         if (conf->rx_drop_en == 0)
1781                 hns3_warn(hw, "if no descriptors available, packets are always "
1782                           "dropped and rx_drop_en (1) is fixed on");
1783
1784         if (hns3_rx_buf_len_calc(mp, buf_size)) {
1785                 hns3_err(hw, "rxq mbufs' data room size (%u) is not enough! "
1786                                 "minimal data room size (%u).",
1787                                 rte_pktmbuf_data_room_size(mp),
1788                                 HNS3_MIN_BD_BUF_SIZE + RTE_PKTMBUF_HEADROOM);
1789                 return -EINVAL;
1790         }
1791
1792         if (hw->data->dev_started) {
1793                 ret = hns3_rxq_conf_runtime_check(hw, *buf_size, nb_desc);
1794                 if (ret) {
1795                         hns3_err(hw, "Rx queue runtime setup fail.");
1796                         return ret;
1797                 }
1798         }
1799
1800         return 0;
1801 }
1802
1803 uint32_t
1804 hns3_get_tqp_reg_offset(uint16_t queue_id)
1805 {
1806         uint32_t reg_offset;
1807
1808         /* Need an extend offset to config queue > 1024 */
1809         if (queue_id < HNS3_MIN_EXTEND_QUEUE_ID)
1810                 reg_offset = HNS3_TQP_REG_OFFSET + queue_id * HNS3_TQP_REG_SIZE;
1811         else
1812                 reg_offset = HNS3_TQP_REG_OFFSET + HNS3_TQP_EXT_REG_OFFSET +
1813                              (queue_id - HNS3_MIN_EXTEND_QUEUE_ID) *
1814                              HNS3_TQP_REG_SIZE;
1815
1816         return reg_offset;
1817 }
1818
1819 int
1820 hns3_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t nb_desc,
1821                     unsigned int socket_id, const struct rte_eth_rxconf *conf,
1822                     struct rte_mempool *mp)
1823 {
1824         struct hns3_adapter *hns = dev->data->dev_private;
1825         struct hns3_hw *hw = &hns->hw;
1826         struct hns3_queue_info q_info;
1827         struct hns3_rx_queue *rxq;
1828         uint16_t rx_buf_size;
1829         int rx_entry_len;
1830         int ret;
1831
1832         ret = hns3_rx_queue_conf_check(hw, conf, mp, nb_desc, &rx_buf_size);
1833         if (ret)
1834                 return ret;
1835
1836         if (dev->data->rx_queues[idx]) {
1837                 hns3_rx_queue_release(dev->data->rx_queues[idx]);
1838                 dev->data->rx_queues[idx] = NULL;
1839         }
1840
1841         q_info.idx = idx;
1842         q_info.socket_id = socket_id;
1843         q_info.nb_desc = nb_desc;
1844         q_info.type = "hns3 RX queue";
1845         q_info.ring_name = "rx_ring";
1846
1847         rxq = hns3_alloc_rxq_and_dma_zone(dev, &q_info);
1848         if (rxq == NULL) {
1849                 hns3_err(hw,
1850                          "Failed to alloc mem and reserve DMA mem for rx ring!");
1851                 return -ENOMEM;
1852         }
1853
1854         rxq->hns = hns;
1855         rxq->ptype_tbl = &hns->ptype_tbl;
1856         rxq->mb_pool = mp;
1857         rxq->rx_free_thresh = (conf->rx_free_thresh > 0) ?
1858                 conf->rx_free_thresh : HNS3_DEFAULT_RX_FREE_THRESH;
1859
1860         rxq->rx_deferred_start = conf->rx_deferred_start;
1861         if (rxq->rx_deferred_start && !hns3_dev_indep_txrx_supported(hw)) {
1862                 hns3_warn(hw, "deferred start is not supported.");
1863                 rxq->rx_deferred_start = false;
1864         }
1865
1866         rx_entry_len = (rxq->nb_rx_desc + HNS3_DEFAULT_RX_BURST) *
1867                         sizeof(struct hns3_entry);
1868         rxq->sw_ring = rte_zmalloc_socket("hns3 RX sw ring", rx_entry_len,
1869                                           RTE_CACHE_LINE_SIZE, socket_id);
1870         if (rxq->sw_ring == NULL) {
1871                 hns3_err(hw, "Failed to allocate memory for rx sw ring!");
1872                 hns3_rx_queue_release(rxq);
1873                 return -ENOMEM;
1874         }
1875
1876         rxq->next_to_use = 0;
1877         rxq->rx_free_hold = 0;
1878         rxq->rx_rearm_start = 0;
1879         rxq->rx_rearm_nb = 0;
1880         rxq->pkt_first_seg = NULL;
1881         rxq->pkt_last_seg = NULL;
1882         rxq->port_id = dev->data->port_id;
1883         /*
1884          * For hns3 PF device, if the VLAN mode is HW_SHIFT_AND_DISCARD_MODE,
1885          * the pvid_sw_discard_en in the queue struct should not be changed,
1886          * because PVID-related operations do not need to be processed by PMD
1887          * driver. For hns3 VF device, whether it needs to process PVID depends
1888          * on the configuration of PF kernel mode netdevice driver. And the
1889          * related PF configuration is delivered through the mailbox and finally
1890          * reflectd in port_base_vlan_cfg.
1891          */
1892         if (hns->is_vf || hw->vlan_mode == HNS3_SW_SHIFT_AND_DISCARD_MODE)
1893                 rxq->pvid_sw_discard_en = hw->port_base_vlan_cfg.state ==
1894                                        HNS3_PORT_BASE_VLAN_ENABLE;
1895         else
1896                 rxq->pvid_sw_discard_en = false;
1897         rxq->ptype_en = hns3_dev_rxd_adv_layout_supported(hw) ? true : false;
1898         rxq->configured = true;
1899         rxq->io_base = (void *)((char *)hw->io_base + HNS3_TQP_REG_OFFSET +
1900                                 idx * HNS3_TQP_REG_SIZE);
1901         rxq->io_base = (void *)((char *)hw->io_base +
1902                                         hns3_get_tqp_reg_offset(idx));
1903         rxq->io_head_reg = (volatile void *)((char *)rxq->io_base +
1904                            HNS3_RING_RX_HEAD_REG);
1905         rxq->rx_buf_len = rx_buf_size;
1906         memset(&rxq->basic_stats, 0, sizeof(struct hns3_rx_basic_stats));
1907         memset(&rxq->err_stats, 0, sizeof(struct hns3_rx_bd_errors_stats));
1908         memset(&rxq->dfx_stats, 0, sizeof(struct hns3_rx_dfx_stats));
1909
1910         /* CRC len set here is used for amending packet length */
1911         if (dev->data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC)
1912                 rxq->crc_len = RTE_ETHER_CRC_LEN;
1913         else
1914                 rxq->crc_len = 0;
1915
1916         rxq->bulk_mbuf_num = 0;
1917
1918         rte_spinlock_lock(&hw->lock);
1919         dev->data->rx_queues[idx] = rxq;
1920         rte_spinlock_unlock(&hw->lock);
1921
1922         return 0;
1923 }
1924
1925 void
1926 hns3_rx_scattered_reset(struct rte_eth_dev *dev)
1927 {
1928         struct hns3_adapter *hns = dev->data->dev_private;
1929         struct hns3_hw *hw = &hns->hw;
1930
1931         hw->rx_buf_len = 0;
1932         dev->data->scattered_rx = false;
1933 }
1934
1935 void
1936 hns3_rx_scattered_calc(struct rte_eth_dev *dev)
1937 {
1938         struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
1939         struct hns3_adapter *hns = dev->data->dev_private;
1940         struct hns3_hw *hw = &hns->hw;
1941         struct hns3_rx_queue *rxq;
1942         uint32_t queue_id;
1943
1944         if (dev->data->rx_queues == NULL)
1945                 return;
1946
1947         for (queue_id = 0; queue_id < dev->data->nb_rx_queues; queue_id++) {
1948                 rxq = dev->data->rx_queues[queue_id];
1949                 if (hw->rx_buf_len == 0)
1950                         hw->rx_buf_len = rxq->rx_buf_len;
1951                 else
1952                         hw->rx_buf_len = RTE_MIN(hw->rx_buf_len,
1953                                                  rxq->rx_buf_len);
1954         }
1955
1956         if (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_SCATTER ||
1957             dev_conf->rxmode.max_rx_pkt_len > hw->rx_buf_len)
1958                 dev->data->scattered_rx = true;
1959 }
1960
1961 const uint32_t *
1962 hns3_dev_supported_ptypes_get(struct rte_eth_dev *dev)
1963 {
1964         static const uint32_t ptypes[] = {
1965                 RTE_PTYPE_L2_ETHER,
1966                 RTE_PTYPE_L2_ETHER_LLDP,
1967                 RTE_PTYPE_L2_ETHER_ARP,
1968                 RTE_PTYPE_L3_IPV4,
1969                 RTE_PTYPE_L3_IPV4_EXT,
1970                 RTE_PTYPE_L3_IPV6,
1971                 RTE_PTYPE_L3_IPV6_EXT,
1972                 RTE_PTYPE_L4_IGMP,
1973                 RTE_PTYPE_L4_ICMP,
1974                 RTE_PTYPE_L4_SCTP,
1975                 RTE_PTYPE_L4_TCP,
1976                 RTE_PTYPE_L4_UDP,
1977                 RTE_PTYPE_TUNNEL_GRE,
1978                 RTE_PTYPE_INNER_L2_ETHER,
1979                 RTE_PTYPE_INNER_L3_IPV4,
1980                 RTE_PTYPE_INNER_L3_IPV6,
1981                 RTE_PTYPE_INNER_L3_IPV4_EXT,
1982                 RTE_PTYPE_INNER_L3_IPV6_EXT,
1983                 RTE_PTYPE_INNER_L4_UDP,
1984                 RTE_PTYPE_INNER_L4_TCP,
1985                 RTE_PTYPE_INNER_L4_SCTP,
1986                 RTE_PTYPE_INNER_L4_ICMP,
1987                 RTE_PTYPE_TUNNEL_VXLAN,
1988                 RTE_PTYPE_TUNNEL_NVGRE,
1989                 RTE_PTYPE_UNKNOWN
1990         };
1991         static const uint32_t adv_layout_ptypes[] = {
1992                 RTE_PTYPE_L2_ETHER,
1993                 RTE_PTYPE_L2_ETHER_TIMESYNC,
1994                 RTE_PTYPE_L2_ETHER_LLDP,
1995                 RTE_PTYPE_L2_ETHER_ARP,
1996                 RTE_PTYPE_L3_IPV4_EXT_UNKNOWN,
1997                 RTE_PTYPE_L3_IPV6_EXT_UNKNOWN,
1998                 RTE_PTYPE_L4_FRAG,
1999                 RTE_PTYPE_L4_NONFRAG,
2000                 RTE_PTYPE_L4_UDP,
2001                 RTE_PTYPE_L4_TCP,
2002                 RTE_PTYPE_L4_SCTP,
2003                 RTE_PTYPE_L4_IGMP,
2004                 RTE_PTYPE_L4_ICMP,
2005                 RTE_PTYPE_TUNNEL_GRE,
2006                 RTE_PTYPE_TUNNEL_GRENAT,
2007                 RTE_PTYPE_INNER_L2_ETHER,
2008                 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN,
2009                 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN,
2010                 RTE_PTYPE_INNER_L4_FRAG,
2011                 RTE_PTYPE_INNER_L4_ICMP,
2012                 RTE_PTYPE_INNER_L4_NONFRAG,
2013                 RTE_PTYPE_INNER_L4_UDP,
2014                 RTE_PTYPE_INNER_L4_TCP,
2015                 RTE_PTYPE_INNER_L4_SCTP,
2016                 RTE_PTYPE_INNER_L4_ICMP,
2017                 RTE_PTYPE_UNKNOWN
2018         };
2019         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2020
2021         if (dev->rx_pkt_burst == hns3_recv_pkts_simple ||
2022             dev->rx_pkt_burst == hns3_recv_scattered_pkts ||
2023             dev->rx_pkt_burst == hns3_recv_pkts_vec ||
2024             dev->rx_pkt_burst == hns3_recv_pkts_vec_sve) {
2025                 if (hns3_dev_rxd_adv_layout_supported(hw))
2026                         return adv_layout_ptypes;
2027                 else
2028                         return ptypes;
2029         }
2030
2031         return NULL;
2032 }
2033
2034 static void
2035 hns3_init_non_tunnel_ptype_tbl(struct hns3_ptype_table *tbl)
2036 {
2037         tbl->l3table[0] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4;
2038         tbl->l3table[1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6;
2039         tbl->l3table[2] = RTE_PTYPE_L2_ETHER_ARP;
2040         tbl->l3table[4] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT;
2041         tbl->l3table[5] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT;
2042         tbl->l3table[6] = RTE_PTYPE_L2_ETHER_LLDP;
2043
2044         tbl->l4table[0] = RTE_PTYPE_L4_UDP;
2045         tbl->l4table[1] = RTE_PTYPE_L4_TCP;
2046         tbl->l4table[2] = RTE_PTYPE_TUNNEL_GRE;
2047         tbl->l4table[3] = RTE_PTYPE_L4_SCTP;
2048         tbl->l4table[4] = RTE_PTYPE_L4_IGMP;
2049         tbl->l4table[5] = RTE_PTYPE_L4_ICMP;
2050 }
2051
2052 static void
2053 hns3_init_tunnel_ptype_tbl(struct hns3_ptype_table *tbl)
2054 {
2055         tbl->inner_l3table[0] = RTE_PTYPE_INNER_L2_ETHER |
2056                                 RTE_PTYPE_INNER_L3_IPV4;
2057         tbl->inner_l3table[1] = RTE_PTYPE_INNER_L2_ETHER |
2058                                 RTE_PTYPE_INNER_L3_IPV6;
2059         /* There is not a ptype for inner ARP/RARP */
2060         tbl->inner_l3table[2] = RTE_PTYPE_UNKNOWN;
2061         tbl->inner_l3table[3] = RTE_PTYPE_UNKNOWN;
2062         tbl->inner_l3table[4] = RTE_PTYPE_INNER_L2_ETHER |
2063                                 RTE_PTYPE_INNER_L3_IPV4_EXT;
2064         tbl->inner_l3table[5] = RTE_PTYPE_INNER_L2_ETHER |
2065                                 RTE_PTYPE_INNER_L3_IPV6_EXT;
2066
2067         tbl->inner_l4table[0] = RTE_PTYPE_INNER_L4_UDP;
2068         tbl->inner_l4table[1] = RTE_PTYPE_INNER_L4_TCP;
2069         /* There is not a ptype for inner GRE */
2070         tbl->inner_l4table[2] = RTE_PTYPE_UNKNOWN;
2071         tbl->inner_l4table[3] = RTE_PTYPE_INNER_L4_SCTP;
2072         /* There is not a ptype for inner IGMP */
2073         tbl->inner_l4table[4] = RTE_PTYPE_UNKNOWN;
2074         tbl->inner_l4table[5] = RTE_PTYPE_INNER_L4_ICMP;
2075
2076         tbl->ol3table[0] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4;
2077         tbl->ol3table[1] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6;
2078         tbl->ol3table[2] = RTE_PTYPE_UNKNOWN;
2079         tbl->ol3table[3] = RTE_PTYPE_UNKNOWN;
2080         tbl->ol3table[4] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT;
2081         tbl->ol3table[5] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT;
2082
2083         tbl->ol4table[0] = RTE_PTYPE_UNKNOWN;
2084         tbl->ol4table[1] = RTE_PTYPE_L4_UDP | RTE_PTYPE_TUNNEL_VXLAN;
2085         tbl->ol4table[2] = RTE_PTYPE_TUNNEL_NVGRE;
2086 }
2087
2088 static void
2089 hns3_init_adv_layout_ptype(struct hns3_ptype_table *tbl)
2090 {
2091         uint32_t *ptype = tbl->ptype;
2092
2093         /* Non-tunnel L2 */
2094         ptype[1] = RTE_PTYPE_L2_ETHER_ARP;
2095         ptype[3] = RTE_PTYPE_L2_ETHER_LLDP;
2096         ptype[8] = RTE_PTYPE_L2_ETHER_TIMESYNC;
2097
2098         /* Non-tunnel IPv4 */
2099         ptype[17] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2100                     RTE_PTYPE_L4_FRAG;
2101         ptype[18] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2102                     RTE_PTYPE_L4_NONFRAG;
2103         ptype[19] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2104                     RTE_PTYPE_L4_UDP;
2105         ptype[20] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2106                     RTE_PTYPE_L4_TCP;
2107         ptype[21] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2108                     RTE_PTYPE_TUNNEL_GRE;
2109         ptype[22] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2110                     RTE_PTYPE_L4_SCTP;
2111         ptype[23] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2112                     RTE_PTYPE_L4_IGMP;
2113         ptype[24] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2114                     RTE_PTYPE_L4_ICMP;
2115         /* The next ptype is PTP over IPv4 + UDP */
2116         ptype[25] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2117                     RTE_PTYPE_L4_UDP;
2118
2119         /* IPv4 --> GRE/Teredo/VXLAN */
2120         ptype[29] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2121                     RTE_PTYPE_TUNNEL_GRENAT;
2122         /* IPv4 --> GRE/Teredo/VXLAN --> MAC */
2123         ptype[30] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2124                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER;
2125
2126         /* IPv4 --> GRE/Teredo/VXLAN --> MAC --> IPv4 */
2127         ptype[31] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2128                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2129                     RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2130                     RTE_PTYPE_INNER_L4_FRAG;
2131         ptype[32] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2132                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2133                     RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2134                     RTE_PTYPE_INNER_L4_NONFRAG;
2135         ptype[33] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2136                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2137                     RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2138                     RTE_PTYPE_INNER_L4_UDP;
2139         ptype[34] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2140                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2141                     RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2142                     RTE_PTYPE_INNER_L4_TCP;
2143         ptype[35] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2144                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2145                     RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2146                     RTE_PTYPE_INNER_L4_SCTP;
2147         /* The next ptype's inner L4 is IGMP */
2148         ptype[36] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2149                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2150                     RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN;
2151         ptype[37] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2152                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2153                     RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2154                     RTE_PTYPE_INNER_L4_ICMP;
2155
2156         /* IPv4 --> GRE/Teredo/VXLAN --> MAC --> IPv6 */
2157         ptype[39] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2158                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2159                     RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2160                     RTE_PTYPE_INNER_L4_FRAG;
2161         ptype[40] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2162                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2163                     RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2164                     RTE_PTYPE_INNER_L4_NONFRAG;
2165         ptype[41] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2166                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2167                     RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2168                     RTE_PTYPE_INNER_L4_UDP;
2169         ptype[42] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2170                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2171                     RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2172                     RTE_PTYPE_INNER_L4_TCP;
2173         ptype[43] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2174                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2175                     RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2176                     RTE_PTYPE_INNER_L4_SCTP;
2177         /* The next ptype's inner L4 is IGMP */
2178         ptype[44] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2179                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2180                     RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN;
2181         ptype[45] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
2182                     RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2183                     RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2184                     RTE_PTYPE_INNER_L4_ICMP;
2185
2186         /* Non-tunnel IPv6 */
2187         ptype[111] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2188                      RTE_PTYPE_L4_FRAG;
2189         ptype[112] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2190                      RTE_PTYPE_L4_NONFRAG;
2191         ptype[113] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2192                      RTE_PTYPE_L4_UDP;
2193         ptype[114] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2194                      RTE_PTYPE_L4_TCP;
2195         ptype[115] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2196                      RTE_PTYPE_TUNNEL_GRE;
2197         ptype[116] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2198                      RTE_PTYPE_L4_SCTP;
2199         ptype[117] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2200                      RTE_PTYPE_L4_IGMP;
2201         ptype[118] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2202                      RTE_PTYPE_L4_ICMP;
2203         /* Special for PTP over IPv6 + UDP */
2204         ptype[119] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2205                      RTE_PTYPE_L4_UDP;
2206
2207         /* IPv6 --> GRE/Teredo/VXLAN */
2208         ptype[123] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2209                      RTE_PTYPE_TUNNEL_GRENAT;
2210         /* IPv6 --> GRE/Teredo/VXLAN --> MAC */
2211         ptype[124] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2212                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER;
2213
2214         /* IPv6 --> GRE/Teredo/VXLAN --> MAC --> IPv4 */
2215         ptype[125] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2216                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2217                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2218                      RTE_PTYPE_INNER_L4_FRAG;
2219         ptype[126] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2220                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2221                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2222                      RTE_PTYPE_INNER_L4_NONFRAG;
2223         ptype[127] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2224                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2225                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2226                      RTE_PTYPE_INNER_L4_UDP;
2227         ptype[128] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2228                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2229                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2230                      RTE_PTYPE_INNER_L4_TCP;
2231         ptype[129] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2232                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2233                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2234                      RTE_PTYPE_INNER_L4_SCTP;
2235         /* The next ptype's inner L4 is IGMP */
2236         ptype[130] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2237                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2238                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN;
2239         ptype[131] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2240                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2241                      RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN |
2242                      RTE_PTYPE_INNER_L4_ICMP;
2243
2244         /* IPv6 --> GRE/Teredo/VXLAN --> MAC --> IPv6 */
2245         ptype[133] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2246                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2247                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2248                      RTE_PTYPE_INNER_L4_FRAG;
2249         ptype[134] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2250                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2251                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2252                      RTE_PTYPE_INNER_L4_NONFRAG;
2253         ptype[135] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2254                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2255                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2256                      RTE_PTYPE_INNER_L4_UDP;
2257         ptype[136] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2258                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2259                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2260                      RTE_PTYPE_INNER_L4_TCP;
2261         ptype[137] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2262                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2263                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2264                      RTE_PTYPE_INNER_L4_SCTP;
2265         /* The next ptype's inner L4 is IGMP */
2266         ptype[138] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2267                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2268                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN;
2269         ptype[139] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
2270                      RTE_PTYPE_TUNNEL_GRENAT | RTE_PTYPE_INNER_L2_ETHER |
2271                      RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN |
2272                      RTE_PTYPE_INNER_L4_ICMP;
2273 }
2274
2275 void
2276 hns3_init_rx_ptype_tble(struct rte_eth_dev *dev)
2277 {
2278         struct hns3_adapter *hns = dev->data->dev_private;
2279         struct hns3_ptype_table *tbl = &hns->ptype_tbl;
2280
2281         memset(tbl, 0, sizeof(*tbl));
2282
2283         hns3_init_non_tunnel_ptype_tbl(tbl);
2284         hns3_init_tunnel_ptype_tbl(tbl);
2285         hns3_init_adv_layout_ptype(tbl);
2286 }
2287
2288 static inline void
2289 hns3_rxd_to_vlan_tci(struct hns3_rx_queue *rxq, struct rte_mbuf *mb,
2290                      uint32_t l234_info, const struct hns3_desc *rxd)
2291 {
2292 #define HNS3_STRP_STATUS_NUM            0x4
2293
2294 #define HNS3_NO_STRP_VLAN_VLD           0x0
2295 #define HNS3_INNER_STRP_VLAN_VLD        0x1
2296 #define HNS3_OUTER_STRP_VLAN_VLD        0x2
2297         uint32_t strip_status;
2298         uint32_t report_mode;
2299
2300         /*
2301          * Since HW limitation, the vlan tag will always be inserted into RX
2302          * descriptor when strip the tag from packet, driver needs to determine
2303          * reporting which tag to mbuf according to the PVID configuration
2304          * and vlan striped status.
2305          */
2306         static const uint32_t report_type[][HNS3_STRP_STATUS_NUM] = {
2307                 {
2308                         HNS3_NO_STRP_VLAN_VLD,
2309                         HNS3_OUTER_STRP_VLAN_VLD,
2310                         HNS3_INNER_STRP_VLAN_VLD,
2311                         HNS3_OUTER_STRP_VLAN_VLD
2312                 },
2313                 {
2314                         HNS3_NO_STRP_VLAN_VLD,
2315                         HNS3_NO_STRP_VLAN_VLD,
2316                         HNS3_NO_STRP_VLAN_VLD,
2317                         HNS3_INNER_STRP_VLAN_VLD
2318                 }
2319         };
2320         strip_status = hns3_get_field(l234_info, HNS3_RXD_STRP_TAGP_M,
2321                                       HNS3_RXD_STRP_TAGP_S);
2322         report_mode = report_type[rxq->pvid_sw_discard_en][strip_status];
2323         switch (report_mode) {
2324         case HNS3_NO_STRP_VLAN_VLD:
2325                 mb->vlan_tci = 0;
2326                 return;
2327         case HNS3_INNER_STRP_VLAN_VLD:
2328                 mb->ol_flags |= PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED;
2329                 mb->vlan_tci = rte_le_to_cpu_16(rxd->rx.vlan_tag);
2330                 return;
2331         case HNS3_OUTER_STRP_VLAN_VLD:
2332                 mb->ol_flags |= PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED;
2333                 mb->vlan_tci = rte_le_to_cpu_16(rxd->rx.ot_vlan_tag);
2334                 return;
2335         default:
2336                 mb->vlan_tci = 0;
2337                 return;
2338         }
2339 }
2340
2341 static inline void
2342 recalculate_data_len(struct rte_mbuf *first_seg, struct rte_mbuf *last_seg,
2343                     struct rte_mbuf *rxm, struct hns3_rx_queue *rxq,
2344                     uint16_t data_len)
2345 {
2346         uint8_t crc_len = rxq->crc_len;
2347
2348         if (data_len <= crc_len) {
2349                 rte_pktmbuf_free_seg(rxm);
2350                 first_seg->nb_segs--;
2351                 last_seg->data_len = (uint16_t)(last_seg->data_len -
2352                         (crc_len - data_len));
2353                 last_seg->next = NULL;
2354         } else
2355                 rxm->data_len = (uint16_t)(data_len - crc_len);
2356 }
2357
2358 static inline struct rte_mbuf *
2359 hns3_rx_alloc_buffer(struct hns3_rx_queue *rxq)
2360 {
2361         int ret;
2362
2363         if (likely(rxq->bulk_mbuf_num > 0))
2364                 return rxq->bulk_mbuf[--rxq->bulk_mbuf_num];
2365
2366         ret = rte_mempool_get_bulk(rxq->mb_pool, (void **)rxq->bulk_mbuf,
2367                                    HNS3_BULK_ALLOC_MBUF_NUM);
2368         if (likely(ret == 0)) {
2369                 rxq->bulk_mbuf_num = HNS3_BULK_ALLOC_MBUF_NUM;
2370                 return rxq->bulk_mbuf[--rxq->bulk_mbuf_num];
2371         } else
2372                 return rte_mbuf_raw_alloc(rxq->mb_pool);
2373 }
2374
2375 static inline void
2376 hns3_rx_ptp_timestamp_handle(struct hns3_rx_queue *rxq, struct rte_mbuf *mbuf,
2377                   volatile struct hns3_desc *rxd)
2378 {
2379         struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(rxq->hns);
2380         uint64_t timestamp = rte_le_to_cpu_64(rxd->timestamp);
2381
2382         mbuf->ol_flags |= PKT_RX_IEEE1588_PTP | PKT_RX_IEEE1588_TMST;
2383         if (hns3_timestamp_rx_dynflag > 0) {
2384                 *RTE_MBUF_DYNFIELD(mbuf, hns3_timestamp_dynfield_offset,
2385                         rte_mbuf_timestamp_t *) = timestamp;
2386                 mbuf->ol_flags |= hns3_timestamp_rx_dynflag;
2387         }
2388
2389         pf->rx_timestamp = timestamp;
2390 }
2391
2392 uint16_t
2393 hns3_recv_pkts_simple(void *rx_queue,
2394                       struct rte_mbuf **rx_pkts,
2395                       uint16_t nb_pkts)
2396 {
2397         volatile struct hns3_desc *rx_ring;  /* RX ring (desc) */
2398         volatile struct hns3_desc *rxdp;     /* pointer of the current desc */
2399         struct hns3_rx_queue *rxq;      /* RX queue */
2400         struct hns3_entry *sw_ring;
2401         struct hns3_entry *rxe;
2402         struct hns3_desc rxd;
2403         struct rte_mbuf *nmb;           /* pointer of the new mbuf */
2404         struct rte_mbuf *rxm;
2405         uint32_t bd_base_info;
2406         uint32_t l234_info;
2407         uint32_t ol_info;
2408         uint64_t dma_addr;
2409         uint16_t nb_rx_bd;
2410         uint16_t nb_rx;
2411         uint16_t rx_id;
2412         int ret;
2413
2414         nb_rx = 0;
2415         nb_rx_bd = 0;
2416         rxq = rx_queue;
2417         rx_ring = rxq->rx_ring;
2418         sw_ring = rxq->sw_ring;
2419         rx_id = rxq->next_to_use;
2420
2421         while (nb_rx < nb_pkts) {
2422                 rxdp = &rx_ring[rx_id];
2423                 bd_base_info = rte_le_to_cpu_32(rxdp->rx.bd_base_info);
2424                 if (unlikely(!(bd_base_info & BIT(HNS3_RXD_VLD_B))))
2425                         break;
2426
2427                 rxd = rxdp[(bd_base_info & (1u << HNS3_RXD_VLD_B)) -
2428                            (1u << HNS3_RXD_VLD_B)];
2429
2430                 nmb = hns3_rx_alloc_buffer(rxq);
2431                 if (unlikely(nmb == NULL)) {
2432                         uint16_t port_id;
2433
2434                         port_id = rxq->port_id;
2435                         rte_eth_devices[port_id].data->rx_mbuf_alloc_failed++;
2436                         break;
2437                 }
2438
2439                 nb_rx_bd++;
2440                 rxe = &sw_ring[rx_id];
2441                 rx_id++;
2442                 if (unlikely(rx_id == rxq->nb_rx_desc))
2443                         rx_id = 0;
2444
2445                 rte_prefetch0(sw_ring[rx_id].mbuf);
2446                 if ((rx_id & HNS3_RX_RING_PREFETCTH_MASK) == 0) {
2447                         rte_prefetch0(&rx_ring[rx_id]);
2448                         rte_prefetch0(&sw_ring[rx_id]);
2449                 }
2450
2451                 rxm = rxe->mbuf;
2452                 rxm->ol_flags = 0;
2453                 rxe->mbuf = nmb;
2454
2455                 if (unlikely(bd_base_info & BIT(HNS3_RXD_TS_VLD_B)))
2456                         hns3_rx_ptp_timestamp_handle(rxq, rxm, rxdp);
2457
2458                 dma_addr = rte_mbuf_data_iova_default(nmb);
2459                 rxdp->addr = rte_cpu_to_le_64(dma_addr);
2460                 rxdp->rx.bd_base_info = 0;
2461
2462                 rxm->data_off = RTE_PKTMBUF_HEADROOM;
2463                 rxm->pkt_len = (uint16_t)(rte_le_to_cpu_16(rxd.rx.pkt_len)) -
2464                                 rxq->crc_len;
2465                 rxm->data_len = rxm->pkt_len;
2466                 rxm->port = rxq->port_id;
2467                 rxm->hash.rss = rte_le_to_cpu_32(rxd.rx.rss_hash);
2468                 rxm->ol_flags |= PKT_RX_RSS_HASH;
2469                 if (unlikely(bd_base_info & BIT(HNS3_RXD_LUM_B))) {
2470                         rxm->hash.fdir.hi =
2471                                 rte_le_to_cpu_16(rxd.rx.fd_id);
2472                         rxm->ol_flags |= PKT_RX_FDIR | PKT_RX_FDIR_ID;
2473                 }
2474                 rxm->nb_segs = 1;
2475                 rxm->next = NULL;
2476
2477                 /* Load remained descriptor data and extract necessary fields */
2478                 l234_info = rte_le_to_cpu_32(rxd.rx.l234_info);
2479                 ol_info = rte_le_to_cpu_32(rxd.rx.ol_info);
2480                 ret = hns3_handle_bdinfo(rxq, rxm, bd_base_info, l234_info);
2481                 if (unlikely(ret))
2482                         goto pkt_err;
2483
2484                 rxm->packet_type = hns3_rx_calc_ptype(rxq, l234_info, ol_info);
2485
2486                 if (rxm->packet_type == RTE_PTYPE_L2_ETHER_TIMESYNC)
2487                         rxm->ol_flags |= PKT_RX_IEEE1588_PTP;
2488
2489                 hns3_rxd_to_vlan_tci(rxq, rxm, l234_info, &rxd);
2490
2491                 /* Increment bytes counter  */
2492                 rxq->basic_stats.bytes += rxm->pkt_len;
2493
2494                 rx_pkts[nb_rx++] = rxm;
2495                 continue;
2496 pkt_err:
2497                 rte_pktmbuf_free(rxm);
2498         }
2499
2500         rxq->next_to_use = rx_id;
2501         rxq->rx_free_hold += nb_rx_bd;
2502         if (rxq->rx_free_hold > rxq->rx_free_thresh) {
2503                 hns3_write_reg_opt(rxq->io_head_reg, rxq->rx_free_hold);
2504                 rxq->rx_free_hold = 0;
2505         }
2506
2507         return nb_rx;
2508 }
2509
2510 uint16_t
2511 hns3_recv_scattered_pkts(void *rx_queue,
2512                          struct rte_mbuf **rx_pkts,
2513                          uint16_t nb_pkts)
2514 {
2515         volatile struct hns3_desc *rx_ring;  /* RX ring (desc) */
2516         volatile struct hns3_desc *rxdp;     /* pointer of the current desc */
2517         struct hns3_rx_queue *rxq;      /* RX queue */
2518         struct hns3_entry *sw_ring;
2519         struct hns3_entry *rxe;
2520         struct rte_mbuf *first_seg;
2521         struct rte_mbuf *last_seg;
2522         struct hns3_desc rxd;
2523         struct rte_mbuf *nmb;           /* pointer of the new mbuf */
2524         struct rte_mbuf *rxm;
2525         struct rte_eth_dev *dev;
2526         uint32_t bd_base_info;
2527         uint32_t l234_info;
2528         uint32_t gro_size;
2529         uint32_t ol_info;
2530         uint64_t dma_addr;
2531         uint16_t nb_rx_bd;
2532         uint16_t nb_rx;
2533         uint16_t rx_id;
2534         int ret;
2535
2536         nb_rx = 0;
2537         nb_rx_bd = 0;
2538         rxq = rx_queue;
2539
2540         rx_id = rxq->next_to_use;
2541         rx_ring = rxq->rx_ring;
2542         sw_ring = rxq->sw_ring;
2543         first_seg = rxq->pkt_first_seg;
2544         last_seg = rxq->pkt_last_seg;
2545
2546         while (nb_rx < nb_pkts) {
2547                 rxdp = &rx_ring[rx_id];
2548                 bd_base_info = rte_le_to_cpu_32(rxdp->rx.bd_base_info);
2549                 if (unlikely(!(bd_base_info & BIT(HNS3_RXD_VLD_B))))
2550                         break;
2551
2552                 /*
2553                  * The interactive process between software and hardware of
2554                  * receiving a new packet in hns3 network engine:
2555                  * 1. Hardware network engine firstly writes the packet content
2556                  *    to the memory pointed by the 'addr' field of the Rx Buffer
2557                  *    Descriptor, secondly fills the result of parsing the
2558                  *    packet include the valid field into the Rx Buffer
2559                  *    Descriptor in one write operation.
2560                  * 2. Driver reads the Rx BD's valid field in the loop to check
2561                  *    whether it's valid, if valid then assign a new address to
2562                  *    the addr field, clear the valid field, get the other
2563                  *    information of the packet by parsing Rx BD's other fields,
2564                  *    finally write back the number of Rx BDs processed by the
2565                  *    driver to the HNS3_RING_RX_HEAD_REG register to inform
2566                  *    hardware.
2567                  * In the above process, the ordering is very important. We must
2568                  * make sure that CPU read Rx BD's other fields only after the
2569                  * Rx BD is valid.
2570                  *
2571                  * There are two type of re-ordering: compiler re-ordering and
2572                  * CPU re-ordering under the ARMv8 architecture.
2573                  * 1. we use volatile to deal with compiler re-ordering, so you
2574                  *    can see that rx_ring/rxdp defined with volatile.
2575                  * 2. we commonly use memory barrier to deal with CPU
2576                  *    re-ordering, but the cost is high.
2577                  *
2578                  * In order to solve the high cost of using memory barrier, we
2579                  * use the data dependency order under the ARMv8 architecture,
2580                  * for example:
2581                  *      instr01: load A
2582                  *      instr02: load B <- A
2583                  * the instr02 will always execute after instr01.
2584                  *
2585                  * To construct the data dependency ordering, we use the
2586                  * following assignment:
2587                  *      rxd = rxdp[(bd_base_info & (1u << HNS3_RXD_VLD_B)) -
2588                  *                 (1u<<HNS3_RXD_VLD_B)]
2589                  * Using gcc compiler under the ARMv8 architecture, the related
2590                  * assembly code example as follows:
2591                  * note: (1u << HNS3_RXD_VLD_B) equal 0x10
2592                  *      instr01: ldr w26, [x22, #28]  --read bd_base_info
2593                  *      instr02: and w0, w26, #0x10   --calc bd_base_info & 0x10
2594                  *      instr03: sub w0, w0, #0x10    --calc (bd_base_info &
2595                  *                                            0x10) - 0x10
2596                  *      instr04: add x0, x22, x0, lsl #5 --calc copy source addr
2597                  *      instr05: ldp x2, x3, [x0]
2598                  *      instr06: stp x2, x3, [x29, #256] --copy BD's [0 ~ 15]B
2599                  *      instr07: ldp x4, x5, [x0, #16]
2600                  *      instr08: stp x4, x5, [x29, #272] --copy BD's [16 ~ 31]B
2601                  * the instr05~08 depend on x0's value, x0 depent on w26's
2602                  * value, the w26 is the bd_base_info, this form the data
2603                  * dependency ordering.
2604                  * note: if BD is valid, (bd_base_info & (1u<<HNS3_RXD_VLD_B)) -
2605                  *       (1u<<HNS3_RXD_VLD_B) will always zero, so the
2606                  *       assignment is correct.
2607                  *
2608                  * So we use the data dependency ordering instead of memory
2609                  * barrier to improve receive performance.
2610                  */
2611                 rxd = rxdp[(bd_base_info & (1u << HNS3_RXD_VLD_B)) -
2612                            (1u << HNS3_RXD_VLD_B)];
2613
2614                 nmb = hns3_rx_alloc_buffer(rxq);
2615                 if (unlikely(nmb == NULL)) {
2616                         dev = &rte_eth_devices[rxq->port_id];
2617                         dev->data->rx_mbuf_alloc_failed++;
2618                         break;
2619                 }
2620
2621                 nb_rx_bd++;
2622                 rxe = &sw_ring[rx_id];
2623                 rx_id++;
2624                 if (unlikely(rx_id == rxq->nb_rx_desc))
2625                         rx_id = 0;
2626
2627                 rte_prefetch0(sw_ring[rx_id].mbuf);
2628                 if ((rx_id & HNS3_RX_RING_PREFETCTH_MASK) == 0) {
2629                         rte_prefetch0(&rx_ring[rx_id]);
2630                         rte_prefetch0(&sw_ring[rx_id]);
2631                 }
2632
2633                 rxm = rxe->mbuf;
2634                 rxe->mbuf = nmb;
2635
2636                 dma_addr = rte_cpu_to_le_64(rte_mbuf_data_iova_default(nmb));
2637                 rxdp->rx.bd_base_info = 0;
2638                 rxdp->addr = dma_addr;
2639
2640                 if (first_seg == NULL) {
2641                         first_seg = rxm;
2642                         first_seg->nb_segs = 1;
2643                 } else {
2644                         first_seg->nb_segs++;
2645                         last_seg->next = rxm;
2646                 }
2647
2648                 rxm->data_off = RTE_PKTMBUF_HEADROOM;
2649                 rxm->data_len = rte_le_to_cpu_16(rxd.rx.size);
2650
2651                 if (!(bd_base_info & BIT(HNS3_RXD_FE_B))) {
2652                         last_seg = rxm;
2653                         rxm->next = NULL;
2654                         continue;
2655                 }
2656
2657                 /*
2658                  * The last buffer of the received packet. packet len from
2659                  * buffer description may contains CRC len, packet len should
2660                  * subtract it, same as data len.
2661                  */
2662                 first_seg->pkt_len = rte_le_to_cpu_16(rxd.rx.pkt_len);
2663
2664                 /*
2665                  * This is the last buffer of the received packet. If the CRC
2666                  * is not stripped by the hardware:
2667                  *  - Subtract the CRC length from the total packet length.
2668                  *  - If the last buffer only contains the whole CRC or a part
2669                  *  of it, free the mbuf associated to the last buffer. If part
2670                  *  of the CRC is also contained in the previous mbuf, subtract
2671                  *  the length of that CRC part from the data length of the
2672                  *  previous mbuf.
2673                  */
2674                 rxm->next = NULL;
2675                 if (unlikely(rxq->crc_len > 0)) {
2676                         first_seg->pkt_len -= rxq->crc_len;
2677                         recalculate_data_len(first_seg, last_seg, rxm, rxq,
2678                                 rxm->data_len);
2679                 }
2680
2681                 first_seg->port = rxq->port_id;
2682                 first_seg->hash.rss = rte_le_to_cpu_32(rxd.rx.rss_hash);
2683                 first_seg->ol_flags = PKT_RX_RSS_HASH;
2684                 if (unlikely(bd_base_info & BIT(HNS3_RXD_LUM_B))) {
2685                         first_seg->hash.fdir.hi =
2686                                 rte_le_to_cpu_16(rxd.rx.fd_id);
2687                         first_seg->ol_flags |= PKT_RX_FDIR | PKT_RX_FDIR_ID;
2688                 }
2689
2690                 gro_size = hns3_get_field(bd_base_info, HNS3_RXD_GRO_SIZE_M,
2691                                           HNS3_RXD_GRO_SIZE_S);
2692                 if (gro_size != 0) {
2693                         first_seg->ol_flags |= PKT_RX_LRO;
2694                         first_seg->tso_segsz = gro_size;
2695                 }
2696
2697                 l234_info = rte_le_to_cpu_32(rxd.rx.l234_info);
2698                 ol_info = rte_le_to_cpu_32(rxd.rx.ol_info);
2699                 ret = hns3_handle_bdinfo(rxq, first_seg, bd_base_info,
2700                                          l234_info);
2701                 if (unlikely(ret))
2702                         goto pkt_err;
2703
2704                 first_seg->packet_type = hns3_rx_calc_ptype(rxq,
2705                                                 l234_info, ol_info);
2706
2707                 hns3_rxd_to_vlan_tci(rxq, first_seg, l234_info, &rxd);
2708
2709                 /* Increment bytes counter */
2710                 rxq->basic_stats.bytes += first_seg->pkt_len;
2711
2712                 rx_pkts[nb_rx++] = first_seg;
2713                 first_seg = NULL;
2714                 continue;
2715 pkt_err:
2716                 rte_pktmbuf_free(first_seg);
2717                 first_seg = NULL;
2718         }
2719
2720         rxq->next_to_use = rx_id;
2721         rxq->pkt_first_seg = first_seg;
2722         rxq->pkt_last_seg = last_seg;
2723
2724         rxq->rx_free_hold += nb_rx_bd;
2725         if (rxq->rx_free_hold > rxq->rx_free_thresh) {
2726                 hns3_write_reg_opt(rxq->io_head_reg, rxq->rx_free_hold);
2727                 rxq->rx_free_hold = 0;
2728         }
2729
2730         return nb_rx;
2731 }
2732
2733 void __rte_weak
2734 hns3_rxq_vec_setup(__rte_unused struct hns3_rx_queue *rxq)
2735 {
2736 }
2737
2738 int __rte_weak
2739 hns3_rx_check_vec_support(__rte_unused struct rte_eth_dev *dev)
2740 {
2741         return -ENOTSUP;
2742 }
2743
2744 uint16_t __rte_weak
2745 hns3_recv_pkts_vec(__rte_unused void *tx_queue,
2746                    __rte_unused struct rte_mbuf **rx_pkts,
2747                    __rte_unused uint16_t nb_pkts)
2748 {
2749         return 0;
2750 }
2751
2752 uint16_t __rte_weak
2753 hns3_recv_pkts_vec_sve(__rte_unused void *tx_queue,
2754                        __rte_unused struct rte_mbuf **rx_pkts,
2755                        __rte_unused uint16_t nb_pkts)
2756 {
2757         return 0;
2758 }
2759
2760 int
2761 hns3_rx_burst_mode_get(struct rte_eth_dev *dev, __rte_unused uint16_t queue_id,
2762                        struct rte_eth_burst_mode *mode)
2763 {
2764         static const struct {
2765                 eth_rx_burst_t pkt_burst;
2766                 const char *info;
2767         } burst_infos[] = {
2768                 { hns3_recv_pkts_simple,        "Scalar Simple" },
2769                 { hns3_recv_scattered_pkts,     "Scalar Scattered" },
2770                 { hns3_recv_pkts_vec,           "Vector Neon"   },
2771                 { hns3_recv_pkts_vec_sve,       "Vector Sve"    },
2772         };
2773
2774         eth_rx_burst_t pkt_burst = dev->rx_pkt_burst;
2775         int ret = -EINVAL;
2776         unsigned int i;
2777
2778         for (i = 0; i < RTE_DIM(burst_infos); i++) {
2779                 if (pkt_burst == burst_infos[i].pkt_burst) {
2780                         snprintf(mode->info, sizeof(mode->info), "%s",
2781                                  burst_infos[i].info);
2782                         ret = 0;
2783                         break;
2784                 }
2785         }
2786
2787         return ret;
2788 }
2789
2790 static bool
2791 hns3_get_default_vec_support(void)
2792 {
2793 #if defined(RTE_ARCH_ARM64)
2794         if (rte_vect_get_max_simd_bitwidth() < RTE_VECT_SIMD_128)
2795                 return false;
2796         if (rte_cpu_get_flag_enabled(RTE_CPUFLAG_NEON))
2797                 return true;
2798 #endif
2799         return false;
2800 }
2801
2802 static bool
2803 hns3_get_sve_support(void)
2804 {
2805 #if defined(RTE_ARCH_ARM64) && defined(__ARM_FEATURE_SVE)
2806         if (rte_vect_get_max_simd_bitwidth() < RTE_VECT_SIMD_256)
2807                 return false;
2808         if (rte_cpu_get_flag_enabled(RTE_CPUFLAG_SVE))
2809                 return true;
2810 #endif
2811         return false;
2812 }
2813
2814 static eth_rx_burst_t
2815 hns3_get_rx_function(struct rte_eth_dev *dev)
2816 {
2817         struct hns3_adapter *hns = dev->data->dev_private;
2818         uint64_t offloads = dev->data->dev_conf.rxmode.offloads;
2819         bool vec_allowed, sve_allowed, simple_allowed;
2820         bool vec_support;
2821
2822         vec_support = hns3_rx_check_vec_support(dev) == 0;
2823         vec_allowed = vec_support && hns3_get_default_vec_support();
2824         sve_allowed = vec_support && hns3_get_sve_support();
2825         simple_allowed = !dev->data->scattered_rx &&
2826                          (offloads & DEV_RX_OFFLOAD_TCP_LRO) == 0;
2827
2828         if (hns->rx_func_hint == HNS3_IO_FUNC_HINT_VEC && vec_allowed)
2829                 return hns3_recv_pkts_vec;
2830         if (hns->rx_func_hint == HNS3_IO_FUNC_HINT_SVE && sve_allowed)
2831                 return hns3_recv_pkts_vec_sve;
2832         if (hns->rx_func_hint == HNS3_IO_FUNC_HINT_SIMPLE && simple_allowed)
2833                 return hns3_recv_pkts_simple;
2834         if (hns->rx_func_hint == HNS3_IO_FUNC_HINT_COMMON)
2835                 return hns3_recv_scattered_pkts;
2836
2837         if (vec_allowed)
2838                 return hns3_recv_pkts_vec;
2839         if (simple_allowed)
2840                 return hns3_recv_pkts_simple;
2841
2842         return hns3_recv_scattered_pkts;
2843 }
2844
2845 static int
2846 hns3_tx_queue_conf_check(struct hns3_hw *hw, const struct rte_eth_txconf *conf,
2847                          uint16_t nb_desc, uint16_t *tx_rs_thresh,
2848                          uint16_t *tx_free_thresh, uint16_t idx)
2849 {
2850 #define HNS3_TX_RS_FREE_THRESH_GAP      8
2851         uint16_t rs_thresh, free_thresh, fast_free_thresh;
2852
2853         if (nb_desc > HNS3_MAX_RING_DESC || nb_desc < HNS3_MIN_RING_DESC ||
2854             nb_desc % HNS3_ALIGN_RING_DESC) {
2855                 hns3_err(hw, "number (%u) of tx descriptors is invalid",
2856                          nb_desc);
2857                 return -EINVAL;
2858         }
2859
2860         rs_thresh = (conf->tx_rs_thresh > 0) ?
2861                         conf->tx_rs_thresh : HNS3_DEFAULT_TX_RS_THRESH;
2862         free_thresh = (conf->tx_free_thresh > 0) ?
2863                         conf->tx_free_thresh : HNS3_DEFAULT_TX_FREE_THRESH;
2864         if (rs_thresh + free_thresh > nb_desc || nb_desc % rs_thresh ||
2865             rs_thresh >= nb_desc - HNS3_TX_RS_FREE_THRESH_GAP ||
2866             free_thresh >= nb_desc - HNS3_TX_RS_FREE_THRESH_GAP) {
2867                 hns3_err(hw, "tx_rs_thresh (%u) tx_free_thresh (%u) nb_desc "
2868                          "(%u) of tx descriptors for port=%u queue=%u check "
2869                          "fail!",
2870                          rs_thresh, free_thresh, nb_desc, hw->data->port_id,
2871                          idx);
2872                 return -EINVAL;
2873         }
2874
2875         if (conf->tx_free_thresh == 0) {
2876                 /* Fast free Tx memory buffer to improve cache hit rate */
2877                 fast_free_thresh = nb_desc - rs_thresh;
2878                 if (fast_free_thresh >=
2879                     HNS3_TX_FAST_FREE_AHEAD + HNS3_DEFAULT_TX_FREE_THRESH)
2880                         free_thresh = fast_free_thresh -
2881                                         HNS3_TX_FAST_FREE_AHEAD;
2882         }
2883
2884         *tx_rs_thresh = rs_thresh;
2885         *tx_free_thresh = free_thresh;
2886         return 0;
2887 }
2888
2889 int
2890 hns3_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t nb_desc,
2891                     unsigned int socket_id, const struct rte_eth_txconf *conf)
2892 {
2893         struct hns3_adapter *hns = dev->data->dev_private;
2894         uint16_t tx_rs_thresh, tx_free_thresh;
2895         struct hns3_hw *hw = &hns->hw;
2896         struct hns3_queue_info q_info;
2897         struct hns3_tx_queue *txq;
2898         int tx_entry_len;
2899         int ret;
2900
2901         ret = hns3_tx_queue_conf_check(hw, conf, nb_desc,
2902                                        &tx_rs_thresh, &tx_free_thresh, idx);
2903         if (ret)
2904                 return ret;
2905
2906         if (dev->data->tx_queues[idx] != NULL) {
2907                 hns3_tx_queue_release(dev->data->tx_queues[idx]);
2908                 dev->data->tx_queues[idx] = NULL;
2909         }
2910
2911         q_info.idx = idx;
2912         q_info.socket_id = socket_id;
2913         q_info.nb_desc = nb_desc;
2914         q_info.type = "hns3 TX queue";
2915         q_info.ring_name = "tx_ring";
2916         txq = hns3_alloc_txq_and_dma_zone(dev, &q_info);
2917         if (txq == NULL) {
2918                 hns3_err(hw,
2919                          "Failed to alloc mem and reserve DMA mem for tx ring!");
2920                 return -ENOMEM;
2921         }
2922
2923         txq->tx_deferred_start = conf->tx_deferred_start;
2924         if (txq->tx_deferred_start && !hns3_dev_indep_txrx_supported(hw)) {
2925                 hns3_warn(hw, "deferred start is not supported.");
2926                 txq->tx_deferred_start = false;
2927         }
2928
2929         tx_entry_len = sizeof(struct hns3_entry) * txq->nb_tx_desc;
2930         txq->sw_ring = rte_zmalloc_socket("hns3 TX sw ring", tx_entry_len,
2931                                           RTE_CACHE_LINE_SIZE, socket_id);
2932         if (txq->sw_ring == NULL) {
2933                 hns3_err(hw, "Failed to allocate memory for tx sw ring!");
2934                 hns3_tx_queue_release(txq);
2935                 return -ENOMEM;
2936         }
2937
2938         txq->hns = hns;
2939         txq->next_to_use = 0;
2940         txq->next_to_clean = 0;
2941         txq->tx_bd_ready = txq->nb_tx_desc - 1;
2942         txq->tx_free_thresh = tx_free_thresh;
2943         txq->tx_rs_thresh = tx_rs_thresh;
2944         txq->free = rte_zmalloc_socket("hns3 TX mbuf free array",
2945                                 sizeof(struct rte_mbuf *) * txq->tx_rs_thresh,
2946                                 RTE_CACHE_LINE_SIZE, socket_id);
2947         if (!txq->free) {
2948                 hns3_err(hw, "failed to allocate tx mbuf free array!");
2949                 hns3_tx_queue_release(txq);
2950                 return -ENOMEM;
2951         }
2952
2953         txq->port_id = dev->data->port_id;
2954         /*
2955          * For hns3 PF device, if the VLAN mode is HW_SHIFT_AND_DISCARD_MODE,
2956          * the pvid_sw_shift_en in the queue struct should not be changed,
2957          * because PVID-related operations do not need to be processed by PMD
2958          * driver. For hns3 VF device, whether it needs to process PVID depends
2959          * on the configuration of PF kernel mode netdev driver. And the
2960          * related PF configuration is delivered through the mailbox and finally
2961          * reflectd in port_base_vlan_cfg.
2962          */
2963         if (hns->is_vf || hw->vlan_mode == HNS3_SW_SHIFT_AND_DISCARD_MODE)
2964                 txq->pvid_sw_shift_en = hw->port_base_vlan_cfg.state ==
2965                                         HNS3_PORT_BASE_VLAN_ENABLE;
2966         else
2967                 txq->pvid_sw_shift_en = false;
2968         txq->max_non_tso_bd_num = hw->max_non_tso_bd_num;
2969         txq->configured = true;
2970         txq->io_base = (void *)((char *)hw->io_base +
2971                                                 hns3_get_tqp_reg_offset(idx));
2972         txq->io_tail_reg = (volatile void *)((char *)txq->io_base +
2973                                              HNS3_RING_TX_TAIL_REG);
2974         txq->min_tx_pkt_len = hw->min_tx_pkt_len;
2975         txq->tso_mode = hw->tso_mode;
2976         txq->udp_cksum_mode = hw->udp_cksum_mode;
2977         memset(&txq->basic_stats, 0, sizeof(struct hns3_tx_basic_stats));
2978         memset(&txq->dfx_stats, 0, sizeof(struct hns3_tx_dfx_stats));
2979
2980         rte_spinlock_lock(&hw->lock);
2981         dev->data->tx_queues[idx] = txq;
2982         rte_spinlock_unlock(&hw->lock);
2983
2984         return 0;
2985 }
2986
2987 static void
2988 hns3_tx_free_useless_buffer(struct hns3_tx_queue *txq)
2989 {
2990         uint16_t tx_next_clean = txq->next_to_clean;
2991         uint16_t tx_next_use   = txq->next_to_use;
2992         uint16_t tx_bd_ready   = txq->tx_bd_ready;
2993         uint16_t tx_bd_max     = txq->nb_tx_desc;
2994         struct hns3_entry *tx_bak_pkt = &txq->sw_ring[tx_next_clean];
2995         struct hns3_desc *desc = &txq->tx_ring[tx_next_clean];
2996         struct rte_mbuf *mbuf;
2997
2998         while ((!(desc->tx.tp_fe_sc_vld_ra_ri &
2999                 rte_cpu_to_le_16(BIT(HNS3_TXD_VLD_B)))) &&
3000                 tx_next_use != tx_next_clean) {
3001                 mbuf = tx_bak_pkt->mbuf;
3002                 if (mbuf) {
3003                         rte_pktmbuf_free_seg(mbuf);
3004                         tx_bak_pkt->mbuf = NULL;
3005                 }
3006
3007                 desc++;
3008                 tx_bak_pkt++;
3009                 tx_next_clean++;
3010                 tx_bd_ready++;
3011
3012                 if (tx_next_clean >= tx_bd_max) {
3013                         tx_next_clean = 0;
3014                         desc = txq->tx_ring;
3015                         tx_bak_pkt = txq->sw_ring;
3016                 }
3017         }
3018
3019         txq->next_to_clean = tx_next_clean;
3020         txq->tx_bd_ready   = tx_bd_ready;
3021 }
3022
3023 int
3024 hns3_config_gro(struct hns3_hw *hw, bool en)
3025 {
3026         struct hns3_cfg_gro_status_cmd *req;
3027         struct hns3_cmd_desc desc;
3028         int ret;
3029
3030         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_GRO_GENERIC_CONFIG, false);
3031         req = (struct hns3_cfg_gro_status_cmd *)desc.data;
3032
3033         req->gro_en = rte_cpu_to_le_16(en ? 1 : 0);
3034
3035         ret = hns3_cmd_send(hw, &desc, 1);
3036         if (ret)
3037                 hns3_err(hw, "%s hardware GRO failed, ret = %d",
3038                          en ? "enable" : "disable", ret);
3039
3040         return ret;
3041 }
3042
3043 int
3044 hns3_restore_gro_conf(struct hns3_hw *hw)
3045 {
3046         uint64_t offloads;
3047         bool gro_en;
3048         int ret;
3049
3050         offloads = hw->data->dev_conf.rxmode.offloads;
3051         gro_en = offloads & DEV_RX_OFFLOAD_TCP_LRO ? true : false;
3052         ret = hns3_config_gro(hw, gro_en);
3053         if (ret)
3054                 hns3_err(hw, "restore hardware GRO to %s failed, ret = %d",
3055                          gro_en ? "enabled" : "disabled", ret);
3056
3057         return ret;
3058 }
3059
3060 static inline bool
3061 hns3_pkt_is_tso(struct rte_mbuf *m)
3062 {
3063         return (m->tso_segsz != 0 && m->ol_flags & PKT_TX_TCP_SEG);
3064 }
3065
3066 static void
3067 hns3_set_tso(struct hns3_desc *desc, uint32_t paylen, struct rte_mbuf *rxm)
3068 {
3069         if (!hns3_pkt_is_tso(rxm))
3070                 return;
3071
3072         if (paylen <= rxm->tso_segsz)
3073                 return;
3074
3075         desc->tx.type_cs_vlan_tso_len |= rte_cpu_to_le_32(BIT(HNS3_TXD_TSO_B));
3076         desc->tx.mss = rte_cpu_to_le_16(rxm->tso_segsz);
3077 }
3078
3079 static inline void
3080 hns3_fill_per_desc(struct hns3_desc *desc, struct rte_mbuf *rxm)
3081 {
3082         desc->addr = rte_mbuf_data_iova(rxm);
3083         desc->tx.send_size = rte_cpu_to_le_16(rte_pktmbuf_data_len(rxm));
3084         desc->tx.tp_fe_sc_vld_ra_ri |= rte_cpu_to_le_16(BIT(HNS3_TXD_VLD_B));
3085 }
3086
3087 static void
3088 hns3_fill_first_desc(struct hns3_tx_queue *txq, struct hns3_desc *desc,
3089                      struct rte_mbuf *rxm)
3090 {
3091         uint64_t ol_flags = rxm->ol_flags;
3092         uint32_t hdr_len;
3093         uint32_t paylen;
3094
3095         hdr_len = rxm->l2_len + rxm->l3_len + rxm->l4_len;
3096         hdr_len += (ol_flags & PKT_TX_TUNNEL_MASK) ?
3097                            rxm->outer_l2_len + rxm->outer_l3_len : 0;
3098         paylen = rxm->pkt_len - hdr_len;
3099         desc->tx.paylen_fd_dop_ol4cs |= rte_cpu_to_le_32(paylen);
3100         hns3_set_tso(desc, paylen, rxm);
3101
3102         /*
3103          * Currently, hardware doesn't support more than two layers VLAN offload
3104          * in Tx direction based on hns3 network engine. So when the number of
3105          * VLANs in the packets represented by rxm plus the number of VLAN
3106          * offload by hardware such as PVID etc, exceeds two, the packets will
3107          * be discarded or the original VLAN of the packets will be overwitted
3108          * by hardware. When the PF PVID is enabled by calling the API function
3109          * named rte_eth_dev_set_vlan_pvid or the VF PVID is enabled by the hns3
3110          * PF kernel ether driver, the outer VLAN tag will always be the PVID.
3111          * To avoid the VLAN of Tx descriptor is overwritten by PVID, it should
3112          * be added to the position close to the IP header when PVID is enabled.
3113          */
3114         if (!txq->pvid_sw_shift_en && ol_flags & (PKT_TX_VLAN_PKT |
3115                                 PKT_TX_QINQ_PKT)) {
3116                 desc->tx.ol_type_vlan_len_msec |=
3117                                 rte_cpu_to_le_32(BIT(HNS3_TXD_OVLAN_B));
3118                 if (ol_flags & PKT_TX_QINQ_PKT)
3119                         desc->tx.outer_vlan_tag =
3120                                         rte_cpu_to_le_16(rxm->vlan_tci_outer);
3121                 else
3122                         desc->tx.outer_vlan_tag =
3123                                         rte_cpu_to_le_16(rxm->vlan_tci);
3124         }
3125
3126         if (ol_flags & PKT_TX_QINQ_PKT ||
3127             ((ol_flags & PKT_TX_VLAN_PKT) && txq->pvid_sw_shift_en)) {
3128                 desc->tx.type_cs_vlan_tso_len |=
3129                                         rte_cpu_to_le_32(BIT(HNS3_TXD_VLAN_B));
3130                 desc->tx.vlan_tag = rte_cpu_to_le_16(rxm->vlan_tci);
3131         }
3132
3133         if (ol_flags & PKT_TX_IEEE1588_TMST)
3134                 desc->tx.tp_fe_sc_vld_ra_ri |=
3135                                 rte_cpu_to_le_16(BIT(HNS3_TXD_TSYN_B));
3136 }
3137
3138 static inline int
3139 hns3_tx_alloc_mbufs(struct rte_mempool *mb_pool, uint16_t nb_new_buf,
3140                         struct rte_mbuf **alloc_mbuf)
3141 {
3142 #define MAX_NON_TSO_BD_PER_PKT 18
3143         struct rte_mbuf *pkt_segs[MAX_NON_TSO_BD_PER_PKT];
3144         uint16_t i;
3145
3146         /* Allocate enough mbufs */
3147         if (rte_mempool_get_bulk(mb_pool, (void **)pkt_segs, nb_new_buf))
3148                 return -ENOMEM;
3149
3150         for (i = 0; i < nb_new_buf - 1; i++)
3151                 pkt_segs[i]->next = pkt_segs[i + 1];
3152
3153         pkt_segs[nb_new_buf - 1]->next = NULL;
3154         pkt_segs[0]->nb_segs = nb_new_buf;
3155         *alloc_mbuf = pkt_segs[0];
3156
3157         return 0;
3158 }
3159
3160 static inline void
3161 hns3_pktmbuf_copy_hdr(struct rte_mbuf *new_pkt, struct rte_mbuf *old_pkt)
3162 {
3163         new_pkt->ol_flags = old_pkt->ol_flags;
3164         new_pkt->pkt_len = rte_pktmbuf_pkt_len(old_pkt);
3165         new_pkt->outer_l2_len = old_pkt->outer_l2_len;
3166         new_pkt->outer_l3_len = old_pkt->outer_l3_len;
3167         new_pkt->l2_len = old_pkt->l2_len;
3168         new_pkt->l3_len = old_pkt->l3_len;
3169         new_pkt->l4_len = old_pkt->l4_len;
3170         new_pkt->vlan_tci_outer = old_pkt->vlan_tci_outer;
3171         new_pkt->vlan_tci = old_pkt->vlan_tci;
3172 }
3173
3174 static int
3175 hns3_reassemble_tx_pkts(struct rte_mbuf *tx_pkt, struct rte_mbuf **new_pkt,
3176                                   uint8_t max_non_tso_bd_num)
3177 {
3178         struct rte_mempool *mb_pool;
3179         struct rte_mbuf *new_mbuf;
3180         struct rte_mbuf *temp_new;
3181         struct rte_mbuf *temp;
3182         uint16_t last_buf_len;
3183         uint16_t nb_new_buf;
3184         uint16_t buf_size;
3185         uint16_t buf_len;
3186         uint16_t len_s;
3187         uint16_t len_d;
3188         uint16_t len;
3189         int ret;
3190         char *s;
3191         char *d;
3192
3193         mb_pool = tx_pkt->pool;
3194         buf_size = tx_pkt->buf_len - RTE_PKTMBUF_HEADROOM;
3195         nb_new_buf = (rte_pktmbuf_pkt_len(tx_pkt) - 1) / buf_size + 1;
3196         if (nb_new_buf > max_non_tso_bd_num)
3197                 return -EINVAL;
3198
3199         last_buf_len = rte_pktmbuf_pkt_len(tx_pkt) % buf_size;
3200         if (last_buf_len == 0)
3201                 last_buf_len = buf_size;
3202
3203         /* Allocate enough mbufs */
3204         ret = hns3_tx_alloc_mbufs(mb_pool, nb_new_buf, &new_mbuf);
3205         if (ret)
3206                 return ret;
3207
3208         /* Copy the original packet content to the new mbufs */
3209         temp = tx_pkt;
3210         s = rte_pktmbuf_mtod(temp, char *);
3211         len_s = rte_pktmbuf_data_len(temp);
3212         temp_new = new_mbuf;
3213         while (temp != NULL && temp_new != NULL) {
3214                 d = rte_pktmbuf_mtod(temp_new, char *);
3215                 buf_len = temp_new->next == NULL ? last_buf_len : buf_size;
3216                 len_d = buf_len;
3217
3218                 while (len_d) {
3219                         len = RTE_MIN(len_s, len_d);
3220                         memcpy(d, s, len);
3221                         s = s + len;
3222                         d = d + len;
3223                         len_d = len_d - len;
3224                         len_s = len_s - len;
3225
3226                         if (len_s == 0) {
3227                                 temp = temp->next;
3228                                 if (temp == NULL)
3229                                         break;
3230                                 s = rte_pktmbuf_mtod(temp, char *);
3231                                 len_s = rte_pktmbuf_data_len(temp);
3232                         }
3233                 }
3234
3235                 temp_new->data_len = buf_len;
3236                 temp_new = temp_new->next;
3237         }
3238         hns3_pktmbuf_copy_hdr(new_mbuf, tx_pkt);
3239
3240         /* free original mbufs */
3241         rte_pktmbuf_free(tx_pkt);
3242
3243         *new_pkt = new_mbuf;
3244
3245         return 0;
3246 }
3247
3248 static void
3249 hns3_parse_outer_params(struct rte_mbuf *m, uint32_t *ol_type_vlan_len_msec)
3250 {
3251         uint32_t tmp = *ol_type_vlan_len_msec;
3252         uint64_t ol_flags = m->ol_flags;
3253
3254         /* (outer) IP header type */
3255         if (ol_flags & PKT_TX_OUTER_IPV4) {
3256                 if (ol_flags & PKT_TX_OUTER_IP_CKSUM)
3257                         tmp |= hns3_gen_field_val(HNS3_TXD_OL3T_M,
3258                                         HNS3_TXD_OL3T_S, HNS3_OL3T_IPV4_CSUM);
3259                 else
3260                         tmp |= hns3_gen_field_val(HNS3_TXD_OL3T_M,
3261                                 HNS3_TXD_OL3T_S, HNS3_OL3T_IPV4_NO_CSUM);
3262         } else if (ol_flags & PKT_TX_OUTER_IPV6) {
3263                 tmp |= hns3_gen_field_val(HNS3_TXD_OL3T_M, HNS3_TXD_OL3T_S,
3264                                         HNS3_OL3T_IPV6);
3265         }
3266         /* OL3 header size, defined in 4 bytes */
3267         tmp |= hns3_gen_field_val(HNS3_TXD_L3LEN_M, HNS3_TXD_L3LEN_S,
3268                                 m->outer_l3_len >> HNS3_L3_LEN_UNIT);
3269         *ol_type_vlan_len_msec = tmp;
3270 }
3271
3272 static int
3273 hns3_parse_inner_params(struct rte_mbuf *m, uint32_t *ol_type_vlan_len_msec,
3274                         uint32_t *type_cs_vlan_tso_len)
3275 {
3276 #define HNS3_NVGRE_HLEN 8
3277         uint32_t tmp_outer = *ol_type_vlan_len_msec;
3278         uint32_t tmp_inner = *type_cs_vlan_tso_len;
3279         uint64_t ol_flags = m->ol_flags;
3280         uint16_t inner_l2_len;
3281
3282         switch (ol_flags & PKT_TX_TUNNEL_MASK) {
3283         case PKT_TX_TUNNEL_VXLAN_GPE:
3284         case PKT_TX_TUNNEL_GENEVE:
3285         case PKT_TX_TUNNEL_VXLAN:
3286                 /* MAC in UDP tunnelling packet, include VxLAN and GENEVE */
3287                 tmp_outer |= hns3_gen_field_val(HNS3_TXD_TUNTYPE_M,
3288                                 HNS3_TXD_TUNTYPE_S, HNS3_TUN_MAC_IN_UDP);
3289                 /*
3290                  * The inner l2 length of mbuf is the sum of outer l4 length,
3291                  * tunneling header length and inner l2 length for a tunnel
3292                  * packect. But in hns3 tx descriptor, the tunneling header
3293                  * length is contained in the field of outer L4 length.
3294                  * Therefore, driver need to calculate the outer L4 length and
3295                  * inner L2 length.
3296                  */
3297                 tmp_outer |= hns3_gen_field_val(HNS3_TXD_L4LEN_M,
3298                                                 HNS3_TXD_L4LEN_S,
3299                                                 (uint8_t)RTE_ETHER_VXLAN_HLEN >>
3300                                                 HNS3_L4_LEN_UNIT);
3301
3302                 inner_l2_len = m->l2_len - RTE_ETHER_VXLAN_HLEN;
3303                 break;
3304         case PKT_TX_TUNNEL_GRE:
3305                 tmp_outer |= hns3_gen_field_val(HNS3_TXD_TUNTYPE_M,
3306                                         HNS3_TXD_TUNTYPE_S, HNS3_TUN_NVGRE);
3307                 /*
3308                  * For NVGRE tunnel packect, the outer L4 is empty. So only
3309                  * fill the NVGRE header length to the outer L4 field.
3310                  */
3311                 tmp_outer |= hns3_gen_field_val(HNS3_TXD_L4LEN_M,
3312                                 HNS3_TXD_L4LEN_S,
3313                                 (uint8_t)HNS3_NVGRE_HLEN >> HNS3_L4_LEN_UNIT);
3314
3315                 inner_l2_len = m->l2_len - HNS3_NVGRE_HLEN;
3316                 break;
3317         default:
3318                 /* For non UDP / GRE tunneling, drop the tunnel packet */
3319                 return -EINVAL;
3320         }
3321
3322         tmp_inner |= hns3_gen_field_val(HNS3_TXD_L2LEN_M, HNS3_TXD_L2LEN_S,
3323                                         inner_l2_len >> HNS3_L2_LEN_UNIT);
3324         /* OL2 header size, defined in 2 bytes */
3325         tmp_outer |= hns3_gen_field_val(HNS3_TXD_L2LEN_M, HNS3_TXD_L2LEN_S,
3326                                         m->outer_l2_len >> HNS3_L2_LEN_UNIT);
3327
3328         *type_cs_vlan_tso_len = tmp_inner;
3329         *ol_type_vlan_len_msec = tmp_outer;
3330
3331         return 0;
3332 }
3333
3334 static int
3335 hns3_parse_tunneling_params(struct hns3_tx_queue *txq, struct rte_mbuf *m,
3336                             uint16_t tx_desc_id)
3337 {
3338         struct hns3_desc *tx_ring = txq->tx_ring;
3339         struct hns3_desc *desc = &tx_ring[tx_desc_id];
3340         uint64_t ol_flags = m->ol_flags;
3341         uint32_t tmp_outer = 0;
3342         uint32_t tmp_inner = 0;
3343         uint32_t tmp_ol4cs;
3344         int ret;
3345
3346         /*
3347          * The tunnel header is contained in the inner L2 header field of the
3348          * mbuf, but for hns3 descriptor, it is contained in the outer L4. So,
3349          * there is a need that switching between them. To avoid multiple
3350          * calculations, the length of the L2 header include the outer and
3351          * inner, will be filled during the parsing of tunnel packects.
3352          */
3353         if (!(ol_flags & PKT_TX_TUNNEL_MASK)) {
3354                 /*
3355                  * For non tunnel type the tunnel type id is 0, so no need to
3356                  * assign a value to it. Only the inner(normal) L2 header length
3357                  * is assigned.
3358                  */
3359                 tmp_inner |= hns3_gen_field_val(HNS3_TXD_L2LEN_M,
3360                                HNS3_TXD_L2LEN_S, m->l2_len >> HNS3_L2_LEN_UNIT);
3361         } else {
3362                 /*
3363                  * If outer csum is not offload, the outer length may be filled
3364                  * with 0. And the length of the outer header is added to the
3365                  * inner l2_len. It would lead a cksum error. So driver has to
3366                  * calculate the header length.
3367                  */
3368                 if (unlikely(!(ol_flags &
3369                         (PKT_TX_OUTER_IP_CKSUM | PKT_TX_OUTER_UDP_CKSUM)) &&
3370                                         m->outer_l2_len == 0)) {
3371                         struct rte_net_hdr_lens hdr_len;
3372                         (void)rte_net_get_ptype(m, &hdr_len,
3373                                         RTE_PTYPE_L2_MASK | RTE_PTYPE_L3_MASK);
3374                         m->outer_l3_len = hdr_len.l3_len;
3375                         m->outer_l2_len = hdr_len.l2_len;
3376                         m->l2_len = m->l2_len - hdr_len.l2_len - hdr_len.l3_len;
3377                 }
3378                 hns3_parse_outer_params(m, &tmp_outer);
3379                 ret = hns3_parse_inner_params(m, &tmp_outer, &tmp_inner);
3380                 if (ret)
3381                         return -EINVAL;
3382         }
3383
3384         desc->tx.ol_type_vlan_len_msec = rte_cpu_to_le_32(tmp_outer);
3385         desc->tx.type_cs_vlan_tso_len = rte_cpu_to_le_32(tmp_inner);
3386         tmp_ol4cs = ol_flags & PKT_TX_OUTER_UDP_CKSUM ?
3387                         BIT(HNS3_TXD_OL4CS_B) : 0;
3388         desc->tx.paylen_fd_dop_ol4cs = rte_cpu_to_le_32(tmp_ol4cs);
3389
3390         return 0;
3391 }
3392
3393 static void
3394 hns3_parse_l3_cksum_params(struct rte_mbuf *m, uint32_t *type_cs_vlan_tso_len)
3395 {
3396         uint64_t ol_flags = m->ol_flags;
3397         uint32_t l3_type;
3398         uint32_t tmp;
3399
3400         tmp = *type_cs_vlan_tso_len;
3401         if (ol_flags & PKT_TX_IPV4)
3402                 l3_type = HNS3_L3T_IPV4;
3403         else if (ol_flags & PKT_TX_IPV6)
3404                 l3_type = HNS3_L3T_IPV6;
3405         else
3406                 l3_type = HNS3_L3T_NONE;
3407
3408         /* inner(/normal) L3 header size, defined in 4 bytes */
3409         tmp |= hns3_gen_field_val(HNS3_TXD_L3LEN_M, HNS3_TXD_L3LEN_S,
3410                                         m->l3_len >> HNS3_L3_LEN_UNIT);
3411
3412         tmp |= hns3_gen_field_val(HNS3_TXD_L3T_M, HNS3_TXD_L3T_S, l3_type);
3413
3414         /* Enable L3 checksum offloads */
3415         if (ol_flags & PKT_TX_IP_CKSUM)
3416                 tmp |= BIT(HNS3_TXD_L3CS_B);
3417         *type_cs_vlan_tso_len = tmp;
3418 }
3419
3420 static void
3421 hns3_parse_l4_cksum_params(struct rte_mbuf *m, uint32_t *type_cs_vlan_tso_len)
3422 {
3423         uint64_t ol_flags = m->ol_flags;
3424         uint32_t tmp;
3425         /* Enable L4 checksum offloads */
3426         switch (ol_flags & (PKT_TX_L4_MASK | PKT_TX_TCP_SEG)) {
3427         case PKT_TX_TCP_CKSUM | PKT_TX_TCP_SEG:
3428         case PKT_TX_TCP_CKSUM:
3429         case PKT_TX_TCP_SEG:
3430                 tmp = *type_cs_vlan_tso_len;
3431                 tmp |= hns3_gen_field_val(HNS3_TXD_L4T_M, HNS3_TXD_L4T_S,
3432                                         HNS3_L4T_TCP);
3433                 break;
3434         case PKT_TX_UDP_CKSUM:
3435                 tmp = *type_cs_vlan_tso_len;
3436                 tmp |= hns3_gen_field_val(HNS3_TXD_L4T_M, HNS3_TXD_L4T_S,
3437                                         HNS3_L4T_UDP);
3438                 break;
3439         case PKT_TX_SCTP_CKSUM:
3440                 tmp = *type_cs_vlan_tso_len;
3441                 tmp |= hns3_gen_field_val(HNS3_TXD_L4T_M, HNS3_TXD_L4T_S,
3442                                         HNS3_L4T_SCTP);
3443                 break;
3444         default:
3445                 return;
3446         }
3447         tmp |= BIT(HNS3_TXD_L4CS_B);
3448         tmp |= hns3_gen_field_val(HNS3_TXD_L4LEN_M, HNS3_TXD_L4LEN_S,
3449                                         m->l4_len >> HNS3_L4_LEN_UNIT);
3450         *type_cs_vlan_tso_len = tmp;
3451 }
3452
3453 static void
3454 hns3_txd_enable_checksum(struct hns3_tx_queue *txq, struct rte_mbuf *m,
3455                          uint16_t tx_desc_id)
3456 {
3457         struct hns3_desc *tx_ring = txq->tx_ring;
3458         struct hns3_desc *desc = &tx_ring[tx_desc_id];
3459         uint32_t value = 0;
3460
3461         hns3_parse_l3_cksum_params(m, &value);
3462         hns3_parse_l4_cksum_params(m, &value);
3463
3464         desc->tx.type_cs_vlan_tso_len |= rte_cpu_to_le_32(value);
3465 }
3466
3467 static bool
3468 hns3_pkt_need_linearized(struct rte_mbuf *tx_pkts, uint32_t bd_num,
3469                                  uint32_t max_non_tso_bd_num)
3470 {
3471         struct rte_mbuf *m_first = tx_pkts;
3472         struct rte_mbuf *m_last = tx_pkts;
3473         uint32_t tot_len = 0;
3474         uint32_t hdr_len;
3475         uint32_t i;
3476
3477         /*
3478          * Hardware requires that the sum of the data length of every 8
3479          * consecutive buffers is greater than MSS in hns3 network engine.
3480          * We simplify it by ensuring pkt_headlen + the first 8 consecutive
3481          * frags greater than gso header len + mss, and the remaining 7
3482          * consecutive frags greater than MSS except the last 7 frags.
3483          */
3484         if (bd_num <= max_non_tso_bd_num)
3485                 return false;
3486
3487         for (i = 0; m_last && i < max_non_tso_bd_num - 1;
3488              i++, m_last = m_last->next)
3489                 tot_len += m_last->data_len;
3490
3491         if (!m_last)
3492                 return true;
3493
3494         /* ensure the first 8 frags is greater than mss + header */
3495         hdr_len = tx_pkts->l2_len + tx_pkts->l3_len + tx_pkts->l4_len;
3496         hdr_len += (tx_pkts->ol_flags & PKT_TX_TUNNEL_MASK) ?
3497                    tx_pkts->outer_l2_len + tx_pkts->outer_l3_len : 0;
3498         if (tot_len + m_last->data_len < tx_pkts->tso_segsz + hdr_len)
3499                 return true;
3500
3501         /*
3502          * ensure the sum of the data length of every 7 consecutive buffer
3503          * is greater than mss except the last one.
3504          */
3505         for (i = 0; m_last && i < bd_num - max_non_tso_bd_num; i++) {
3506                 tot_len -= m_first->data_len;
3507                 tot_len += m_last->data_len;
3508
3509                 if (tot_len < tx_pkts->tso_segsz)
3510                         return true;
3511
3512                 m_first = m_first->next;
3513                 m_last = m_last->next;
3514         }
3515
3516         return false;
3517 }
3518
3519 static bool
3520 hns3_outer_ipv4_cksum_prepared(struct rte_mbuf *m, uint64_t ol_flags,
3521                                 uint32_t *l4_proto)
3522 {
3523         struct rte_ipv4_hdr *ipv4_hdr;
3524         ipv4_hdr = rte_pktmbuf_mtod_offset(m, struct rte_ipv4_hdr *,
3525                                            m->outer_l2_len);
3526         if (ol_flags & PKT_TX_OUTER_IP_CKSUM)
3527                 ipv4_hdr->hdr_checksum = 0;
3528         if (ol_flags & PKT_TX_OUTER_UDP_CKSUM) {
3529                 struct rte_udp_hdr *udp_hdr;
3530                 /*
3531                  * If OUTER_UDP_CKSUM is support, HW can caclulate the pseudo
3532                  * header for TSO packets
3533                  */
3534                 if (ol_flags & PKT_TX_TCP_SEG)
3535                         return true;
3536                 udp_hdr = rte_pktmbuf_mtod_offset(m, struct rte_udp_hdr *,
3537                                 m->outer_l2_len + m->outer_l3_len);
3538                 udp_hdr->dgram_cksum = rte_ipv4_phdr_cksum(ipv4_hdr, ol_flags);
3539
3540                 return true;
3541         }
3542         *l4_proto = ipv4_hdr->next_proto_id;
3543         return false;
3544 }
3545
3546 static bool
3547 hns3_outer_ipv6_cksum_prepared(struct rte_mbuf *m, uint64_t ol_flags,
3548                                 uint32_t *l4_proto)
3549 {
3550         struct rte_ipv6_hdr *ipv6_hdr;
3551         ipv6_hdr = rte_pktmbuf_mtod_offset(m, struct rte_ipv6_hdr *,
3552                                            m->outer_l2_len);
3553         if (ol_flags & PKT_TX_OUTER_UDP_CKSUM) {
3554                 struct rte_udp_hdr *udp_hdr;
3555                 /*
3556                  * If OUTER_UDP_CKSUM is support, HW can caclulate the pseudo
3557                  * header for TSO packets
3558                  */
3559                 if (ol_flags & PKT_TX_TCP_SEG)
3560                         return true;
3561                 udp_hdr = rte_pktmbuf_mtod_offset(m, struct rte_udp_hdr *,
3562                                 m->outer_l2_len + m->outer_l3_len);
3563                 udp_hdr->dgram_cksum = rte_ipv6_phdr_cksum(ipv6_hdr, ol_flags);
3564
3565                 return true;
3566         }
3567         *l4_proto = ipv6_hdr->proto;
3568         return false;
3569 }
3570
3571 static void
3572 hns3_outer_header_cksum_prepare(struct rte_mbuf *m)
3573 {
3574         uint64_t ol_flags = m->ol_flags;
3575         uint32_t paylen, hdr_len, l4_proto;
3576         struct rte_udp_hdr *udp_hdr;
3577
3578         if (!(ol_flags & (PKT_TX_OUTER_IPV4 | PKT_TX_OUTER_IPV6)))
3579                 return;
3580
3581         if (ol_flags & PKT_TX_OUTER_IPV4) {
3582                 if (hns3_outer_ipv4_cksum_prepared(m, ol_flags, &l4_proto))
3583                         return;
3584         } else {
3585                 if (hns3_outer_ipv6_cksum_prepared(m, ol_flags, &l4_proto))
3586                         return;
3587         }
3588
3589         /* driver should ensure the outer udp cksum is 0 for TUNNEL TSO */
3590         if (l4_proto == IPPROTO_UDP && (ol_flags & PKT_TX_TCP_SEG)) {
3591                 hdr_len = m->l2_len + m->l3_len + m->l4_len;
3592                 hdr_len += m->outer_l2_len + m->outer_l3_len;
3593                 paylen = m->pkt_len - hdr_len;
3594                 if (paylen <= m->tso_segsz)
3595                         return;
3596                 udp_hdr = rte_pktmbuf_mtod_offset(m, struct rte_udp_hdr *,
3597                                                   m->outer_l2_len +
3598                                                   m->outer_l3_len);
3599                 udp_hdr->dgram_cksum = 0;
3600         }
3601 }
3602
3603 static int
3604 hns3_check_tso_pkt_valid(struct rte_mbuf *m)
3605 {
3606         uint32_t tmp_data_len_sum = 0;
3607         uint16_t nb_buf = m->nb_segs;
3608         uint32_t paylen, hdr_len;
3609         struct rte_mbuf *m_seg;
3610         int i;
3611
3612         if (nb_buf > HNS3_MAX_TSO_BD_PER_PKT)
3613                 return -EINVAL;
3614
3615         hdr_len = m->l2_len + m->l3_len + m->l4_len;
3616         hdr_len += (m->ol_flags & PKT_TX_TUNNEL_MASK) ?
3617                         m->outer_l2_len + m->outer_l3_len : 0;
3618         if (hdr_len > HNS3_MAX_TSO_HDR_SIZE)
3619                 return -EINVAL;
3620
3621         paylen = m->pkt_len - hdr_len;
3622         if (paylen > HNS3_MAX_BD_PAYLEN)
3623                 return -EINVAL;
3624
3625         /*
3626          * The TSO header (include outer and inner L2, L3 and L4 header)
3627          * should be provided by three descriptors in maximum in hns3 network
3628          * engine.
3629          */
3630         m_seg = m;
3631         for (i = 0; m_seg != NULL && i < HNS3_MAX_TSO_HDR_BD_NUM && i < nb_buf;
3632              i++, m_seg = m_seg->next) {
3633                 tmp_data_len_sum += m_seg->data_len;
3634         }
3635
3636         if (hdr_len > tmp_data_len_sum)
3637                 return -EINVAL;
3638
3639         return 0;
3640 }
3641
3642 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
3643 static inline int
3644 hns3_vld_vlan_chk(struct hns3_tx_queue *txq, struct rte_mbuf *m)
3645 {
3646         struct rte_ether_hdr *eh;
3647         struct rte_vlan_hdr *vh;
3648
3649         if (!txq->pvid_sw_shift_en)
3650                 return 0;
3651
3652         /*
3653          * Due to hardware limitations, we only support two-layer VLAN hardware
3654          * offload in Tx direction based on hns3 network engine, so when PVID is
3655          * enabled, QinQ insert is no longer supported.
3656          * And when PVID is enabled, in the following two cases:
3657          *  i) packets with more than two VLAN tags.
3658          *  ii) packets with one VLAN tag while the hardware VLAN insert is
3659          *      enabled.
3660          * The packets will be regarded as abnormal packets and discarded by
3661          * hardware in Tx direction. For debugging purposes, a validation check
3662          * for these types of packets is added to the '.tx_pkt_prepare' ops
3663          * implementation function named hns3_prep_pkts to inform users that
3664          * these packets will be discarded.
3665          */
3666         if (m->ol_flags & PKT_TX_QINQ_PKT)
3667                 return -EINVAL;
3668
3669         eh = rte_pktmbuf_mtod(m, struct rte_ether_hdr *);
3670         if (eh->ether_type == rte_cpu_to_be_16(RTE_ETHER_TYPE_VLAN)) {
3671                 if (m->ol_flags & PKT_TX_VLAN_PKT)
3672                         return -EINVAL;
3673
3674                 /* Ensure the incoming packet is not a QinQ packet */
3675                 vh = (struct rte_vlan_hdr *)(eh + 1);
3676                 if (vh->eth_proto == rte_cpu_to_be_16(RTE_ETHER_TYPE_VLAN))
3677                         return -EINVAL;
3678         }
3679
3680         return 0;
3681 }
3682 #endif
3683
3684 static uint16_t
3685 hns3_udp_cksum_help(struct rte_mbuf *m)
3686 {
3687         uint64_t ol_flags = m->ol_flags;
3688         uint16_t cksum = 0;
3689         uint32_t l4_len;
3690
3691         if (ol_flags & PKT_TX_IPV4) {
3692                 struct rte_ipv4_hdr *ipv4_hdr = rte_pktmbuf_mtod_offset(m,
3693                                 struct rte_ipv4_hdr *, m->l2_len);
3694                 l4_len = rte_be_to_cpu_16(ipv4_hdr->total_length) - m->l3_len;
3695         } else {
3696                 struct rte_ipv6_hdr *ipv6_hdr = rte_pktmbuf_mtod_offset(m,
3697                                 struct rte_ipv6_hdr *, m->l2_len);
3698                 l4_len = rte_be_to_cpu_16(ipv6_hdr->payload_len);
3699         }
3700
3701         rte_raw_cksum_mbuf(m, m->l2_len + m->l3_len, l4_len, &cksum);
3702
3703         cksum = ~cksum;
3704         /*
3705          * RFC 768:If the computed checksum is zero for UDP, it is transmitted
3706          * as all ones
3707          */
3708         if (cksum == 0)
3709                 cksum = 0xffff;
3710
3711         return (uint16_t)cksum;
3712 }
3713
3714 static bool
3715 hns3_validate_tunnel_cksum(struct hns3_tx_queue *tx_queue, struct rte_mbuf *m)
3716 {
3717         uint64_t ol_flags = m->ol_flags;
3718         struct rte_udp_hdr *udp_hdr;
3719         uint16_t dst_port;
3720
3721         if (tx_queue->udp_cksum_mode == HNS3_SPECIAL_PORT_HW_CKSUM_MODE ||
3722             ol_flags & PKT_TX_TUNNEL_MASK ||
3723             (ol_flags & PKT_TX_L4_MASK) != PKT_TX_UDP_CKSUM)
3724                 return true;
3725         /*
3726          * A UDP packet with the same dst_port as VXLAN\VXLAN_GPE\GENEVE will
3727          * be recognized as a tunnel packet in HW. In this case, if UDP CKSUM
3728          * offload is set and the tunnel mask has not been set, the CKSUM will
3729          * be wrong since the header length is wrong and driver should complete
3730          * the CKSUM to avoid CKSUM error.
3731          */
3732         udp_hdr = rte_pktmbuf_mtod_offset(m, struct rte_udp_hdr *,
3733                                                 m->l2_len + m->l3_len);
3734         dst_port = rte_be_to_cpu_16(udp_hdr->dst_port);
3735         switch (dst_port) {
3736         case RTE_VXLAN_DEFAULT_PORT:
3737         case RTE_VXLAN_GPE_DEFAULT_PORT:
3738         case RTE_GENEVE_DEFAULT_PORT:
3739                 udp_hdr->dgram_cksum = hns3_udp_cksum_help(m);
3740                 m->ol_flags = ol_flags & ~PKT_TX_L4_MASK;
3741                 return false;
3742         default:
3743                 return true;
3744         }
3745 }
3746
3747 static int
3748 hns3_prep_pkt_proc(struct hns3_tx_queue *tx_queue, struct rte_mbuf *m)
3749 {
3750         int ret;
3751
3752 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
3753         ret = rte_validate_tx_offload(m);
3754         if (ret != 0) {
3755                 rte_errno = -ret;
3756                 return ret;
3757         }
3758
3759         ret = hns3_vld_vlan_chk(tx_queue, m);
3760         if (ret != 0) {
3761                 rte_errno = EINVAL;
3762                 return ret;
3763         }
3764 #endif
3765         if (hns3_pkt_is_tso(m)) {
3766                 if (hns3_pkt_need_linearized(m, m->nb_segs,
3767                                              tx_queue->max_non_tso_bd_num) ||
3768                     hns3_check_tso_pkt_valid(m)) {
3769                         rte_errno = EINVAL;
3770                         return -EINVAL;
3771                 }
3772
3773                 if (tx_queue->tso_mode != HNS3_TSO_SW_CAL_PSEUDO_H_CSUM) {
3774                         /*
3775                          * (tso mode != HNS3_TSO_SW_CAL_PSEUDO_H_CSUM) means
3776                          * hardware support recalculate the TCP pseudo header
3777                          * checksum of packets that need TSO, so network driver
3778                          * software not need to recalculate it.
3779                          */
3780                         hns3_outer_header_cksum_prepare(m);
3781                         return 0;
3782                 }
3783         }
3784
3785         ret = rte_net_intel_cksum_prepare(m);
3786         if (ret != 0) {
3787                 rte_errno = -ret;
3788                 return ret;
3789         }
3790
3791         if (!hns3_validate_tunnel_cksum(tx_queue, m))
3792                 return 0;
3793
3794         hns3_outer_header_cksum_prepare(m);
3795
3796         return 0;
3797 }
3798
3799 uint16_t
3800 hns3_prep_pkts(__rte_unused void *tx_queue, struct rte_mbuf **tx_pkts,
3801                uint16_t nb_pkts)
3802 {
3803         struct rte_mbuf *m;
3804         uint16_t i;
3805
3806         for (i = 0; i < nb_pkts; i++) {
3807                 m = tx_pkts[i];
3808                 if (hns3_prep_pkt_proc(tx_queue, m))
3809                         return i;
3810         }
3811
3812         return i;
3813 }
3814
3815 static int
3816 hns3_parse_cksum(struct hns3_tx_queue *txq, uint16_t tx_desc_id,
3817                  struct rte_mbuf *m)
3818 {
3819         struct hns3_desc *tx_ring = txq->tx_ring;
3820         struct hns3_desc *desc = &tx_ring[tx_desc_id];
3821
3822         /* Enable checksum offloading */
3823         if (m->ol_flags & HNS3_TX_CKSUM_OFFLOAD_MASK) {
3824                 /* Fill in tunneling parameters if necessary */
3825                 if (hns3_parse_tunneling_params(txq, m, tx_desc_id)) {
3826                         txq->dfx_stats.unsupported_tunnel_pkt_cnt++;
3827                                 return -EINVAL;
3828                 }
3829
3830                 hns3_txd_enable_checksum(txq, m, tx_desc_id);
3831         } else {
3832                 /* clear the control bit */
3833                 desc->tx.type_cs_vlan_tso_len  = 0;
3834                 desc->tx.ol_type_vlan_len_msec = 0;
3835         }
3836
3837         return 0;
3838 }
3839
3840 static int
3841 hns3_check_non_tso_pkt(uint16_t nb_buf, struct rte_mbuf **m_seg,
3842                       struct rte_mbuf *tx_pkt, struct hns3_tx_queue *txq)
3843 {
3844         uint8_t max_non_tso_bd_num;
3845         struct rte_mbuf *new_pkt;
3846         int ret;
3847
3848         if (hns3_pkt_is_tso(*m_seg))
3849                 return 0;
3850
3851         /*
3852          * If packet length is greater than HNS3_MAX_FRAME_LEN
3853          * driver support, the packet will be ignored.
3854          */
3855         if (unlikely(rte_pktmbuf_pkt_len(tx_pkt) > HNS3_MAX_FRAME_LEN)) {
3856                 txq->dfx_stats.over_length_pkt_cnt++;
3857                 return -EINVAL;
3858         }
3859
3860         max_non_tso_bd_num = txq->max_non_tso_bd_num;
3861         if (unlikely(nb_buf > max_non_tso_bd_num)) {
3862                 txq->dfx_stats.exceed_limit_bd_pkt_cnt++;
3863                 ret = hns3_reassemble_tx_pkts(tx_pkt, &new_pkt,
3864                                               max_non_tso_bd_num);
3865                 if (ret) {
3866                         txq->dfx_stats.exceed_limit_bd_reassem_fail++;
3867                         return ret;
3868                 }
3869                 *m_seg = new_pkt;
3870         }
3871
3872         return 0;
3873 }
3874
3875 static inline void
3876 hns3_tx_free_buffer_simple(struct hns3_tx_queue *txq)
3877 {
3878         struct hns3_entry *tx_entry;
3879         struct hns3_desc *desc;
3880         uint16_t tx_next_clean;
3881         int i;
3882
3883         while (1) {
3884                 if (HNS3_GET_TX_QUEUE_PEND_BD_NUM(txq) < txq->tx_rs_thresh)
3885                         break;
3886
3887                 /*
3888                  * All mbufs can be released only when the VLD bits of all
3889                  * descriptors in a batch are cleared.
3890                  */
3891                 tx_next_clean = (txq->next_to_clean + txq->tx_rs_thresh - 1) %
3892                                 txq->nb_tx_desc;
3893                 desc = &txq->tx_ring[tx_next_clean];
3894                 for (i = 0; i < txq->tx_rs_thresh; i++) {
3895                         if (rte_le_to_cpu_16(desc->tx.tp_fe_sc_vld_ra_ri) &
3896                                         BIT(HNS3_TXD_VLD_B))
3897                                 return;
3898                         desc--;
3899                 }
3900
3901                 tx_entry = &txq->sw_ring[txq->next_to_clean];
3902
3903                 for (i = 0; i < txq->tx_rs_thresh; i++)
3904                         rte_prefetch0((tx_entry + i)->mbuf);
3905                 for (i = 0; i < txq->tx_rs_thresh; i++, tx_entry++) {
3906                         rte_mempool_put(tx_entry->mbuf->pool, tx_entry->mbuf);
3907                         tx_entry->mbuf = NULL;
3908                 }
3909
3910                 txq->next_to_clean = (tx_next_clean + 1) % txq->nb_tx_desc;
3911                 txq->tx_bd_ready += txq->tx_rs_thresh;
3912         }
3913 }
3914
3915 static inline void
3916 hns3_tx_backup_1mbuf(struct hns3_entry *tx_entry, struct rte_mbuf **pkts)
3917 {
3918         tx_entry->mbuf = pkts[0];
3919 }
3920
3921 static inline void
3922 hns3_tx_backup_4mbuf(struct hns3_entry *tx_entry, struct rte_mbuf **pkts)
3923 {
3924         hns3_tx_backup_1mbuf(&tx_entry[0], &pkts[0]);
3925         hns3_tx_backup_1mbuf(&tx_entry[1], &pkts[1]);
3926         hns3_tx_backup_1mbuf(&tx_entry[2], &pkts[2]);
3927         hns3_tx_backup_1mbuf(&tx_entry[3], &pkts[3]);
3928 }
3929
3930 static inline void
3931 hns3_tx_setup_4bd(struct hns3_desc *txdp, struct rte_mbuf **pkts)
3932 {
3933 #define PER_LOOP_NUM    4
3934         const uint16_t bd_flag = BIT(HNS3_TXD_VLD_B) | BIT(HNS3_TXD_FE_B);
3935         uint64_t dma_addr;
3936         uint32_t i;
3937
3938         for (i = 0; i < PER_LOOP_NUM; i++, txdp++, pkts++) {
3939                 dma_addr = rte_mbuf_data_iova(*pkts);
3940                 txdp->addr = rte_cpu_to_le_64(dma_addr);
3941                 txdp->tx.send_size = rte_cpu_to_le_16((*pkts)->data_len);
3942                 txdp->tx.paylen_fd_dop_ol4cs = 0;
3943                 txdp->tx.type_cs_vlan_tso_len = 0;
3944                 txdp->tx.ol_type_vlan_len_msec = 0;
3945                 txdp->tx.tp_fe_sc_vld_ra_ri = rte_cpu_to_le_16(bd_flag);
3946         }
3947 }
3948
3949 static inline void
3950 hns3_tx_setup_1bd(struct hns3_desc *txdp, struct rte_mbuf **pkts)
3951 {
3952         const uint16_t bd_flag = BIT(HNS3_TXD_VLD_B) | BIT(HNS3_TXD_FE_B);
3953         uint64_t dma_addr;
3954
3955         dma_addr = rte_mbuf_data_iova(*pkts);
3956         txdp->addr = rte_cpu_to_le_64(dma_addr);
3957         txdp->tx.send_size = rte_cpu_to_le_16((*pkts)->data_len);
3958         txdp->tx.paylen_fd_dop_ol4cs = 0;
3959         txdp->tx.type_cs_vlan_tso_len = 0;
3960         txdp->tx.ol_type_vlan_len_msec = 0;
3961         txdp->tx.tp_fe_sc_vld_ra_ri = rte_cpu_to_le_16(bd_flag);
3962 }
3963
3964 static inline void
3965 hns3_tx_fill_hw_ring(struct hns3_tx_queue *txq,
3966                      struct rte_mbuf **pkts,
3967                      uint16_t nb_pkts)
3968 {
3969 #define PER_LOOP_NUM    4
3970 #define PER_LOOP_MASK   (PER_LOOP_NUM - 1)
3971         struct hns3_desc *txdp = &txq->tx_ring[txq->next_to_use];
3972         struct hns3_entry *tx_entry = &txq->sw_ring[txq->next_to_use];
3973         const uint32_t mainpart = (nb_pkts & ((uint32_t)~PER_LOOP_MASK));
3974         const uint32_t leftover = (nb_pkts & ((uint32_t)PER_LOOP_MASK));
3975         uint32_t i;
3976
3977         for (i = 0; i < mainpart; i += PER_LOOP_NUM) {
3978                 hns3_tx_backup_4mbuf(tx_entry + i, pkts + i);
3979                 hns3_tx_setup_4bd(txdp + i, pkts + i);
3980
3981                 /* Increment bytes counter */
3982                 uint32_t j;
3983                 for (j = 0; j < PER_LOOP_NUM; j++)
3984                         txq->basic_stats.bytes += pkts[i + j]->pkt_len;
3985         }
3986         if (unlikely(leftover > 0)) {
3987                 for (i = 0; i < leftover; i++) {
3988                         hns3_tx_backup_1mbuf(tx_entry + mainpart + i,
3989                                              pkts + mainpart + i);
3990                         hns3_tx_setup_1bd(txdp + mainpart + i,
3991                                           pkts + mainpart + i);
3992
3993                         /* Increment bytes counter */
3994                         txq->basic_stats.bytes += pkts[mainpart + i]->pkt_len;
3995                 }
3996         }
3997 }
3998
3999 uint16_t
4000 hns3_xmit_pkts_simple(void *tx_queue,
4001                       struct rte_mbuf **tx_pkts,
4002                       uint16_t nb_pkts)
4003 {
4004         struct hns3_tx_queue *txq = tx_queue;
4005         uint16_t nb_tx = 0;
4006
4007         hns3_tx_free_buffer_simple(txq);
4008
4009         nb_pkts = RTE_MIN(txq->tx_bd_ready, nb_pkts);
4010         if (unlikely(nb_pkts == 0)) {
4011                 if (txq->tx_bd_ready == 0)
4012                         txq->dfx_stats.queue_full_cnt++;
4013                 return 0;
4014         }
4015
4016         txq->tx_bd_ready -= nb_pkts;
4017         if (txq->next_to_use + nb_pkts > txq->nb_tx_desc) {
4018                 nb_tx = txq->nb_tx_desc - txq->next_to_use;
4019                 hns3_tx_fill_hw_ring(txq, tx_pkts, nb_tx);
4020                 txq->next_to_use = 0;
4021         }
4022
4023         hns3_tx_fill_hw_ring(txq, tx_pkts + nb_tx, nb_pkts - nb_tx);
4024         txq->next_to_use += nb_pkts - nb_tx;
4025
4026         hns3_write_reg_opt(txq->io_tail_reg, nb_pkts);
4027
4028         return nb_pkts;
4029 }
4030
4031 uint16_t
4032 hns3_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
4033 {
4034         struct hns3_tx_queue *txq = tx_queue;
4035         struct hns3_entry *tx_bak_pkt;
4036         struct hns3_desc *tx_ring;
4037         struct rte_mbuf *tx_pkt;
4038         struct rte_mbuf *m_seg;
4039         struct hns3_desc *desc;
4040         uint32_t nb_hold = 0;
4041         uint16_t tx_next_use;
4042         uint16_t tx_pkt_num;
4043         uint16_t tx_bd_max;
4044         uint16_t nb_buf;
4045         uint16_t nb_tx;
4046         uint16_t i;
4047
4048         /* free useless buffer */
4049         hns3_tx_free_useless_buffer(txq);
4050
4051         tx_next_use   = txq->next_to_use;
4052         tx_bd_max     = txq->nb_tx_desc;
4053         tx_pkt_num = nb_pkts;
4054         tx_ring = txq->tx_ring;
4055
4056         /* send packets */
4057         tx_bak_pkt = &txq->sw_ring[tx_next_use];
4058         for (nb_tx = 0; nb_tx < tx_pkt_num; nb_tx++) {
4059                 tx_pkt = *tx_pkts++;
4060
4061                 nb_buf = tx_pkt->nb_segs;
4062
4063                 if (nb_buf > txq->tx_bd_ready) {
4064                         txq->dfx_stats.queue_full_cnt++;
4065                         if (nb_tx == 0)
4066                                 return 0;
4067
4068                         goto end_of_tx;
4069                 }
4070
4071                 /*
4072                  * If packet length is less than minimum packet length supported
4073                  * by hardware in Tx direction, driver need to pad it to avoid
4074                  * error.
4075                  */
4076                 if (unlikely(rte_pktmbuf_pkt_len(tx_pkt) <
4077                                                 txq->min_tx_pkt_len)) {
4078                         uint16_t add_len;
4079                         char *appended;
4080
4081                         add_len = txq->min_tx_pkt_len -
4082                                          rte_pktmbuf_pkt_len(tx_pkt);
4083                         appended = rte_pktmbuf_append(tx_pkt, add_len);
4084                         if (appended == NULL) {
4085                                 txq->dfx_stats.pkt_padding_fail_cnt++;
4086                                 break;
4087                         }
4088
4089                         memset(appended, 0, add_len);
4090                 }
4091
4092                 m_seg = tx_pkt;
4093
4094                 if (hns3_check_non_tso_pkt(nb_buf, &m_seg, tx_pkt, txq))
4095                         goto end_of_tx;
4096
4097                 if (hns3_parse_cksum(txq, tx_next_use, m_seg))
4098                         goto end_of_tx;
4099
4100                 i = 0;
4101                 desc = &tx_ring[tx_next_use];
4102
4103                 /*
4104                  * If the packet is divided into multiple Tx Buffer Descriptors,
4105                  * only need to fill vlan, paylen and tso into the first Tx
4106                  * Buffer Descriptor.
4107                  */
4108                 hns3_fill_first_desc(txq, desc, m_seg);
4109
4110                 do {
4111                         desc = &tx_ring[tx_next_use];
4112                         /*
4113                          * Fill valid bits, DMA address and data length for each
4114                          * Tx Buffer Descriptor.
4115                          */
4116                         hns3_fill_per_desc(desc, m_seg);
4117                         tx_bak_pkt->mbuf = m_seg;
4118                         m_seg = m_seg->next;
4119                         tx_next_use++;
4120                         tx_bak_pkt++;
4121                         if (tx_next_use >= tx_bd_max) {
4122                                 tx_next_use = 0;
4123                                 tx_bak_pkt = txq->sw_ring;
4124                         }
4125
4126                         i++;
4127                 } while (m_seg != NULL);
4128
4129                 /* Add end flag for the last Tx Buffer Descriptor */
4130                 desc->tx.tp_fe_sc_vld_ra_ri |=
4131                                  rte_cpu_to_le_16(BIT(HNS3_TXD_FE_B));
4132
4133                 /* Increment bytes counter */
4134                 txq->basic_stats.bytes += tx_pkt->pkt_len;
4135                 nb_hold += i;
4136                 txq->next_to_use = tx_next_use;
4137                 txq->tx_bd_ready -= i;
4138         }
4139
4140 end_of_tx:
4141
4142         if (likely(nb_tx))
4143                 hns3_write_reg_opt(txq->io_tail_reg, nb_hold);
4144
4145         return nb_tx;
4146 }
4147
4148 int __rte_weak
4149 hns3_tx_check_vec_support(__rte_unused struct rte_eth_dev *dev)
4150 {
4151         return -ENOTSUP;
4152 }
4153
4154 uint16_t __rte_weak
4155 hns3_xmit_pkts_vec(__rte_unused void *tx_queue,
4156                    __rte_unused struct rte_mbuf **tx_pkts,
4157                    __rte_unused uint16_t nb_pkts)
4158 {
4159         return 0;
4160 }
4161
4162 uint16_t __rte_weak
4163 hns3_xmit_pkts_vec_sve(void __rte_unused * tx_queue,
4164                        struct rte_mbuf __rte_unused **tx_pkts,
4165                        uint16_t __rte_unused nb_pkts)
4166 {
4167         return 0;
4168 }
4169
4170 int
4171 hns3_tx_burst_mode_get(struct rte_eth_dev *dev, __rte_unused uint16_t queue_id,
4172                        struct rte_eth_burst_mode *mode)
4173 {
4174         eth_tx_burst_t pkt_burst = dev->tx_pkt_burst;
4175         const char *info = NULL;
4176
4177         if (pkt_burst == hns3_xmit_pkts_simple)
4178                 info = "Scalar Simple";
4179         else if (pkt_burst == hns3_xmit_pkts)
4180                 info = "Scalar";
4181         else if (pkt_burst == hns3_xmit_pkts_vec)
4182                 info = "Vector Neon";
4183         else if (pkt_burst == hns3_xmit_pkts_vec_sve)
4184                 info = "Vector Sve";
4185
4186         if (info == NULL)
4187                 return -EINVAL;
4188
4189         snprintf(mode->info, sizeof(mode->info), "%s", info);
4190
4191         return 0;
4192 }
4193
4194 static bool
4195 hns3_tx_check_simple_support(struct rte_eth_dev *dev)
4196 {
4197         uint64_t offloads = dev->data->dev_conf.txmode.offloads;
4198
4199         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4200         if (hns3_dev_ptp_supported(hw))
4201                 return false;
4202
4203         return (offloads == (offloads & DEV_TX_OFFLOAD_MBUF_FAST_FREE));
4204 }
4205
4206 static eth_tx_burst_t
4207 hns3_get_tx_function(struct rte_eth_dev *dev, eth_tx_prep_t *prep)
4208 {
4209         struct hns3_adapter *hns = dev->data->dev_private;
4210         bool vec_allowed, sve_allowed, simple_allowed;
4211         bool vec_support;
4212
4213         vec_support = hns3_tx_check_vec_support(dev) == 0;
4214         vec_allowed = vec_support && hns3_get_default_vec_support();
4215         sve_allowed = vec_support && hns3_get_sve_support();
4216         simple_allowed = hns3_tx_check_simple_support(dev);
4217
4218         *prep = NULL;
4219
4220         if (hns->tx_func_hint == HNS3_IO_FUNC_HINT_VEC && vec_allowed)
4221                 return hns3_xmit_pkts_vec;
4222         if (hns->tx_func_hint == HNS3_IO_FUNC_HINT_SVE && sve_allowed)
4223                 return hns3_xmit_pkts_vec_sve;
4224         if (hns->tx_func_hint == HNS3_IO_FUNC_HINT_SIMPLE && simple_allowed)
4225                 return hns3_xmit_pkts_simple;
4226         if (hns->tx_func_hint == HNS3_IO_FUNC_HINT_COMMON) {
4227                 *prep = hns3_prep_pkts;
4228                 return hns3_xmit_pkts;
4229         }
4230
4231         if (vec_allowed)
4232                 return hns3_xmit_pkts_vec;
4233         if (simple_allowed)
4234                 return hns3_xmit_pkts_simple;
4235
4236         *prep = hns3_prep_pkts;
4237         return hns3_xmit_pkts;
4238 }
4239
4240 static uint16_t
4241 hns3_dummy_rxtx_burst(void *dpdk_txq __rte_unused,
4242                       struct rte_mbuf **pkts __rte_unused,
4243                       uint16_t pkts_n __rte_unused)
4244 {
4245         return 0;
4246 }
4247
4248 static void
4249 hns3_trace_rxtx_function(struct rte_eth_dev *dev)
4250 {
4251         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4252         struct rte_eth_burst_mode rx_mode;
4253         struct rte_eth_burst_mode tx_mode;
4254
4255         memset(&rx_mode, 0, sizeof(rx_mode));
4256         memset(&tx_mode, 0, sizeof(tx_mode));
4257         (void)hns3_rx_burst_mode_get(dev, 0, &rx_mode);
4258         (void)hns3_tx_burst_mode_get(dev, 0, &tx_mode);
4259
4260         hns3_dbg(hw, "using rx_pkt_burst: %s, tx_pkt_burst: %s.",
4261                  rx_mode.info, tx_mode.info);
4262 }
4263
4264 void hns3_set_rxtx_function(struct rte_eth_dev *eth_dev)
4265 {
4266         struct hns3_adapter *hns = eth_dev->data->dev_private;
4267         eth_tx_prep_t prep = NULL;
4268
4269         if (hns->hw.adapter_state == HNS3_NIC_STARTED &&
4270             __atomic_load_n(&hns->hw.reset.resetting, __ATOMIC_RELAXED) == 0) {
4271                 eth_dev->rx_pkt_burst = hns3_get_rx_function(eth_dev);
4272                 eth_dev->rx_descriptor_status = hns3_dev_rx_descriptor_status;
4273                 eth_dev->tx_pkt_burst = hns3_get_tx_function(eth_dev, &prep);
4274                 eth_dev->tx_pkt_prepare = prep;
4275                 eth_dev->tx_descriptor_status = hns3_dev_tx_descriptor_status;
4276                 hns3_trace_rxtx_function(eth_dev);
4277         } else {
4278                 eth_dev->rx_pkt_burst = hns3_dummy_rxtx_burst;
4279                 eth_dev->tx_pkt_burst = hns3_dummy_rxtx_burst;
4280                 eth_dev->tx_pkt_prepare = hns3_dummy_rxtx_burst;
4281         }
4282 }
4283
4284 void
4285 hns3_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
4286                   struct rte_eth_rxq_info *qinfo)
4287 {
4288         struct hns3_rx_queue *rxq = dev->data->rx_queues[queue_id];
4289
4290         qinfo->mp = rxq->mb_pool;
4291         qinfo->nb_desc = rxq->nb_rx_desc;
4292         qinfo->scattered_rx = dev->data->scattered_rx;
4293         /* Report the HW Rx buffer length to user */
4294         qinfo->rx_buf_size = rxq->rx_buf_len;
4295
4296         /*
4297          * If there are no available Rx buffer descriptors, incoming packets
4298          * are always dropped by hardware based on hns3 network engine.
4299          */
4300         qinfo->conf.rx_drop_en = 1;
4301         qinfo->conf.offloads = dev->data->dev_conf.rxmode.offloads;
4302         qinfo->conf.rx_free_thresh = rxq->rx_free_thresh;
4303         qinfo->conf.rx_deferred_start = rxq->rx_deferred_start;
4304 }
4305
4306 void
4307 hns3_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
4308                   struct rte_eth_txq_info *qinfo)
4309 {
4310         struct hns3_tx_queue *txq = dev->data->tx_queues[queue_id];
4311
4312         qinfo->nb_desc = txq->nb_tx_desc;
4313         qinfo->conf.offloads = dev->data->dev_conf.txmode.offloads;
4314         qinfo->conf.tx_rs_thresh = txq->tx_rs_thresh;
4315         qinfo->conf.tx_free_thresh = txq->tx_free_thresh;
4316         qinfo->conf.tx_deferred_start = txq->tx_deferred_start;
4317 }
4318
4319 int
4320 hns3_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
4321 {
4322         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4323         struct hns3_rx_queue *rxq = dev->data->rx_queues[rx_queue_id];
4324         struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
4325         int ret;
4326
4327         if (!hns3_dev_indep_txrx_supported(hw))
4328                 return -ENOTSUP;
4329
4330         rte_spinlock_lock(&hw->lock);
4331         ret = hns3_reset_queue(hw, rx_queue_id, HNS3_RING_TYPE_RX);
4332         if (ret) {
4333                 hns3_err(hw, "fail to reset Rx queue %u, ret = %d.",
4334                          rx_queue_id, ret);
4335                 rte_spinlock_unlock(&hw->lock);
4336                 return ret;
4337         }
4338
4339         ret = hns3_init_rxq(hns, rx_queue_id);
4340         if (ret) {
4341                 hns3_err(hw, "fail to init Rx queue %u, ret = %d.",
4342                          rx_queue_id, ret);
4343                 rte_spinlock_unlock(&hw->lock);
4344                 return ret;
4345         }
4346
4347         hns3_enable_rxq(rxq, true);
4348         dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
4349         rte_spinlock_unlock(&hw->lock);
4350
4351         return ret;
4352 }
4353
4354 static void
4355 hns3_reset_sw_rxq(struct hns3_rx_queue *rxq)
4356 {
4357         rxq->next_to_use = 0;
4358         rxq->rx_rearm_start = 0;
4359         rxq->rx_free_hold = 0;
4360         rxq->rx_rearm_nb = 0;
4361         rxq->pkt_first_seg = NULL;
4362         rxq->pkt_last_seg = NULL;
4363         memset(&rxq->rx_ring[0], 0, rxq->nb_rx_desc * sizeof(struct hns3_desc));
4364         hns3_rxq_vec_setup(rxq);
4365 }
4366
4367 int
4368 hns3_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
4369 {
4370         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4371         struct hns3_rx_queue *rxq = dev->data->rx_queues[rx_queue_id];
4372
4373         if (!hns3_dev_indep_txrx_supported(hw))
4374                 return -ENOTSUP;
4375
4376         rte_spinlock_lock(&hw->lock);
4377         hns3_enable_rxq(rxq, false);
4378
4379         hns3_rx_queue_release_mbufs(rxq);
4380
4381         hns3_reset_sw_rxq(rxq);
4382         dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
4383         rte_spinlock_unlock(&hw->lock);
4384
4385         return 0;
4386 }
4387
4388 int
4389 hns3_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
4390 {
4391         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4392         struct hns3_tx_queue *txq = dev->data->tx_queues[tx_queue_id];
4393         int ret;
4394
4395         if (!hns3_dev_indep_txrx_supported(hw))
4396                 return -ENOTSUP;
4397
4398         rte_spinlock_lock(&hw->lock);
4399         ret = hns3_reset_queue(hw, tx_queue_id, HNS3_RING_TYPE_TX);
4400         if (ret) {
4401                 hns3_err(hw, "fail to reset Tx queue %u, ret = %d.",
4402                          tx_queue_id, ret);
4403                 rte_spinlock_unlock(&hw->lock);
4404                 return ret;
4405         }
4406
4407         hns3_init_txq(txq);
4408         hns3_enable_txq(txq, true);
4409         dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
4410         rte_spinlock_unlock(&hw->lock);
4411
4412         return ret;
4413 }
4414
4415 int
4416 hns3_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
4417 {
4418         struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4419         struct hns3_tx_queue *txq = dev->data->tx_queues[tx_queue_id];
4420
4421         if (!hns3_dev_indep_txrx_supported(hw))
4422                 return -ENOTSUP;
4423
4424         rte_spinlock_lock(&hw->lock);
4425         hns3_enable_txq(txq, false);
4426         hns3_tx_queue_release_mbufs(txq);
4427         /*
4428          * All the mbufs in sw_ring are released and all the pointers in sw_ring
4429          * are set to NULL. If this queue is still called by upper layer,
4430          * residual SW status of this txq may cause these pointers in sw_ring
4431          * which have been set to NULL to be released again. To avoid it,
4432          * reinit the txq.
4433          */
4434         hns3_init_txq(txq);
4435         dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
4436         rte_spinlock_unlock(&hw->lock);
4437
4438         return 0;
4439 }
4440
4441 static int
4442 hns3_tx_done_cleanup_full(struct hns3_tx_queue *txq, uint32_t free_cnt)
4443 {
4444         uint16_t next_to_clean = txq->next_to_clean;
4445         uint16_t next_to_use   = txq->next_to_use;
4446         uint16_t tx_bd_ready   = txq->tx_bd_ready;
4447         struct hns3_entry *tx_pkt = &txq->sw_ring[next_to_clean];
4448         struct hns3_desc *desc = &txq->tx_ring[next_to_clean];
4449         uint32_t idx;
4450
4451         if (free_cnt == 0 || free_cnt > txq->nb_tx_desc)
4452                 free_cnt = txq->nb_tx_desc;
4453
4454         for (idx = 0; idx < free_cnt; idx++) {
4455                 if (next_to_clean == next_to_use)
4456                         break;
4457
4458                 if (desc->tx.tp_fe_sc_vld_ra_ri &
4459                     rte_cpu_to_le_16(BIT(HNS3_TXD_VLD_B)))
4460                         break;
4461
4462                 if (tx_pkt->mbuf != NULL) {
4463                         rte_pktmbuf_free_seg(tx_pkt->mbuf);
4464                         tx_pkt->mbuf = NULL;
4465                 }
4466
4467                 next_to_clean++;
4468                 tx_bd_ready++;
4469                 tx_pkt++;
4470                 desc++;
4471                 if (next_to_clean == txq->nb_tx_desc) {
4472                         tx_pkt = txq->sw_ring;
4473                         desc = txq->tx_ring;
4474                         next_to_clean = 0;
4475                 }
4476         }
4477
4478         if (idx > 0) {
4479                 txq->next_to_clean = next_to_clean;
4480                 txq->tx_bd_ready = tx_bd_ready;
4481         }
4482
4483         return (int)idx;
4484 }
4485
4486 int
4487 hns3_tx_done_cleanup(void *txq, uint32_t free_cnt)
4488 {
4489         struct hns3_tx_queue *q = (struct hns3_tx_queue *)txq;
4490         struct rte_eth_dev *dev = &rte_eth_devices[q->port_id];
4491
4492         if (dev->tx_pkt_burst == hns3_xmit_pkts)
4493                 return hns3_tx_done_cleanup_full(q, free_cnt);
4494         else if (dev->tx_pkt_burst == hns3_dummy_rxtx_burst)
4495                 return 0;
4496         else
4497                 return -ENOTSUP;
4498 }
4499
4500 int
4501 hns3_dev_rx_descriptor_status(void *rx_queue, uint16_t offset)
4502 {
4503         volatile struct hns3_desc *rxdp;
4504         struct hns3_rx_queue *rxq;
4505         struct rte_eth_dev *dev;
4506         uint32_t bd_base_info;
4507         uint16_t desc_id;
4508
4509         rxq = (struct hns3_rx_queue *)rx_queue;
4510         if (offset >= rxq->nb_rx_desc)
4511                 return -EINVAL;
4512
4513         desc_id = (rxq->next_to_use + offset) % rxq->nb_rx_desc;
4514         rxdp = &rxq->rx_ring[desc_id];
4515         bd_base_info = rte_le_to_cpu_32(rxdp->rx.bd_base_info);
4516         dev = &rte_eth_devices[rxq->port_id];
4517         if (dev->rx_pkt_burst == hns3_recv_pkts_simple ||
4518             dev->rx_pkt_burst == hns3_recv_scattered_pkts) {
4519                 if (offset >= rxq->nb_rx_desc - rxq->rx_free_hold)
4520                         return RTE_ETH_RX_DESC_UNAVAIL;
4521         } else if (dev->rx_pkt_burst == hns3_recv_pkts_vec ||
4522                    dev->rx_pkt_burst == hns3_recv_pkts_vec_sve) {
4523                 if (offset >= rxq->nb_rx_desc - rxq->rx_rearm_nb)
4524                         return RTE_ETH_RX_DESC_UNAVAIL;
4525         } else {
4526                 return RTE_ETH_RX_DESC_UNAVAIL;
4527         }
4528
4529         if (!(bd_base_info & BIT(HNS3_RXD_VLD_B)))
4530                 return RTE_ETH_RX_DESC_AVAIL;
4531         else
4532                 return RTE_ETH_RX_DESC_DONE;
4533 }
4534
4535 int
4536 hns3_dev_tx_descriptor_status(void *tx_queue, uint16_t offset)
4537 {
4538         volatile struct hns3_desc *txdp;
4539         struct hns3_tx_queue *txq;
4540         struct rte_eth_dev *dev;
4541         uint16_t desc_id;
4542
4543         txq = (struct hns3_tx_queue *)tx_queue;
4544         if (offset >= txq->nb_tx_desc)
4545                 return -EINVAL;
4546
4547         dev = &rte_eth_devices[txq->port_id];
4548         if (dev->tx_pkt_burst != hns3_xmit_pkts_simple &&
4549             dev->tx_pkt_burst != hns3_xmit_pkts &&
4550             dev->tx_pkt_burst != hns3_xmit_pkts_vec_sve &&
4551             dev->tx_pkt_burst != hns3_xmit_pkts_vec)
4552                 return RTE_ETH_TX_DESC_UNAVAIL;
4553
4554         desc_id = (txq->next_to_use + offset) % txq->nb_tx_desc;
4555         txdp = &txq->tx_ring[desc_id];
4556         if (txdp->tx.tp_fe_sc_vld_ra_ri & rte_cpu_to_le_16(BIT(HNS3_TXD_VLD_B)))
4557                 return RTE_ETH_TX_DESC_FULL;
4558         else
4559                 return RTE_ETH_TX_DESC_DONE;
4560 }
4561
4562 uint32_t
4563 hns3_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
4564 {
4565         /*
4566          * Number of BDs that have been processed by the driver
4567          * but have not been notified to the hardware.
4568          */
4569         uint32_t driver_hold_bd_num;
4570         struct hns3_rx_queue *rxq;
4571         uint32_t fbd_num;
4572
4573         rxq = dev->data->rx_queues[rx_queue_id];
4574         fbd_num = hns3_read_dev(rxq, HNS3_RING_RX_FBDNUM_REG);
4575         if (dev->rx_pkt_burst == hns3_recv_pkts_vec ||
4576             dev->rx_pkt_burst == hns3_recv_pkts_vec_sve)
4577                 driver_hold_bd_num = rxq->rx_rearm_nb;
4578         else
4579                 driver_hold_bd_num = rxq->rx_free_hold;
4580
4581         if (fbd_num <= driver_hold_bd_num)
4582                 return 0;
4583         else
4584                 return fbd_num - driver_hold_bd_num;
4585 }
4586
4587 void
4588 hns3_enable_rxd_adv_layout(struct hns3_hw *hw)
4589 {
4590         /*
4591          * If the hardware support rxd advanced layout, then driver enable it
4592          * default.
4593          */
4594         if (hns3_dev_rxd_adv_layout_supported(hw))
4595                 hns3_write_dev(hw, HNS3_RXD_ADV_LAYOUT_EN_REG, 1);
4596 }