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