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