1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018-2021 HiSilicon Limited.
6 #include <rte_bus_pci.h>
7 #include <ethdev_pci.h>
9 #include <rte_kvargs.h>
11 #include "hns3_ethdev.h"
12 #include "hns3_logs.h"
13 #include "hns3_rxtx.h"
14 #include "hns3_intr.h"
15 #include "hns3_regs.h"
19 #define HNS3_DEFAULT_PORT_CONF_BURST_SIZE 32
20 #define HNS3_DEFAULT_PORT_CONF_QUEUES_NUM 1
22 #define HNS3_SERVICE_INTERVAL 1000000 /* us */
23 #define HNS3_SERVICE_QUICK_INTERVAL 10
24 #define HNS3_INVALID_PVID 0xFFFF
26 #define HNS3_FILTER_TYPE_VF 0
27 #define HNS3_FILTER_TYPE_PORT 1
28 #define HNS3_FILTER_FE_EGRESS_V1_B BIT(0)
29 #define HNS3_FILTER_FE_NIC_INGRESS_B BIT(0)
30 #define HNS3_FILTER_FE_NIC_EGRESS_B BIT(1)
31 #define HNS3_FILTER_FE_ROCE_INGRESS_B BIT(2)
32 #define HNS3_FILTER_FE_ROCE_EGRESS_B BIT(3)
33 #define HNS3_FILTER_FE_EGRESS (HNS3_FILTER_FE_NIC_EGRESS_B \
34 | HNS3_FILTER_FE_ROCE_EGRESS_B)
35 #define HNS3_FILTER_FE_INGRESS (HNS3_FILTER_FE_NIC_INGRESS_B \
36 | HNS3_FILTER_FE_ROCE_INGRESS_B)
38 /* Reset related Registers */
39 #define HNS3_GLOBAL_RESET_BIT 0
40 #define HNS3_CORE_RESET_BIT 1
41 #define HNS3_IMP_RESET_BIT 2
42 #define HNS3_FUN_RST_ING_B 0
44 #define HNS3_VECTOR0_IMP_RESET_INT_B 1
45 #define HNS3_VECTOR0_IMP_CMDQ_ERR_B 4U
46 #define HNS3_VECTOR0_IMP_RD_POISON_B 5U
47 #define HNS3_VECTOR0_ALL_MSIX_ERR_B 6U
49 #define HNS3_RESET_WAIT_MS 100
50 #define HNS3_RESET_WAIT_CNT 200
52 /* FEC mode order defined in HNS3 hardware */
53 #define HNS3_HW_FEC_MODE_NOFEC 0
54 #define HNS3_HW_FEC_MODE_BASER 1
55 #define HNS3_HW_FEC_MODE_RS 2
58 HNS3_VECTOR0_EVENT_RST,
59 HNS3_VECTOR0_EVENT_MBX,
60 HNS3_VECTOR0_EVENT_ERR,
61 HNS3_VECTOR0_EVENT_PTP,
62 HNS3_VECTOR0_EVENT_OTHER,
65 static const struct rte_eth_fec_capa speed_fec_capa_tbl[] = {
66 { ETH_SPEED_NUM_10G, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) |
67 RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
68 RTE_ETH_FEC_MODE_CAPA_MASK(BASER) },
70 { ETH_SPEED_NUM_25G, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) |
71 RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
72 RTE_ETH_FEC_MODE_CAPA_MASK(BASER) |
73 RTE_ETH_FEC_MODE_CAPA_MASK(RS) },
75 { ETH_SPEED_NUM_40G, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) |
76 RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
77 RTE_ETH_FEC_MODE_CAPA_MASK(BASER) },
79 { ETH_SPEED_NUM_50G, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) |
80 RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
81 RTE_ETH_FEC_MODE_CAPA_MASK(BASER) |
82 RTE_ETH_FEC_MODE_CAPA_MASK(RS) },
84 { ETH_SPEED_NUM_100G, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) |
85 RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
86 RTE_ETH_FEC_MODE_CAPA_MASK(RS) },
88 { ETH_SPEED_NUM_200G, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) |
89 RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
90 RTE_ETH_FEC_MODE_CAPA_MASK(RS) }
93 static enum hns3_reset_level hns3_get_reset_level(struct hns3_adapter *hns,
95 static int hns3_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
96 static int hns3_vlan_pvid_configure(struct hns3_adapter *hns, uint16_t pvid,
98 static int hns3_update_link_info(struct rte_eth_dev *eth_dev);
99 static bool hns3_update_link_status(struct hns3_hw *hw);
101 static int hns3_add_mc_addr(struct hns3_hw *hw,
102 struct rte_ether_addr *mac_addr);
103 static int hns3_remove_mc_addr(struct hns3_hw *hw,
104 struct rte_ether_addr *mac_addr);
105 static int hns3_restore_fec(struct hns3_hw *hw);
106 static int hns3_query_dev_fec_info(struct hns3_hw *hw);
107 static int hns3_do_stop(struct hns3_adapter *hns);
109 void hns3_ether_format_addr(char *buf, uint16_t size,
110 const struct rte_ether_addr *ether_addr)
112 snprintf(buf, size, "%02X:**:**:**:%02X:%02X",
113 ether_addr->addr_bytes[0],
114 ether_addr->addr_bytes[4],
115 ether_addr->addr_bytes[5]);
119 hns3_pf_disable_irq0(struct hns3_hw *hw)
121 hns3_write_dev(hw, HNS3_MISC_VECTOR_REG_BASE, 0);
125 hns3_pf_enable_irq0(struct hns3_hw *hw)
127 hns3_write_dev(hw, HNS3_MISC_VECTOR_REG_BASE, 1);
130 static enum hns3_evt_cause
131 hns3_proc_imp_reset_event(struct hns3_adapter *hns, bool is_delay,
134 struct hns3_hw *hw = &hns->hw;
136 __atomic_store_n(&hw->reset.disable_cmd, 1, __ATOMIC_RELAXED);
137 hns3_atomic_set_bit(HNS3_IMP_RESET, &hw->reset.pending);
138 *vec_val = BIT(HNS3_VECTOR0_IMPRESET_INT_B);
140 hw->reset.stats.imp_cnt++;
141 hns3_warn(hw, "IMP reset detected, clear reset status");
143 hns3_schedule_delayed_reset(hns);
144 hns3_warn(hw, "IMP reset detected, don't clear reset status");
147 return HNS3_VECTOR0_EVENT_RST;
150 static enum hns3_evt_cause
151 hns3_proc_global_reset_event(struct hns3_adapter *hns, bool is_delay,
154 struct hns3_hw *hw = &hns->hw;
156 __atomic_store_n(&hw->reset.disable_cmd, 1, __ATOMIC_RELAXED);
157 hns3_atomic_set_bit(HNS3_GLOBAL_RESET, &hw->reset.pending);
158 *vec_val = BIT(HNS3_VECTOR0_GLOBALRESET_INT_B);
160 hw->reset.stats.global_cnt++;
161 hns3_warn(hw, "Global reset detected, clear reset status");
163 hns3_schedule_delayed_reset(hns);
165 "Global reset detected, don't clear reset status");
168 return HNS3_VECTOR0_EVENT_RST;
171 static enum hns3_evt_cause
172 hns3_check_event_cause(struct hns3_adapter *hns, uint32_t *clearval)
174 struct hns3_hw *hw = &hns->hw;
175 uint32_t vector0_int_stats;
176 uint32_t cmdq_src_val;
177 uint32_t hw_err_src_reg;
179 enum hns3_evt_cause ret;
182 /* fetch the events from their corresponding regs */
183 vector0_int_stats = hns3_read_dev(hw, HNS3_VECTOR0_OTHER_INT_STS_REG);
184 cmdq_src_val = hns3_read_dev(hw, HNS3_VECTOR0_CMDQ_SRC_REG);
185 hw_err_src_reg = hns3_read_dev(hw, HNS3_RAS_PF_OTHER_INT_STS_REG);
187 is_delay = clearval == NULL ? true : false;
189 * Assumption: If by any chance reset and mailbox events are reported
190 * together then we will only process reset event and defer the
191 * processing of the mailbox events. Since, we would have not cleared
192 * RX CMDQ event this time we would receive again another interrupt
193 * from H/W just for the mailbox.
195 if (BIT(HNS3_VECTOR0_IMPRESET_INT_B) & vector0_int_stats) { /* IMP */
196 ret = hns3_proc_imp_reset_event(hns, is_delay, &val);
201 if (BIT(HNS3_VECTOR0_GLOBALRESET_INT_B) & vector0_int_stats) {
202 ret = hns3_proc_global_reset_event(hns, is_delay, &val);
206 /* Check for vector0 1588 event source */
207 if (BIT(HNS3_VECTOR0_1588_INT_B) & vector0_int_stats) {
208 val = BIT(HNS3_VECTOR0_1588_INT_B);
209 ret = HNS3_VECTOR0_EVENT_PTP;
213 /* check for vector0 msix event source */
214 if (vector0_int_stats & HNS3_VECTOR0_REG_MSIX_MASK ||
215 hw_err_src_reg & HNS3_RAS_REG_NFE_MASK) {
216 val = vector0_int_stats | hw_err_src_reg;
217 ret = HNS3_VECTOR0_EVENT_ERR;
221 /* check for vector0 mailbox(=CMDQ RX) event source */
222 if (BIT(HNS3_VECTOR0_RX_CMDQ_INT_B) & cmdq_src_val) {
223 cmdq_src_val &= ~BIT(HNS3_VECTOR0_RX_CMDQ_INT_B);
225 ret = HNS3_VECTOR0_EVENT_MBX;
229 val = vector0_int_stats;
230 ret = HNS3_VECTOR0_EVENT_OTHER;
239 hns3_is_1588_event_type(uint32_t event_type)
241 return (event_type == HNS3_VECTOR0_EVENT_PTP);
245 hns3_clear_event_cause(struct hns3_hw *hw, uint32_t event_type, uint32_t regclr)
247 if (event_type == HNS3_VECTOR0_EVENT_RST ||
248 hns3_is_1588_event_type(event_type))
249 hns3_write_dev(hw, HNS3_MISC_RESET_STS_REG, regclr);
250 else if (event_type == HNS3_VECTOR0_EVENT_MBX)
251 hns3_write_dev(hw, HNS3_VECTOR0_CMDQ_SRC_REG, regclr);
255 hns3_clear_all_event_cause(struct hns3_hw *hw)
257 uint32_t vector0_int_stats;
258 vector0_int_stats = hns3_read_dev(hw, HNS3_VECTOR0_OTHER_INT_STS_REG);
260 if (BIT(HNS3_VECTOR0_IMPRESET_INT_B) & vector0_int_stats)
261 hns3_warn(hw, "Probe during IMP reset interrupt");
263 if (BIT(HNS3_VECTOR0_GLOBALRESET_INT_B) & vector0_int_stats)
264 hns3_warn(hw, "Probe during Global reset interrupt");
266 hns3_clear_event_cause(hw, HNS3_VECTOR0_EVENT_RST,
267 BIT(HNS3_VECTOR0_IMPRESET_INT_B) |
268 BIT(HNS3_VECTOR0_GLOBALRESET_INT_B) |
269 BIT(HNS3_VECTOR0_CORERESET_INT_B));
270 hns3_clear_event_cause(hw, HNS3_VECTOR0_EVENT_MBX, 0);
271 hns3_clear_event_cause(hw, HNS3_VECTOR0_EVENT_PTP,
272 BIT(HNS3_VECTOR0_1588_INT_B));
276 hns3_handle_mac_tnl(struct hns3_hw *hw)
278 struct hns3_cmd_desc desc;
282 /* query and clear mac tnl interruptions */
283 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_QUERY_MAC_TNL_INT, true);
284 ret = hns3_cmd_send(hw, &desc, 1);
286 hns3_err(hw, "failed to query mac tnl int, ret = %d.", ret);
290 status = rte_le_to_cpu_32(desc.data[0]);
292 hns3_warn(hw, "mac tnl int occurs, status = 0x%x.", status);
293 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CLEAR_MAC_TNL_INT,
295 desc.data[0] = rte_cpu_to_le_32(HNS3_MAC_TNL_INT_CLR);
296 ret = hns3_cmd_send(hw, &desc, 1);
298 hns3_err(hw, "failed to clear mac tnl int, ret = %d.",
304 hns3_interrupt_handler(void *param)
306 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
307 struct hns3_adapter *hns = dev->data->dev_private;
308 struct hns3_hw *hw = &hns->hw;
309 enum hns3_evt_cause event_cause;
310 uint32_t clearval = 0;
311 uint32_t vector0_int;
315 /* Disable interrupt */
316 hns3_pf_disable_irq0(hw);
318 event_cause = hns3_check_event_cause(hns, &clearval);
319 vector0_int = hns3_read_dev(hw, HNS3_VECTOR0_OTHER_INT_STS_REG);
320 ras_int = hns3_read_dev(hw, HNS3_RAS_PF_OTHER_INT_STS_REG);
321 cmdq_int = hns3_read_dev(hw, HNS3_VECTOR0_CMDQ_SRC_REG);
322 /* vector 0 interrupt is shared with reset and mailbox source events. */
323 if (event_cause == HNS3_VECTOR0_EVENT_ERR) {
324 hns3_warn(hw, "received interrupt: vector0_int_stat:0x%x "
325 "ras_int_stat:0x%x cmdq_int_stat:0x%x",
326 vector0_int, ras_int, cmdq_int);
327 hns3_handle_mac_tnl(hw);
328 hns3_handle_error(hns);
329 } else if (event_cause == HNS3_VECTOR0_EVENT_RST) {
330 hns3_warn(hw, "received reset interrupt");
331 hns3_schedule_reset(hns);
332 } else if (event_cause == HNS3_VECTOR0_EVENT_MBX) {
333 hns3_dev_handle_mbx_msg(hw);
335 hns3_warn(hw, "received unknown event: vector0_int_stat:0x%x "
336 "ras_int_stat:0x%x cmdq_int_stat:0x%x",
337 vector0_int, ras_int, cmdq_int);
340 hns3_clear_event_cause(hw, event_cause, clearval);
341 /* Enable interrupt if it is not cause by reset */
342 hns3_pf_enable_irq0(hw);
346 hns3_set_port_vlan_filter(struct hns3_adapter *hns, uint16_t vlan_id, int on)
348 #define HNS3_VLAN_ID_OFFSET_STEP 160
349 #define HNS3_VLAN_BYTE_SIZE 8
350 struct hns3_vlan_filter_pf_cfg_cmd *req;
351 struct hns3_hw *hw = &hns->hw;
352 uint8_t vlan_offset_byte_val;
353 struct hns3_cmd_desc desc;
354 uint8_t vlan_offset_byte;
355 uint8_t vlan_offset_base;
358 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_VLAN_FILTER_PF_CFG, false);
360 vlan_offset_base = vlan_id / HNS3_VLAN_ID_OFFSET_STEP;
361 vlan_offset_byte = (vlan_id % HNS3_VLAN_ID_OFFSET_STEP) /
363 vlan_offset_byte_val = 1 << (vlan_id % HNS3_VLAN_BYTE_SIZE);
365 req = (struct hns3_vlan_filter_pf_cfg_cmd *)desc.data;
366 req->vlan_offset = vlan_offset_base;
367 req->vlan_cfg = on ? 0 : 1;
368 req->vlan_offset_bitmap[vlan_offset_byte] = vlan_offset_byte_val;
370 ret = hns3_cmd_send(hw, &desc, 1);
372 hns3_err(hw, "set port vlan id failed, vlan_id =%u, ret =%d",
379 hns3_rm_dev_vlan_table(struct hns3_adapter *hns, uint16_t vlan_id)
381 struct hns3_user_vlan_table *vlan_entry;
382 struct hns3_pf *pf = &hns->pf;
384 LIST_FOREACH(vlan_entry, &pf->vlan_list, next) {
385 if (vlan_entry->vlan_id == vlan_id) {
386 if (vlan_entry->hd_tbl_status)
387 hns3_set_port_vlan_filter(hns, vlan_id, 0);
388 LIST_REMOVE(vlan_entry, next);
389 rte_free(vlan_entry);
396 hns3_add_dev_vlan_table(struct hns3_adapter *hns, uint16_t vlan_id,
399 struct hns3_user_vlan_table *vlan_entry;
400 struct hns3_hw *hw = &hns->hw;
401 struct hns3_pf *pf = &hns->pf;
403 LIST_FOREACH(vlan_entry, &pf->vlan_list, next) {
404 if (vlan_entry->vlan_id == vlan_id)
408 vlan_entry = rte_zmalloc("hns3_vlan_tbl", sizeof(*vlan_entry), 0);
409 if (vlan_entry == NULL) {
410 hns3_err(hw, "Failed to malloc hns3 vlan table");
414 vlan_entry->hd_tbl_status = writen_to_tbl;
415 vlan_entry->vlan_id = vlan_id;
417 LIST_INSERT_HEAD(&pf->vlan_list, vlan_entry, next);
421 hns3_restore_vlan_table(struct hns3_adapter *hns)
423 struct hns3_user_vlan_table *vlan_entry;
424 struct hns3_hw *hw = &hns->hw;
425 struct hns3_pf *pf = &hns->pf;
429 if (hw->port_base_vlan_cfg.state == HNS3_PORT_BASE_VLAN_ENABLE)
430 return hns3_vlan_pvid_configure(hns,
431 hw->port_base_vlan_cfg.pvid, 1);
433 LIST_FOREACH(vlan_entry, &pf->vlan_list, next) {
434 if (vlan_entry->hd_tbl_status) {
435 vlan_id = vlan_entry->vlan_id;
436 ret = hns3_set_port_vlan_filter(hns, vlan_id, 1);
446 hns3_vlan_filter_configure(struct hns3_adapter *hns, uint16_t vlan_id, int on)
448 struct hns3_hw *hw = &hns->hw;
449 bool writen_to_tbl = false;
453 * When vlan filter is enabled, hardware regards packets without vlan
454 * as packets with vlan 0. So, to receive packets without vlan, vlan id
455 * 0 is not allowed to be removed by rte_eth_dev_vlan_filter.
457 if (on == 0 && vlan_id == 0)
461 * When port base vlan enabled, we use port base vlan as the vlan
462 * filter condition. In this case, we don't update vlan filter table
463 * when user add new vlan or remove exist vlan, just update the
464 * vlan list. The vlan id in vlan list will be writen in vlan filter
465 * table until port base vlan disabled
467 if (hw->port_base_vlan_cfg.state == HNS3_PORT_BASE_VLAN_DISABLE) {
468 ret = hns3_set_port_vlan_filter(hns, vlan_id, on);
469 writen_to_tbl = true;
474 hns3_add_dev_vlan_table(hns, vlan_id, writen_to_tbl);
476 hns3_rm_dev_vlan_table(hns, vlan_id);
482 hns3_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
484 struct hns3_adapter *hns = dev->data->dev_private;
485 struct hns3_hw *hw = &hns->hw;
488 rte_spinlock_lock(&hw->lock);
489 ret = hns3_vlan_filter_configure(hns, vlan_id, on);
490 rte_spinlock_unlock(&hw->lock);
495 hns3_vlan_tpid_configure(struct hns3_adapter *hns, enum rte_vlan_type vlan_type,
498 struct hns3_rx_vlan_type_cfg_cmd *rx_req;
499 struct hns3_tx_vlan_type_cfg_cmd *tx_req;
500 struct hns3_hw *hw = &hns->hw;
501 struct hns3_cmd_desc desc;
504 if ((vlan_type != ETH_VLAN_TYPE_INNER &&
505 vlan_type != ETH_VLAN_TYPE_OUTER)) {
506 hns3_err(hw, "Unsupported vlan type, vlan_type =%d", vlan_type);
510 if (tpid != RTE_ETHER_TYPE_VLAN) {
511 hns3_err(hw, "Unsupported vlan tpid, vlan_type =%d", vlan_type);
515 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MAC_VLAN_TYPE_ID, false);
516 rx_req = (struct hns3_rx_vlan_type_cfg_cmd *)desc.data;
518 if (vlan_type == ETH_VLAN_TYPE_OUTER) {
519 rx_req->ot_fst_vlan_type = rte_cpu_to_le_16(tpid);
520 rx_req->ot_sec_vlan_type = rte_cpu_to_le_16(tpid);
521 } else if (vlan_type == ETH_VLAN_TYPE_INNER) {
522 rx_req->ot_fst_vlan_type = rte_cpu_to_le_16(tpid);
523 rx_req->ot_sec_vlan_type = rte_cpu_to_le_16(tpid);
524 rx_req->in_fst_vlan_type = rte_cpu_to_le_16(tpid);
525 rx_req->in_sec_vlan_type = rte_cpu_to_le_16(tpid);
528 ret = hns3_cmd_send(hw, &desc, 1);
530 hns3_err(hw, "Send rxvlan protocol type command fail, ret =%d",
535 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MAC_VLAN_INSERT, false);
537 tx_req = (struct hns3_tx_vlan_type_cfg_cmd *)desc.data;
538 tx_req->ot_vlan_type = rte_cpu_to_le_16(tpid);
539 tx_req->in_vlan_type = rte_cpu_to_le_16(tpid);
541 ret = hns3_cmd_send(hw, &desc, 1);
543 hns3_err(hw, "Send txvlan protocol type command fail, ret =%d",
549 hns3_vlan_tpid_set(struct rte_eth_dev *dev, enum rte_vlan_type vlan_type,
552 struct hns3_adapter *hns = dev->data->dev_private;
553 struct hns3_hw *hw = &hns->hw;
556 rte_spinlock_lock(&hw->lock);
557 ret = hns3_vlan_tpid_configure(hns, vlan_type, tpid);
558 rte_spinlock_unlock(&hw->lock);
563 hns3_set_vlan_rx_offload_cfg(struct hns3_adapter *hns,
564 struct hns3_rx_vtag_cfg *vcfg)
566 struct hns3_vport_vtag_rx_cfg_cmd *req;
567 struct hns3_hw *hw = &hns->hw;
568 struct hns3_cmd_desc desc;
573 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_VLAN_PORT_RX_CFG, false);
575 req = (struct hns3_vport_vtag_rx_cfg_cmd *)desc.data;
576 hns3_set_bit(req->vport_vlan_cfg, HNS3_REM_TAG1_EN_B,
577 vcfg->strip_tag1_en ? 1 : 0);
578 hns3_set_bit(req->vport_vlan_cfg, HNS3_REM_TAG2_EN_B,
579 vcfg->strip_tag2_en ? 1 : 0);
580 hns3_set_bit(req->vport_vlan_cfg, HNS3_SHOW_TAG1_EN_B,
581 vcfg->vlan1_vlan_prionly ? 1 : 0);
582 hns3_set_bit(req->vport_vlan_cfg, HNS3_SHOW_TAG2_EN_B,
583 vcfg->vlan2_vlan_prionly ? 1 : 0);
585 /* firmwall will ignore this configuration for PCI_REVISION_ID_HIP08 */
586 hns3_set_bit(req->vport_vlan_cfg, HNS3_DISCARD_TAG1_EN_B,
587 vcfg->strip_tag1_discard_en ? 1 : 0);
588 hns3_set_bit(req->vport_vlan_cfg, HNS3_DISCARD_TAG2_EN_B,
589 vcfg->strip_tag2_discard_en ? 1 : 0);
591 * In current version VF is not supported when PF is driven by DPDK
592 * driver, just need to configure parameters for PF vport.
594 vport_id = HNS3_PF_FUNC_ID;
595 req->vf_offset = vport_id / HNS3_VF_NUM_PER_CMD;
596 bitmap = 1 << (vport_id % HNS3_VF_NUM_PER_BYTE);
597 req->vf_bitmap[req->vf_offset] = bitmap;
599 ret = hns3_cmd_send(hw, &desc, 1);
601 hns3_err(hw, "Send port rxvlan cfg command fail, ret =%d", ret);
606 hns3_update_rx_offload_cfg(struct hns3_adapter *hns,
607 struct hns3_rx_vtag_cfg *vcfg)
609 struct hns3_pf *pf = &hns->pf;
610 memcpy(&pf->vtag_config.rx_vcfg, vcfg, sizeof(pf->vtag_config.rx_vcfg));
614 hns3_update_tx_offload_cfg(struct hns3_adapter *hns,
615 struct hns3_tx_vtag_cfg *vcfg)
617 struct hns3_pf *pf = &hns->pf;
618 memcpy(&pf->vtag_config.tx_vcfg, vcfg, sizeof(pf->vtag_config.tx_vcfg));
622 hns3_en_hw_strip_rxvtag(struct hns3_adapter *hns, bool enable)
624 struct hns3_rx_vtag_cfg rxvlan_cfg;
625 struct hns3_hw *hw = &hns->hw;
628 if (hw->port_base_vlan_cfg.state == HNS3_PORT_BASE_VLAN_DISABLE) {
629 rxvlan_cfg.strip_tag1_en = false;
630 rxvlan_cfg.strip_tag2_en = enable;
631 rxvlan_cfg.strip_tag2_discard_en = false;
633 rxvlan_cfg.strip_tag1_en = enable;
634 rxvlan_cfg.strip_tag2_en = true;
635 rxvlan_cfg.strip_tag2_discard_en = true;
638 rxvlan_cfg.strip_tag1_discard_en = false;
639 rxvlan_cfg.vlan1_vlan_prionly = false;
640 rxvlan_cfg.vlan2_vlan_prionly = false;
641 rxvlan_cfg.rx_vlan_offload_en = enable;
643 ret = hns3_set_vlan_rx_offload_cfg(hns, &rxvlan_cfg);
645 hns3_err(hw, "enable strip rx vtag failed, ret =%d", ret);
649 hns3_update_rx_offload_cfg(hns, &rxvlan_cfg);
655 hns3_set_vlan_filter_ctrl(struct hns3_hw *hw, uint8_t vlan_type,
656 uint8_t fe_type, bool filter_en, uint8_t vf_id)
658 struct hns3_vlan_filter_ctrl_cmd *req;
659 struct hns3_cmd_desc desc;
662 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_VLAN_FILTER_CTRL, false);
664 req = (struct hns3_vlan_filter_ctrl_cmd *)desc.data;
665 req->vlan_type = vlan_type;
666 req->vlan_fe = filter_en ? fe_type : 0;
669 ret = hns3_cmd_send(hw, &desc, 1);
671 hns3_err(hw, "set vlan filter fail, ret =%d", ret);
677 hns3_vlan_filter_init(struct hns3_adapter *hns)
679 struct hns3_hw *hw = &hns->hw;
682 ret = hns3_set_vlan_filter_ctrl(hw, HNS3_FILTER_TYPE_VF,
683 HNS3_FILTER_FE_EGRESS, false,
686 hns3_err(hw, "failed to init vf vlan filter, ret = %d", ret);
690 ret = hns3_set_vlan_filter_ctrl(hw, HNS3_FILTER_TYPE_PORT,
691 HNS3_FILTER_FE_INGRESS, false,
694 hns3_err(hw, "failed to init port vlan filter, ret = %d", ret);
700 hns3_enable_vlan_filter(struct hns3_adapter *hns, bool enable)
702 struct hns3_hw *hw = &hns->hw;
705 ret = hns3_set_vlan_filter_ctrl(hw, HNS3_FILTER_TYPE_PORT,
706 HNS3_FILTER_FE_INGRESS, enable,
709 hns3_err(hw, "failed to %s port vlan filter, ret = %d",
710 enable ? "enable" : "disable", ret);
716 hns3_vlan_offload_set(struct rte_eth_dev *dev, int mask)
718 struct hns3_adapter *hns = dev->data->dev_private;
719 struct hns3_hw *hw = &hns->hw;
720 struct rte_eth_rxmode *rxmode;
721 unsigned int tmp_mask;
725 rte_spinlock_lock(&hw->lock);
726 rxmode = &dev->data->dev_conf.rxmode;
727 tmp_mask = (unsigned int)mask;
728 if (tmp_mask & ETH_VLAN_FILTER_MASK) {
729 /* ignore vlan filter configuration during promiscuous mode */
730 if (!dev->data->promiscuous) {
731 /* Enable or disable VLAN filter */
732 enable = rxmode->offloads & DEV_RX_OFFLOAD_VLAN_FILTER ?
735 ret = hns3_enable_vlan_filter(hns, enable);
737 rte_spinlock_unlock(&hw->lock);
738 hns3_err(hw, "failed to %s rx filter, ret = %d",
739 enable ? "enable" : "disable", ret);
745 if (tmp_mask & ETH_VLAN_STRIP_MASK) {
746 /* Enable or disable VLAN stripping */
747 enable = rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP ?
750 ret = hns3_en_hw_strip_rxvtag(hns, enable);
752 rte_spinlock_unlock(&hw->lock);
753 hns3_err(hw, "failed to %s rx strip, ret = %d",
754 enable ? "enable" : "disable", ret);
759 rte_spinlock_unlock(&hw->lock);
765 hns3_set_vlan_tx_offload_cfg(struct hns3_adapter *hns,
766 struct hns3_tx_vtag_cfg *vcfg)
768 struct hns3_vport_vtag_tx_cfg_cmd *req;
769 struct hns3_cmd_desc desc;
770 struct hns3_hw *hw = &hns->hw;
775 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_VLAN_PORT_TX_CFG, false);
777 req = (struct hns3_vport_vtag_tx_cfg_cmd *)desc.data;
778 req->def_vlan_tag1 = vcfg->default_tag1;
779 req->def_vlan_tag2 = vcfg->default_tag2;
780 hns3_set_bit(req->vport_vlan_cfg, HNS3_ACCEPT_TAG1_B,
781 vcfg->accept_tag1 ? 1 : 0);
782 hns3_set_bit(req->vport_vlan_cfg, HNS3_ACCEPT_UNTAG1_B,
783 vcfg->accept_untag1 ? 1 : 0);
784 hns3_set_bit(req->vport_vlan_cfg, HNS3_ACCEPT_TAG2_B,
785 vcfg->accept_tag2 ? 1 : 0);
786 hns3_set_bit(req->vport_vlan_cfg, HNS3_ACCEPT_UNTAG2_B,
787 vcfg->accept_untag2 ? 1 : 0);
788 hns3_set_bit(req->vport_vlan_cfg, HNS3_PORT_INS_TAG1_EN_B,
789 vcfg->insert_tag1_en ? 1 : 0);
790 hns3_set_bit(req->vport_vlan_cfg, HNS3_PORT_INS_TAG2_EN_B,
791 vcfg->insert_tag2_en ? 1 : 0);
792 hns3_set_bit(req->vport_vlan_cfg, HNS3_CFG_NIC_ROCE_SEL_B, 0);
794 /* firmwall will ignore this configuration for PCI_REVISION_ID_HIP08 */
795 hns3_set_bit(req->vport_vlan_cfg, HNS3_TAG_SHIFT_MODE_EN_B,
796 vcfg->tag_shift_mode_en ? 1 : 0);
799 * In current version VF is not supported when PF is driven by DPDK
800 * driver, just need to configure parameters for PF vport.
802 vport_id = HNS3_PF_FUNC_ID;
803 req->vf_offset = vport_id / HNS3_VF_NUM_PER_CMD;
804 bitmap = 1 << (vport_id % HNS3_VF_NUM_PER_BYTE);
805 req->vf_bitmap[req->vf_offset] = bitmap;
807 ret = hns3_cmd_send(hw, &desc, 1);
809 hns3_err(hw, "Send port txvlan cfg command fail, ret =%d", ret);
815 hns3_vlan_txvlan_cfg(struct hns3_adapter *hns, uint16_t port_base_vlan_state,
818 struct hns3_hw *hw = &hns->hw;
819 struct hns3_tx_vtag_cfg txvlan_cfg;
822 if (port_base_vlan_state == HNS3_PORT_BASE_VLAN_DISABLE) {
823 txvlan_cfg.accept_tag1 = true;
824 txvlan_cfg.insert_tag1_en = false;
825 txvlan_cfg.default_tag1 = 0;
827 txvlan_cfg.accept_tag1 =
828 hw->vlan_mode == HNS3_HW_SHIFT_AND_DISCARD_MODE;
829 txvlan_cfg.insert_tag1_en = true;
830 txvlan_cfg.default_tag1 = pvid;
833 txvlan_cfg.accept_untag1 = true;
834 txvlan_cfg.accept_tag2 = true;
835 txvlan_cfg.accept_untag2 = true;
836 txvlan_cfg.insert_tag2_en = false;
837 txvlan_cfg.default_tag2 = 0;
838 txvlan_cfg.tag_shift_mode_en = true;
840 ret = hns3_set_vlan_tx_offload_cfg(hns, &txvlan_cfg);
842 hns3_err(hw, "pf vlan set pvid failed, pvid =%u ,ret =%d", pvid,
847 hns3_update_tx_offload_cfg(hns, &txvlan_cfg);
853 hns3_rm_all_vlan_table(struct hns3_adapter *hns, bool is_del_list)
855 struct hns3_user_vlan_table *vlan_entry;
856 struct hns3_pf *pf = &hns->pf;
858 LIST_FOREACH(vlan_entry, &pf->vlan_list, next) {
859 if (vlan_entry->hd_tbl_status) {
860 hns3_set_port_vlan_filter(hns, vlan_entry->vlan_id, 0);
861 vlan_entry->hd_tbl_status = false;
866 vlan_entry = LIST_FIRST(&pf->vlan_list);
868 LIST_REMOVE(vlan_entry, next);
869 rte_free(vlan_entry);
870 vlan_entry = LIST_FIRST(&pf->vlan_list);
876 hns3_add_all_vlan_table(struct hns3_adapter *hns)
878 struct hns3_user_vlan_table *vlan_entry;
879 struct hns3_pf *pf = &hns->pf;
881 LIST_FOREACH(vlan_entry, &pf->vlan_list, next) {
882 if (!vlan_entry->hd_tbl_status) {
883 hns3_set_port_vlan_filter(hns, vlan_entry->vlan_id, 1);
884 vlan_entry->hd_tbl_status = true;
890 hns3_remove_all_vlan_table(struct hns3_adapter *hns)
892 struct hns3_hw *hw = &hns->hw;
895 hns3_rm_all_vlan_table(hns, true);
896 if (hw->port_base_vlan_cfg.pvid != HNS3_INVALID_PVID) {
897 ret = hns3_set_port_vlan_filter(hns,
898 hw->port_base_vlan_cfg.pvid, 0);
900 hns3_err(hw, "Failed to remove all vlan table, ret =%d",
908 hns3_update_vlan_filter_entries(struct hns3_adapter *hns,
909 uint16_t port_base_vlan_state, uint16_t new_pvid)
911 struct hns3_hw *hw = &hns->hw;
915 if (port_base_vlan_state == HNS3_PORT_BASE_VLAN_ENABLE) {
916 old_pvid = hw->port_base_vlan_cfg.pvid;
917 if (old_pvid != HNS3_INVALID_PVID) {
918 ret = hns3_set_port_vlan_filter(hns, old_pvid, 0);
920 hns3_err(hw, "failed to remove old pvid %u, "
921 "ret = %d", old_pvid, ret);
926 hns3_rm_all_vlan_table(hns, false);
927 ret = hns3_set_port_vlan_filter(hns, new_pvid, 1);
929 hns3_err(hw, "failed to add new pvid %u, ret = %d",
934 ret = hns3_set_port_vlan_filter(hns, new_pvid, 0);
936 hns3_err(hw, "failed to remove pvid %u, ret = %d",
941 hns3_add_all_vlan_table(hns);
947 hns3_en_pvid_strip(struct hns3_adapter *hns, int on)
949 struct hns3_rx_vtag_cfg *old_cfg = &hns->pf.vtag_config.rx_vcfg;
950 struct hns3_rx_vtag_cfg rx_vlan_cfg;
954 rx_strip_en = old_cfg->rx_vlan_offload_en;
956 rx_vlan_cfg.strip_tag1_en = rx_strip_en;
957 rx_vlan_cfg.strip_tag2_en = true;
958 rx_vlan_cfg.strip_tag2_discard_en = true;
960 rx_vlan_cfg.strip_tag1_en = false;
961 rx_vlan_cfg.strip_tag2_en = rx_strip_en;
962 rx_vlan_cfg.strip_tag2_discard_en = false;
964 rx_vlan_cfg.strip_tag1_discard_en = false;
965 rx_vlan_cfg.vlan1_vlan_prionly = false;
966 rx_vlan_cfg.vlan2_vlan_prionly = false;
967 rx_vlan_cfg.rx_vlan_offload_en = old_cfg->rx_vlan_offload_en;
969 ret = hns3_set_vlan_rx_offload_cfg(hns, &rx_vlan_cfg);
973 hns3_update_rx_offload_cfg(hns, &rx_vlan_cfg);
978 hns3_vlan_pvid_configure(struct hns3_adapter *hns, uint16_t pvid, int on)
980 struct hns3_hw *hw = &hns->hw;
981 uint16_t port_base_vlan_state;
984 if (on == 0 && pvid != hw->port_base_vlan_cfg.pvid) {
985 if (hw->port_base_vlan_cfg.pvid != HNS3_INVALID_PVID)
986 hns3_warn(hw, "Invalid operation! As current pvid set "
987 "is %u, disable pvid %u is invalid",
988 hw->port_base_vlan_cfg.pvid, pvid);
992 port_base_vlan_state = on ? HNS3_PORT_BASE_VLAN_ENABLE :
993 HNS3_PORT_BASE_VLAN_DISABLE;
994 ret = hns3_vlan_txvlan_cfg(hns, port_base_vlan_state, pvid);
996 hns3_err(hw, "failed to config tx vlan for pvid, ret = %d",
1001 ret = hns3_en_pvid_strip(hns, on);
1003 hns3_err(hw, "failed to config rx vlan strip for pvid, "
1005 goto pvid_vlan_strip_fail;
1008 if (pvid == HNS3_INVALID_PVID)
1010 ret = hns3_update_vlan_filter_entries(hns, port_base_vlan_state, pvid);
1012 hns3_err(hw, "failed to update vlan filter entries, ret = %d",
1014 goto vlan_filter_set_fail;
1018 hw->port_base_vlan_cfg.state = port_base_vlan_state;
1019 hw->port_base_vlan_cfg.pvid = on ? pvid : HNS3_INVALID_PVID;
1022 vlan_filter_set_fail:
1023 err = hns3_en_pvid_strip(hns, hw->port_base_vlan_cfg.state ==
1024 HNS3_PORT_BASE_VLAN_ENABLE);
1026 hns3_err(hw, "fail to rollback pvid strip, ret = %d", err);
1028 pvid_vlan_strip_fail:
1029 err = hns3_vlan_txvlan_cfg(hns, hw->port_base_vlan_cfg.state,
1030 hw->port_base_vlan_cfg.pvid);
1032 hns3_err(hw, "fail to rollback txvlan status, ret = %d", err);
1038 hns3_vlan_pvid_set(struct rte_eth_dev *dev, uint16_t pvid, int on)
1040 struct hns3_adapter *hns = dev->data->dev_private;
1041 struct hns3_hw *hw = &hns->hw;
1042 bool pvid_en_state_change;
1043 uint16_t pvid_state;
1046 if (pvid > RTE_ETHER_MAX_VLAN_ID) {
1047 hns3_err(hw, "Invalid vlan_id = %u > %d", pvid,
1048 RTE_ETHER_MAX_VLAN_ID);
1053 * If PVID configuration state change, should refresh the PVID
1054 * configuration state in struct hns3_tx_queue/hns3_rx_queue.
1056 pvid_state = hw->port_base_vlan_cfg.state;
1057 if ((on && pvid_state == HNS3_PORT_BASE_VLAN_ENABLE) ||
1058 (!on && pvid_state == HNS3_PORT_BASE_VLAN_DISABLE))
1059 pvid_en_state_change = false;
1061 pvid_en_state_change = true;
1063 rte_spinlock_lock(&hw->lock);
1064 ret = hns3_vlan_pvid_configure(hns, pvid, on);
1065 rte_spinlock_unlock(&hw->lock);
1069 * Only in HNS3_SW_SHIFT_AND_MODE the PVID related operation in Tx/Rx
1070 * need be processed by PMD driver.
1072 if (pvid_en_state_change &&
1073 hw->vlan_mode == HNS3_SW_SHIFT_AND_DISCARD_MODE)
1074 hns3_update_all_queues_pvid_proc_en(hw);
1080 hns3_default_vlan_config(struct hns3_adapter *hns)
1082 struct hns3_hw *hw = &hns->hw;
1086 * When vlan filter is enabled, hardware regards packets without vlan
1087 * as packets with vlan 0. Therefore, if vlan 0 is not in the vlan
1088 * table, packets without vlan won't be received. So, add vlan 0 as
1091 ret = hns3_vlan_filter_configure(hns, 0, 1);
1093 hns3_err(hw, "default vlan 0 config failed, ret =%d", ret);
1098 hns3_init_vlan_config(struct hns3_adapter *hns)
1100 struct hns3_hw *hw = &hns->hw;
1104 * This function can be called in the initialization and reset process,
1105 * when in reset process, it means that hardware had been reseted
1106 * successfully and we need to restore the hardware configuration to
1107 * ensure that the hardware configuration remains unchanged before and
1110 if (__atomic_load_n(&hw->reset.resetting, __ATOMIC_RELAXED) == 0) {
1111 hw->port_base_vlan_cfg.state = HNS3_PORT_BASE_VLAN_DISABLE;
1112 hw->port_base_vlan_cfg.pvid = HNS3_INVALID_PVID;
1115 ret = hns3_vlan_filter_init(hns);
1117 hns3_err(hw, "vlan init fail in pf, ret =%d", ret);
1121 ret = hns3_vlan_tpid_configure(hns, ETH_VLAN_TYPE_INNER,
1122 RTE_ETHER_TYPE_VLAN);
1124 hns3_err(hw, "tpid set fail in pf, ret =%d", ret);
1129 * When in the reinit dev stage of the reset process, the following
1130 * vlan-related configurations may differ from those at initialization,
1131 * we will restore configurations to hardware in hns3_restore_vlan_table
1132 * and hns3_restore_vlan_conf later.
1134 if (__atomic_load_n(&hw->reset.resetting, __ATOMIC_RELAXED) == 0) {
1135 ret = hns3_vlan_pvid_configure(hns, HNS3_INVALID_PVID, 0);
1137 hns3_err(hw, "pvid set fail in pf, ret =%d", ret);
1141 ret = hns3_en_hw_strip_rxvtag(hns, false);
1143 hns3_err(hw, "rx strip configure fail in pf, ret =%d",
1149 return hns3_default_vlan_config(hns);
1153 hns3_restore_vlan_conf(struct hns3_adapter *hns)
1155 struct hns3_pf *pf = &hns->pf;
1156 struct hns3_hw *hw = &hns->hw;
1161 if (!hw->data->promiscuous) {
1162 /* restore vlan filter states */
1163 offloads = hw->data->dev_conf.rxmode.offloads;
1164 enable = offloads & DEV_RX_OFFLOAD_VLAN_FILTER ? true : false;
1165 ret = hns3_enable_vlan_filter(hns, enable);
1167 hns3_err(hw, "failed to restore vlan rx filter conf, "
1173 ret = hns3_set_vlan_rx_offload_cfg(hns, &pf->vtag_config.rx_vcfg);
1175 hns3_err(hw, "failed to restore vlan rx conf, ret = %d", ret);
1179 ret = hns3_set_vlan_tx_offload_cfg(hns, &pf->vtag_config.tx_vcfg);
1181 hns3_err(hw, "failed to restore vlan tx conf, ret = %d", ret);
1187 hns3_dev_configure_vlan(struct rte_eth_dev *dev)
1189 struct hns3_adapter *hns = dev->data->dev_private;
1190 struct rte_eth_dev_data *data = dev->data;
1191 struct rte_eth_txmode *txmode;
1192 struct hns3_hw *hw = &hns->hw;
1196 txmode = &data->dev_conf.txmode;
1197 if (txmode->hw_vlan_reject_tagged || txmode->hw_vlan_reject_untagged)
1199 "hw_vlan_reject_tagged or hw_vlan_reject_untagged "
1200 "configuration is not supported! Ignore these two "
1201 "parameters: hw_vlan_reject_tagged(%u), "
1202 "hw_vlan_reject_untagged(%u)",
1203 txmode->hw_vlan_reject_tagged,
1204 txmode->hw_vlan_reject_untagged);
1206 /* Apply vlan offload setting */
1207 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK;
1208 ret = hns3_vlan_offload_set(dev, mask);
1210 hns3_err(hw, "dev config rx vlan offload failed, ret = %d",
1216 * If pvid config is not set in rte_eth_conf, driver needn't to set
1217 * VLAN pvid related configuration to hardware.
1219 if (txmode->pvid == 0 && txmode->hw_vlan_insert_pvid == 0)
1222 /* Apply pvid setting */
1223 ret = hns3_vlan_pvid_set(dev, txmode->pvid,
1224 txmode->hw_vlan_insert_pvid);
1226 hns3_err(hw, "dev config vlan pvid(%u) failed, ret = %d",
1233 hns3_config_tso(struct hns3_hw *hw, unsigned int tso_mss_min,
1234 unsigned int tso_mss_max)
1236 struct hns3_cfg_tso_status_cmd *req;
1237 struct hns3_cmd_desc desc;
1240 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TSO_GENERIC_CONFIG, false);
1242 req = (struct hns3_cfg_tso_status_cmd *)desc.data;
1245 hns3_set_field(tso_mss, HNS3_TSO_MSS_MIN_M, HNS3_TSO_MSS_MIN_S,
1247 req->tso_mss_min = rte_cpu_to_le_16(tso_mss);
1250 hns3_set_field(tso_mss, HNS3_TSO_MSS_MIN_M, HNS3_TSO_MSS_MIN_S,
1252 req->tso_mss_max = rte_cpu_to_le_16(tso_mss);
1254 return hns3_cmd_send(hw, &desc, 1);
1258 hns3_set_umv_space(struct hns3_hw *hw, uint16_t space_size,
1259 uint16_t *allocated_size, bool is_alloc)
1261 struct hns3_umv_spc_alc_cmd *req;
1262 struct hns3_cmd_desc desc;
1265 req = (struct hns3_umv_spc_alc_cmd *)desc.data;
1266 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MAC_VLAN_ALLOCATE, false);
1267 hns3_set_bit(req->allocate, HNS3_UMV_SPC_ALC_B, is_alloc ? 0 : 1);
1268 req->space_size = rte_cpu_to_le_32(space_size);
1270 ret = hns3_cmd_send(hw, &desc, 1);
1272 PMD_INIT_LOG(ERR, "%s umv space failed for cmd_send, ret =%d",
1273 is_alloc ? "allocate" : "free", ret);
1277 if (is_alloc && allocated_size)
1278 *allocated_size = rte_le_to_cpu_32(desc.data[1]);
1284 hns3_init_umv_space(struct hns3_hw *hw)
1286 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1287 struct hns3_pf *pf = &hns->pf;
1288 uint16_t allocated_size = 0;
1291 ret = hns3_set_umv_space(hw, pf->wanted_umv_size, &allocated_size,
1296 if (allocated_size < pf->wanted_umv_size)
1297 PMD_INIT_LOG(WARNING, "Alloc umv space failed, want %u, get %u",
1298 pf->wanted_umv_size, allocated_size);
1300 pf->max_umv_size = (!!allocated_size) ? allocated_size :
1301 pf->wanted_umv_size;
1302 pf->used_umv_size = 0;
1307 hns3_uninit_umv_space(struct hns3_hw *hw)
1309 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1310 struct hns3_pf *pf = &hns->pf;
1313 if (pf->max_umv_size == 0)
1316 ret = hns3_set_umv_space(hw, pf->max_umv_size, NULL, false);
1320 pf->max_umv_size = 0;
1326 hns3_is_umv_space_full(struct hns3_hw *hw)
1328 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1329 struct hns3_pf *pf = &hns->pf;
1332 is_full = (pf->used_umv_size >= pf->max_umv_size);
1338 hns3_update_umv_space(struct hns3_hw *hw, bool is_free)
1340 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1341 struct hns3_pf *pf = &hns->pf;
1344 if (pf->used_umv_size > 0)
1345 pf->used_umv_size--;
1347 pf->used_umv_size++;
1351 hns3_prepare_mac_addr(struct hns3_mac_vlan_tbl_entry_cmd *new_req,
1352 const uint8_t *addr, bool is_mc)
1354 const unsigned char *mac_addr = addr;
1355 uint32_t high_val = ((uint32_t)mac_addr[3] << 24) |
1356 ((uint32_t)mac_addr[2] << 16) |
1357 ((uint32_t)mac_addr[1] << 8) |
1358 (uint32_t)mac_addr[0];
1359 uint32_t low_val = ((uint32_t)mac_addr[5] << 8) | (uint32_t)mac_addr[4];
1361 hns3_set_bit(new_req->flags, HNS3_MAC_VLAN_BIT0_EN_B, 1);
1363 hns3_set_bit(new_req->entry_type, HNS3_MAC_VLAN_BIT0_EN_B, 0);
1364 hns3_set_bit(new_req->entry_type, HNS3_MAC_VLAN_BIT1_EN_B, 1);
1365 hns3_set_bit(new_req->mc_mac_en, HNS3_MAC_VLAN_BIT0_EN_B, 1);
1368 new_req->mac_addr_hi32 = rte_cpu_to_le_32(high_val);
1369 new_req->mac_addr_lo16 = rte_cpu_to_le_16(low_val & 0xffff);
1373 hns3_get_mac_vlan_cmd_status(struct hns3_hw *hw, uint16_t cmdq_resp,
1375 enum hns3_mac_vlan_tbl_opcode op)
1378 hns3_err(hw, "cmdq execute failed for get_mac_vlan_cmd_status,status=%u",
1383 if (op == HNS3_MAC_VLAN_ADD) {
1384 if (resp_code == 0 || resp_code == 1) {
1386 } else if (resp_code == HNS3_ADD_UC_OVERFLOW) {
1387 hns3_err(hw, "add mac addr failed for uc_overflow");
1389 } else if (resp_code == HNS3_ADD_MC_OVERFLOW) {
1390 hns3_err(hw, "add mac addr failed for mc_overflow");
1394 hns3_err(hw, "add mac addr failed for undefined, code=%u",
1397 } else if (op == HNS3_MAC_VLAN_REMOVE) {
1398 if (resp_code == 0) {
1400 } else if (resp_code == 1) {
1401 hns3_dbg(hw, "remove mac addr failed for miss");
1405 hns3_err(hw, "remove mac addr failed for undefined, code=%u",
1408 } else if (op == HNS3_MAC_VLAN_LKUP) {
1409 if (resp_code == 0) {
1411 } else if (resp_code == 1) {
1412 hns3_dbg(hw, "lookup mac addr failed for miss");
1416 hns3_err(hw, "lookup mac addr failed for undefined, code=%u",
1421 hns3_err(hw, "unknown opcode for get_mac_vlan_cmd_status, opcode=%u",
1428 hns3_lookup_mac_vlan_tbl(struct hns3_hw *hw,
1429 struct hns3_mac_vlan_tbl_entry_cmd *req,
1430 struct hns3_cmd_desc *desc, bool is_mc)
1436 hns3_cmd_setup_basic_desc(&desc[0], HNS3_OPC_MAC_VLAN_ADD, true);
1438 desc[0].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
1439 memcpy(desc[0].data, req,
1440 sizeof(struct hns3_mac_vlan_tbl_entry_cmd));
1441 hns3_cmd_setup_basic_desc(&desc[1], HNS3_OPC_MAC_VLAN_ADD,
1443 desc[1].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
1444 hns3_cmd_setup_basic_desc(&desc[2], HNS3_OPC_MAC_VLAN_ADD,
1446 ret = hns3_cmd_send(hw, desc, HNS3_MC_MAC_VLAN_ADD_DESC_NUM);
1448 memcpy(desc[0].data, req,
1449 sizeof(struct hns3_mac_vlan_tbl_entry_cmd));
1450 ret = hns3_cmd_send(hw, desc, 1);
1453 hns3_err(hw, "lookup mac addr failed for cmd_send, ret =%d.",
1457 resp_code = (rte_le_to_cpu_32(desc[0].data[0]) >> 8) & 0xff;
1458 retval = rte_le_to_cpu_16(desc[0].retval);
1460 return hns3_get_mac_vlan_cmd_status(hw, retval, resp_code,
1461 HNS3_MAC_VLAN_LKUP);
1465 hns3_add_mac_vlan_tbl(struct hns3_hw *hw,
1466 struct hns3_mac_vlan_tbl_entry_cmd *req,
1467 struct hns3_cmd_desc *mc_desc)
1474 if (mc_desc == NULL) {
1475 struct hns3_cmd_desc desc;
1477 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MAC_VLAN_ADD, false);
1478 memcpy(desc.data, req,
1479 sizeof(struct hns3_mac_vlan_tbl_entry_cmd));
1480 ret = hns3_cmd_send(hw, &desc, 1);
1481 resp_code = (rte_le_to_cpu_32(desc.data[0]) >> 8) & 0xff;
1482 retval = rte_le_to_cpu_16(desc.retval);
1484 cfg_status = hns3_get_mac_vlan_cmd_status(hw, retval, resp_code,
1487 hns3_cmd_reuse_desc(&mc_desc[0], false);
1488 mc_desc[0].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
1489 hns3_cmd_reuse_desc(&mc_desc[1], false);
1490 mc_desc[1].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
1491 hns3_cmd_reuse_desc(&mc_desc[2], false);
1492 mc_desc[2].flag &= rte_cpu_to_le_16(~HNS3_CMD_FLAG_NEXT);
1493 memcpy(mc_desc[0].data, req,
1494 sizeof(struct hns3_mac_vlan_tbl_entry_cmd));
1495 mc_desc[0].retval = 0;
1496 ret = hns3_cmd_send(hw, mc_desc, HNS3_MC_MAC_VLAN_ADD_DESC_NUM);
1497 resp_code = (rte_le_to_cpu_32(mc_desc[0].data[0]) >> 8) & 0xff;
1498 retval = rte_le_to_cpu_16(mc_desc[0].retval);
1500 cfg_status = hns3_get_mac_vlan_cmd_status(hw, retval, resp_code,
1505 hns3_err(hw, "add mac addr failed for cmd_send, ret =%d", ret);
1513 hns3_remove_mac_vlan_tbl(struct hns3_hw *hw,
1514 struct hns3_mac_vlan_tbl_entry_cmd *req)
1516 struct hns3_cmd_desc desc;
1521 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MAC_VLAN_REMOVE, false);
1523 memcpy(desc.data, req, sizeof(struct hns3_mac_vlan_tbl_entry_cmd));
1525 ret = hns3_cmd_send(hw, &desc, 1);
1527 hns3_err(hw, "del mac addr failed for cmd_send, ret =%d", ret);
1530 resp_code = (rte_le_to_cpu_32(desc.data[0]) >> 8) & 0xff;
1531 retval = rte_le_to_cpu_16(desc.retval);
1533 return hns3_get_mac_vlan_cmd_status(hw, retval, resp_code,
1534 HNS3_MAC_VLAN_REMOVE);
1538 hns3_add_uc_addr_common(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
1540 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1541 struct hns3_mac_vlan_tbl_entry_cmd req;
1542 struct hns3_pf *pf = &hns->pf;
1543 struct hns3_cmd_desc desc[3];
1544 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1545 uint16_t egress_port = 0;
1549 /* check if mac addr is valid */
1550 if (!rte_is_valid_assigned_ether_addr(mac_addr)) {
1551 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1553 hns3_err(hw, "Add unicast mac addr err! addr(%s) invalid",
1558 memset(&req, 0, sizeof(req));
1561 * In current version VF is not supported when PF is driven by DPDK
1562 * driver, just need to configure parameters for PF vport.
1564 vf_id = HNS3_PF_FUNC_ID;
1565 hns3_set_field(egress_port, HNS3_MAC_EPORT_VFID_M,
1566 HNS3_MAC_EPORT_VFID_S, vf_id);
1568 req.egress_port = rte_cpu_to_le_16(egress_port);
1570 hns3_prepare_mac_addr(&req, mac_addr->addr_bytes, false);
1573 * Lookup the mac address in the mac_vlan table, and add
1574 * it if the entry is inexistent. Repeated unicast entry
1575 * is not allowed in the mac vlan table.
1577 ret = hns3_lookup_mac_vlan_tbl(hw, &req, desc, false);
1578 if (ret == -ENOENT) {
1579 if (!hns3_is_umv_space_full(hw)) {
1580 ret = hns3_add_mac_vlan_tbl(hw, &req, NULL);
1582 hns3_update_umv_space(hw, false);
1586 hns3_err(hw, "UC MAC table full(%u)", pf->used_umv_size);
1591 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE, mac_addr);
1593 /* check if we just hit the duplicate */
1595 hns3_dbg(hw, "mac addr(%s) has been in the MAC table", mac_str);
1599 hns3_err(hw, "PF failed to add unicast entry(%s) in the MAC table",
1606 hns3_add_mc_addr_common(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
1608 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1609 struct rte_ether_addr *addr;
1613 for (i = 0; i < hw->mc_addrs_num; i++) {
1614 addr = &hw->mc_addrs[i];
1615 /* Check if there are duplicate addresses */
1616 if (rte_is_same_ether_addr(addr, mac_addr)) {
1617 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1619 hns3_err(hw, "failed to add mc mac addr, same addrs"
1620 "(%s) is added by the set_mc_mac_addr_list "
1626 ret = hns3_add_mc_addr(hw, mac_addr);
1628 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1630 hns3_err(hw, "failed to add mc mac addr(%s), ret = %d",
1637 hns3_remove_mc_addr_common(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
1639 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1642 ret = hns3_remove_mc_addr(hw, mac_addr);
1644 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1646 hns3_err(hw, "failed to remove mc mac addr(%s), ret = %d",
1653 hns3_add_mac_addr(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
1654 uint32_t idx, __rte_unused uint32_t pool)
1656 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1657 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1660 rte_spinlock_lock(&hw->lock);
1663 * In hns3 network engine adding UC and MC mac address with different
1664 * commands with firmware. We need to determine whether the input
1665 * address is a UC or a MC address to call different commands.
1666 * By the way, it is recommended calling the API function named
1667 * rte_eth_dev_set_mc_addr_list to set the MC mac address, because
1668 * using the rte_eth_dev_mac_addr_add API function to set MC mac address
1669 * may affect the specifications of UC mac addresses.
1671 if (rte_is_multicast_ether_addr(mac_addr))
1672 ret = hns3_add_mc_addr_common(hw, mac_addr);
1674 ret = hns3_add_uc_addr_common(hw, mac_addr);
1677 rte_spinlock_unlock(&hw->lock);
1678 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1680 hns3_err(hw, "failed to add mac addr(%s), ret = %d", mac_str,
1686 hw->mac.default_addr_setted = true;
1687 rte_spinlock_unlock(&hw->lock);
1693 hns3_remove_uc_addr_common(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
1695 struct hns3_mac_vlan_tbl_entry_cmd req;
1696 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1699 /* check if mac addr is valid */
1700 if (!rte_is_valid_assigned_ether_addr(mac_addr)) {
1701 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1703 hns3_err(hw, "remove unicast mac addr err! addr(%s) invalid",
1708 memset(&req, 0, sizeof(req));
1709 hns3_set_bit(req.entry_type, HNS3_MAC_VLAN_BIT0_EN_B, 0);
1710 hns3_prepare_mac_addr(&req, mac_addr->addr_bytes, false);
1711 ret = hns3_remove_mac_vlan_tbl(hw, &req);
1712 if (ret == -ENOENT) /* mac addr isn't existent in the mac vlan table. */
1715 hns3_update_umv_space(hw, true);
1721 hns3_remove_mac_addr(struct rte_eth_dev *dev, uint32_t idx)
1723 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1724 /* index will be checked by upper level rte interface */
1725 struct rte_ether_addr *mac_addr = &dev->data->mac_addrs[idx];
1726 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1729 rte_spinlock_lock(&hw->lock);
1731 if (rte_is_multicast_ether_addr(mac_addr))
1732 ret = hns3_remove_mc_addr_common(hw, mac_addr);
1734 ret = hns3_remove_uc_addr_common(hw, mac_addr);
1735 rte_spinlock_unlock(&hw->lock);
1737 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1739 hns3_err(hw, "failed to remove mac addr(%s), ret = %d", mac_str,
1745 hns3_set_default_mac_addr(struct rte_eth_dev *dev,
1746 struct rte_ether_addr *mac_addr)
1748 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1749 struct rte_ether_addr *oaddr;
1750 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1751 bool default_addr_setted;
1752 bool rm_succes = false;
1756 * It has been guaranteed that input parameter named mac_addr is valid
1757 * address in the rte layer of DPDK framework.
1759 oaddr = (struct rte_ether_addr *)hw->mac.mac_addr;
1760 default_addr_setted = hw->mac.default_addr_setted;
1761 if (default_addr_setted && !!rte_is_same_ether_addr(mac_addr, oaddr))
1764 rte_spinlock_lock(&hw->lock);
1765 if (default_addr_setted) {
1766 ret = hns3_remove_uc_addr_common(hw, oaddr);
1768 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1770 hns3_warn(hw, "Remove old uc mac address(%s) fail: %d",
1777 ret = hns3_add_uc_addr_common(hw, mac_addr);
1779 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1781 hns3_err(hw, "Failed to set mac addr(%s): %d", mac_str, ret);
1782 goto err_add_uc_addr;
1785 ret = hns3_pause_addr_cfg(hw, mac_addr->addr_bytes);
1787 hns3_err(hw, "Failed to configure mac pause address: %d", ret);
1788 goto err_pause_addr_cfg;
1791 rte_ether_addr_copy(mac_addr,
1792 (struct rte_ether_addr *)hw->mac.mac_addr);
1793 hw->mac.default_addr_setted = true;
1794 rte_spinlock_unlock(&hw->lock);
1799 ret_val = hns3_remove_uc_addr_common(hw, mac_addr);
1801 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1804 "Failed to roll back to del setted mac addr(%s): %d",
1810 ret_val = hns3_add_uc_addr_common(hw, oaddr);
1812 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1815 "Failed to restore old uc mac addr(%s): %d",
1817 hw->mac.default_addr_setted = false;
1820 rte_spinlock_unlock(&hw->lock);
1826 hns3_configure_all_mac_addr(struct hns3_adapter *hns, bool del)
1828 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1829 struct hns3_hw *hw = &hns->hw;
1830 struct rte_ether_addr *addr;
1835 for (i = 0; i < HNS3_UC_MACADDR_NUM; i++) {
1836 addr = &hw->data->mac_addrs[i];
1837 if (rte_is_zero_ether_addr(addr))
1839 if (rte_is_multicast_ether_addr(addr))
1840 ret = del ? hns3_remove_mc_addr(hw, addr) :
1841 hns3_add_mc_addr(hw, addr);
1843 ret = del ? hns3_remove_uc_addr_common(hw, addr) :
1844 hns3_add_uc_addr_common(hw, addr);
1848 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1850 hns3_err(hw, "failed to %s mac addr(%s) index:%d "
1851 "ret = %d.", del ? "remove" : "restore",
1859 hns3_update_desc_vfid(struct hns3_cmd_desc *desc, uint8_t vfid, bool clr)
1861 #define HNS3_VF_NUM_IN_FIRST_DESC 192
1865 if (vfid < HNS3_VF_NUM_IN_FIRST_DESC) {
1866 word_num = vfid / 32;
1867 bit_num = vfid % 32;
1869 desc[1].data[word_num] &=
1870 rte_cpu_to_le_32(~(1UL << bit_num));
1872 desc[1].data[word_num] |=
1873 rte_cpu_to_le_32(1UL << bit_num);
1875 word_num = (vfid - HNS3_VF_NUM_IN_FIRST_DESC) / 32;
1876 bit_num = vfid % 32;
1878 desc[2].data[word_num] &=
1879 rte_cpu_to_le_32(~(1UL << bit_num));
1881 desc[2].data[word_num] |=
1882 rte_cpu_to_le_32(1UL << bit_num);
1887 hns3_add_mc_addr(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
1889 struct hns3_mac_vlan_tbl_entry_cmd req;
1890 struct hns3_cmd_desc desc[3];
1891 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1895 /* Check if mac addr is valid */
1896 if (!rte_is_multicast_ether_addr(mac_addr)) {
1897 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1899 hns3_err(hw, "failed to add mc mac addr, addr(%s) invalid",
1904 memset(&req, 0, sizeof(req));
1905 hns3_set_bit(req.entry_type, HNS3_MAC_VLAN_BIT0_EN_B, 0);
1906 hns3_prepare_mac_addr(&req, mac_addr->addr_bytes, true);
1907 ret = hns3_lookup_mac_vlan_tbl(hw, &req, desc, true);
1909 /* This mac addr do not exist, add new entry for it */
1910 memset(desc[0].data, 0, sizeof(desc[0].data));
1911 memset(desc[1].data, 0, sizeof(desc[0].data));
1912 memset(desc[2].data, 0, sizeof(desc[0].data));
1916 * In current version VF is not supported when PF is driven by DPDK
1917 * driver, just need to configure parameters for PF vport.
1919 vf_id = HNS3_PF_FUNC_ID;
1920 hns3_update_desc_vfid(desc, vf_id, false);
1921 ret = hns3_add_mac_vlan_tbl(hw, &req, desc);
1924 hns3_err(hw, "mc mac vlan table is full");
1925 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1927 hns3_err(hw, "failed to add mc mac addr(%s): %d", mac_str, ret);
1934 hns3_remove_mc_addr(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
1936 struct hns3_mac_vlan_tbl_entry_cmd req;
1937 struct hns3_cmd_desc desc[3];
1938 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1942 /* Check if mac addr is valid */
1943 if (!rte_is_multicast_ether_addr(mac_addr)) {
1944 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1946 hns3_err(hw, "Failed to rm mc mac addr, addr(%s) invalid",
1951 memset(&req, 0, sizeof(req));
1952 hns3_set_bit(req.entry_type, HNS3_MAC_VLAN_BIT0_EN_B, 0);
1953 hns3_prepare_mac_addr(&req, mac_addr->addr_bytes, true);
1954 ret = hns3_lookup_mac_vlan_tbl(hw, &req, desc, true);
1957 * This mac addr exist, remove this handle's VFID for it.
1958 * In current version VF is not supported when PF is driven by
1959 * DPDK driver, just need to configure parameters for PF vport.
1961 vf_id = HNS3_PF_FUNC_ID;
1962 hns3_update_desc_vfid(desc, vf_id, true);
1964 /* All the vfid is zero, so need to delete this entry */
1965 ret = hns3_remove_mac_vlan_tbl(hw, &req);
1966 } else if (ret == -ENOENT) {
1967 /* This mac addr doesn't exist. */
1972 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1974 hns3_err(hw, "Failed to rm mc mac addr(%s): %d", mac_str, ret);
1981 hns3_set_mc_addr_chk_param(struct hns3_hw *hw,
1982 struct rte_ether_addr *mc_addr_set,
1983 uint32_t nb_mc_addr)
1985 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1986 struct rte_ether_addr *addr;
1990 if (nb_mc_addr > HNS3_MC_MACADDR_NUM) {
1991 hns3_err(hw, "failed to set mc mac addr, nb_mc_addr(%u) "
1992 "invalid. valid range: 0~%d",
1993 nb_mc_addr, HNS3_MC_MACADDR_NUM);
1997 /* Check if input mac addresses are valid */
1998 for (i = 0; i < nb_mc_addr; i++) {
1999 addr = &mc_addr_set[i];
2000 if (!rte_is_multicast_ether_addr(addr)) {
2001 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
2004 "failed to set mc mac addr, addr(%s) invalid.",
2009 /* Check if there are duplicate addresses */
2010 for (j = i + 1; j < nb_mc_addr; j++) {
2011 if (rte_is_same_ether_addr(addr, &mc_addr_set[j])) {
2012 hns3_ether_format_addr(mac_str,
2013 RTE_ETHER_ADDR_FMT_SIZE,
2015 hns3_err(hw, "failed to set mc mac addr, "
2016 "addrs invalid. two same addrs(%s).",
2023 * Check if there are duplicate addresses between mac_addrs
2026 for (j = 0; j < HNS3_UC_MACADDR_NUM; j++) {
2027 if (rte_is_same_ether_addr(addr,
2028 &hw->data->mac_addrs[j])) {
2029 hns3_ether_format_addr(mac_str,
2030 RTE_ETHER_ADDR_FMT_SIZE,
2032 hns3_err(hw, "failed to set mc mac addr, "
2033 "addrs invalid. addrs(%s) has already "
2034 "configured in mac_addr add API",
2045 hns3_set_mc_addr_calc_addr(struct hns3_hw *hw,
2046 struct rte_ether_addr *mc_addr_set,
2048 struct rte_ether_addr *reserved_addr_list,
2049 int *reserved_addr_num,
2050 struct rte_ether_addr *add_addr_list,
2052 struct rte_ether_addr *rm_addr_list,
2055 struct rte_ether_addr *addr;
2056 int current_addr_num;
2057 int reserved_num = 0;
2065 /* Calculate the mc mac address list that should be removed */
2066 current_addr_num = hw->mc_addrs_num;
2067 for (i = 0; i < current_addr_num; i++) {
2068 addr = &hw->mc_addrs[i];
2070 for (j = 0; j < mc_addr_num; j++) {
2071 if (rte_is_same_ether_addr(addr, &mc_addr_set[j])) {
2078 rte_ether_addr_copy(addr, &rm_addr_list[rm_num]);
2081 rte_ether_addr_copy(addr,
2082 &reserved_addr_list[reserved_num]);
2087 /* Calculate the mc mac address list that should be added */
2088 for (i = 0; i < mc_addr_num; i++) {
2089 addr = &mc_addr_set[i];
2091 for (j = 0; j < current_addr_num; j++) {
2092 if (rte_is_same_ether_addr(addr, &hw->mc_addrs[j])) {
2099 rte_ether_addr_copy(addr, &add_addr_list[add_num]);
2104 /* Reorder the mc mac address list maintained by driver */
2105 for (i = 0; i < reserved_num; i++)
2106 rte_ether_addr_copy(&reserved_addr_list[i], &hw->mc_addrs[i]);
2108 for (i = 0; i < rm_num; i++) {
2109 num = reserved_num + i;
2110 rte_ether_addr_copy(&rm_addr_list[i], &hw->mc_addrs[num]);
2113 *reserved_addr_num = reserved_num;
2114 *add_addr_num = add_num;
2115 *rm_addr_num = rm_num;
2119 hns3_set_mc_mac_addr_list(struct rte_eth_dev *dev,
2120 struct rte_ether_addr *mc_addr_set,
2121 uint32_t nb_mc_addr)
2123 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2124 struct rte_ether_addr reserved_addr_list[HNS3_MC_MACADDR_NUM];
2125 struct rte_ether_addr add_addr_list[HNS3_MC_MACADDR_NUM];
2126 struct rte_ether_addr rm_addr_list[HNS3_MC_MACADDR_NUM];
2127 struct rte_ether_addr *addr;
2128 int reserved_addr_num;
2136 /* Check if input parameters are valid */
2137 ret = hns3_set_mc_addr_chk_param(hw, mc_addr_set, nb_mc_addr);
2141 rte_spinlock_lock(&hw->lock);
2144 * Calculate the mc mac address lists those should be removed and be
2145 * added, Reorder the mc mac address list maintained by driver.
2147 mc_addr_num = (int)nb_mc_addr;
2148 hns3_set_mc_addr_calc_addr(hw, mc_addr_set, mc_addr_num,
2149 reserved_addr_list, &reserved_addr_num,
2150 add_addr_list, &add_addr_num,
2151 rm_addr_list, &rm_addr_num);
2153 /* Remove mc mac addresses */
2154 for (i = 0; i < rm_addr_num; i++) {
2155 num = rm_addr_num - i - 1;
2156 addr = &rm_addr_list[num];
2157 ret = hns3_remove_mc_addr(hw, addr);
2159 rte_spinlock_unlock(&hw->lock);
2165 /* Add mc mac addresses */
2166 for (i = 0; i < add_addr_num; i++) {
2167 addr = &add_addr_list[i];
2168 ret = hns3_add_mc_addr(hw, addr);
2170 rte_spinlock_unlock(&hw->lock);
2174 num = reserved_addr_num + i;
2175 rte_ether_addr_copy(addr, &hw->mc_addrs[num]);
2178 rte_spinlock_unlock(&hw->lock);
2184 hns3_configure_all_mc_mac_addr(struct hns3_adapter *hns, bool del)
2186 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
2187 struct hns3_hw *hw = &hns->hw;
2188 struct rte_ether_addr *addr;
2193 for (i = 0; i < hw->mc_addrs_num; i++) {
2194 addr = &hw->mc_addrs[i];
2195 if (!rte_is_multicast_ether_addr(addr))
2198 ret = hns3_remove_mc_addr(hw, addr);
2200 ret = hns3_add_mc_addr(hw, addr);
2203 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
2205 hns3_dbg(hw, "%s mc mac addr: %s failed for pf: ret = %d",
2206 del ? "Remove" : "Restore", mac_str, ret);
2213 hns3_check_mq_mode(struct rte_eth_dev *dev)
2215 enum rte_eth_rx_mq_mode rx_mq_mode = dev->data->dev_conf.rxmode.mq_mode;
2216 enum rte_eth_tx_mq_mode tx_mq_mode = dev->data->dev_conf.txmode.mq_mode;
2217 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2218 struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2219 struct rte_eth_dcb_rx_conf *dcb_rx_conf;
2220 struct rte_eth_dcb_tx_conf *dcb_tx_conf;
2225 dcb_rx_conf = &dev->data->dev_conf.rx_adv_conf.dcb_rx_conf;
2226 dcb_tx_conf = &dev->data->dev_conf.tx_adv_conf.dcb_tx_conf;
2228 if (rx_mq_mode == ETH_MQ_RX_VMDQ_DCB_RSS) {
2229 hns3_err(hw, "ETH_MQ_RX_VMDQ_DCB_RSS is not supported. "
2230 "rx_mq_mode = %d", rx_mq_mode);
2234 if (rx_mq_mode == ETH_MQ_RX_VMDQ_DCB ||
2235 tx_mq_mode == ETH_MQ_TX_VMDQ_DCB) {
2236 hns3_err(hw, "ETH_MQ_RX_VMDQ_DCB and ETH_MQ_TX_VMDQ_DCB "
2237 "is not supported. rx_mq_mode = %d, tx_mq_mode = %d",
2238 rx_mq_mode, tx_mq_mode);
2242 if (rx_mq_mode & ETH_MQ_RX_DCB_FLAG) {
2243 if (dcb_rx_conf->nb_tcs > pf->tc_max) {
2244 hns3_err(hw, "nb_tcs(%u) > max_tc(%u) driver supported.",
2245 dcb_rx_conf->nb_tcs, pf->tc_max);
2249 if (!(dcb_rx_conf->nb_tcs == HNS3_4_TCS ||
2250 dcb_rx_conf->nb_tcs == HNS3_8_TCS)) {
2251 hns3_err(hw, "on ETH_MQ_RX_DCB_RSS mode, "
2252 "nb_tcs(%d) != %d or %d in rx direction.",
2253 dcb_rx_conf->nb_tcs, HNS3_4_TCS, HNS3_8_TCS);
2257 if (dcb_rx_conf->nb_tcs != dcb_tx_conf->nb_tcs) {
2258 hns3_err(hw, "num_tcs(%d) of tx is not equal to rx(%d)",
2259 dcb_tx_conf->nb_tcs, dcb_rx_conf->nb_tcs);
2263 for (i = 0; i < HNS3_MAX_USER_PRIO; i++) {
2264 if (dcb_rx_conf->dcb_tc[i] != dcb_tx_conf->dcb_tc[i]) {
2265 hns3_err(hw, "dcb_tc[%d] = %u in rx direction, "
2266 "is not equal to one in tx direction.",
2267 i, dcb_rx_conf->dcb_tc[i]);
2270 if (dcb_rx_conf->dcb_tc[i] > max_tc)
2271 max_tc = dcb_rx_conf->dcb_tc[i];
2274 num_tc = max_tc + 1;
2275 if (num_tc > dcb_rx_conf->nb_tcs) {
2276 hns3_err(hw, "max num_tc(%u) mapped > nb_tcs(%u)",
2277 num_tc, dcb_rx_conf->nb_tcs);
2286 hns3_check_dcb_cfg(struct rte_eth_dev *dev)
2288 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2290 if (!hns3_dev_dcb_supported(hw)) {
2291 hns3_err(hw, "this port does not support dcb configurations.");
2295 if (hw->current_fc_status == HNS3_FC_STATUS_MAC_PAUSE) {
2296 hns3_err(hw, "MAC pause enabled, cannot config dcb info.");
2300 /* Check multiple queue mode */
2301 return hns3_check_mq_mode(dev);
2305 hns3_bind_ring_with_vector(struct hns3_hw *hw, uint16_t vector_id, bool en,
2306 enum hns3_ring_type queue_type, uint16_t queue_id)
2308 struct hns3_cmd_desc desc;
2309 struct hns3_ctrl_vector_chain_cmd *req =
2310 (struct hns3_ctrl_vector_chain_cmd *)desc.data;
2311 enum hns3_opcode_type op;
2312 uint16_t tqp_type_and_id = 0;
2317 op = en ? HNS3_OPC_ADD_RING_TO_VECTOR : HNS3_OPC_DEL_RING_TO_VECTOR;
2318 hns3_cmd_setup_basic_desc(&desc, op, false);
2319 req->int_vector_id = hns3_get_field(vector_id, HNS3_TQP_INT_ID_L_M,
2320 HNS3_TQP_INT_ID_L_S);
2321 req->int_vector_id_h = hns3_get_field(vector_id, HNS3_TQP_INT_ID_H_M,
2322 HNS3_TQP_INT_ID_H_S);
2324 if (queue_type == HNS3_RING_TYPE_RX)
2325 gl = HNS3_RING_GL_RX;
2327 gl = HNS3_RING_GL_TX;
2331 hns3_set_field(tqp_type_and_id, HNS3_INT_TYPE_M, HNS3_INT_TYPE_S,
2333 hns3_set_field(tqp_type_and_id, HNS3_TQP_ID_M, HNS3_TQP_ID_S, queue_id);
2334 hns3_set_field(tqp_type_and_id, HNS3_INT_GL_IDX_M, HNS3_INT_GL_IDX_S,
2336 req->tqp_type_and_id[0] = rte_cpu_to_le_16(tqp_type_and_id);
2337 req->int_cause_num = 1;
2338 ret = hns3_cmd_send(hw, &desc, 1);
2340 hns3_err(hw, "%s TQP %u fail, vector_id = %u, ret = %d.",
2341 en ? "Map" : "Unmap", queue_id, vector_id, ret);
2349 hns3_init_ring_with_vector(struct hns3_hw *hw)
2356 * In hns3 network engine, vector 0 is always the misc interrupt of this
2357 * function, vector 1~N can be used respectively for the queues of the
2358 * function. Tx and Rx queues with the same number share the interrupt
2359 * vector. In the initialization clearing the all hardware mapping
2360 * relationship configurations between queues and interrupt vectors is
2361 * needed, so some error caused by the residual configurations, such as
2362 * the unexpected Tx interrupt, can be avoid.
2364 vec = hw->num_msi - 1; /* vector 0 for misc interrupt, not for queue */
2365 if (hw->intr.mapping_mode == HNS3_INTR_MAPPING_VEC_RSV_ONE)
2366 vec = vec - 1; /* the last interrupt is reserved */
2367 hw->intr_tqps_num = RTE_MIN(vec, hw->tqps_num);
2368 for (i = 0; i < hw->intr_tqps_num; i++) {
2370 * Set gap limiter/rate limiter/quanity limiter algorithm
2371 * configuration for interrupt coalesce of queue's interrupt.
2373 hns3_set_queue_intr_gl(hw, i, HNS3_RING_GL_RX,
2374 HNS3_TQP_INTR_GL_DEFAULT);
2375 hns3_set_queue_intr_gl(hw, i, HNS3_RING_GL_TX,
2376 HNS3_TQP_INTR_GL_DEFAULT);
2377 hns3_set_queue_intr_rl(hw, i, HNS3_TQP_INTR_RL_DEFAULT);
2379 * QL(quantity limiter) is not used currently, just set 0 to
2382 hns3_set_queue_intr_ql(hw, i, HNS3_TQP_INTR_QL_DEFAULT);
2384 ret = hns3_bind_ring_with_vector(hw, vec, false,
2385 HNS3_RING_TYPE_TX, i);
2387 PMD_INIT_LOG(ERR, "PF fail to unbind TX ring(%d) with "
2388 "vector: %u, ret=%d", i, vec, ret);
2392 ret = hns3_bind_ring_with_vector(hw, vec, false,
2393 HNS3_RING_TYPE_RX, i);
2395 PMD_INIT_LOG(ERR, "PF fail to unbind RX ring(%d) with "
2396 "vector: %u, ret=%d", i, vec, ret);
2405 hns3_refresh_mtu(struct rte_eth_dev *dev, struct rte_eth_conf *conf)
2407 struct hns3_adapter *hns = dev->data->dev_private;
2408 struct hns3_hw *hw = &hns->hw;
2409 uint32_t max_rx_pkt_len;
2413 if (!(conf->rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME))
2417 * If jumbo frames are enabled, MTU needs to be refreshed
2418 * according to the maximum RX packet length.
2420 max_rx_pkt_len = conf->rxmode.max_rx_pkt_len;
2421 if (max_rx_pkt_len > HNS3_MAX_FRAME_LEN ||
2422 max_rx_pkt_len <= HNS3_DEFAULT_FRAME_LEN) {
2423 hns3_err(hw, "maximum Rx packet length must be greater than %u "
2424 "and no more than %u when jumbo frame enabled.",
2425 (uint16_t)HNS3_DEFAULT_FRAME_LEN,
2426 (uint16_t)HNS3_MAX_FRAME_LEN);
2430 mtu = (uint16_t)HNS3_PKTLEN_TO_MTU(max_rx_pkt_len);
2431 ret = hns3_dev_mtu_set(dev, mtu);
2434 dev->data->mtu = mtu;
2440 hns3_dev_configure(struct rte_eth_dev *dev)
2442 struct hns3_adapter *hns = dev->data->dev_private;
2443 struct rte_eth_conf *conf = &dev->data->dev_conf;
2444 enum rte_eth_rx_mq_mode mq_mode = conf->rxmode.mq_mode;
2445 struct hns3_hw *hw = &hns->hw;
2446 uint16_t nb_rx_q = dev->data->nb_rx_queues;
2447 uint16_t nb_tx_q = dev->data->nb_tx_queues;
2448 struct rte_eth_rss_conf rss_conf;
2452 hw->cfg_max_queues = RTE_MAX(nb_rx_q, nb_tx_q);
2455 * Some versions of hardware network engine does not support
2456 * individually enable/disable/reset the Tx or Rx queue. These devices
2457 * must enable/disable/reset Tx and Rx queues at the same time. When the
2458 * numbers of Tx queues allocated by upper applications are not equal to
2459 * the numbers of Rx queues, driver needs to setup fake Tx or Rx queues
2460 * to adjust numbers of Tx/Rx queues. otherwise, network engine can not
2461 * work as usual. But these fake queues are imperceptible, and can not
2462 * be used by upper applications.
2464 if (!hns3_dev_indep_txrx_supported(hw)) {
2465 ret = hns3_set_fake_rx_or_tx_queues(dev, nb_rx_q, nb_tx_q);
2467 hns3_err(hw, "fail to set Rx/Tx fake queues, ret = %d.",
2473 hw->adapter_state = HNS3_NIC_CONFIGURING;
2474 if ((uint32_t)mq_mode & ETH_MQ_RX_DCB_FLAG) {
2475 ret = hns3_check_dcb_cfg(dev);
2480 /* When RSS is not configured, redirect the packet queue 0 */
2481 if ((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG) {
2482 conf->rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
2483 rss_conf = conf->rx_adv_conf.rss_conf;
2484 hw->rss_dis_flag = false;
2485 ret = hns3_dev_rss_hash_update(dev, &rss_conf);
2490 ret = hns3_refresh_mtu(dev, conf);
2494 ret = hns3_mbuf_dyn_rx_timestamp_register(dev, conf);
2498 ret = hns3_dev_configure_vlan(dev);
2502 /* config hardware GRO */
2503 gro_en = conf->rxmode.offloads & DEV_RX_OFFLOAD_TCP_LRO ? true : false;
2504 ret = hns3_config_gro(hw, gro_en);
2508 hns3_init_rx_ptype_tble(dev);
2509 hw->adapter_state = HNS3_NIC_CONFIGURED;
2514 (void)hns3_set_fake_rx_or_tx_queues(dev, 0, 0);
2515 hw->adapter_state = HNS3_NIC_INITIALIZED;
2521 hns3_set_mac_mtu(struct hns3_hw *hw, uint16_t new_mps)
2523 struct hns3_config_max_frm_size_cmd *req;
2524 struct hns3_cmd_desc desc;
2526 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_MAX_FRM_SIZE, false);
2528 req = (struct hns3_config_max_frm_size_cmd *)desc.data;
2529 req->max_frm_size = rte_cpu_to_le_16(new_mps);
2530 req->min_frm_size = RTE_ETHER_MIN_LEN;
2532 return hns3_cmd_send(hw, &desc, 1);
2536 hns3_config_mtu(struct hns3_hw *hw, uint16_t mps)
2538 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
2539 uint16_t original_mps = hns->pf.mps;
2543 ret = hns3_set_mac_mtu(hw, mps);
2545 hns3_err(hw, "failed to set mtu, ret = %d", ret);
2550 ret = hns3_buffer_alloc(hw);
2552 hns3_err(hw, "failed to allocate buffer, ret = %d", ret);
2559 err = hns3_set_mac_mtu(hw, original_mps);
2561 hns3_err(hw, "fail to rollback MTU, err = %d", err);
2564 hns->pf.mps = original_mps;
2570 hns3_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
2572 struct hns3_adapter *hns = dev->data->dev_private;
2573 uint32_t frame_size = mtu + HNS3_ETH_OVERHEAD;
2574 struct hns3_hw *hw = &hns->hw;
2575 bool is_jumbo_frame;
2578 if (dev->data->dev_started) {
2579 hns3_err(hw, "Failed to set mtu, port %u must be stopped "
2580 "before configuration", dev->data->port_id);
2584 rte_spinlock_lock(&hw->lock);
2585 is_jumbo_frame = frame_size > HNS3_DEFAULT_FRAME_LEN ? true : false;
2586 frame_size = RTE_MAX(frame_size, HNS3_DEFAULT_FRAME_LEN);
2589 * Maximum value of frame_size is HNS3_MAX_FRAME_LEN, so it can safely
2590 * assign to "uint16_t" type variable.
2592 ret = hns3_config_mtu(hw, (uint16_t)frame_size);
2594 rte_spinlock_unlock(&hw->lock);
2595 hns3_err(hw, "Failed to set mtu, port %u mtu %u: %d",
2596 dev->data->port_id, mtu, ret);
2601 dev->data->dev_conf.rxmode.offloads |=
2602 DEV_RX_OFFLOAD_JUMBO_FRAME;
2604 dev->data->dev_conf.rxmode.offloads &=
2605 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
2606 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
2607 rte_spinlock_unlock(&hw->lock);
2613 hns3_get_copper_port_speed_capa(uint32_t supported_speed)
2615 uint32_t speed_capa = 0;
2617 if (supported_speed & HNS3_PHY_LINK_SPEED_10M_HD_BIT)
2618 speed_capa |= ETH_LINK_SPEED_10M_HD;
2619 if (supported_speed & HNS3_PHY_LINK_SPEED_10M_BIT)
2620 speed_capa |= ETH_LINK_SPEED_10M;
2621 if (supported_speed & HNS3_PHY_LINK_SPEED_100M_HD_BIT)
2622 speed_capa |= ETH_LINK_SPEED_100M_HD;
2623 if (supported_speed & HNS3_PHY_LINK_SPEED_100M_BIT)
2624 speed_capa |= ETH_LINK_SPEED_100M;
2625 if (supported_speed & HNS3_PHY_LINK_SPEED_1000M_BIT)
2626 speed_capa |= ETH_LINK_SPEED_1G;
2632 hns3_get_firber_port_speed_capa(uint32_t supported_speed)
2634 uint32_t speed_capa = 0;
2636 if (supported_speed & HNS3_FIBER_LINK_SPEED_1G_BIT)
2637 speed_capa |= ETH_LINK_SPEED_1G;
2638 if (supported_speed & HNS3_FIBER_LINK_SPEED_10G_BIT)
2639 speed_capa |= ETH_LINK_SPEED_10G;
2640 if (supported_speed & HNS3_FIBER_LINK_SPEED_25G_BIT)
2641 speed_capa |= ETH_LINK_SPEED_25G;
2642 if (supported_speed & HNS3_FIBER_LINK_SPEED_40G_BIT)
2643 speed_capa |= ETH_LINK_SPEED_40G;
2644 if (supported_speed & HNS3_FIBER_LINK_SPEED_50G_BIT)
2645 speed_capa |= ETH_LINK_SPEED_50G;
2646 if (supported_speed & HNS3_FIBER_LINK_SPEED_100G_BIT)
2647 speed_capa |= ETH_LINK_SPEED_100G;
2648 if (supported_speed & HNS3_FIBER_LINK_SPEED_200G_BIT)
2649 speed_capa |= ETH_LINK_SPEED_200G;
2655 hns3_get_speed_capa(struct hns3_hw *hw)
2657 struct hns3_mac *mac = &hw->mac;
2658 uint32_t speed_capa;
2660 if (mac->media_type == HNS3_MEDIA_TYPE_COPPER)
2662 hns3_get_copper_port_speed_capa(mac->supported_speed);
2665 hns3_get_firber_port_speed_capa(mac->supported_speed);
2667 if (mac->support_autoneg == 0)
2668 speed_capa |= ETH_LINK_SPEED_FIXED;
2674 hns3_dev_infos_get(struct rte_eth_dev *eth_dev, struct rte_eth_dev_info *info)
2676 struct hns3_adapter *hns = eth_dev->data->dev_private;
2677 struct hns3_hw *hw = &hns->hw;
2678 uint16_t queue_num = hw->tqps_num;
2681 * In interrupt mode, 'max_rx_queues' is set based on the number of
2682 * MSI-X interrupt resources of the hardware.
2684 if (hw->data->dev_conf.intr_conf.rxq == 1)
2685 queue_num = hw->intr_tqps_num;
2687 info->max_rx_queues = queue_num;
2688 info->max_tx_queues = hw->tqps_num;
2689 info->max_rx_pktlen = HNS3_MAX_FRAME_LEN; /* CRC included */
2690 info->min_rx_bufsize = HNS3_MIN_BD_BUF_SIZE;
2691 info->max_mac_addrs = HNS3_UC_MACADDR_NUM;
2692 info->max_mtu = info->max_rx_pktlen - HNS3_ETH_OVERHEAD;
2693 info->max_lro_pkt_size = HNS3_MAX_LRO_SIZE;
2694 info->rx_offload_capa = (DEV_RX_OFFLOAD_IPV4_CKSUM |
2695 DEV_RX_OFFLOAD_TCP_CKSUM |
2696 DEV_RX_OFFLOAD_UDP_CKSUM |
2697 DEV_RX_OFFLOAD_SCTP_CKSUM |
2698 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
2699 DEV_RX_OFFLOAD_OUTER_UDP_CKSUM |
2700 DEV_RX_OFFLOAD_KEEP_CRC |
2701 DEV_RX_OFFLOAD_SCATTER |
2702 DEV_RX_OFFLOAD_VLAN_STRIP |
2703 DEV_RX_OFFLOAD_VLAN_FILTER |
2704 DEV_RX_OFFLOAD_JUMBO_FRAME |
2705 DEV_RX_OFFLOAD_RSS_HASH |
2706 DEV_RX_OFFLOAD_TCP_LRO);
2707 info->tx_offload_capa = (DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
2708 DEV_TX_OFFLOAD_IPV4_CKSUM |
2709 DEV_TX_OFFLOAD_TCP_CKSUM |
2710 DEV_TX_OFFLOAD_UDP_CKSUM |
2711 DEV_TX_OFFLOAD_SCTP_CKSUM |
2712 DEV_TX_OFFLOAD_MULTI_SEGS |
2713 DEV_TX_OFFLOAD_TCP_TSO |
2714 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
2715 DEV_TX_OFFLOAD_GRE_TNL_TSO |
2716 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
2717 DEV_TX_OFFLOAD_MBUF_FAST_FREE |
2718 hns3_txvlan_cap_get(hw));
2720 if (hns3_dev_outer_udp_cksum_supported(hw))
2721 info->tx_offload_capa |= DEV_TX_OFFLOAD_OUTER_UDP_CKSUM;
2723 if (hns3_dev_indep_txrx_supported(hw))
2724 info->dev_capa = RTE_ETH_DEV_CAPA_RUNTIME_RX_QUEUE_SETUP |
2725 RTE_ETH_DEV_CAPA_RUNTIME_TX_QUEUE_SETUP;
2727 if (hns3_dev_ptp_supported(hw))
2728 info->rx_offload_capa |= DEV_RX_OFFLOAD_TIMESTAMP;
2730 info->rx_desc_lim = (struct rte_eth_desc_lim) {
2731 .nb_max = HNS3_MAX_RING_DESC,
2732 .nb_min = HNS3_MIN_RING_DESC,
2733 .nb_align = HNS3_ALIGN_RING_DESC,
2736 info->tx_desc_lim = (struct rte_eth_desc_lim) {
2737 .nb_max = HNS3_MAX_RING_DESC,
2738 .nb_min = HNS3_MIN_RING_DESC,
2739 .nb_align = HNS3_ALIGN_RING_DESC,
2740 .nb_seg_max = HNS3_MAX_TSO_BD_PER_PKT,
2741 .nb_mtu_seg_max = hw->max_non_tso_bd_num,
2744 info->speed_capa = hns3_get_speed_capa(hw);
2745 info->default_rxconf = (struct rte_eth_rxconf) {
2746 .rx_free_thresh = HNS3_DEFAULT_RX_FREE_THRESH,
2748 * If there are no available Rx buffer descriptors, incoming
2749 * packets are always dropped by hardware based on hns3 network
2755 info->default_txconf = (struct rte_eth_txconf) {
2756 .tx_rs_thresh = HNS3_DEFAULT_TX_RS_THRESH,
2760 info->vmdq_queue_num = 0;
2762 info->reta_size = hw->rss_ind_tbl_size;
2763 info->hash_key_size = HNS3_RSS_KEY_SIZE;
2764 info->flow_type_rss_offloads = HNS3_ETH_RSS_SUPPORT;
2766 info->default_rxportconf.burst_size = HNS3_DEFAULT_PORT_CONF_BURST_SIZE;
2767 info->default_txportconf.burst_size = HNS3_DEFAULT_PORT_CONF_BURST_SIZE;
2768 info->default_rxportconf.nb_queues = HNS3_DEFAULT_PORT_CONF_QUEUES_NUM;
2769 info->default_txportconf.nb_queues = HNS3_DEFAULT_PORT_CONF_QUEUES_NUM;
2770 info->default_rxportconf.ring_size = HNS3_DEFAULT_RING_DESC;
2771 info->default_txportconf.ring_size = HNS3_DEFAULT_RING_DESC;
2777 hns3_fw_version_get(struct rte_eth_dev *eth_dev, char *fw_version,
2780 struct hns3_adapter *hns = eth_dev->data->dev_private;
2781 struct hns3_hw *hw = &hns->hw;
2782 uint32_t version = hw->fw_version;
2785 ret = snprintf(fw_version, fw_size, "%lu.%lu.%lu.%lu",
2786 hns3_get_field(version, HNS3_FW_VERSION_BYTE3_M,
2787 HNS3_FW_VERSION_BYTE3_S),
2788 hns3_get_field(version, HNS3_FW_VERSION_BYTE2_M,
2789 HNS3_FW_VERSION_BYTE2_S),
2790 hns3_get_field(version, HNS3_FW_VERSION_BYTE1_M,
2791 HNS3_FW_VERSION_BYTE1_S),
2792 hns3_get_field(version, HNS3_FW_VERSION_BYTE0_M,
2793 HNS3_FW_VERSION_BYTE0_S));
2794 ret += 1; /* add the size of '\0' */
2795 if (fw_size < (uint32_t)ret)
2802 hns3_update_port_link_info(struct rte_eth_dev *eth_dev)
2804 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
2807 (void)hns3_update_link_status(hw);
2809 ret = hns3_update_link_info(eth_dev);
2811 hw->mac.link_status = ETH_LINK_DOWN;
2817 hns3_setup_linkstatus(struct rte_eth_dev *eth_dev,
2818 struct rte_eth_link *new_link)
2820 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
2821 struct hns3_mac *mac = &hw->mac;
2823 switch (mac->link_speed) {
2824 case ETH_SPEED_NUM_10M:
2825 case ETH_SPEED_NUM_100M:
2826 case ETH_SPEED_NUM_1G:
2827 case ETH_SPEED_NUM_10G:
2828 case ETH_SPEED_NUM_25G:
2829 case ETH_SPEED_NUM_40G:
2830 case ETH_SPEED_NUM_50G:
2831 case ETH_SPEED_NUM_100G:
2832 case ETH_SPEED_NUM_200G:
2833 new_link->link_speed = mac->link_speed;
2836 if (mac->link_status)
2837 new_link->link_speed = ETH_SPEED_NUM_UNKNOWN;
2839 new_link->link_speed = ETH_SPEED_NUM_NONE;
2843 new_link->link_duplex = mac->link_duplex;
2844 new_link->link_status = mac->link_status ? ETH_LINK_UP : ETH_LINK_DOWN;
2845 new_link->link_autoneg = mac->link_autoneg;
2849 hns3_dev_link_update(struct rte_eth_dev *eth_dev, int wait_to_complete)
2851 #define HNS3_LINK_CHECK_INTERVAL 100 /* 100ms */
2852 #define HNS3_MAX_LINK_CHECK_TIMES 20 /* 2s (100 * 20ms) in total */
2854 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
2855 uint32_t retry_cnt = HNS3_MAX_LINK_CHECK_TIMES;
2856 struct hns3_mac *mac = &hw->mac;
2857 struct rte_eth_link new_link;
2861 ret = hns3_update_port_link_info(eth_dev);
2863 hns3_err(hw, "failed to get port link info, ret = %d.",
2868 if (!wait_to_complete || mac->link_status == ETH_LINK_UP)
2871 rte_delay_ms(HNS3_LINK_CHECK_INTERVAL);
2872 } while (retry_cnt--);
2874 memset(&new_link, 0, sizeof(new_link));
2875 hns3_setup_linkstatus(eth_dev, &new_link);
2877 return rte_eth_linkstatus_set(eth_dev, &new_link);
2881 hns3_parse_func_status(struct hns3_hw *hw, struct hns3_func_status_cmd *status)
2883 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
2884 struct hns3_pf *pf = &hns->pf;
2886 if (!(status->pf_state & HNS3_PF_STATE_DONE))
2889 pf->is_main_pf = (status->pf_state & HNS3_PF_STATE_MAIN) ? true : false;
2895 hns3_query_function_status(struct hns3_hw *hw)
2897 #define HNS3_QUERY_MAX_CNT 10
2898 #define HNS3_QUERY_SLEEP_MSCOEND 1
2899 struct hns3_func_status_cmd *req;
2900 struct hns3_cmd_desc desc;
2904 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_QUERY_FUNC_STATUS, true);
2905 req = (struct hns3_func_status_cmd *)desc.data;
2908 ret = hns3_cmd_send(hw, &desc, 1);
2910 PMD_INIT_LOG(ERR, "query function status failed %d",
2915 /* Check pf reset is done */
2919 rte_delay_ms(HNS3_QUERY_SLEEP_MSCOEND);
2920 } while (timeout++ < HNS3_QUERY_MAX_CNT);
2922 return hns3_parse_func_status(hw, req);
2926 hns3_get_pf_max_tqp_num(struct hns3_hw *hw)
2928 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
2929 struct hns3_pf *pf = &hns->pf;
2931 if (pf->tqp_config_mode == HNS3_FLEX_MAX_TQP_NUM_MODE) {
2933 * The total_tqps_num obtained from firmware is maximum tqp
2934 * numbers of this port, which should be used for PF and VFs.
2935 * There is no need for pf to have so many tqp numbers in
2936 * most cases. RTE_LIBRTE_HNS3_MAX_TQP_NUM_PER_PF,
2937 * coming from config file, is assigned to maximum queue number
2938 * for the PF of this port by user. So users can modify the
2939 * maximum queue number of PF according to their own application
2940 * scenarios, which is more flexible to use. In addition, many
2941 * memories can be saved due to allocating queue statistics
2942 * room according to the actual number of queues required. The
2943 * maximum queue number of PF for network engine with
2944 * revision_id greater than 0x30 is assigned by config file.
2946 if (RTE_LIBRTE_HNS3_MAX_TQP_NUM_PER_PF <= 0) {
2947 hns3_err(hw, "RTE_LIBRTE_HNS3_MAX_TQP_NUM_PER_PF(%d) "
2948 "must be greater than 0.",
2949 RTE_LIBRTE_HNS3_MAX_TQP_NUM_PER_PF);
2953 hw->tqps_num = RTE_MIN(RTE_LIBRTE_HNS3_MAX_TQP_NUM_PER_PF,
2954 hw->total_tqps_num);
2957 * Due to the limitation on the number of PF interrupts
2958 * available, the maximum queue number assigned to PF on
2959 * the network engine with revision_id 0x21 is 64.
2961 hw->tqps_num = RTE_MIN(hw->total_tqps_num,
2962 HNS3_MAX_TQP_NUM_HIP08_PF);
2969 hns3_query_pf_resource(struct hns3_hw *hw)
2971 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
2972 struct hns3_pf *pf = &hns->pf;
2973 struct hns3_pf_res_cmd *req;
2974 struct hns3_cmd_desc desc;
2977 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_QUERY_PF_RSRC, true);
2978 ret = hns3_cmd_send(hw, &desc, 1);
2980 PMD_INIT_LOG(ERR, "query pf resource failed %d", ret);
2984 req = (struct hns3_pf_res_cmd *)desc.data;
2985 hw->total_tqps_num = rte_le_to_cpu_16(req->tqp_num) +
2986 rte_le_to_cpu_16(req->ext_tqp_num);
2987 ret = hns3_get_pf_max_tqp_num(hw);
2991 pf->pkt_buf_size = rte_le_to_cpu_16(req->buf_size) << HNS3_BUF_UNIT_S;
2992 pf->func_num = rte_le_to_cpu_16(req->pf_own_fun_number);
2994 if (req->tx_buf_size)
2996 rte_le_to_cpu_16(req->tx_buf_size) << HNS3_BUF_UNIT_S;
2998 pf->tx_buf_size = HNS3_DEFAULT_TX_BUF;
3000 pf->tx_buf_size = roundup(pf->tx_buf_size, HNS3_BUF_SIZE_UNIT);
3002 if (req->dv_buf_size)
3004 rte_le_to_cpu_16(req->dv_buf_size) << HNS3_BUF_UNIT_S;
3006 pf->dv_buf_size = HNS3_DEFAULT_DV;
3008 pf->dv_buf_size = roundup(pf->dv_buf_size, HNS3_BUF_SIZE_UNIT);
3011 hns3_get_field(rte_le_to_cpu_16(req->nic_pf_intr_vector_number),
3012 HNS3_PF_VEC_NUM_M, HNS3_PF_VEC_NUM_S);
3018 hns3_parse_cfg(struct hns3_cfg *cfg, struct hns3_cmd_desc *desc)
3020 struct hns3_cfg_param_cmd *req;
3021 uint64_t mac_addr_tmp_high;
3022 uint8_t ext_rss_size_max;
3023 uint64_t mac_addr_tmp;
3026 req = (struct hns3_cfg_param_cmd *)desc[0].data;
3028 /* get the configuration */
3029 cfg->vmdq_vport_num = hns3_get_field(rte_le_to_cpu_32(req->param[0]),
3030 HNS3_CFG_VMDQ_M, HNS3_CFG_VMDQ_S);
3031 cfg->tc_num = hns3_get_field(rte_le_to_cpu_32(req->param[0]),
3032 HNS3_CFG_TC_NUM_M, HNS3_CFG_TC_NUM_S);
3033 cfg->tqp_desc_num = hns3_get_field(rte_le_to_cpu_32(req->param[0]),
3034 HNS3_CFG_TQP_DESC_N_M,
3035 HNS3_CFG_TQP_DESC_N_S);
3037 cfg->phy_addr = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
3038 HNS3_CFG_PHY_ADDR_M,
3039 HNS3_CFG_PHY_ADDR_S);
3040 cfg->media_type = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
3041 HNS3_CFG_MEDIA_TP_M,
3042 HNS3_CFG_MEDIA_TP_S);
3043 cfg->rx_buf_len = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
3044 HNS3_CFG_RX_BUF_LEN_M,
3045 HNS3_CFG_RX_BUF_LEN_S);
3046 /* get mac address */
3047 mac_addr_tmp = rte_le_to_cpu_32(req->param[2]);
3048 mac_addr_tmp_high = hns3_get_field(rte_le_to_cpu_32(req->param[3]),
3049 HNS3_CFG_MAC_ADDR_H_M,
3050 HNS3_CFG_MAC_ADDR_H_S);
3052 mac_addr_tmp |= (mac_addr_tmp_high << 31) << 1;
3054 cfg->default_speed = hns3_get_field(rte_le_to_cpu_32(req->param[3]),
3055 HNS3_CFG_DEFAULT_SPEED_M,
3056 HNS3_CFG_DEFAULT_SPEED_S);
3057 cfg->rss_size_max = hns3_get_field(rte_le_to_cpu_32(req->param[3]),
3058 HNS3_CFG_RSS_SIZE_M,
3059 HNS3_CFG_RSS_SIZE_S);
3061 for (i = 0; i < RTE_ETHER_ADDR_LEN; i++)
3062 cfg->mac_addr[i] = (mac_addr_tmp >> (8 * i)) & 0xff;
3064 req = (struct hns3_cfg_param_cmd *)desc[1].data;
3065 cfg->numa_node_map = rte_le_to_cpu_32(req->param[0]);
3067 cfg->speed_ability = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
3068 HNS3_CFG_SPEED_ABILITY_M,
3069 HNS3_CFG_SPEED_ABILITY_S);
3070 cfg->umv_space = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
3071 HNS3_CFG_UMV_TBL_SPACE_M,
3072 HNS3_CFG_UMV_TBL_SPACE_S);
3073 if (!cfg->umv_space)
3074 cfg->umv_space = HNS3_DEFAULT_UMV_SPACE_PER_PF;
3076 ext_rss_size_max = hns3_get_field(rte_le_to_cpu_32(req->param[2]),
3077 HNS3_CFG_EXT_RSS_SIZE_M,
3078 HNS3_CFG_EXT_RSS_SIZE_S);
3081 * Field ext_rss_size_max obtained from firmware will be more flexible
3082 * for future changes and expansions, which is an exponent of 2, instead
3083 * of reading out directly. If this field is not zero, hns3 PF PMD
3084 * driver uses it as rss_size_max under one TC. Device, whose revision
3085 * id is greater than or equal to PCI_REVISION_ID_HIP09_A, obtains the
3086 * maximum number of queues supported under a TC through this field.
3088 if (ext_rss_size_max)
3089 cfg->rss_size_max = 1U << ext_rss_size_max;
3092 /* hns3_get_board_cfg: query the static parameter from NCL_config file in flash
3093 * @hw: pointer to struct hns3_hw
3094 * @hcfg: the config structure to be getted
3097 hns3_get_board_cfg(struct hns3_hw *hw, struct hns3_cfg *hcfg)
3099 struct hns3_cmd_desc desc[HNS3_PF_CFG_DESC_NUM];
3100 struct hns3_cfg_param_cmd *req;
3105 for (i = 0; i < HNS3_PF_CFG_DESC_NUM; i++) {
3107 req = (struct hns3_cfg_param_cmd *)desc[i].data;
3108 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_GET_CFG_PARAM,
3110 hns3_set_field(offset, HNS3_CFG_OFFSET_M, HNS3_CFG_OFFSET_S,
3111 i * HNS3_CFG_RD_LEN_BYTES);
3112 /* Len should be divided by 4 when send to hardware */
3113 hns3_set_field(offset, HNS3_CFG_RD_LEN_M, HNS3_CFG_RD_LEN_S,
3114 HNS3_CFG_RD_LEN_BYTES / HNS3_CFG_RD_LEN_UNIT);
3115 req->offset = rte_cpu_to_le_32(offset);
3118 ret = hns3_cmd_send(hw, desc, HNS3_PF_CFG_DESC_NUM);
3120 PMD_INIT_LOG(ERR, "get config failed %d.", ret);
3124 hns3_parse_cfg(hcfg, desc);
3130 hns3_parse_speed(int speed_cmd, uint32_t *speed)
3132 switch (speed_cmd) {
3133 case HNS3_CFG_SPEED_10M:
3134 *speed = ETH_SPEED_NUM_10M;
3136 case HNS3_CFG_SPEED_100M:
3137 *speed = ETH_SPEED_NUM_100M;
3139 case HNS3_CFG_SPEED_1G:
3140 *speed = ETH_SPEED_NUM_1G;
3142 case HNS3_CFG_SPEED_10G:
3143 *speed = ETH_SPEED_NUM_10G;
3145 case HNS3_CFG_SPEED_25G:
3146 *speed = ETH_SPEED_NUM_25G;
3148 case HNS3_CFG_SPEED_40G:
3149 *speed = ETH_SPEED_NUM_40G;
3151 case HNS3_CFG_SPEED_50G:
3152 *speed = ETH_SPEED_NUM_50G;
3154 case HNS3_CFG_SPEED_100G:
3155 *speed = ETH_SPEED_NUM_100G;
3157 case HNS3_CFG_SPEED_200G:
3158 *speed = ETH_SPEED_NUM_200G;
3168 hns3_set_default_dev_specifications(struct hns3_hw *hw)
3170 hw->max_non_tso_bd_num = HNS3_MAX_NON_TSO_BD_PER_PKT;
3171 hw->rss_ind_tbl_size = HNS3_RSS_IND_TBL_SIZE;
3172 hw->rss_key_size = HNS3_RSS_KEY_SIZE;
3173 hw->max_tm_rate = HNS3_ETHER_MAX_RATE;
3174 hw->intr.int_ql_max = HNS3_INTR_QL_NONE;
3178 hns3_parse_dev_specifications(struct hns3_hw *hw, struct hns3_cmd_desc *desc)
3180 struct hns3_dev_specs_0_cmd *req0;
3182 req0 = (struct hns3_dev_specs_0_cmd *)desc[0].data;
3184 hw->max_non_tso_bd_num = req0->max_non_tso_bd_num;
3185 hw->rss_ind_tbl_size = rte_le_to_cpu_16(req0->rss_ind_tbl_size);
3186 hw->rss_key_size = rte_le_to_cpu_16(req0->rss_key_size);
3187 hw->max_tm_rate = rte_le_to_cpu_32(req0->max_tm_rate);
3188 hw->intr.int_ql_max = rte_le_to_cpu_16(req0->intr_ql_max);
3192 hns3_check_dev_specifications(struct hns3_hw *hw)
3194 if (hw->rss_ind_tbl_size == 0 ||
3195 hw->rss_ind_tbl_size > HNS3_RSS_IND_TBL_SIZE_MAX) {
3196 hns3_err(hw, "the size of hash lookup table configured (%u)"
3197 " exceeds the maximum(%u)", hw->rss_ind_tbl_size,
3198 HNS3_RSS_IND_TBL_SIZE_MAX);
3206 hns3_query_dev_specifications(struct hns3_hw *hw)
3208 struct hns3_cmd_desc desc[HNS3_QUERY_DEV_SPECS_BD_NUM];
3212 for (i = 0; i < HNS3_QUERY_DEV_SPECS_BD_NUM - 1; i++) {
3213 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_QUERY_DEV_SPECS,
3215 desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
3217 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_QUERY_DEV_SPECS, true);
3219 ret = hns3_cmd_send(hw, desc, HNS3_QUERY_DEV_SPECS_BD_NUM);
3223 hns3_parse_dev_specifications(hw, desc);
3225 return hns3_check_dev_specifications(hw);
3229 hns3_get_capability(struct hns3_hw *hw)
3231 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3232 struct rte_pci_device *pci_dev;
3233 struct hns3_pf *pf = &hns->pf;
3234 struct rte_eth_dev *eth_dev;
3239 eth_dev = &rte_eth_devices[hw->data->port_id];
3240 pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
3241 device_id = pci_dev->id.device_id;
3243 if (device_id == HNS3_DEV_ID_25GE_RDMA ||
3244 device_id == HNS3_DEV_ID_50GE_RDMA ||
3245 device_id == HNS3_DEV_ID_100G_RDMA_MACSEC ||
3246 device_id == HNS3_DEV_ID_200G_RDMA)
3247 hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_DCB_B, 1);
3249 /* Get PCI revision id */
3250 ret = rte_pci_read_config(pci_dev, &revision, HNS3_PCI_REVISION_ID_LEN,
3251 HNS3_PCI_REVISION_ID);
3252 if (ret != HNS3_PCI_REVISION_ID_LEN) {
3253 PMD_INIT_LOG(ERR, "failed to read pci revision id, ret = %d",
3257 hw->revision = revision;
3259 if (revision < PCI_REVISION_ID_HIP09_A) {
3260 hns3_set_default_dev_specifications(hw);
3261 hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_RSV_ONE;
3262 hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_2US;
3263 hw->tso_mode = HNS3_TSO_SW_CAL_PSEUDO_H_CSUM;
3264 hw->vlan_mode = HNS3_SW_SHIFT_AND_DISCARD_MODE;
3265 hw->drop_stats_mode = HNS3_PKTS_DROP_STATS_MODE1;
3266 hw->min_tx_pkt_len = HNS3_HIP08_MIN_TX_PKT_LEN;
3267 pf->tqp_config_mode = HNS3_FIXED_MAX_TQP_NUM_MODE;
3268 hw->rss_info.ipv6_sctp_offload_supported = false;
3269 hw->udp_cksum_mode = HNS3_SPECIAL_PORT_SW_CKSUM_MODE;
3273 ret = hns3_query_dev_specifications(hw);
3276 "failed to query dev specifications, ret = %d",
3281 hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_ALL;
3282 hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_1US;
3283 hw->tso_mode = HNS3_TSO_HW_CAL_PSEUDO_H_CSUM;
3284 hw->vlan_mode = HNS3_HW_SHIFT_AND_DISCARD_MODE;
3285 hw->drop_stats_mode = HNS3_PKTS_DROP_STATS_MODE2;
3286 hw->min_tx_pkt_len = HNS3_HIP09_MIN_TX_PKT_LEN;
3287 pf->tqp_config_mode = HNS3_FLEX_MAX_TQP_NUM_MODE;
3288 hw->rss_info.ipv6_sctp_offload_supported = true;
3289 hw->udp_cksum_mode = HNS3_SPECIAL_PORT_HW_CKSUM_MODE;
3295 hns3_check_media_type(struct hns3_hw *hw, uint8_t media_type)
3299 switch (media_type) {
3300 case HNS3_MEDIA_TYPE_COPPER:
3301 if (!hns3_dev_copper_supported(hw)) {
3303 "Media type is copper, not supported.");
3309 case HNS3_MEDIA_TYPE_FIBER:
3312 case HNS3_MEDIA_TYPE_BACKPLANE:
3313 PMD_INIT_LOG(ERR, "Media type is Backplane, not supported.");
3317 PMD_INIT_LOG(ERR, "Unknown media type = %u!", media_type);
3326 hns3_get_board_configuration(struct hns3_hw *hw)
3328 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3329 struct hns3_pf *pf = &hns->pf;
3330 struct hns3_cfg cfg;
3333 ret = hns3_get_board_cfg(hw, &cfg);
3335 PMD_INIT_LOG(ERR, "get board config failed %d", ret);
3339 ret = hns3_check_media_type(hw, cfg.media_type);
3343 hw->mac.media_type = cfg.media_type;
3344 hw->rss_size_max = cfg.rss_size_max;
3345 hw->rss_dis_flag = false;
3346 memcpy(hw->mac.mac_addr, cfg.mac_addr, RTE_ETHER_ADDR_LEN);
3347 hw->mac.phy_addr = cfg.phy_addr;
3348 hw->mac.default_addr_setted = false;
3349 hw->num_tx_desc = cfg.tqp_desc_num;
3350 hw->num_rx_desc = cfg.tqp_desc_num;
3351 hw->dcb_info.num_pg = 1;
3352 hw->dcb_info.hw_pfc_map = 0;
3354 ret = hns3_parse_speed(cfg.default_speed, &hw->mac.link_speed);
3356 PMD_INIT_LOG(ERR, "Get wrong speed %u, ret = %d",
3357 cfg.default_speed, ret);
3361 pf->tc_max = cfg.tc_num;
3362 if (pf->tc_max > HNS3_MAX_TC_NUM || pf->tc_max < 1) {
3363 PMD_INIT_LOG(WARNING,
3364 "Get TC num(%u) from flash, set TC num to 1",
3369 /* Dev does not support DCB */
3370 if (!hns3_dev_dcb_supported(hw)) {
3374 pf->pfc_max = pf->tc_max;
3376 hw->dcb_info.num_tc = 1;
3377 hw->alloc_rss_size = RTE_MIN(hw->rss_size_max,
3378 hw->tqps_num / hw->dcb_info.num_tc);
3379 hns3_set_bit(hw->hw_tc_map, 0, 1);
3380 pf->tx_sch_mode = HNS3_FLAG_TC_BASE_SCH_MODE;
3382 pf->wanted_umv_size = cfg.umv_space;
3388 hns3_get_configuration(struct hns3_hw *hw)
3392 ret = hns3_query_function_status(hw);
3394 PMD_INIT_LOG(ERR, "Failed to query function status: %d.", ret);
3398 /* Get device capability */
3399 ret = hns3_get_capability(hw);
3401 PMD_INIT_LOG(ERR, "failed to get device capability: %d.", ret);
3405 /* Get pf resource */
3406 ret = hns3_query_pf_resource(hw);
3408 PMD_INIT_LOG(ERR, "Failed to query pf resource: %d", ret);
3412 ret = hns3_get_board_configuration(hw);
3414 PMD_INIT_LOG(ERR, "failed to get board configuration: %d", ret);
3418 ret = hns3_query_dev_fec_info(hw);
3421 "failed to query FEC information, ret = %d", ret);
3427 hns3_map_tqps_to_func(struct hns3_hw *hw, uint16_t func_id, uint16_t tqp_pid,
3428 uint16_t tqp_vid, bool is_pf)
3430 struct hns3_tqp_map_cmd *req;
3431 struct hns3_cmd_desc desc;
3434 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_SET_TQP_MAP, false);
3436 req = (struct hns3_tqp_map_cmd *)desc.data;
3437 req->tqp_id = rte_cpu_to_le_16(tqp_pid);
3438 req->tqp_vf = func_id;
3439 req->tqp_flag = 1 << HNS3_TQP_MAP_EN_B;
3441 req->tqp_flag |= (1 << HNS3_TQP_MAP_TYPE_B);
3442 req->tqp_vid = rte_cpu_to_le_16(tqp_vid);
3444 ret = hns3_cmd_send(hw, &desc, 1);
3446 PMD_INIT_LOG(ERR, "TQP map failed %d", ret);
3452 hns3_map_tqp(struct hns3_hw *hw)
3458 * In current version, VF is not supported when PF is driven by DPDK
3459 * driver, so we assign total tqps_num tqps allocated to this port
3462 for (i = 0; i < hw->total_tqps_num; i++) {
3463 ret = hns3_map_tqps_to_func(hw, HNS3_PF_FUNC_ID, i, i, true);
3472 hns3_cfg_mac_speed_dup_hw(struct hns3_hw *hw, uint32_t speed, uint8_t duplex)
3474 struct hns3_config_mac_speed_dup_cmd *req;
3475 struct hns3_cmd_desc desc;
3478 req = (struct hns3_config_mac_speed_dup_cmd *)desc.data;
3480 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_SPEED_DUP, false);
3482 hns3_set_bit(req->speed_dup, HNS3_CFG_DUPLEX_B, !!duplex ? 1 : 0);
3485 case ETH_SPEED_NUM_10M:
3486 hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
3487 HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_10M);
3489 case ETH_SPEED_NUM_100M:
3490 hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
3491 HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_100M);
3493 case ETH_SPEED_NUM_1G:
3494 hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
3495 HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_1G);
3497 case ETH_SPEED_NUM_10G:
3498 hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
3499 HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_10G);
3501 case ETH_SPEED_NUM_25G:
3502 hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
3503 HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_25G);
3505 case ETH_SPEED_NUM_40G:
3506 hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
3507 HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_40G);
3509 case ETH_SPEED_NUM_50G:
3510 hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
3511 HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_50G);
3513 case ETH_SPEED_NUM_100G:
3514 hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
3515 HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_100G);
3517 case ETH_SPEED_NUM_200G:
3518 hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
3519 HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_200G);
3522 PMD_INIT_LOG(ERR, "invalid speed (%u)", speed);
3526 hns3_set_bit(req->mac_change_fec_en, HNS3_CFG_MAC_SPEED_CHANGE_EN_B, 1);
3528 ret = hns3_cmd_send(hw, &desc, 1);
3530 PMD_INIT_LOG(ERR, "mac speed/duplex config cmd failed %d", ret);
3536 hns3_tx_buffer_calc(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3538 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3539 struct hns3_pf *pf = &hns->pf;
3540 struct hns3_priv_buf *priv;
3541 uint32_t i, total_size;
3543 total_size = pf->pkt_buf_size;
3545 /* alloc tx buffer for all enabled tc */
3546 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3547 priv = &buf_alloc->priv_buf[i];
3549 if (hw->hw_tc_map & BIT(i)) {
3550 if (total_size < pf->tx_buf_size)
3553 priv->tx_buf_size = pf->tx_buf_size;
3555 priv->tx_buf_size = 0;
3557 total_size -= priv->tx_buf_size;
3564 hns3_tx_buffer_alloc(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3566 /* TX buffer size is unit by 128 byte */
3567 #define HNS3_BUF_SIZE_UNIT_SHIFT 7
3568 #define HNS3_BUF_SIZE_UPDATE_EN_MSK BIT(15)
3569 struct hns3_tx_buff_alloc_cmd *req;
3570 struct hns3_cmd_desc desc;
3575 req = (struct hns3_tx_buff_alloc_cmd *)desc.data;
3577 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TX_BUFF_ALLOC, 0);
3578 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3579 buf_size = buf_alloc->priv_buf[i].tx_buf_size;
3581 buf_size = buf_size >> HNS3_BUF_SIZE_UNIT_SHIFT;
3582 req->tx_pkt_buff[i] = rte_cpu_to_le_16(buf_size |
3583 HNS3_BUF_SIZE_UPDATE_EN_MSK);
3586 ret = hns3_cmd_send(hw, &desc, 1);
3588 PMD_INIT_LOG(ERR, "tx buffer alloc cmd failed %d", ret);
3594 hns3_get_tc_num(struct hns3_hw *hw)
3599 for (i = 0; i < HNS3_MAX_TC_NUM; i++)
3600 if (hw->hw_tc_map & BIT(i))
3606 hns3_get_rx_priv_buff_alloced(struct hns3_pkt_buf_alloc *buf_alloc)
3608 struct hns3_priv_buf *priv;
3609 uint32_t rx_priv = 0;
3612 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3613 priv = &buf_alloc->priv_buf[i];
3615 rx_priv += priv->buf_size;
3621 hns3_get_tx_buff_alloced(struct hns3_pkt_buf_alloc *buf_alloc)
3623 uint32_t total_tx_size = 0;
3626 for (i = 0; i < HNS3_MAX_TC_NUM; i++)
3627 total_tx_size += buf_alloc->priv_buf[i].tx_buf_size;
3629 return total_tx_size;
3632 /* Get the number of pfc enabled TCs, which have private buffer */
3634 hns3_get_pfc_priv_num(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3636 struct hns3_priv_buf *priv;
3640 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3641 priv = &buf_alloc->priv_buf[i];
3642 if ((hw->dcb_info.hw_pfc_map & BIT(i)) && priv->enable)
3649 /* Get the number of pfc disabled TCs, which have private buffer */
3651 hns3_get_no_pfc_priv_num(struct hns3_hw *hw,
3652 struct hns3_pkt_buf_alloc *buf_alloc)
3654 struct hns3_priv_buf *priv;
3658 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3659 priv = &buf_alloc->priv_buf[i];
3660 if (hw->hw_tc_map & BIT(i) &&
3661 !(hw->dcb_info.hw_pfc_map & BIT(i)) && priv->enable)
3669 hns3_is_rx_buf_ok(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc,
3672 uint32_t shared_buf_min, shared_buf_tc, shared_std, hi_thrd, lo_thrd;
3673 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3674 struct hns3_pf *pf = &hns->pf;
3675 uint32_t shared_buf, aligned_mps;
3680 tc_num = hns3_get_tc_num(hw);
3681 aligned_mps = roundup(pf->mps, HNS3_BUF_SIZE_UNIT);
3683 if (hns3_dev_dcb_supported(hw))
3684 shared_buf_min = HNS3_BUF_MUL_BY * aligned_mps +
3687 shared_buf_min = aligned_mps + HNS3_NON_DCB_ADDITIONAL_BUF
3690 shared_buf_tc = tc_num * aligned_mps + aligned_mps;
3691 shared_std = roundup(RTE_MAX(shared_buf_min, shared_buf_tc),
3692 HNS3_BUF_SIZE_UNIT);
3694 rx_priv = hns3_get_rx_priv_buff_alloced(buf_alloc);
3695 if (rx_all < rx_priv + shared_std)
3698 shared_buf = rounddown(rx_all - rx_priv, HNS3_BUF_SIZE_UNIT);
3699 buf_alloc->s_buf.buf_size = shared_buf;
3700 if (hns3_dev_dcb_supported(hw)) {
3701 buf_alloc->s_buf.self.high = shared_buf - pf->dv_buf_size;
3702 buf_alloc->s_buf.self.low = buf_alloc->s_buf.self.high
3703 - roundup(aligned_mps / HNS3_BUF_DIV_BY,
3704 HNS3_BUF_SIZE_UNIT);
3706 buf_alloc->s_buf.self.high =
3707 aligned_mps + HNS3_NON_DCB_ADDITIONAL_BUF;
3708 buf_alloc->s_buf.self.low = aligned_mps;
3711 if (hns3_dev_dcb_supported(hw)) {
3712 hi_thrd = shared_buf - pf->dv_buf_size;
3714 if (tc_num <= NEED_RESERVE_TC_NUM)
3715 hi_thrd = hi_thrd * BUF_RESERVE_PERCENT /
3719 hi_thrd = hi_thrd / tc_num;
3721 hi_thrd = RTE_MAX(hi_thrd, HNS3_BUF_MUL_BY * aligned_mps);
3722 hi_thrd = rounddown(hi_thrd, HNS3_BUF_SIZE_UNIT);
3723 lo_thrd = hi_thrd - aligned_mps / HNS3_BUF_DIV_BY;
3725 hi_thrd = aligned_mps + HNS3_NON_DCB_ADDITIONAL_BUF;
3726 lo_thrd = aligned_mps;
3729 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3730 buf_alloc->s_buf.tc_thrd[i].low = lo_thrd;
3731 buf_alloc->s_buf.tc_thrd[i].high = hi_thrd;
3738 hns3_rx_buf_calc_all(struct hns3_hw *hw, bool max,
3739 struct hns3_pkt_buf_alloc *buf_alloc)
3741 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3742 struct hns3_pf *pf = &hns->pf;
3743 struct hns3_priv_buf *priv;
3744 uint32_t aligned_mps;
3748 rx_all = pf->pkt_buf_size - hns3_get_tx_buff_alloced(buf_alloc);
3749 aligned_mps = roundup(pf->mps, HNS3_BUF_SIZE_UNIT);
3751 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3752 priv = &buf_alloc->priv_buf[i];
3759 if (!(hw->hw_tc_map & BIT(i)))
3763 if (hw->dcb_info.hw_pfc_map & BIT(i)) {
3764 priv->wl.low = max ? aligned_mps : HNS3_BUF_SIZE_UNIT;
3765 priv->wl.high = roundup(priv->wl.low + aligned_mps,
3766 HNS3_BUF_SIZE_UNIT);
3769 priv->wl.high = max ? (aligned_mps * HNS3_BUF_MUL_BY) :
3773 priv->buf_size = priv->wl.high + pf->dv_buf_size;
3776 return hns3_is_rx_buf_ok(hw, buf_alloc, rx_all);
3780 hns3_drop_nopfc_buf_till_fit(struct hns3_hw *hw,
3781 struct hns3_pkt_buf_alloc *buf_alloc)
3783 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3784 struct hns3_pf *pf = &hns->pf;
3785 struct hns3_priv_buf *priv;
3786 int no_pfc_priv_num;
3791 rx_all = pf->pkt_buf_size - hns3_get_tx_buff_alloced(buf_alloc);
3792 no_pfc_priv_num = hns3_get_no_pfc_priv_num(hw, buf_alloc);
3794 /* let the last to be cleared first */
3795 for (i = HNS3_MAX_TC_NUM - 1; i >= 0; i--) {
3796 priv = &buf_alloc->priv_buf[i];
3797 mask = BIT((uint8_t)i);
3799 if (hw->hw_tc_map & mask &&
3800 !(hw->dcb_info.hw_pfc_map & mask)) {
3801 /* Clear the no pfc TC private buffer */
3809 if (hns3_is_rx_buf_ok(hw, buf_alloc, rx_all) ||
3810 no_pfc_priv_num == 0)
3814 return hns3_is_rx_buf_ok(hw, buf_alloc, rx_all);
3818 hns3_drop_pfc_buf_till_fit(struct hns3_hw *hw,
3819 struct hns3_pkt_buf_alloc *buf_alloc)
3821 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3822 struct hns3_pf *pf = &hns->pf;
3823 struct hns3_priv_buf *priv;
3829 rx_all = pf->pkt_buf_size - hns3_get_tx_buff_alloced(buf_alloc);
3830 pfc_priv_num = hns3_get_pfc_priv_num(hw, buf_alloc);
3832 /* let the last to be cleared first */
3833 for (i = HNS3_MAX_TC_NUM - 1; i >= 0; i--) {
3834 priv = &buf_alloc->priv_buf[i];
3835 mask = BIT((uint8_t)i);
3836 if (hw->hw_tc_map & mask && hw->dcb_info.hw_pfc_map & mask) {
3837 /* Reduce the number of pfc TC with private buffer */
3844 if (hns3_is_rx_buf_ok(hw, buf_alloc, rx_all) ||
3849 return hns3_is_rx_buf_ok(hw, buf_alloc, rx_all);
3853 hns3_only_alloc_priv_buff(struct hns3_hw *hw,
3854 struct hns3_pkt_buf_alloc *buf_alloc)
3856 #define COMPENSATE_BUFFER 0x3C00
3857 #define COMPENSATE_HALF_MPS_NUM 5
3858 #define PRIV_WL_GAP 0x1800
3859 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3860 struct hns3_pf *pf = &hns->pf;
3861 uint32_t tc_num = hns3_get_tc_num(hw);
3862 uint32_t half_mps = pf->mps >> 1;
3863 struct hns3_priv_buf *priv;
3864 uint32_t min_rx_priv;
3868 rx_priv = pf->pkt_buf_size - hns3_get_tx_buff_alloced(buf_alloc);
3870 rx_priv = rx_priv / tc_num;
3872 if (tc_num <= NEED_RESERVE_TC_NUM)
3873 rx_priv = rx_priv * BUF_RESERVE_PERCENT / BUF_MAX_PERCENT;
3876 * Minimum value of private buffer in rx direction (min_rx_priv) is
3877 * equal to "DV + 2.5 * MPS + 15KB". Driver only allocates rx private
3878 * buffer if rx_priv is greater than min_rx_priv.
3880 min_rx_priv = pf->dv_buf_size + COMPENSATE_BUFFER +
3881 COMPENSATE_HALF_MPS_NUM * half_mps;
3882 min_rx_priv = roundup(min_rx_priv, HNS3_BUF_SIZE_UNIT);
3883 rx_priv = rounddown(rx_priv, HNS3_BUF_SIZE_UNIT);
3885 if (rx_priv < min_rx_priv)
3888 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3889 priv = &buf_alloc->priv_buf[i];
3895 if (!(hw->hw_tc_map & BIT(i)))
3899 priv->buf_size = rx_priv;
3900 priv->wl.high = rx_priv - pf->dv_buf_size;
3901 priv->wl.low = priv->wl.high - PRIV_WL_GAP;
3904 buf_alloc->s_buf.buf_size = 0;
3910 * hns3_rx_buffer_calc: calculate the rx private buffer size for all TCs
3911 * @hw: pointer to struct hns3_hw
3912 * @buf_alloc: pointer to buffer calculation data
3913 * @return: 0: calculate sucessful, negative: fail
3916 hns3_rx_buffer_calc(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3918 /* When DCB is not supported, rx private buffer is not allocated. */
3919 if (!hns3_dev_dcb_supported(hw)) {
3920 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3921 struct hns3_pf *pf = &hns->pf;
3922 uint32_t rx_all = pf->pkt_buf_size;
3924 rx_all -= hns3_get_tx_buff_alloced(buf_alloc);
3925 if (!hns3_is_rx_buf_ok(hw, buf_alloc, rx_all))
3932 * Try to allocate privated packet buffer for all TCs without share
3935 if (hns3_only_alloc_priv_buff(hw, buf_alloc))
3939 * Try to allocate privated packet buffer for all TCs with share
3942 if (hns3_rx_buf_calc_all(hw, true, buf_alloc))
3946 * For different application scenes, the enabled port number, TC number
3947 * and no_drop TC number are different. In order to obtain the better
3948 * performance, software could allocate the buffer size and configure
3949 * the waterline by tring to decrease the private buffer size according
3950 * to the order, namely, waterline of valided tc, pfc disabled tc, pfc
3953 if (hns3_rx_buf_calc_all(hw, false, buf_alloc))
3956 if (hns3_drop_nopfc_buf_till_fit(hw, buf_alloc))
3959 if (hns3_drop_pfc_buf_till_fit(hw, buf_alloc))
3966 hns3_rx_priv_buf_alloc(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3968 struct hns3_rx_priv_buff_cmd *req;
3969 struct hns3_cmd_desc desc;
3974 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RX_PRIV_BUFF_ALLOC, false);
3975 req = (struct hns3_rx_priv_buff_cmd *)desc.data;
3977 /* Alloc private buffer TCs */
3978 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3979 struct hns3_priv_buf *priv = &buf_alloc->priv_buf[i];
3982 rte_cpu_to_le_16(priv->buf_size >> HNS3_BUF_UNIT_S);
3983 req->buf_num[i] |= rte_cpu_to_le_16(1 << HNS3_TC0_PRI_BUF_EN_B);
3986 buf_size = buf_alloc->s_buf.buf_size;
3987 req->shared_buf = rte_cpu_to_le_16((buf_size >> HNS3_BUF_UNIT_S) |
3988 (1 << HNS3_TC0_PRI_BUF_EN_B));
3990 ret = hns3_cmd_send(hw, &desc, 1);
3992 PMD_INIT_LOG(ERR, "rx private buffer alloc cmd failed %d", ret);
3998 hns3_rx_priv_wl_config(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
4000 #define HNS3_RX_PRIV_WL_ALLOC_DESC_NUM 2
4001 struct hns3_rx_priv_wl_buf *req;
4002 struct hns3_priv_buf *priv;
4003 struct hns3_cmd_desc desc[HNS3_RX_PRIV_WL_ALLOC_DESC_NUM];
4007 for (i = 0; i < HNS3_RX_PRIV_WL_ALLOC_DESC_NUM; i++) {
4008 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_RX_PRIV_WL_ALLOC,
4010 req = (struct hns3_rx_priv_wl_buf *)desc[i].data;
4012 /* The first descriptor set the NEXT bit to 1 */
4014 desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
4016 desc[i].flag &= ~rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
4018 for (j = 0; j < HNS3_TC_NUM_ONE_DESC; j++) {
4019 uint32_t idx = i * HNS3_TC_NUM_ONE_DESC + j;
4021 priv = &buf_alloc->priv_buf[idx];
4022 req->tc_wl[j].high = rte_cpu_to_le_16(priv->wl.high >>
4024 req->tc_wl[j].high |=
4025 rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
4026 req->tc_wl[j].low = rte_cpu_to_le_16(priv->wl.low >>
4028 req->tc_wl[j].low |=
4029 rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
4033 /* Send 2 descriptor at one time */
4034 ret = hns3_cmd_send(hw, desc, HNS3_RX_PRIV_WL_ALLOC_DESC_NUM);
4036 PMD_INIT_LOG(ERR, "rx private waterline config cmd failed %d",
4042 hns3_common_thrd_config(struct hns3_hw *hw,
4043 struct hns3_pkt_buf_alloc *buf_alloc)
4045 #define HNS3_RX_COM_THRD_ALLOC_DESC_NUM 2
4046 struct hns3_shared_buf *s_buf = &buf_alloc->s_buf;
4047 struct hns3_rx_com_thrd *req;
4048 struct hns3_cmd_desc desc[HNS3_RX_COM_THRD_ALLOC_DESC_NUM];
4049 struct hns3_tc_thrd *tc;
4054 for (i = 0; i < HNS3_RX_COM_THRD_ALLOC_DESC_NUM; i++) {
4055 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_RX_COM_THRD_ALLOC,
4057 req = (struct hns3_rx_com_thrd *)&desc[i].data;
4059 /* The first descriptor set the NEXT bit to 1 */
4061 desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
4063 desc[i].flag &= ~rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
4065 for (j = 0; j < HNS3_TC_NUM_ONE_DESC; j++) {
4066 tc_idx = i * HNS3_TC_NUM_ONE_DESC + j;
4067 tc = &s_buf->tc_thrd[tc_idx];
4069 req->com_thrd[j].high =
4070 rte_cpu_to_le_16(tc->high >> HNS3_BUF_UNIT_S);
4071 req->com_thrd[j].high |=
4072 rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
4073 req->com_thrd[j].low =
4074 rte_cpu_to_le_16(tc->low >> HNS3_BUF_UNIT_S);
4075 req->com_thrd[j].low |=
4076 rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
4080 /* Send 2 descriptors at one time */
4081 ret = hns3_cmd_send(hw, desc, HNS3_RX_COM_THRD_ALLOC_DESC_NUM);
4083 PMD_INIT_LOG(ERR, "common threshold config cmd failed %d", ret);
4089 hns3_common_wl_config(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
4091 struct hns3_shared_buf *buf = &buf_alloc->s_buf;
4092 struct hns3_rx_com_wl *req;
4093 struct hns3_cmd_desc desc;
4096 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RX_COM_WL_ALLOC, false);
4098 req = (struct hns3_rx_com_wl *)desc.data;
4099 req->com_wl.high = rte_cpu_to_le_16(buf->self.high >> HNS3_BUF_UNIT_S);
4100 req->com_wl.high |= rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
4102 req->com_wl.low = rte_cpu_to_le_16(buf->self.low >> HNS3_BUF_UNIT_S);
4103 req->com_wl.low |= rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
4105 ret = hns3_cmd_send(hw, &desc, 1);
4107 PMD_INIT_LOG(ERR, "common waterline config cmd failed %d", ret);
4113 hns3_buffer_alloc(struct hns3_hw *hw)
4115 struct hns3_pkt_buf_alloc pkt_buf;
4118 memset(&pkt_buf, 0, sizeof(pkt_buf));
4119 ret = hns3_tx_buffer_calc(hw, &pkt_buf);
4122 "could not calc tx buffer size for all TCs %d",
4127 ret = hns3_tx_buffer_alloc(hw, &pkt_buf);
4129 PMD_INIT_LOG(ERR, "could not alloc tx buffers %d", ret);
4133 ret = hns3_rx_buffer_calc(hw, &pkt_buf);
4136 "could not calc rx priv buffer size for all TCs %d",
4141 ret = hns3_rx_priv_buf_alloc(hw, &pkt_buf);
4143 PMD_INIT_LOG(ERR, "could not alloc rx priv buffer %d", ret);
4147 if (hns3_dev_dcb_supported(hw)) {
4148 ret = hns3_rx_priv_wl_config(hw, &pkt_buf);
4151 "could not configure rx private waterline %d",
4156 ret = hns3_common_thrd_config(hw, &pkt_buf);
4159 "could not configure common threshold %d",
4165 ret = hns3_common_wl_config(hw, &pkt_buf);
4167 PMD_INIT_LOG(ERR, "could not configure common waterline %d",
4174 hns3_mac_init(struct hns3_hw *hw)
4176 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
4177 struct hns3_mac *mac = &hw->mac;
4178 struct hns3_pf *pf = &hns->pf;
4181 pf->support_sfp_query = true;
4182 mac->link_duplex = ETH_LINK_FULL_DUPLEX;
4183 ret = hns3_cfg_mac_speed_dup_hw(hw, mac->link_speed, mac->link_duplex);
4185 PMD_INIT_LOG(ERR, "Config mac speed dup fail ret = %d", ret);
4189 mac->link_status = ETH_LINK_DOWN;
4191 return hns3_config_mtu(hw, pf->mps);
4195 hns3_get_mac_ethertype_cmd_status(uint16_t cmdq_resp, uint8_t resp_code)
4197 #define HNS3_ETHERTYPE_SUCCESS_ADD 0
4198 #define HNS3_ETHERTYPE_ALREADY_ADD 1
4199 #define HNS3_ETHERTYPE_MGR_TBL_OVERFLOW 2
4200 #define HNS3_ETHERTYPE_KEY_CONFLICT 3
4205 "cmdq execute failed for get_mac_ethertype_cmd_status, status=%u.\n",
4210 switch (resp_code) {
4211 case HNS3_ETHERTYPE_SUCCESS_ADD:
4212 case HNS3_ETHERTYPE_ALREADY_ADD:
4215 case HNS3_ETHERTYPE_MGR_TBL_OVERFLOW:
4217 "add mac ethertype failed for manager table overflow.");
4218 return_status = -EIO;
4220 case HNS3_ETHERTYPE_KEY_CONFLICT:
4221 PMD_INIT_LOG(ERR, "add mac ethertype failed for key conflict.");
4222 return_status = -EIO;
4226 "add mac ethertype failed for undefined, code=%u.",
4228 return_status = -EIO;
4232 return return_status;
4236 hns3_add_mgr_tbl(struct hns3_hw *hw,
4237 const struct hns3_mac_mgr_tbl_entry_cmd *req)
4239 struct hns3_cmd_desc desc;
4244 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MAC_ETHTYPE_ADD, false);
4245 memcpy(desc.data, req, sizeof(struct hns3_mac_mgr_tbl_entry_cmd));
4247 ret = hns3_cmd_send(hw, &desc, 1);
4250 "add mac ethertype failed for cmd_send, ret =%d.",
4255 resp_code = (rte_le_to_cpu_32(desc.data[0]) >> 8) & 0xff;
4256 retval = rte_le_to_cpu_16(desc.retval);
4258 return hns3_get_mac_ethertype_cmd_status(retval, resp_code);
4262 hns3_prepare_mgr_tbl(struct hns3_mac_mgr_tbl_entry_cmd *mgr_table,
4263 int *table_item_num)
4265 struct hns3_mac_mgr_tbl_entry_cmd *tbl;
4268 * In current version, we add one item in management table as below:
4269 * 0x0180C200000E -- LLDP MC address
4272 tbl->flags = HNS3_MAC_MGR_MASK_VLAN_B;
4273 tbl->ethter_type = rte_cpu_to_le_16(HNS3_MAC_ETHERTYPE_LLDP);
4274 tbl->mac_addr_hi32 = rte_cpu_to_le_32(htonl(0x0180C200));
4275 tbl->mac_addr_lo16 = rte_cpu_to_le_16(htons(0x000E));
4276 tbl->i_port_bitmap = 0x1;
4277 *table_item_num = 1;
4281 hns3_init_mgr_tbl(struct hns3_hw *hw)
4283 #define HNS_MAC_MGR_TBL_MAX_SIZE 16
4284 struct hns3_mac_mgr_tbl_entry_cmd mgr_table[HNS_MAC_MGR_TBL_MAX_SIZE];
4289 memset(mgr_table, 0, sizeof(mgr_table));
4290 hns3_prepare_mgr_tbl(mgr_table, &table_item_num);
4291 for (i = 0; i < table_item_num; i++) {
4292 ret = hns3_add_mgr_tbl(hw, &mgr_table[i]);
4294 PMD_INIT_LOG(ERR, "add mac ethertype failed, ret =%d",
4304 hns3_promisc_param_init(struct hns3_promisc_param *param, bool en_uc,
4305 bool en_mc, bool en_bc, int vport_id)
4310 memset(param, 0, sizeof(struct hns3_promisc_param));
4312 param->enable = HNS3_PROMISC_EN_UC;
4314 param->enable |= HNS3_PROMISC_EN_MC;
4316 param->enable |= HNS3_PROMISC_EN_BC;
4317 param->vf_id = vport_id;
4321 hns3_cmd_set_promisc_mode(struct hns3_hw *hw, struct hns3_promisc_param *param)
4323 struct hns3_promisc_cfg_cmd *req;
4324 struct hns3_cmd_desc desc;
4327 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CFG_PROMISC_MODE, false);
4329 req = (struct hns3_promisc_cfg_cmd *)desc.data;
4330 req->vf_id = param->vf_id;
4331 req->flag = (param->enable << HNS3_PROMISC_EN_B) |
4332 HNS3_PROMISC_TX_EN_B | HNS3_PROMISC_RX_EN_B;
4334 ret = hns3_cmd_send(hw, &desc, 1);
4336 PMD_INIT_LOG(ERR, "Set promisc mode fail, ret = %d", ret);
4342 hns3_set_promisc_mode(struct hns3_hw *hw, bool en_uc_pmc, bool en_mc_pmc)
4344 struct hns3_promisc_param param;
4345 bool en_bc_pmc = true;
4349 * In current version VF is not supported when PF is driven by DPDK
4350 * driver, just need to configure parameters for PF vport.
4352 vf_id = HNS3_PF_FUNC_ID;
4354 hns3_promisc_param_init(¶m, en_uc_pmc, en_mc_pmc, en_bc_pmc, vf_id);
4355 return hns3_cmd_set_promisc_mode(hw, ¶m);
4359 hns3_promisc_init(struct hns3_hw *hw)
4361 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
4362 struct hns3_pf *pf = &hns->pf;
4363 struct hns3_promisc_param param;
4367 ret = hns3_set_promisc_mode(hw, false, false);
4369 PMD_INIT_LOG(ERR, "failed to set promisc mode, ret = %d", ret);
4374 * In current version VFs are not supported when PF is driven by DPDK
4375 * driver. After PF has been taken over by DPDK, the original VF will
4376 * be invalid. So, there is a possibility of entry residues. It should
4377 * clear VFs's promisc mode to avoid unnecessary bandwidth usage
4380 for (func_id = HNS3_1ST_VF_FUNC_ID; func_id < pf->func_num; func_id++) {
4381 hns3_promisc_param_init(¶m, false, false, false, func_id);
4382 ret = hns3_cmd_set_promisc_mode(hw, ¶m);
4384 PMD_INIT_LOG(ERR, "failed to clear vf:%u promisc mode,"
4385 " ret = %d", func_id, ret);
4394 hns3_promisc_uninit(struct hns3_hw *hw)
4396 struct hns3_promisc_param param;
4400 func_id = HNS3_PF_FUNC_ID;
4403 * In current version VFs are not supported when PF is driven by
4404 * DPDK driver, and VFs' promisc mode status has been cleared during
4405 * init and their status will not change. So just clear PF's promisc
4406 * mode status during uninit.
4408 hns3_promisc_param_init(¶m, false, false, false, func_id);
4409 ret = hns3_cmd_set_promisc_mode(hw, ¶m);
4411 PMD_INIT_LOG(ERR, "failed to clear promisc status during"
4412 " uninit, ret = %d", ret);
4416 hns3_dev_promiscuous_enable(struct rte_eth_dev *dev)
4418 bool allmulti = dev->data->all_multicast ? true : false;
4419 struct hns3_adapter *hns = dev->data->dev_private;
4420 struct hns3_hw *hw = &hns->hw;
4425 rte_spinlock_lock(&hw->lock);
4426 ret = hns3_set_promisc_mode(hw, true, true);
4428 rte_spinlock_unlock(&hw->lock);
4429 hns3_err(hw, "failed to enable promiscuous mode, ret = %d",
4435 * When promiscuous mode was enabled, disable the vlan filter to let
4436 * all packets coming in in the receiving direction.
4438 offloads = dev->data->dev_conf.rxmode.offloads;
4439 if (offloads & DEV_RX_OFFLOAD_VLAN_FILTER) {
4440 ret = hns3_enable_vlan_filter(hns, false);
4442 hns3_err(hw, "failed to enable promiscuous mode due to "
4443 "failure to disable vlan filter, ret = %d",
4445 err = hns3_set_promisc_mode(hw, false, allmulti);
4447 hns3_err(hw, "failed to restore promiscuous "
4448 "status after disable vlan filter "
4449 "failed during enabling promiscuous "
4450 "mode, ret = %d", ret);
4454 rte_spinlock_unlock(&hw->lock);
4460 hns3_dev_promiscuous_disable(struct rte_eth_dev *dev)
4462 bool allmulti = dev->data->all_multicast ? true : false;
4463 struct hns3_adapter *hns = dev->data->dev_private;
4464 struct hns3_hw *hw = &hns->hw;
4469 /* If now in all_multicast mode, must remain in all_multicast mode. */
4470 rte_spinlock_lock(&hw->lock);
4471 ret = hns3_set_promisc_mode(hw, false, allmulti);
4473 rte_spinlock_unlock(&hw->lock);
4474 hns3_err(hw, "failed to disable promiscuous mode, ret = %d",
4478 /* when promiscuous mode was disabled, restore the vlan filter status */
4479 offloads = dev->data->dev_conf.rxmode.offloads;
4480 if (offloads & DEV_RX_OFFLOAD_VLAN_FILTER) {
4481 ret = hns3_enable_vlan_filter(hns, true);
4483 hns3_err(hw, "failed to disable promiscuous mode due to"
4484 " failure to restore vlan filter, ret = %d",
4486 err = hns3_set_promisc_mode(hw, true, true);
4488 hns3_err(hw, "failed to restore promiscuous "
4489 "status after enabling vlan filter "
4490 "failed during disabling promiscuous "
4491 "mode, ret = %d", ret);
4494 rte_spinlock_unlock(&hw->lock);
4500 hns3_dev_allmulticast_enable(struct rte_eth_dev *dev)
4502 struct hns3_adapter *hns = dev->data->dev_private;
4503 struct hns3_hw *hw = &hns->hw;
4506 if (dev->data->promiscuous)
4509 rte_spinlock_lock(&hw->lock);
4510 ret = hns3_set_promisc_mode(hw, false, true);
4511 rte_spinlock_unlock(&hw->lock);
4513 hns3_err(hw, "failed to enable allmulticast mode, ret = %d",
4520 hns3_dev_allmulticast_disable(struct rte_eth_dev *dev)
4522 struct hns3_adapter *hns = dev->data->dev_private;
4523 struct hns3_hw *hw = &hns->hw;
4526 /* If now in promiscuous mode, must remain in all_multicast mode. */
4527 if (dev->data->promiscuous)
4530 rte_spinlock_lock(&hw->lock);
4531 ret = hns3_set_promisc_mode(hw, false, false);
4532 rte_spinlock_unlock(&hw->lock);
4534 hns3_err(hw, "failed to disable allmulticast mode, ret = %d",
4541 hns3_dev_promisc_restore(struct hns3_adapter *hns)
4543 struct hns3_hw *hw = &hns->hw;
4544 bool allmulti = hw->data->all_multicast ? true : false;
4547 if (hw->data->promiscuous) {
4548 ret = hns3_set_promisc_mode(hw, true, true);
4550 hns3_err(hw, "failed to restore promiscuous mode, "
4555 ret = hns3_set_promisc_mode(hw, false, allmulti);
4557 hns3_err(hw, "failed to restore allmulticast mode, ret = %d",
4563 hns3_get_sfp_info(struct hns3_hw *hw, struct hns3_mac *mac_info)
4565 struct hns3_sfp_info_cmd *resp;
4566 struct hns3_cmd_desc desc;
4569 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_GET_SFP_INFO, true);
4570 resp = (struct hns3_sfp_info_cmd *)desc.data;
4571 resp->query_type = HNS3_ACTIVE_QUERY;
4573 ret = hns3_cmd_send(hw, &desc, 1);
4574 if (ret == -EOPNOTSUPP) {
4575 hns3_warn(hw, "firmware does not support get SFP info,"
4579 hns3_err(hw, "get sfp info failed, ret = %d.", ret);
4584 * In some case, the speed of MAC obtained from firmware may be 0, it
4585 * shouldn't be set to mac->speed.
4587 if (!rte_le_to_cpu_32(resp->sfp_speed))
4590 mac_info->link_speed = rte_le_to_cpu_32(resp->sfp_speed);
4592 * if resp->supported_speed is 0, it means it's an old version
4593 * firmware, do not update these params.
4595 if (resp->supported_speed) {
4596 mac_info->query_type = HNS3_ACTIVE_QUERY;
4597 mac_info->supported_speed =
4598 rte_le_to_cpu_32(resp->supported_speed);
4599 mac_info->support_autoneg = resp->autoneg_ability;
4600 mac_info->link_autoneg = (resp->autoneg == 0) ? ETH_LINK_FIXED
4603 mac_info->query_type = HNS3_DEFAULT_QUERY;
4610 hns3_check_speed_dup(uint8_t duplex, uint32_t speed)
4612 if (!(speed == ETH_SPEED_NUM_10M || speed == ETH_SPEED_NUM_100M))
4613 duplex = ETH_LINK_FULL_DUPLEX;
4619 hns3_cfg_mac_speed_dup(struct hns3_hw *hw, uint32_t speed, uint8_t duplex)
4621 struct hns3_mac *mac = &hw->mac;
4624 duplex = hns3_check_speed_dup(duplex, speed);
4625 if (mac->link_speed == speed && mac->link_duplex == duplex)
4628 ret = hns3_cfg_mac_speed_dup_hw(hw, speed, duplex);
4632 ret = hns3_port_shaper_update(hw, speed);
4636 mac->link_speed = speed;
4637 mac->link_duplex = duplex;
4643 hns3_update_fiber_link_info(struct hns3_hw *hw)
4645 struct hns3_pf *pf = HNS3_DEV_HW_TO_PF(hw);
4646 struct hns3_mac *mac = &hw->mac;
4647 struct hns3_mac mac_info;
4650 /* If firmware do not support get SFP/qSFP speed, return directly */
4651 if (!pf->support_sfp_query)
4654 memset(&mac_info, 0, sizeof(struct hns3_mac));
4655 ret = hns3_get_sfp_info(hw, &mac_info);
4656 if (ret == -EOPNOTSUPP) {
4657 pf->support_sfp_query = false;
4662 /* Do nothing if no SFP */
4663 if (mac_info.link_speed == ETH_SPEED_NUM_NONE)
4667 * If query_type is HNS3_ACTIVE_QUERY, it is no need
4668 * to reconfigure the speed of MAC. Otherwise, it indicates
4669 * that the current firmware only supports to obtain the
4670 * speed of the SFP, and the speed of MAC needs to reconfigure.
4672 mac->query_type = mac_info.query_type;
4673 if (mac->query_type == HNS3_ACTIVE_QUERY) {
4674 if (mac_info.link_speed != mac->link_speed) {
4675 ret = hns3_port_shaper_update(hw, mac_info.link_speed);
4680 mac->link_speed = mac_info.link_speed;
4681 mac->supported_speed = mac_info.supported_speed;
4682 mac->support_autoneg = mac_info.support_autoneg;
4683 mac->link_autoneg = mac_info.link_autoneg;
4688 /* Config full duplex for SFP */
4689 return hns3_cfg_mac_speed_dup(hw, mac_info.link_speed,
4690 ETH_LINK_FULL_DUPLEX);
4694 hns3_parse_copper_phy_params(struct hns3_cmd_desc *desc, struct hns3_mac *mac)
4696 #define HNS3_PHY_SUPPORTED_SPEED_MASK 0x2f
4698 struct hns3_phy_params_bd0_cmd *req;
4701 req = (struct hns3_phy_params_bd0_cmd *)desc[0].data;
4702 mac->link_speed = rte_le_to_cpu_32(req->speed);
4703 mac->link_duplex = hns3_get_bit(req->duplex,
4704 HNS3_PHY_DUPLEX_CFG_B);
4705 mac->link_autoneg = hns3_get_bit(req->autoneg,
4706 HNS3_PHY_AUTONEG_CFG_B);
4707 mac->advertising = rte_le_to_cpu_32(req->advertising);
4708 mac->lp_advertising = rte_le_to_cpu_32(req->lp_advertising);
4709 supported = rte_le_to_cpu_32(req->supported);
4710 mac->supported_speed = supported & HNS3_PHY_SUPPORTED_SPEED_MASK;
4711 mac->support_autoneg = !!(supported & HNS3_PHY_LINK_MODE_AUTONEG_BIT);
4715 hns3_get_copper_phy_params(struct hns3_hw *hw, struct hns3_mac *mac)
4717 struct hns3_cmd_desc desc[HNS3_PHY_PARAM_CFG_BD_NUM];
4721 for (i = 0; i < HNS3_PHY_PARAM_CFG_BD_NUM - 1; i++) {
4722 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_PHY_PARAM_CFG,
4724 desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
4726 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_PHY_PARAM_CFG, true);
4728 ret = hns3_cmd_send(hw, desc, HNS3_PHY_PARAM_CFG_BD_NUM);
4730 hns3_err(hw, "get phy parameters failed, ret = %d.", ret);
4734 hns3_parse_copper_phy_params(desc, mac);
4740 hns3_update_copper_link_info(struct hns3_hw *hw)
4742 struct hns3_mac *mac = &hw->mac;
4743 struct hns3_mac mac_info;
4746 memset(&mac_info, 0, sizeof(struct hns3_mac));
4747 ret = hns3_get_copper_phy_params(hw, &mac_info);
4751 if (mac_info.link_speed != mac->link_speed) {
4752 ret = hns3_port_shaper_update(hw, mac_info.link_speed);
4757 mac->link_speed = mac_info.link_speed;
4758 mac->link_duplex = mac_info.link_duplex;
4759 mac->link_autoneg = mac_info.link_autoneg;
4760 mac->supported_speed = mac_info.supported_speed;
4761 mac->advertising = mac_info.advertising;
4762 mac->lp_advertising = mac_info.lp_advertising;
4763 mac->support_autoneg = mac_info.support_autoneg;
4769 hns3_update_link_info(struct rte_eth_dev *eth_dev)
4771 struct hns3_adapter *hns = eth_dev->data->dev_private;
4772 struct hns3_hw *hw = &hns->hw;
4775 if (hw->mac.media_type == HNS3_MEDIA_TYPE_COPPER)
4776 ret = hns3_update_copper_link_info(hw);
4777 else if (hw->mac.media_type == HNS3_MEDIA_TYPE_FIBER)
4778 ret = hns3_update_fiber_link_info(hw);
4784 hns3_cfg_mac_mode(struct hns3_hw *hw, bool enable)
4786 struct hns3_config_mac_mode_cmd *req;
4787 struct hns3_cmd_desc desc;
4788 uint32_t loop_en = 0;
4792 req = (struct hns3_config_mac_mode_cmd *)desc.data;
4794 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_MAC_MODE, false);
4797 hns3_set_bit(loop_en, HNS3_MAC_TX_EN_B, val);
4798 hns3_set_bit(loop_en, HNS3_MAC_RX_EN_B, val);
4799 hns3_set_bit(loop_en, HNS3_MAC_PAD_TX_B, val);
4800 hns3_set_bit(loop_en, HNS3_MAC_PAD_RX_B, val);
4801 hns3_set_bit(loop_en, HNS3_MAC_1588_TX_B, 0);
4802 hns3_set_bit(loop_en, HNS3_MAC_1588_RX_B, 0);
4803 hns3_set_bit(loop_en, HNS3_MAC_APP_LP_B, 0);
4804 hns3_set_bit(loop_en, HNS3_MAC_LINE_LP_B, 0);
4805 hns3_set_bit(loop_en, HNS3_MAC_FCS_TX_B, val);
4806 hns3_set_bit(loop_en, HNS3_MAC_RX_FCS_B, val);
4809 * If DEV_RX_OFFLOAD_KEEP_CRC offload is set, MAC will not strip CRC
4810 * when receiving frames. Otherwise, CRC will be stripped.
4812 if (hw->data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC)
4813 hns3_set_bit(loop_en, HNS3_MAC_RX_FCS_STRIP_B, 0);
4815 hns3_set_bit(loop_en, HNS3_MAC_RX_FCS_STRIP_B, val);
4816 hns3_set_bit(loop_en, HNS3_MAC_TX_OVERSIZE_TRUNCATE_B, val);
4817 hns3_set_bit(loop_en, HNS3_MAC_RX_OVERSIZE_TRUNCATE_B, val);
4818 hns3_set_bit(loop_en, HNS3_MAC_TX_UNDER_MIN_ERR_B, val);
4819 req->txrx_pad_fcs_loop_en = rte_cpu_to_le_32(loop_en);
4821 ret = hns3_cmd_send(hw, &desc, 1);
4823 PMD_INIT_LOG(ERR, "mac enable fail, ret =%d.", ret);
4829 hns3_get_mac_link_status(struct hns3_hw *hw)
4831 struct hns3_link_status_cmd *req;
4832 struct hns3_cmd_desc desc;
4836 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_QUERY_LINK_STATUS, true);
4837 ret = hns3_cmd_send(hw, &desc, 1);
4839 hns3_err(hw, "get link status cmd failed %d", ret);
4840 return ETH_LINK_DOWN;
4843 req = (struct hns3_link_status_cmd *)desc.data;
4844 link_status = req->status & HNS3_LINK_STATUS_UP_M;
4846 return !!link_status;
4850 hns3_update_link_status(struct hns3_hw *hw)
4854 state = hns3_get_mac_link_status(hw);
4855 if (state != hw->mac.link_status) {
4856 hw->mac.link_status = state;
4857 hns3_warn(hw, "Link status change to %s!", state ? "up" : "down");
4858 hns3_config_mac_tnl_int(hw,
4859 state == ETH_LINK_UP ? true : false);
4867 hns3_update_linkstatus_and_event(struct hns3_hw *hw, bool query)
4869 struct rte_eth_dev *dev = &rte_eth_devices[hw->data->port_id];
4870 struct rte_eth_link new_link;
4874 hns3_update_port_link_info(dev);
4876 memset(&new_link, 0, sizeof(new_link));
4877 hns3_setup_linkstatus(dev, &new_link);
4879 ret = rte_eth_linkstatus_set(dev, &new_link);
4880 if (ret == 0 && dev->data->dev_conf.intr_conf.lsc != 0)
4881 hns3_start_report_lse(dev);
4885 hns3_service_handler(void *param)
4887 struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
4888 struct hns3_adapter *hns = eth_dev->data->dev_private;
4889 struct hns3_hw *hw = &hns->hw;
4891 if (!hns3_is_reset_pending(hns))
4892 hns3_update_linkstatus_and_event(hw, true);
4894 hns3_warn(hw, "Cancel the query when reset is pending");
4896 rte_eal_alarm_set(HNS3_SERVICE_INTERVAL, hns3_service_handler, eth_dev);
4900 hns3_init_hardware(struct hns3_adapter *hns)
4902 struct hns3_hw *hw = &hns->hw;
4905 ret = hns3_map_tqp(hw);
4907 PMD_INIT_LOG(ERR, "Failed to map tqp: %d", ret);
4911 ret = hns3_init_umv_space(hw);
4913 PMD_INIT_LOG(ERR, "Failed to init umv space: %d", ret);
4917 ret = hns3_mac_init(hw);
4919 PMD_INIT_LOG(ERR, "Failed to init MAC: %d", ret);
4923 ret = hns3_init_mgr_tbl(hw);
4925 PMD_INIT_LOG(ERR, "Failed to init manager table: %d", ret);
4929 ret = hns3_promisc_init(hw);
4931 PMD_INIT_LOG(ERR, "Failed to init promisc: %d",
4936 ret = hns3_init_vlan_config(hns);
4938 PMD_INIT_LOG(ERR, "Failed to init vlan: %d", ret);
4942 ret = hns3_dcb_init(hw);
4944 PMD_INIT_LOG(ERR, "Failed to init dcb: %d", ret);
4948 ret = hns3_init_fd_config(hns);
4950 PMD_INIT_LOG(ERR, "Failed to init flow director: %d", ret);
4954 ret = hns3_config_tso(hw, HNS3_TSO_MSS_MIN, HNS3_TSO_MSS_MAX);
4956 PMD_INIT_LOG(ERR, "Failed to config tso: %d", ret);
4960 ret = hns3_config_gro(hw, false);
4962 PMD_INIT_LOG(ERR, "Failed to config gro: %d", ret);
4967 * In the initialization clearing the all hardware mapping relationship
4968 * configurations between queues and interrupt vectors is needed, so
4969 * some error caused by the residual configurations, such as the
4970 * unexpected interrupt, can be avoid.
4972 ret = hns3_init_ring_with_vector(hw);
4974 PMD_INIT_LOG(ERR, "Failed to init ring intr vector: %d", ret);
4981 hns3_uninit_umv_space(hw);
4986 hns3_clear_hw(struct hns3_hw *hw)
4988 struct hns3_cmd_desc desc;
4991 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CLEAR_HW_STATE, false);
4993 ret = hns3_cmd_send(hw, &desc, 1);
4994 if (ret && ret != -EOPNOTSUPP)
5001 hns3_config_all_msix_error(struct hns3_hw *hw, bool enable)
5006 * The new firmware support report more hardware error types by
5007 * msix mode. These errors are defined as RAS errors in hardware
5008 * and belong to a different type from the MSI-x errors processed
5009 * by the network driver.
5011 * Network driver should open the new error report on initialition
5013 val = hns3_read_dev(hw, HNS3_VECTOR0_OTER_EN_REG);
5014 hns3_set_bit(val, HNS3_VECTOR0_ALL_MSIX_ERR_B, enable ? 1 : 0);
5015 hns3_write_dev(hw, HNS3_VECTOR0_OTER_EN_REG, val);
5019 hns3_set_firber_default_support_speed(struct hns3_hw *hw)
5021 struct hns3_mac *mac = &hw->mac;
5023 switch (mac->link_speed) {
5024 case ETH_SPEED_NUM_1G:
5025 return HNS3_FIBER_LINK_SPEED_1G_BIT;
5026 case ETH_SPEED_NUM_10G:
5027 return HNS3_FIBER_LINK_SPEED_10G_BIT;
5028 case ETH_SPEED_NUM_25G:
5029 return HNS3_FIBER_LINK_SPEED_25G_BIT;
5030 case ETH_SPEED_NUM_40G:
5031 return HNS3_FIBER_LINK_SPEED_40G_BIT;
5032 case ETH_SPEED_NUM_50G:
5033 return HNS3_FIBER_LINK_SPEED_50G_BIT;
5034 case ETH_SPEED_NUM_100G:
5035 return HNS3_FIBER_LINK_SPEED_100G_BIT;
5036 case ETH_SPEED_NUM_200G:
5037 return HNS3_FIBER_LINK_SPEED_200G_BIT;
5039 hns3_warn(hw, "invalid speed %u Mbps.", mac->link_speed);
5045 * Validity of supported_speed for firber and copper media type can be
5046 * guaranteed by the following policy:
5048 * Although the initialization of the phy in the firmware may not be
5049 * completed, the firmware can guarantees that the supported_speed is
5052 * If the version of firmware supports the acitive query way of the
5053 * HNS3_OPC_GET_SFP_INFO opcode, the supported_speed can be obtained
5054 * through it. If unsupported, use the SFP's speed as the value of the
5058 hns3_get_port_supported_speed(struct rte_eth_dev *eth_dev)
5060 struct hns3_adapter *hns = eth_dev->data->dev_private;
5061 struct hns3_hw *hw = &hns->hw;
5062 struct hns3_mac *mac = &hw->mac;
5065 ret = hns3_update_link_info(eth_dev);
5069 if (mac->media_type == HNS3_MEDIA_TYPE_FIBER) {
5071 * Some firmware does not support the report of supported_speed,
5072 * and only report the effective speed of SFP. In this case, it
5073 * is necessary to use the SFP's speed as the supported_speed.
5075 if (mac->supported_speed == 0)
5076 mac->supported_speed =
5077 hns3_set_firber_default_support_speed(hw);
5084 hns3_get_fc_autoneg_capability(struct hns3_adapter *hns)
5086 struct hns3_mac *mac = &hns->hw.mac;
5088 if (mac->media_type == HNS3_MEDIA_TYPE_COPPER) {
5089 hns->pf.support_fc_autoneg = true;
5094 * Flow control auto-negotiation requires the cooperation of the driver
5095 * and firmware. Currently, the optical port does not support flow
5096 * control auto-negotiation.
5098 hns->pf.support_fc_autoneg = false;
5102 hns3_init_pf(struct rte_eth_dev *eth_dev)
5104 struct rte_device *dev = eth_dev->device;
5105 struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev);
5106 struct hns3_adapter *hns = eth_dev->data->dev_private;
5107 struct hns3_hw *hw = &hns->hw;
5110 PMD_INIT_FUNC_TRACE();
5112 /* Get hardware io base address from pcie BAR2 IO space */
5113 hw->io_base = pci_dev->mem_resource[2].addr;
5115 /* Firmware command queue initialize */
5116 ret = hns3_cmd_init_queue(hw);
5118 PMD_INIT_LOG(ERR, "Failed to init cmd queue: %d", ret);
5119 goto err_cmd_init_queue;
5122 hns3_clear_all_event_cause(hw);
5124 /* Firmware command initialize */
5125 ret = hns3_cmd_init(hw);
5127 PMD_INIT_LOG(ERR, "Failed to init cmd: %d", ret);
5132 * To ensure that the hardware environment is clean during
5133 * initialization, the driver actively clear the hardware environment
5134 * during initialization, including PF and corresponding VFs' vlan, mac,
5135 * flow table configurations, etc.
5137 ret = hns3_clear_hw(hw);
5139 PMD_INIT_LOG(ERR, "failed to clear hardware: %d", ret);
5143 /* Hardware statistics of imissed registers cleared. */
5144 ret = hns3_update_imissed_stats(hw, true);
5146 hns3_err(hw, "clear imissed stats failed, ret = %d", ret);
5150 hns3_config_all_msix_error(hw, true);
5152 ret = rte_intr_callback_register(&pci_dev->intr_handle,
5153 hns3_interrupt_handler,
5156 PMD_INIT_LOG(ERR, "Failed to register intr: %d", ret);
5157 goto err_intr_callback_register;
5160 ret = hns3_ptp_init(hw);
5162 goto err_get_config;
5164 /* Enable interrupt */
5165 rte_intr_enable(&pci_dev->intr_handle);
5166 hns3_pf_enable_irq0(hw);
5168 /* Get configuration */
5169 ret = hns3_get_configuration(hw);
5171 PMD_INIT_LOG(ERR, "Failed to fetch configuration: %d", ret);
5172 goto err_get_config;
5175 ret = hns3_tqp_stats_init(hw);
5177 goto err_get_config;
5179 ret = hns3_init_hardware(hns);
5181 PMD_INIT_LOG(ERR, "Failed to init hardware: %d", ret);
5185 /* Initialize flow director filter list & hash */
5186 ret = hns3_fdir_filter_init(hns);
5188 PMD_INIT_LOG(ERR, "Failed to alloc hashmap for fdir: %d", ret);
5192 hns3_rss_set_default_args(hw);
5194 ret = hns3_enable_hw_error_intr(hns, true);
5196 PMD_INIT_LOG(ERR, "fail to enable hw error interrupts: %d",
5198 goto err_enable_intr;
5201 ret = hns3_get_port_supported_speed(eth_dev);
5203 PMD_INIT_LOG(ERR, "failed to get speed capabilities supported "
5204 "by device, ret = %d.", ret);
5205 goto err_supported_speed;
5208 hns3_get_fc_autoneg_capability(hns);
5210 hns3_tm_conf_init(eth_dev);
5214 err_supported_speed:
5215 (void)hns3_enable_hw_error_intr(hns, false);
5217 hns3_fdir_filter_uninit(hns);
5219 hns3_uninit_umv_space(hw);
5221 hns3_tqp_stats_uninit(hw);
5223 hns3_pf_disable_irq0(hw);
5224 rte_intr_disable(&pci_dev->intr_handle);
5225 hns3_intr_unregister(&pci_dev->intr_handle, hns3_interrupt_handler,
5227 err_intr_callback_register:
5229 hns3_cmd_uninit(hw);
5230 hns3_cmd_destroy_queue(hw);
5238 hns3_uninit_pf(struct rte_eth_dev *eth_dev)
5240 struct hns3_adapter *hns = eth_dev->data->dev_private;
5241 struct rte_device *dev = eth_dev->device;
5242 struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev);
5243 struct hns3_hw *hw = &hns->hw;
5245 PMD_INIT_FUNC_TRACE();
5247 hns3_tm_conf_uninit(eth_dev);
5248 hns3_enable_hw_error_intr(hns, false);
5249 hns3_rss_uninit(hns);
5250 (void)hns3_config_gro(hw, false);
5251 hns3_promisc_uninit(hw);
5252 hns3_fdir_filter_uninit(hns);
5253 hns3_uninit_umv_space(hw);
5254 hns3_tqp_stats_uninit(hw);
5255 hns3_config_mac_tnl_int(hw, false);
5256 hns3_pf_disable_irq0(hw);
5257 rte_intr_disable(&pci_dev->intr_handle);
5258 hns3_intr_unregister(&pci_dev->intr_handle, hns3_interrupt_handler,
5260 hns3_config_all_msix_error(hw, false);
5261 hns3_cmd_uninit(hw);
5262 hns3_cmd_destroy_queue(hw);
5267 hns3_convert_link_speeds2bitmap_copper(uint32_t link_speeds)
5271 switch (link_speeds & ~ETH_LINK_SPEED_FIXED) {
5272 case ETH_LINK_SPEED_10M:
5273 speed_bit = HNS3_PHY_LINK_SPEED_10M_BIT;
5275 case ETH_LINK_SPEED_10M_HD:
5276 speed_bit = HNS3_PHY_LINK_SPEED_10M_HD_BIT;
5278 case ETH_LINK_SPEED_100M:
5279 speed_bit = HNS3_PHY_LINK_SPEED_100M_BIT;
5281 case ETH_LINK_SPEED_100M_HD:
5282 speed_bit = HNS3_PHY_LINK_SPEED_100M_HD_BIT;
5284 case ETH_LINK_SPEED_1G:
5285 speed_bit = HNS3_PHY_LINK_SPEED_1000M_BIT;
5296 hns3_convert_link_speeds2bitmap_fiber(uint32_t link_speeds)
5300 switch (link_speeds & ~ETH_LINK_SPEED_FIXED) {
5301 case ETH_LINK_SPEED_1G:
5302 speed_bit = HNS3_FIBER_LINK_SPEED_1G_BIT;
5304 case ETH_LINK_SPEED_10G:
5305 speed_bit = HNS3_FIBER_LINK_SPEED_10G_BIT;
5307 case ETH_LINK_SPEED_25G:
5308 speed_bit = HNS3_FIBER_LINK_SPEED_25G_BIT;
5310 case ETH_LINK_SPEED_40G:
5311 speed_bit = HNS3_FIBER_LINK_SPEED_40G_BIT;
5313 case ETH_LINK_SPEED_50G:
5314 speed_bit = HNS3_FIBER_LINK_SPEED_50G_BIT;
5316 case ETH_LINK_SPEED_100G:
5317 speed_bit = HNS3_FIBER_LINK_SPEED_100G_BIT;
5319 case ETH_LINK_SPEED_200G:
5320 speed_bit = HNS3_FIBER_LINK_SPEED_200G_BIT;
5331 hns3_check_port_speed(struct hns3_hw *hw, uint32_t link_speeds)
5333 struct hns3_mac *mac = &hw->mac;
5334 uint32_t supported_speed = mac->supported_speed;
5335 uint32_t speed_bit = 0;
5337 if (mac->media_type == HNS3_MEDIA_TYPE_COPPER)
5338 speed_bit = hns3_convert_link_speeds2bitmap_copper(link_speeds);
5339 else if (mac->media_type == HNS3_MEDIA_TYPE_FIBER)
5340 speed_bit = hns3_convert_link_speeds2bitmap_fiber(link_speeds);
5342 if (!(speed_bit & supported_speed)) {
5343 hns3_err(hw, "link_speeds(0x%x) exceeds the supported speed capability or is incorrect.",
5351 static inline uint32_t
5352 hns3_get_link_speed(uint32_t link_speeds)
5354 uint32_t speed = ETH_SPEED_NUM_NONE;
5356 if (link_speeds & ETH_LINK_SPEED_10M ||
5357 link_speeds & ETH_LINK_SPEED_10M_HD)
5358 speed = ETH_SPEED_NUM_10M;
5359 if (link_speeds & ETH_LINK_SPEED_100M ||
5360 link_speeds & ETH_LINK_SPEED_100M_HD)
5361 speed = ETH_SPEED_NUM_100M;
5362 if (link_speeds & ETH_LINK_SPEED_1G)
5363 speed = ETH_SPEED_NUM_1G;
5364 if (link_speeds & ETH_LINK_SPEED_10G)
5365 speed = ETH_SPEED_NUM_10G;
5366 if (link_speeds & ETH_LINK_SPEED_25G)
5367 speed = ETH_SPEED_NUM_25G;
5368 if (link_speeds & ETH_LINK_SPEED_40G)
5369 speed = ETH_SPEED_NUM_40G;
5370 if (link_speeds & ETH_LINK_SPEED_50G)
5371 speed = ETH_SPEED_NUM_50G;
5372 if (link_speeds & ETH_LINK_SPEED_100G)
5373 speed = ETH_SPEED_NUM_100G;
5374 if (link_speeds & ETH_LINK_SPEED_200G)
5375 speed = ETH_SPEED_NUM_200G;
5381 hns3_get_link_duplex(uint32_t link_speeds)
5383 if ((link_speeds & ETH_LINK_SPEED_10M_HD) ||
5384 (link_speeds & ETH_LINK_SPEED_100M_HD))
5385 return ETH_LINK_HALF_DUPLEX;
5387 return ETH_LINK_FULL_DUPLEX;
5391 hns3_set_copper_port_link_speed(struct hns3_hw *hw,
5392 struct hns3_set_link_speed_cfg *cfg)
5394 struct hns3_cmd_desc desc[HNS3_PHY_PARAM_CFG_BD_NUM];
5395 struct hns3_phy_params_bd0_cmd *req;
5398 for (i = 0; i < HNS3_PHY_PARAM_CFG_BD_NUM - 1; i++) {
5399 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_PHY_PARAM_CFG,
5401 desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
5403 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_PHY_PARAM_CFG, false);
5404 req = (struct hns3_phy_params_bd0_cmd *)desc[0].data;
5405 req->autoneg = cfg->autoneg;
5408 * The full speed capability is used to negotiate when
5409 * auto-negotiation is enabled.
5412 req->advertising = HNS3_PHY_LINK_SPEED_10M_BIT |
5413 HNS3_PHY_LINK_SPEED_10M_HD_BIT |
5414 HNS3_PHY_LINK_SPEED_100M_BIT |
5415 HNS3_PHY_LINK_SPEED_100M_HD_BIT |
5416 HNS3_PHY_LINK_SPEED_1000M_BIT;
5418 req->speed = cfg->speed;
5419 req->duplex = cfg->duplex;
5422 return hns3_cmd_send(hw, desc, HNS3_PHY_PARAM_CFG_BD_NUM);
5426 hns3_set_autoneg(struct hns3_hw *hw, bool enable)
5428 struct hns3_config_auto_neg_cmd *req;
5429 struct hns3_cmd_desc desc;
5433 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_AN_MODE, false);
5435 req = (struct hns3_config_auto_neg_cmd *)desc.data;
5437 hns3_set_bit(flag, HNS3_MAC_CFG_AN_EN_B, 1);
5438 req->cfg_an_cmd_flag = rte_cpu_to_le_32(flag);
5440 ret = hns3_cmd_send(hw, &desc, 1);
5442 hns3_err(hw, "autoneg set cmd failed, ret = %d.", ret);
5448 hns3_set_fiber_port_link_speed(struct hns3_hw *hw,
5449 struct hns3_set_link_speed_cfg *cfg)
5453 if (hw->mac.support_autoneg) {
5454 ret = hns3_set_autoneg(hw, cfg->autoneg);
5456 hns3_err(hw, "failed to configure auto-negotiation.");
5461 * To enable auto-negotiation, we only need to open the switch
5462 * of auto-negotiation, then firmware sets all speed
5470 * Some hardware doesn't support auto-negotiation, but users may not
5471 * configure link_speeds (default 0), which means auto-negotiation
5472 * In this case, a warning message need to be printed, instead of
5476 hns3_warn(hw, "auto-negotiation is not supported.");
5480 return hns3_cfg_mac_speed_dup(hw, cfg->speed, cfg->duplex);
5484 hns3_set_port_link_speed(struct hns3_hw *hw,
5485 struct hns3_set_link_speed_cfg *cfg)
5489 if (hw->mac.media_type == HNS3_MEDIA_TYPE_COPPER) {
5490 #if defined(RTE_HNS3_ONLY_1630_FPGA)
5491 struct hns3_pf *pf = HNS3_DEV_HW_TO_PF(hw);
5496 ret = hns3_set_copper_port_link_speed(hw, cfg);
5498 hns3_err(hw, "failed to set copper port link speed,"
5502 } else if (hw->mac.media_type == HNS3_MEDIA_TYPE_FIBER) {
5503 ret = hns3_set_fiber_port_link_speed(hw, cfg);
5505 hns3_err(hw, "failed to set fiber port link speed,"
5515 hns3_apply_link_speed(struct hns3_hw *hw)
5517 struct rte_eth_conf *conf = &hw->data->dev_conf;
5518 struct hns3_set_link_speed_cfg cfg;
5521 memset(&cfg, 0, sizeof(struct hns3_set_link_speed_cfg));
5522 cfg.autoneg = (conf->link_speeds == ETH_LINK_SPEED_AUTONEG) ?
5523 ETH_LINK_AUTONEG : ETH_LINK_FIXED;
5524 if (cfg.autoneg != ETH_LINK_AUTONEG) {
5525 ret = hns3_check_port_speed(hw, conf->link_speeds);
5529 cfg.speed = hns3_get_link_speed(conf->link_speeds);
5530 cfg.duplex = hns3_get_link_duplex(conf->link_speeds);
5533 return hns3_set_port_link_speed(hw, &cfg);
5537 hns3_do_start(struct hns3_adapter *hns, bool reset_queue)
5539 struct hns3_hw *hw = &hns->hw;
5542 ret = hns3_dcb_cfg_update(hns);
5547 * The hns3_dcb_cfg_update may configure TM module, so
5548 * hns3_tm_conf_update must called later.
5550 ret = hns3_tm_conf_update(hw);
5552 PMD_INIT_LOG(ERR, "failed to update tm conf, ret = %d.", ret);
5556 hns3_enable_rxd_adv_layout(hw);
5558 ret = hns3_init_queues(hns, reset_queue);
5560 PMD_INIT_LOG(ERR, "failed to init queues, ret = %d.", ret);
5564 ret = hns3_cfg_mac_mode(hw, true);
5566 PMD_INIT_LOG(ERR, "failed to enable MAC, ret = %d", ret);
5567 goto err_config_mac_mode;
5570 ret = hns3_apply_link_speed(hw);
5572 goto err_config_mac_mode;
5576 err_config_mac_mode:
5577 (void)hns3_cfg_mac_mode(hw, false);
5578 hns3_dev_release_mbufs(hns);
5580 * Here is exception handling, hns3_reset_all_tqps will have the
5581 * corresponding error message if it is handled incorrectly, so it is
5582 * not necessary to check hns3_reset_all_tqps return value, here keep
5583 * ret as the error code causing the exception.
5585 (void)hns3_reset_all_tqps(hns);
5590 hns3_map_rx_interrupt(struct rte_eth_dev *dev)
5592 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5593 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5594 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5595 uint16_t base = RTE_INTR_VEC_ZERO_OFFSET;
5596 uint16_t vec = RTE_INTR_VEC_ZERO_OFFSET;
5597 uint32_t intr_vector;
5602 * hns3 needs a separate interrupt to be used as event interrupt which
5603 * could not be shared with task queue pair, so KERNEL drivers need
5604 * support multiple interrupt vectors.
5606 if (dev->data->dev_conf.intr_conf.rxq == 0 ||
5607 !rte_intr_cap_multiple(intr_handle))
5610 rte_intr_disable(intr_handle);
5611 intr_vector = hw->used_rx_queues;
5612 /* creates event fd for each intr vector when MSIX is used */
5613 if (rte_intr_efd_enable(intr_handle, intr_vector))
5616 if (intr_handle->intr_vec == NULL) {
5617 intr_handle->intr_vec =
5618 rte_zmalloc("intr_vec",
5619 hw->used_rx_queues * sizeof(int), 0);
5620 if (intr_handle->intr_vec == NULL) {
5621 hns3_err(hw, "failed to allocate %u rx_queues intr_vec",
5622 hw->used_rx_queues);
5624 goto alloc_intr_vec_error;
5628 if (rte_intr_allow_others(intr_handle)) {
5629 vec = RTE_INTR_VEC_RXTX_OFFSET;
5630 base = RTE_INTR_VEC_RXTX_OFFSET;
5633 for (q_id = 0; q_id < hw->used_rx_queues; q_id++) {
5634 ret = hns3_bind_ring_with_vector(hw, vec, true,
5635 HNS3_RING_TYPE_RX, q_id);
5637 goto bind_vector_error;
5638 intr_handle->intr_vec[q_id] = vec;
5640 * If there are not enough efds (e.g. not enough interrupt),
5641 * remaining queues will be bond to the last interrupt.
5643 if (vec < base + intr_handle->nb_efd - 1)
5646 rte_intr_enable(intr_handle);
5650 rte_free(intr_handle->intr_vec);
5651 intr_handle->intr_vec = NULL;
5652 alloc_intr_vec_error:
5653 rte_intr_efd_disable(intr_handle);
5658 hns3_restore_rx_interrupt(struct hns3_hw *hw)
5660 struct rte_eth_dev *dev = &rte_eth_devices[hw->data->port_id];
5661 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5662 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5666 if (dev->data->dev_conf.intr_conf.rxq == 0)
5669 if (rte_intr_dp_is_en(intr_handle)) {
5670 for (q_id = 0; q_id < hw->used_rx_queues; q_id++) {
5671 ret = hns3_bind_ring_with_vector(hw,
5672 intr_handle->intr_vec[q_id], true,
5673 HNS3_RING_TYPE_RX, q_id);
5683 hns3_restore_filter(struct rte_eth_dev *dev)
5685 hns3_restore_rss_filter(dev);
5689 hns3_dev_start(struct rte_eth_dev *dev)
5691 struct hns3_adapter *hns = dev->data->dev_private;
5692 struct hns3_hw *hw = &hns->hw;
5695 PMD_INIT_FUNC_TRACE();
5696 if (__atomic_load_n(&hw->reset.resetting, __ATOMIC_RELAXED))
5699 rte_spinlock_lock(&hw->lock);
5700 hw->adapter_state = HNS3_NIC_STARTING;
5702 ret = hns3_do_start(hns, true);
5704 hw->adapter_state = HNS3_NIC_CONFIGURED;
5705 rte_spinlock_unlock(&hw->lock);
5708 ret = hns3_map_rx_interrupt(dev);
5710 goto map_rx_inter_err;
5713 * There are three register used to control the status of a TQP
5714 * (contains a pair of Tx queue and Rx queue) in the new version network
5715 * engine. One is used to control the enabling of Tx queue, the other is
5716 * used to control the enabling of Rx queue, and the last is the master
5717 * switch used to control the enabling of the tqp. The Tx register and
5718 * TQP register must be enabled at the same time to enable a Tx queue.
5719 * The same applies to the Rx queue. For the older network engine, this
5720 * function only refresh the enabled flag, and it is used to update the
5721 * status of queue in the dpdk framework.
5723 ret = hns3_start_all_txqs(dev);
5725 goto map_rx_inter_err;
5727 ret = hns3_start_all_rxqs(dev);
5729 goto start_all_rxqs_fail;
5731 hw->adapter_state = HNS3_NIC_STARTED;
5732 rte_spinlock_unlock(&hw->lock);
5734 hns3_rx_scattered_calc(dev);
5735 hns3_set_rxtx_function(dev);
5736 hns3_mp_req_start_rxtx(dev);
5738 hns3_restore_filter(dev);
5740 /* Enable interrupt of all rx queues before enabling queues */
5741 hns3_dev_all_rx_queue_intr_enable(hw, true);
5744 * After finished the initialization, enable tqps to receive/transmit
5745 * packets and refresh all queue status.
5747 hns3_start_tqps(hw);
5749 hns3_tm_dev_start_proc(hw);
5751 if (dev->data->dev_conf.intr_conf.lsc != 0)
5752 hns3_dev_link_update(dev, 0);
5753 rte_eal_alarm_set(HNS3_SERVICE_INTERVAL, hns3_service_handler, dev);
5755 hns3_info(hw, "hns3 dev start successful!");
5759 start_all_rxqs_fail:
5760 hns3_stop_all_txqs(dev);
5762 (void)hns3_do_stop(hns);
5763 hw->adapter_state = HNS3_NIC_CONFIGURED;
5764 rte_spinlock_unlock(&hw->lock);
5770 hns3_do_stop(struct hns3_adapter *hns)
5772 struct hns3_hw *hw = &hns->hw;
5776 * The "hns3_do_stop" function will also be called by .stop_service to
5777 * prepare reset. At the time of global or IMP reset, the command cannot
5778 * be sent to stop the tx/rx queues. The mbuf in Tx/Rx queues may be
5779 * accessed during the reset process. So the mbuf can not be released
5780 * during reset and is required to be released after the reset is
5783 if (__atomic_load_n(&hw->reset.resetting, __ATOMIC_RELAXED) == 0)
5784 hns3_dev_release_mbufs(hns);
5786 ret = hns3_cfg_mac_mode(hw, false);
5789 hw->mac.link_status = ETH_LINK_DOWN;
5791 if (__atomic_load_n(&hw->reset.disable_cmd, __ATOMIC_RELAXED) == 0) {
5792 hns3_configure_all_mac_addr(hns, true);
5793 ret = hns3_reset_all_tqps(hns);
5795 hns3_err(hw, "failed to reset all queues ret = %d.",
5800 hw->mac.default_addr_setted = false;
5805 hns3_unmap_rx_interrupt(struct rte_eth_dev *dev)
5807 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5808 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5809 struct hns3_adapter *hns = dev->data->dev_private;
5810 struct hns3_hw *hw = &hns->hw;
5811 uint8_t base = RTE_INTR_VEC_ZERO_OFFSET;
5812 uint8_t vec = RTE_INTR_VEC_ZERO_OFFSET;
5815 if (dev->data->dev_conf.intr_conf.rxq == 0)
5818 /* unmap the ring with vector */
5819 if (rte_intr_allow_others(intr_handle)) {
5820 vec = RTE_INTR_VEC_RXTX_OFFSET;
5821 base = RTE_INTR_VEC_RXTX_OFFSET;
5823 if (rte_intr_dp_is_en(intr_handle)) {
5824 for (q_id = 0; q_id < hw->used_rx_queues; q_id++) {
5825 (void)hns3_bind_ring_with_vector(hw, vec, false,
5828 if (vec < base + intr_handle->nb_efd - 1)
5832 /* Clean datapath event and queue/vec mapping */
5833 rte_intr_efd_disable(intr_handle);
5834 if (intr_handle->intr_vec) {
5835 rte_free(intr_handle->intr_vec);
5836 intr_handle->intr_vec = NULL;
5841 hns3_dev_stop(struct rte_eth_dev *dev)
5843 struct hns3_adapter *hns = dev->data->dev_private;
5844 struct hns3_hw *hw = &hns->hw;
5846 PMD_INIT_FUNC_TRACE();
5847 dev->data->dev_started = 0;
5849 hw->adapter_state = HNS3_NIC_STOPPING;
5850 hns3_set_rxtx_function(dev);
5852 /* Disable datapath on secondary process. */
5853 hns3_mp_req_stop_rxtx(dev);
5854 /* Prevent crashes when queues are still in use. */
5855 rte_delay_ms(hw->tqps_num);
5857 rte_spinlock_lock(&hw->lock);
5858 if (__atomic_load_n(&hw->reset.resetting, __ATOMIC_RELAXED) == 0) {
5859 hns3_tm_dev_stop_proc(hw);
5860 hns3_config_mac_tnl_int(hw, false);
5863 hns3_unmap_rx_interrupt(dev);
5864 hw->adapter_state = HNS3_NIC_CONFIGURED;
5866 hns3_rx_scattered_reset(dev);
5867 rte_eal_alarm_cancel(hns3_service_handler, dev);
5868 hns3_stop_report_lse(dev);
5869 rte_spinlock_unlock(&hw->lock);
5875 hns3_dev_close(struct rte_eth_dev *eth_dev)
5877 struct hns3_adapter *hns = eth_dev->data->dev_private;
5878 struct hns3_hw *hw = &hns->hw;
5881 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
5882 rte_free(eth_dev->process_private);
5883 eth_dev->process_private = NULL;
5887 if (hw->adapter_state == HNS3_NIC_STARTED)
5888 ret = hns3_dev_stop(eth_dev);
5890 hw->adapter_state = HNS3_NIC_CLOSING;
5891 hns3_reset_abort(hns);
5892 hw->adapter_state = HNS3_NIC_CLOSED;
5894 hns3_configure_all_mc_mac_addr(hns, true);
5895 hns3_remove_all_vlan_table(hns);
5896 hns3_vlan_txvlan_cfg(hns, HNS3_PORT_BASE_VLAN_DISABLE, 0);
5897 hns3_uninit_pf(eth_dev);
5898 hns3_free_all_queues(eth_dev);
5899 rte_free(hw->reset.wait_data);
5900 rte_free(eth_dev->process_private);
5901 eth_dev->process_private = NULL;
5902 hns3_mp_uninit_primary();
5903 hns3_warn(hw, "Close port %u finished", hw->data->port_id);
5909 hns3_get_autoneg_rxtx_pause_copper(struct hns3_hw *hw, bool *rx_pause,
5912 struct hns3_mac *mac = &hw->mac;
5913 uint32_t advertising = mac->advertising;
5914 uint32_t lp_advertising = mac->lp_advertising;
5918 if (advertising & lp_advertising & HNS3_PHY_LINK_MODE_PAUSE_BIT) {
5921 } else if (advertising & lp_advertising &
5922 HNS3_PHY_LINK_MODE_ASYM_PAUSE_BIT) {
5923 if (advertising & HNS3_PHY_LINK_MODE_PAUSE_BIT)
5925 else if (lp_advertising & HNS3_PHY_LINK_MODE_PAUSE_BIT)
5930 static enum hns3_fc_mode
5931 hns3_get_autoneg_fc_mode(struct hns3_hw *hw)
5933 enum hns3_fc_mode current_mode;
5934 bool rx_pause = false;
5935 bool tx_pause = false;
5937 switch (hw->mac.media_type) {
5938 case HNS3_MEDIA_TYPE_COPPER:
5939 hns3_get_autoneg_rxtx_pause_copper(hw, &rx_pause, &tx_pause);
5943 * Flow control auto-negotiation is not supported for fiber and
5944 * backpalne media type.
5946 case HNS3_MEDIA_TYPE_FIBER:
5947 case HNS3_MEDIA_TYPE_BACKPLANE:
5948 hns3_err(hw, "autoneg FC mode can't be obtained, but flow control auto-negotiation is enabled.");
5949 current_mode = hw->requested_fc_mode;
5952 hns3_err(hw, "autoneg FC mode can't be obtained for unknown media type(%u).",
5953 hw->mac.media_type);
5954 current_mode = HNS3_FC_NONE;
5958 if (rx_pause && tx_pause)
5959 current_mode = HNS3_FC_FULL;
5961 current_mode = HNS3_FC_RX_PAUSE;
5963 current_mode = HNS3_FC_TX_PAUSE;
5965 current_mode = HNS3_FC_NONE;
5968 return current_mode;
5971 static enum hns3_fc_mode
5972 hns3_get_current_fc_mode(struct rte_eth_dev *dev)
5974 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5975 struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(dev->data->dev_private);
5976 struct hns3_mac *mac = &hw->mac;
5979 * When the flow control mode is obtained, the device may not complete
5980 * auto-negotiation. It is necessary to wait for link establishment.
5982 (void)hns3_dev_link_update(dev, 1);
5985 * If the link auto-negotiation of the nic is disabled, or the flow
5986 * control auto-negotiation is not supported, the forced flow control
5989 if (mac->link_autoneg == 0 || !pf->support_fc_autoneg)
5990 return hw->requested_fc_mode;
5992 return hns3_get_autoneg_fc_mode(hw);
5996 hns3_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
5998 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5999 struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(dev->data->dev_private);
6000 enum hns3_fc_mode current_mode;
6002 current_mode = hns3_get_current_fc_mode(dev);
6003 switch (current_mode) {
6005 fc_conf->mode = RTE_FC_FULL;
6007 case HNS3_FC_TX_PAUSE:
6008 fc_conf->mode = RTE_FC_TX_PAUSE;
6010 case HNS3_FC_RX_PAUSE:
6011 fc_conf->mode = RTE_FC_RX_PAUSE;
6015 fc_conf->mode = RTE_FC_NONE;
6019 fc_conf->pause_time = pf->pause_time;
6020 fc_conf->autoneg = pf->support_fc_autoneg ? hw->mac.link_autoneg : 0;
6026 hns3_get_fc_mode(struct hns3_hw *hw, enum rte_eth_fc_mode mode)
6030 hw->requested_fc_mode = HNS3_FC_NONE;
6032 case RTE_FC_RX_PAUSE:
6033 hw->requested_fc_mode = HNS3_FC_RX_PAUSE;
6035 case RTE_FC_TX_PAUSE:
6036 hw->requested_fc_mode = HNS3_FC_TX_PAUSE;
6039 hw->requested_fc_mode = HNS3_FC_FULL;
6042 hw->requested_fc_mode = HNS3_FC_NONE;
6043 hns3_warn(hw, "fc_mode(%u) exceeds member scope and is "
6044 "configured to RTE_FC_NONE", mode);
6050 hns3_check_fc_autoneg_valid(struct hns3_hw *hw, uint8_t autoneg)
6052 struct hns3_pf *pf = HNS3_DEV_HW_TO_PF(hw);
6054 if (!pf->support_fc_autoneg) {
6056 hns3_err(hw, "unsupported fc auto-negotiation setting.");
6061 * Flow control auto-negotiation of the NIC is not supported,
6062 * but other auto-negotiation features may be supported.
6064 if (autoneg != hw->mac.link_autoneg) {
6065 hns3_err(hw, "please use 'link_speeds' in struct rte_eth_conf to disable autoneg!");
6073 * If flow control auto-negotiation of the NIC is supported, all
6074 * auto-negotiation features are supported.
6076 if (autoneg != hw->mac.link_autoneg) {
6077 hns3_err(hw, "please use 'link_speeds' in struct rte_eth_conf to change autoneg!");
6085 hns3_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
6087 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6090 if (fc_conf->high_water || fc_conf->low_water ||
6091 fc_conf->send_xon || fc_conf->mac_ctrl_frame_fwd) {
6092 hns3_err(hw, "Unsupported flow control settings specified, "
6093 "high_water(%u), low_water(%u), send_xon(%u) and "
6094 "mac_ctrl_frame_fwd(%u) must be set to '0'",
6095 fc_conf->high_water, fc_conf->low_water,
6096 fc_conf->send_xon, fc_conf->mac_ctrl_frame_fwd);
6100 ret = hns3_check_fc_autoneg_valid(hw, fc_conf->autoneg);
6104 if (!fc_conf->pause_time) {
6105 hns3_err(hw, "Invalid pause time %u setting.",
6106 fc_conf->pause_time);
6110 if (!(hw->current_fc_status == HNS3_FC_STATUS_NONE ||
6111 hw->current_fc_status == HNS3_FC_STATUS_MAC_PAUSE)) {
6112 hns3_err(hw, "PFC is enabled. Cannot set MAC pause. "
6113 "current_fc_status = %d", hw->current_fc_status);
6117 if (hw->num_tc > 1) {
6118 hns3_err(hw, "in multi-TC scenarios, MAC pause is not supported.");
6122 hns3_get_fc_mode(hw, fc_conf->mode);
6124 rte_spinlock_lock(&hw->lock);
6125 ret = hns3_fc_enable(dev, fc_conf);
6126 rte_spinlock_unlock(&hw->lock);
6132 hns3_priority_flow_ctrl_set(struct rte_eth_dev *dev,
6133 struct rte_eth_pfc_conf *pfc_conf)
6135 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6138 if (!hns3_dev_dcb_supported(hw)) {
6139 hns3_err(hw, "This port does not support dcb configurations.");
6143 if (pfc_conf->fc.high_water || pfc_conf->fc.low_water ||
6144 pfc_conf->fc.send_xon || pfc_conf->fc.mac_ctrl_frame_fwd) {
6145 hns3_err(hw, "Unsupported flow control settings specified, "
6146 "high_water(%u), low_water(%u), send_xon(%u) and "
6147 "mac_ctrl_frame_fwd(%u) must be set to '0'",
6148 pfc_conf->fc.high_water, pfc_conf->fc.low_water,
6149 pfc_conf->fc.send_xon,
6150 pfc_conf->fc.mac_ctrl_frame_fwd);
6153 if (pfc_conf->fc.autoneg) {
6154 hns3_err(hw, "Unsupported fc auto-negotiation setting.");
6157 if (pfc_conf->fc.pause_time == 0) {
6158 hns3_err(hw, "Invalid pause time %u setting.",
6159 pfc_conf->fc.pause_time);
6163 if (!(hw->current_fc_status == HNS3_FC_STATUS_NONE ||
6164 hw->current_fc_status == HNS3_FC_STATUS_PFC)) {
6165 hns3_err(hw, "MAC pause is enabled. Cannot set PFC."
6166 "current_fc_status = %d", hw->current_fc_status);
6170 hns3_get_fc_mode(hw, pfc_conf->fc.mode);
6172 rte_spinlock_lock(&hw->lock);
6173 ret = hns3_dcb_pfc_enable(dev, pfc_conf);
6174 rte_spinlock_unlock(&hw->lock);
6180 hns3_get_dcb_info(struct rte_eth_dev *dev, struct rte_eth_dcb_info *dcb_info)
6182 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6183 struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(dev->data->dev_private);
6184 enum rte_eth_rx_mq_mode mq_mode = dev->data->dev_conf.rxmode.mq_mode;
6187 rte_spinlock_lock(&hw->lock);
6188 if ((uint32_t)mq_mode & ETH_MQ_RX_DCB_FLAG)
6189 dcb_info->nb_tcs = pf->local_max_tc;
6191 dcb_info->nb_tcs = 1;
6193 for (i = 0; i < HNS3_MAX_USER_PRIO; i++)
6194 dcb_info->prio_tc[i] = hw->dcb_info.prio_tc[i];
6195 for (i = 0; i < dcb_info->nb_tcs; i++)
6196 dcb_info->tc_bws[i] = hw->dcb_info.pg_info[0].tc_dwrr[i];
6198 for (i = 0; i < hw->num_tc; i++) {
6199 dcb_info->tc_queue.tc_rxq[0][i].base = hw->alloc_rss_size * i;
6200 dcb_info->tc_queue.tc_txq[0][i].base =
6201 hw->tc_queue[i].tqp_offset;
6202 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = hw->alloc_rss_size;
6203 dcb_info->tc_queue.tc_txq[0][i].nb_queue =
6204 hw->tc_queue[i].tqp_count;
6206 rte_spinlock_unlock(&hw->lock);
6212 hns3_reinit_dev(struct hns3_adapter *hns)
6214 struct hns3_hw *hw = &hns->hw;
6217 ret = hns3_cmd_init(hw);
6219 hns3_err(hw, "Failed to init cmd: %d", ret);
6223 ret = hns3_reset_all_tqps(hns);
6225 hns3_err(hw, "Failed to reset all queues: %d", ret);
6229 ret = hns3_init_hardware(hns);
6231 hns3_err(hw, "Failed to init hardware: %d", ret);
6235 ret = hns3_enable_hw_error_intr(hns, true);
6237 hns3_err(hw, "fail to enable hw error interrupts: %d",
6241 hns3_info(hw, "Reset done, driver initialization finished.");
6247 is_pf_reset_done(struct hns3_hw *hw)
6249 uint32_t val, reg, reg_bit;
6251 switch (hw->reset.level) {
6252 case HNS3_IMP_RESET:
6253 reg = HNS3_GLOBAL_RESET_REG;
6254 reg_bit = HNS3_IMP_RESET_BIT;
6256 case HNS3_GLOBAL_RESET:
6257 reg = HNS3_GLOBAL_RESET_REG;
6258 reg_bit = HNS3_GLOBAL_RESET_BIT;
6260 case HNS3_FUNC_RESET:
6261 reg = HNS3_FUN_RST_ING;
6262 reg_bit = HNS3_FUN_RST_ING_B;
6264 case HNS3_FLR_RESET:
6266 hns3_err(hw, "Wait for unsupported reset level: %d",
6270 val = hns3_read_dev(hw, reg);
6271 if (hns3_get_bit(val, reg_bit))
6278 hns3_is_reset_pending(struct hns3_adapter *hns)
6280 struct hns3_hw *hw = &hns->hw;
6281 enum hns3_reset_level reset;
6283 hns3_check_event_cause(hns, NULL);
6284 reset = hns3_get_reset_level(hns, &hw->reset.pending);
6286 if (reset != HNS3_NONE_RESET && hw->reset.level != HNS3_NONE_RESET &&
6287 hw->reset.level < reset) {
6288 hns3_warn(hw, "High level reset %d is pending", reset);
6291 reset = hns3_get_reset_level(hns, &hw->reset.request);
6292 if (reset != HNS3_NONE_RESET && hw->reset.level != HNS3_NONE_RESET &&
6293 hw->reset.level < reset) {
6294 hns3_warn(hw, "High level reset %d is request", reset);
6301 hns3_wait_hardware_ready(struct hns3_adapter *hns)
6303 struct hns3_hw *hw = &hns->hw;
6304 struct hns3_wait_data *wait_data = hw->reset.wait_data;
6307 if (wait_data->result == HNS3_WAIT_SUCCESS)
6309 else if (wait_data->result == HNS3_WAIT_TIMEOUT) {
6310 gettimeofday(&tv, NULL);
6311 hns3_warn(hw, "Reset step4 hardware not ready after reset time=%ld.%.6ld",
6312 tv.tv_sec, tv.tv_usec);
6314 } else if (wait_data->result == HNS3_WAIT_REQUEST)
6317 wait_data->hns = hns;
6318 wait_data->check_completion = is_pf_reset_done;
6319 wait_data->end_ms = (uint64_t)HNS3_RESET_WAIT_CNT *
6320 HNS3_RESET_WAIT_MS + get_timeofday_ms();
6321 wait_data->interval = HNS3_RESET_WAIT_MS * USEC_PER_MSEC;
6322 wait_data->count = HNS3_RESET_WAIT_CNT;
6323 wait_data->result = HNS3_WAIT_REQUEST;
6324 rte_eal_alarm_set(wait_data->interval, hns3_wait_callback, wait_data);
6329 hns3_func_reset_cmd(struct hns3_hw *hw, int func_id)
6331 struct hns3_cmd_desc desc;
6332 struct hns3_reset_cmd *req = (struct hns3_reset_cmd *)desc.data;
6334 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CFG_RST_TRIGGER, false);
6335 hns3_set_bit(req->mac_func_reset, HNS3_CFG_RESET_FUNC_B, 1);
6336 req->fun_reset_vfid = func_id;
6338 return hns3_cmd_send(hw, &desc, 1);
6342 hns3_imp_reset_cmd(struct hns3_hw *hw)
6344 struct hns3_cmd_desc desc;
6346 hns3_cmd_setup_basic_desc(&desc, 0xFFFE, false);
6347 desc.data[0] = 0xeedd;
6349 return hns3_cmd_send(hw, &desc, 1);
6353 hns3_msix_process(struct hns3_adapter *hns, enum hns3_reset_level reset_level)
6355 struct hns3_hw *hw = &hns->hw;
6359 gettimeofday(&tv, NULL);
6360 if (hns3_read_dev(hw, HNS3_GLOBAL_RESET_REG) ||
6361 hns3_read_dev(hw, HNS3_FUN_RST_ING)) {
6362 hns3_warn(hw, "Don't process msix during resetting time=%ld.%.6ld",
6363 tv.tv_sec, tv.tv_usec);
6367 switch (reset_level) {
6368 case HNS3_IMP_RESET:
6369 hns3_imp_reset_cmd(hw);
6370 hns3_warn(hw, "IMP Reset requested time=%ld.%.6ld",
6371 tv.tv_sec, tv.tv_usec);
6373 case HNS3_GLOBAL_RESET:
6374 val = hns3_read_dev(hw, HNS3_GLOBAL_RESET_REG);
6375 hns3_set_bit(val, HNS3_GLOBAL_RESET_BIT, 1);
6376 hns3_write_dev(hw, HNS3_GLOBAL_RESET_REG, val);
6377 hns3_warn(hw, "Global Reset requested time=%ld.%.6ld",
6378 tv.tv_sec, tv.tv_usec);
6380 case HNS3_FUNC_RESET:
6381 hns3_warn(hw, "PF Reset requested time=%ld.%.6ld",
6382 tv.tv_sec, tv.tv_usec);
6383 /* schedule again to check later */
6384 hns3_atomic_set_bit(HNS3_FUNC_RESET, &hw->reset.pending);
6385 hns3_schedule_reset(hns);
6388 hns3_warn(hw, "Unsupported reset level: %d", reset_level);
6391 hns3_atomic_clear_bit(reset_level, &hw->reset.request);
6394 static enum hns3_reset_level
6395 hns3_get_reset_level(struct hns3_adapter *hns, uint64_t *levels)
6397 struct hns3_hw *hw = &hns->hw;
6398 enum hns3_reset_level reset_level = HNS3_NONE_RESET;
6400 /* Return the highest priority reset level amongst all */
6401 if (hns3_atomic_test_bit(HNS3_IMP_RESET, levels))
6402 reset_level = HNS3_IMP_RESET;
6403 else if (hns3_atomic_test_bit(HNS3_GLOBAL_RESET, levels))
6404 reset_level = HNS3_GLOBAL_RESET;
6405 else if (hns3_atomic_test_bit(HNS3_FUNC_RESET, levels))
6406 reset_level = HNS3_FUNC_RESET;
6407 else if (hns3_atomic_test_bit(HNS3_FLR_RESET, levels))
6408 reset_level = HNS3_FLR_RESET;
6410 if (hw->reset.level != HNS3_NONE_RESET && reset_level < hw->reset.level)
6411 return HNS3_NONE_RESET;
6417 hns3_record_imp_error(struct hns3_adapter *hns)
6419 struct hns3_hw *hw = &hns->hw;
6422 reg_val = hns3_read_dev(hw, HNS3_VECTOR0_OTER_EN_REG);
6423 if (hns3_get_bit(reg_val, HNS3_VECTOR0_IMP_RD_POISON_B)) {
6424 hns3_warn(hw, "Detected IMP RD poison!");
6425 hns3_set_bit(reg_val, HNS3_VECTOR0_IMP_RD_POISON_B, 0);
6426 hns3_write_dev(hw, HNS3_VECTOR0_OTER_EN_REG, reg_val);
6429 if (hns3_get_bit(reg_val, HNS3_VECTOR0_IMP_CMDQ_ERR_B)) {
6430 hns3_warn(hw, "Detected IMP CMDQ error!");
6431 hns3_set_bit(reg_val, HNS3_VECTOR0_IMP_CMDQ_ERR_B, 0);
6432 hns3_write_dev(hw, HNS3_VECTOR0_OTER_EN_REG, reg_val);
6437 hns3_prepare_reset(struct hns3_adapter *hns)
6439 struct hns3_hw *hw = &hns->hw;
6443 switch (hw->reset.level) {
6444 case HNS3_FUNC_RESET:
6445 ret = hns3_func_reset_cmd(hw, HNS3_PF_FUNC_ID);
6450 * After performaning pf reset, it is not necessary to do the
6451 * mailbox handling or send any command to firmware, because
6452 * any mailbox handling or command to firmware is only valid
6453 * after hns3_cmd_init is called.
6455 __atomic_store_n(&hw->reset.disable_cmd, 1, __ATOMIC_RELAXED);
6456 hw->reset.stats.request_cnt++;
6458 case HNS3_IMP_RESET:
6459 hns3_record_imp_error(hns);
6460 reg_val = hns3_read_dev(hw, HNS3_VECTOR0_OTER_EN_REG);
6461 hns3_write_dev(hw, HNS3_VECTOR0_OTER_EN_REG, reg_val |
6462 BIT(HNS3_VECTOR0_IMP_RESET_INT_B));
6471 hns3_set_rst_done(struct hns3_hw *hw)
6473 struct hns3_pf_rst_done_cmd *req;
6474 struct hns3_cmd_desc desc;
6476 req = (struct hns3_pf_rst_done_cmd *)desc.data;
6477 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_PF_RST_DONE, false);
6478 req->pf_rst_done |= HNS3_PF_RESET_DONE_BIT;
6479 return hns3_cmd_send(hw, &desc, 1);
6483 hns3_stop_service(struct hns3_adapter *hns)
6485 struct hns3_hw *hw = &hns->hw;
6486 struct rte_eth_dev *eth_dev;
6488 eth_dev = &rte_eth_devices[hw->data->port_id];
6489 hw->mac.link_status = ETH_LINK_DOWN;
6490 if (hw->adapter_state == HNS3_NIC_STARTED) {
6491 rte_eal_alarm_cancel(hns3_service_handler, eth_dev);
6492 hns3_update_linkstatus_and_event(hw, false);
6495 hns3_set_rxtx_function(eth_dev);
6497 /* Disable datapath on secondary process. */
6498 hns3_mp_req_stop_rxtx(eth_dev);
6499 rte_delay_ms(hw->tqps_num);
6501 rte_spinlock_lock(&hw->lock);
6502 if (hns->hw.adapter_state == HNS3_NIC_STARTED ||
6503 hw->adapter_state == HNS3_NIC_STOPPING) {
6504 hns3_enable_all_queues(hw, false);
6506 hw->reset.mbuf_deferred_free = true;
6508 hw->reset.mbuf_deferred_free = false;
6511 * It is cumbersome for hardware to pick-and-choose entries for deletion
6512 * from table space. Hence, for function reset software intervention is
6513 * required to delete the entries
6515 if (__atomic_load_n(&hw->reset.disable_cmd, __ATOMIC_RELAXED) == 0)
6516 hns3_configure_all_mc_mac_addr(hns, true);
6517 rte_spinlock_unlock(&hw->lock);
6523 hns3_start_service(struct hns3_adapter *hns)
6525 struct hns3_hw *hw = &hns->hw;
6526 struct rte_eth_dev *eth_dev;
6528 if (hw->reset.level == HNS3_IMP_RESET ||
6529 hw->reset.level == HNS3_GLOBAL_RESET)
6530 hns3_set_rst_done(hw);
6531 eth_dev = &rte_eth_devices[hw->data->port_id];
6532 hns3_set_rxtx_function(eth_dev);
6533 hns3_mp_req_start_rxtx(eth_dev);
6534 if (hw->adapter_state == HNS3_NIC_STARTED) {
6536 * This API parent function already hold the hns3_hw.lock, the
6537 * hns3_service_handler may report lse, in bonding application
6538 * it will call driver's ops which may acquire the hns3_hw.lock
6539 * again, thus lead to deadlock.
6540 * We defer calls hns3_service_handler to avoid the deadlock.
6542 rte_eal_alarm_set(HNS3_SERVICE_QUICK_INTERVAL,
6543 hns3_service_handler, eth_dev);
6545 /* Enable interrupt of all rx queues before enabling queues */
6546 hns3_dev_all_rx_queue_intr_enable(hw, true);
6548 * Enable state of each rxq and txq will be recovered after
6549 * reset, so we need to restore them before enable all tqps;
6551 hns3_restore_tqp_enable_state(hw);
6553 * When finished the initialization, enable queues to receive
6554 * and transmit packets.
6556 hns3_enable_all_queues(hw, true);
6563 hns3_restore_conf(struct hns3_adapter *hns)
6565 struct hns3_hw *hw = &hns->hw;
6568 ret = hns3_configure_all_mac_addr(hns, false);
6572 ret = hns3_configure_all_mc_mac_addr(hns, false);
6576 ret = hns3_dev_promisc_restore(hns);
6580 ret = hns3_restore_vlan_table(hns);
6584 ret = hns3_restore_vlan_conf(hns);
6588 ret = hns3_restore_all_fdir_filter(hns);
6592 ret = hns3_restore_ptp(hns);
6596 ret = hns3_restore_rx_interrupt(hw);
6600 ret = hns3_restore_gro_conf(hw);
6604 ret = hns3_restore_fec(hw);
6608 if (hns->hw.adapter_state == HNS3_NIC_STARTED) {
6609 ret = hns3_do_start(hns, false);
6612 hns3_info(hw, "hns3 dev restart successful!");
6613 } else if (hw->adapter_state == HNS3_NIC_STOPPING)
6614 hw->adapter_state = HNS3_NIC_CONFIGURED;
6618 hns3_configure_all_mc_mac_addr(hns, true);
6620 hns3_configure_all_mac_addr(hns, true);
6625 hns3_reset_service(void *param)
6627 struct hns3_adapter *hns = (struct hns3_adapter *)param;
6628 struct hns3_hw *hw = &hns->hw;
6629 enum hns3_reset_level reset_level;
6630 struct timeval tv_delta;
6631 struct timeval tv_start;
6637 * The interrupt is not triggered within the delay time.
6638 * The interrupt may have been lost. It is necessary to handle
6639 * the interrupt to recover from the error.
6641 if (__atomic_load_n(&hw->reset.schedule, __ATOMIC_RELAXED) ==
6642 SCHEDULE_DEFERRED) {
6643 __atomic_store_n(&hw->reset.schedule, SCHEDULE_REQUESTED,
6645 hns3_err(hw, "Handling interrupts in delayed tasks");
6646 hns3_interrupt_handler(&rte_eth_devices[hw->data->port_id]);
6647 reset_level = hns3_get_reset_level(hns, &hw->reset.pending);
6648 if (reset_level == HNS3_NONE_RESET) {
6649 hns3_err(hw, "No reset level is set, try IMP reset");
6650 hns3_atomic_set_bit(HNS3_IMP_RESET, &hw->reset.pending);
6653 __atomic_store_n(&hw->reset.schedule, SCHEDULE_NONE, __ATOMIC_RELAXED);
6656 * Check if there is any ongoing reset in the hardware. This status can
6657 * be checked from reset_pending. If there is then, we need to wait for
6658 * hardware to complete reset.
6659 * a. If we are able to figure out in reasonable time that hardware
6660 * has fully resetted then, we can proceed with driver, client
6662 * b. else, we can come back later to check this status so re-sched
6665 reset_level = hns3_get_reset_level(hns, &hw->reset.pending);
6666 if (reset_level != HNS3_NONE_RESET) {
6667 gettimeofday(&tv_start, NULL);
6668 ret = hns3_reset_process(hns, reset_level);
6669 gettimeofday(&tv, NULL);
6670 timersub(&tv, &tv_start, &tv_delta);
6671 msec = tv_delta.tv_sec * MSEC_PER_SEC +
6672 tv_delta.tv_usec / USEC_PER_MSEC;
6673 if (msec > HNS3_RESET_PROCESS_MS)
6674 hns3_err(hw, "%d handle long time delta %" PRIx64
6675 " ms time=%ld.%.6ld",
6676 hw->reset.level, msec,
6677 tv.tv_sec, tv.tv_usec);
6682 /* Check if we got any *new* reset requests to be honored */
6683 reset_level = hns3_get_reset_level(hns, &hw->reset.request);
6684 if (reset_level != HNS3_NONE_RESET)
6685 hns3_msix_process(hns, reset_level);
6689 hns3_get_speed_capa_num(uint16_t device_id)
6693 switch (device_id) {
6694 case HNS3_DEV_ID_25GE:
6695 case HNS3_DEV_ID_25GE_RDMA:
6698 case HNS3_DEV_ID_100G_RDMA_MACSEC:
6699 case HNS3_DEV_ID_200G_RDMA:
6711 hns3_get_speed_fec_capa(struct rte_eth_fec_capa *speed_fec_capa,
6714 switch (device_id) {
6715 case HNS3_DEV_ID_25GE:
6717 case HNS3_DEV_ID_25GE_RDMA:
6718 speed_fec_capa[0].speed = speed_fec_capa_tbl[1].speed;
6719 speed_fec_capa[0].capa = speed_fec_capa_tbl[1].capa;
6721 /* In HNS3 device, the 25G NIC is compatible with 10G rate */
6722 speed_fec_capa[1].speed = speed_fec_capa_tbl[0].speed;
6723 speed_fec_capa[1].capa = speed_fec_capa_tbl[0].capa;
6725 case HNS3_DEV_ID_100G_RDMA_MACSEC:
6726 speed_fec_capa[0].speed = speed_fec_capa_tbl[4].speed;
6727 speed_fec_capa[0].capa = speed_fec_capa_tbl[4].capa;
6729 case HNS3_DEV_ID_200G_RDMA:
6730 speed_fec_capa[0].speed = speed_fec_capa_tbl[5].speed;
6731 speed_fec_capa[0].capa = speed_fec_capa_tbl[5].capa;
6741 hns3_fec_get_capability(struct rte_eth_dev *dev,
6742 struct rte_eth_fec_capa *speed_fec_capa,
6745 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6746 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
6747 uint16_t device_id = pci_dev->id.device_id;
6748 unsigned int capa_num;
6751 capa_num = hns3_get_speed_capa_num(device_id);
6752 if (capa_num == 0) {
6753 hns3_err(hw, "device(0x%x) is not supported by hns3 PMD",
6758 if (speed_fec_capa == NULL || num < capa_num)
6761 ret = hns3_get_speed_fec_capa(speed_fec_capa, device_id);
6769 get_current_fec_auto_state(struct hns3_hw *hw, uint8_t *state)
6771 struct hns3_config_fec_cmd *req;
6772 struct hns3_cmd_desc desc;
6776 * CMD(HNS3_OPC_CONFIG_FEC_MODE) read is not supported
6777 * in device of link speed
6780 if (hw->mac.link_speed < ETH_SPEED_NUM_10G) {
6785 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_FEC_MODE, true);
6786 req = (struct hns3_config_fec_cmd *)desc.data;
6787 ret = hns3_cmd_send(hw, &desc, 1);
6789 hns3_err(hw, "get current fec auto state failed, ret = %d",
6794 *state = req->fec_mode & (1U << HNS3_MAC_CFG_FEC_AUTO_EN_B);
6799 hns3_fec_get_internal(struct hns3_hw *hw, uint32_t *fec_capa)
6801 struct hns3_sfp_info_cmd *resp;
6802 uint32_t tmp_fec_capa;
6804 struct hns3_cmd_desc desc;
6808 * If link is down and AUTO is enabled, AUTO is returned, otherwise,
6809 * configured FEC mode is returned.
6810 * If link is up, current FEC mode is returned.
6812 if (hw->mac.link_status == ETH_LINK_DOWN) {
6813 ret = get_current_fec_auto_state(hw, &auto_state);
6817 if (auto_state == 0x1) {
6818 *fec_capa = RTE_ETH_FEC_MODE_CAPA_MASK(AUTO);
6823 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_GET_SFP_INFO, true);
6824 resp = (struct hns3_sfp_info_cmd *)desc.data;
6825 resp->query_type = HNS3_ACTIVE_QUERY;
6827 ret = hns3_cmd_send(hw, &desc, 1);
6828 if (ret == -EOPNOTSUPP) {
6829 hns3_err(hw, "IMP do not support get FEC, ret = %d", ret);
6832 hns3_err(hw, "get FEC failed, ret = %d", ret);
6837 * FEC mode order defined in hns3 hardware is inconsistend with
6838 * that defined in the ethdev library. So the sequence needs
6841 switch (resp->active_fec) {
6842 case HNS3_HW_FEC_MODE_NOFEC:
6843 tmp_fec_capa = RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC);
6845 case HNS3_HW_FEC_MODE_BASER:
6846 tmp_fec_capa = RTE_ETH_FEC_MODE_CAPA_MASK(BASER);
6848 case HNS3_HW_FEC_MODE_RS:
6849 tmp_fec_capa = RTE_ETH_FEC_MODE_CAPA_MASK(RS);
6852 tmp_fec_capa = RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC);
6856 *fec_capa = tmp_fec_capa;
6861 hns3_fec_get(struct rte_eth_dev *dev, uint32_t *fec_capa)
6863 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6865 return hns3_fec_get_internal(hw, fec_capa);
6869 hns3_set_fec_hw(struct hns3_hw *hw, uint32_t mode)
6871 struct hns3_config_fec_cmd *req;
6872 struct hns3_cmd_desc desc;
6875 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_FEC_MODE, false);
6877 req = (struct hns3_config_fec_cmd *)desc.data;
6879 case RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC):
6880 hns3_set_field(req->fec_mode, HNS3_MAC_CFG_FEC_MODE_M,
6881 HNS3_MAC_CFG_FEC_MODE_S, HNS3_MAC_FEC_OFF);
6883 case RTE_ETH_FEC_MODE_CAPA_MASK(BASER):
6884 hns3_set_field(req->fec_mode, HNS3_MAC_CFG_FEC_MODE_M,
6885 HNS3_MAC_CFG_FEC_MODE_S, HNS3_MAC_FEC_BASER);
6887 case RTE_ETH_FEC_MODE_CAPA_MASK(RS):
6888 hns3_set_field(req->fec_mode, HNS3_MAC_CFG_FEC_MODE_M,
6889 HNS3_MAC_CFG_FEC_MODE_S, HNS3_MAC_FEC_RS);
6891 case RTE_ETH_FEC_MODE_CAPA_MASK(AUTO):
6892 hns3_set_bit(req->fec_mode, HNS3_MAC_CFG_FEC_AUTO_EN_B, 1);
6897 ret = hns3_cmd_send(hw, &desc, 1);
6899 hns3_err(hw, "set fec mode failed, ret = %d", ret);
6905 get_current_speed_fec_cap(struct hns3_hw *hw, struct rte_eth_fec_capa *fec_capa)
6907 struct hns3_mac *mac = &hw->mac;
6910 switch (mac->link_speed) {
6911 case ETH_SPEED_NUM_10G:
6912 cur_capa = fec_capa[1].capa;
6914 case ETH_SPEED_NUM_25G:
6915 case ETH_SPEED_NUM_100G:
6916 case ETH_SPEED_NUM_200G:
6917 cur_capa = fec_capa[0].capa;
6928 is_fec_mode_one_bit_set(uint32_t mode)
6933 for (i = 0; i < sizeof(mode); i++)
6934 if (mode >> i & 0x1)
6937 return cnt == 1 ? true : false;
6941 hns3_fec_set(struct rte_eth_dev *dev, uint32_t mode)
6943 #define FEC_CAPA_NUM 2
6944 struct hns3_adapter *hns = dev->data->dev_private;
6945 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(hns);
6946 struct hns3_pf *pf = &hns->pf;
6948 struct rte_eth_fec_capa fec_capa[FEC_CAPA_NUM];
6950 uint32_t num = FEC_CAPA_NUM;
6953 ret = hns3_fec_get_capability(dev, fec_capa, num);
6957 /* HNS3 PMD driver only support one bit set mode, e.g. 0x1, 0x4 */
6958 if (!is_fec_mode_one_bit_set(mode))
6959 hns3_err(hw, "FEC mode(0x%x) not supported in HNS3 PMD,"
6960 "FEC mode should be only one bit set", mode);
6963 * Check whether the configured mode is within the FEC capability.
6964 * If not, the configured mode will not be supported.
6966 cur_capa = get_current_speed_fec_cap(hw, fec_capa);
6967 if (!(cur_capa & mode)) {
6968 hns3_err(hw, "unsupported FEC mode = 0x%x", mode);
6972 rte_spinlock_lock(&hw->lock);
6973 ret = hns3_set_fec_hw(hw, mode);
6975 rte_spinlock_unlock(&hw->lock);
6979 pf->fec_mode = mode;
6980 rte_spinlock_unlock(&hw->lock);
6986 hns3_restore_fec(struct hns3_hw *hw)
6988 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
6989 struct hns3_pf *pf = &hns->pf;
6990 uint32_t mode = pf->fec_mode;
6993 ret = hns3_set_fec_hw(hw, mode);
6995 hns3_err(hw, "restore fec mode(0x%x) failed, ret = %d",
7002 hns3_query_dev_fec_info(struct hns3_hw *hw)
7004 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
7005 struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(hns);
7008 ret = hns3_fec_get_internal(hw, &pf->fec_mode);
7010 hns3_err(hw, "query device FEC info failed, ret = %d", ret);
7016 hns3_optical_module_existed(struct hns3_hw *hw)
7018 struct hns3_cmd_desc desc;
7022 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_GET_SFP_EXIST, true);
7023 ret = hns3_cmd_send(hw, &desc, 1);
7026 "fail to get optical module exist state, ret = %d.\n",
7030 existed = !!desc.data[0];
7036 hns3_get_module_eeprom_data(struct hns3_hw *hw, uint32_t offset,
7037 uint32_t len, uint8_t *data)
7039 #define HNS3_SFP_INFO_CMD_NUM 6
7040 #define HNS3_SFP_INFO_MAX_LEN \
7041 (HNS3_SFP_INFO_BD0_LEN + \
7042 (HNS3_SFP_INFO_CMD_NUM - 1) * HNS3_SFP_INFO_BDX_LEN)
7043 struct hns3_cmd_desc desc[HNS3_SFP_INFO_CMD_NUM];
7044 struct hns3_sfp_info_bd0_cmd *sfp_info_bd0;
7050 for (i = 0; i < HNS3_SFP_INFO_CMD_NUM; i++) {
7051 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_GET_SFP_EEPROM,
7053 if (i < HNS3_SFP_INFO_CMD_NUM - 1)
7054 desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
7057 sfp_info_bd0 = (struct hns3_sfp_info_bd0_cmd *)desc[0].data;
7058 sfp_info_bd0->offset = rte_cpu_to_le_16((uint16_t)offset);
7059 read_len = RTE_MIN(len, HNS3_SFP_INFO_MAX_LEN);
7060 sfp_info_bd0->read_len = rte_cpu_to_le_16((uint16_t)read_len);
7062 ret = hns3_cmd_send(hw, desc, HNS3_SFP_INFO_CMD_NUM);
7064 hns3_err(hw, "fail to get module EEPROM info, ret = %d.\n",
7069 /* The data format in BD0 is different with the others. */
7070 copy_len = RTE_MIN(len, HNS3_SFP_INFO_BD0_LEN);
7071 memcpy(data, sfp_info_bd0->data, copy_len);
7072 read_len = copy_len;
7074 for (i = 1; i < HNS3_SFP_INFO_CMD_NUM; i++) {
7075 if (read_len >= len)
7078 copy_len = RTE_MIN(len - read_len, HNS3_SFP_INFO_BDX_LEN);
7079 memcpy(data + read_len, desc[i].data, copy_len);
7080 read_len += copy_len;
7083 return (int)read_len;
7087 hns3_get_module_eeprom(struct rte_eth_dev *dev,
7088 struct rte_dev_eeprom_info *info)
7090 struct hns3_adapter *hns = dev->data->dev_private;
7091 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(hns);
7092 uint32_t offset = info->offset;
7093 uint32_t len = info->length;
7094 uint8_t *data = info->data;
7095 uint32_t read_len = 0;
7097 if (hw->mac.media_type != HNS3_MEDIA_TYPE_FIBER)
7100 if (!hns3_optical_module_existed(hw)) {
7101 hns3_err(hw, "fail to read module EEPROM: no module is connected.\n");
7105 while (read_len < len) {
7107 ret = hns3_get_module_eeprom_data(hw, offset + read_len,
7119 hns3_get_module_info(struct rte_eth_dev *dev,
7120 struct rte_eth_dev_module_info *modinfo)
7122 #define HNS3_SFF8024_ID_SFP 0x03
7123 #define HNS3_SFF8024_ID_QSFP_8438 0x0c
7124 #define HNS3_SFF8024_ID_QSFP_8436_8636 0x0d
7125 #define HNS3_SFF8024_ID_QSFP28_8636 0x11
7126 #define HNS3_SFF_8636_V1_3 0x03
7127 struct hns3_adapter *hns = dev->data->dev_private;
7128 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(hns);
7129 struct rte_dev_eeprom_info info;
7130 struct hns3_sfp_type sfp_type;
7133 memset(&sfp_type, 0, sizeof(sfp_type));
7134 memset(&info, 0, sizeof(info));
7135 info.data = (uint8_t *)&sfp_type;
7136 info.length = sizeof(sfp_type);
7137 ret = hns3_get_module_eeprom(dev, &info);
7141 switch (sfp_type.type) {
7142 case HNS3_SFF8024_ID_SFP:
7143 modinfo->type = RTE_ETH_MODULE_SFF_8472;
7144 modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8472_LEN;
7146 case HNS3_SFF8024_ID_QSFP_8438:
7147 modinfo->type = RTE_ETH_MODULE_SFF_8436;
7148 modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8436_MAX_LEN;
7150 case HNS3_SFF8024_ID_QSFP_8436_8636:
7151 if (sfp_type.ext_type < HNS3_SFF_8636_V1_3) {
7152 modinfo->type = RTE_ETH_MODULE_SFF_8436;
7153 modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8436_MAX_LEN;
7155 modinfo->type = RTE_ETH_MODULE_SFF_8636;
7156 modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8636_MAX_LEN;
7159 case HNS3_SFF8024_ID_QSFP28_8636:
7160 modinfo->type = RTE_ETH_MODULE_SFF_8636;
7161 modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8636_MAX_LEN;
7164 hns3_err(hw, "unknown module, type = %u, extra_type = %u.\n",
7165 sfp_type.type, sfp_type.ext_type);
7173 hns3_parse_io_hint_func(const char *key, const char *value, void *extra_args)
7175 uint32_t hint = HNS3_IO_FUNC_HINT_NONE;
7179 if (strcmp(value, "vec") == 0)
7180 hint = HNS3_IO_FUNC_HINT_VEC;
7181 else if (strcmp(value, "sve") == 0)
7182 hint = HNS3_IO_FUNC_HINT_SVE;
7183 else if (strcmp(value, "simple") == 0)
7184 hint = HNS3_IO_FUNC_HINT_SIMPLE;
7185 else if (strcmp(value, "common") == 0)
7186 hint = HNS3_IO_FUNC_HINT_COMMON;
7188 /* If the hint is valid then update output parameters */
7189 if (hint != HNS3_IO_FUNC_HINT_NONE)
7190 *(uint32_t *)extra_args = hint;
7196 hns3_get_io_hint_func_name(uint32_t hint)
7199 case HNS3_IO_FUNC_HINT_VEC:
7201 case HNS3_IO_FUNC_HINT_SVE:
7203 case HNS3_IO_FUNC_HINT_SIMPLE:
7205 case HNS3_IO_FUNC_HINT_COMMON:
7213 hns3_parse_dev_caps_mask(const char *key, const char *value, void *extra_args)
7219 val = strtoull(value, NULL, 16);
7220 *(uint64_t *)extra_args = val;
7226 hns3_parse_devargs(struct rte_eth_dev *dev)
7228 struct hns3_adapter *hns = dev->data->dev_private;
7229 uint32_t rx_func_hint = HNS3_IO_FUNC_HINT_NONE;
7230 uint32_t tx_func_hint = HNS3_IO_FUNC_HINT_NONE;
7231 struct hns3_hw *hw = &hns->hw;
7232 uint64_t dev_caps_mask = 0;
7233 struct rte_kvargs *kvlist;
7235 if (dev->device->devargs == NULL)
7238 kvlist = rte_kvargs_parse(dev->device->devargs->args, NULL);
7242 rte_kvargs_process(kvlist, HNS3_DEVARG_RX_FUNC_HINT,
7243 &hns3_parse_io_hint_func, &rx_func_hint);
7244 rte_kvargs_process(kvlist, HNS3_DEVARG_TX_FUNC_HINT,
7245 &hns3_parse_io_hint_func, &tx_func_hint);
7246 rte_kvargs_process(kvlist, HNS3_DEVARG_DEV_CAPS_MASK,
7247 &hns3_parse_dev_caps_mask, &dev_caps_mask);
7248 rte_kvargs_free(kvlist);
7250 if (rx_func_hint != HNS3_IO_FUNC_HINT_NONE)
7251 hns3_warn(hw, "parsed %s = %s.", HNS3_DEVARG_RX_FUNC_HINT,
7252 hns3_get_io_hint_func_name(rx_func_hint));
7253 hns->rx_func_hint = rx_func_hint;
7254 if (tx_func_hint != HNS3_IO_FUNC_HINT_NONE)
7255 hns3_warn(hw, "parsed %s = %s.", HNS3_DEVARG_TX_FUNC_HINT,
7256 hns3_get_io_hint_func_name(tx_func_hint));
7257 hns->tx_func_hint = tx_func_hint;
7259 if (dev_caps_mask != 0)
7260 hns3_warn(hw, "parsed %s = 0x%" PRIx64 ".",
7261 HNS3_DEVARG_DEV_CAPS_MASK, dev_caps_mask);
7262 hns->dev_caps_mask = dev_caps_mask;
7265 static const struct eth_dev_ops hns3_eth_dev_ops = {
7266 .dev_configure = hns3_dev_configure,
7267 .dev_start = hns3_dev_start,
7268 .dev_stop = hns3_dev_stop,
7269 .dev_close = hns3_dev_close,
7270 .promiscuous_enable = hns3_dev_promiscuous_enable,
7271 .promiscuous_disable = hns3_dev_promiscuous_disable,
7272 .allmulticast_enable = hns3_dev_allmulticast_enable,
7273 .allmulticast_disable = hns3_dev_allmulticast_disable,
7274 .mtu_set = hns3_dev_mtu_set,
7275 .stats_get = hns3_stats_get,
7276 .stats_reset = hns3_stats_reset,
7277 .xstats_get = hns3_dev_xstats_get,
7278 .xstats_get_names = hns3_dev_xstats_get_names,
7279 .xstats_reset = hns3_dev_xstats_reset,
7280 .xstats_get_by_id = hns3_dev_xstats_get_by_id,
7281 .xstats_get_names_by_id = hns3_dev_xstats_get_names_by_id,
7282 .dev_infos_get = hns3_dev_infos_get,
7283 .fw_version_get = hns3_fw_version_get,
7284 .rx_queue_setup = hns3_rx_queue_setup,
7285 .tx_queue_setup = hns3_tx_queue_setup,
7286 .rx_queue_release = hns3_dev_rx_queue_release,
7287 .tx_queue_release = hns3_dev_tx_queue_release,
7288 .rx_queue_start = hns3_dev_rx_queue_start,
7289 .rx_queue_stop = hns3_dev_rx_queue_stop,
7290 .tx_queue_start = hns3_dev_tx_queue_start,
7291 .tx_queue_stop = hns3_dev_tx_queue_stop,
7292 .rx_queue_intr_enable = hns3_dev_rx_queue_intr_enable,
7293 .rx_queue_intr_disable = hns3_dev_rx_queue_intr_disable,
7294 .rxq_info_get = hns3_rxq_info_get,
7295 .txq_info_get = hns3_txq_info_get,
7296 .rx_burst_mode_get = hns3_rx_burst_mode_get,
7297 .tx_burst_mode_get = hns3_tx_burst_mode_get,
7298 .flow_ctrl_get = hns3_flow_ctrl_get,
7299 .flow_ctrl_set = hns3_flow_ctrl_set,
7300 .priority_flow_ctrl_set = hns3_priority_flow_ctrl_set,
7301 .mac_addr_add = hns3_add_mac_addr,
7302 .mac_addr_remove = hns3_remove_mac_addr,
7303 .mac_addr_set = hns3_set_default_mac_addr,
7304 .set_mc_addr_list = hns3_set_mc_mac_addr_list,
7305 .link_update = hns3_dev_link_update,
7306 .rss_hash_update = hns3_dev_rss_hash_update,
7307 .rss_hash_conf_get = hns3_dev_rss_hash_conf_get,
7308 .reta_update = hns3_dev_rss_reta_update,
7309 .reta_query = hns3_dev_rss_reta_query,
7310 .flow_ops_get = hns3_dev_flow_ops_get,
7311 .vlan_filter_set = hns3_vlan_filter_set,
7312 .vlan_tpid_set = hns3_vlan_tpid_set,
7313 .vlan_offload_set = hns3_vlan_offload_set,
7314 .vlan_pvid_set = hns3_vlan_pvid_set,
7315 .get_reg = hns3_get_regs,
7316 .get_module_info = hns3_get_module_info,
7317 .get_module_eeprom = hns3_get_module_eeprom,
7318 .get_dcb_info = hns3_get_dcb_info,
7319 .dev_supported_ptypes_get = hns3_dev_supported_ptypes_get,
7320 .fec_get_capability = hns3_fec_get_capability,
7321 .fec_get = hns3_fec_get,
7322 .fec_set = hns3_fec_set,
7323 .tm_ops_get = hns3_tm_ops_get,
7324 .tx_done_cleanup = hns3_tx_done_cleanup,
7325 .timesync_enable = hns3_timesync_enable,
7326 .timesync_disable = hns3_timesync_disable,
7327 .timesync_read_rx_timestamp = hns3_timesync_read_rx_timestamp,
7328 .timesync_read_tx_timestamp = hns3_timesync_read_tx_timestamp,
7329 .timesync_adjust_time = hns3_timesync_adjust_time,
7330 .timesync_read_time = hns3_timesync_read_time,
7331 .timesync_write_time = hns3_timesync_write_time,
7334 static const struct hns3_reset_ops hns3_reset_ops = {
7335 .reset_service = hns3_reset_service,
7336 .stop_service = hns3_stop_service,
7337 .prepare_reset = hns3_prepare_reset,
7338 .wait_hardware_ready = hns3_wait_hardware_ready,
7339 .reinit_dev = hns3_reinit_dev,
7340 .restore_conf = hns3_restore_conf,
7341 .start_service = hns3_start_service,
7345 hns3_dev_init(struct rte_eth_dev *eth_dev)
7347 struct hns3_adapter *hns = eth_dev->data->dev_private;
7348 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
7349 struct rte_ether_addr *eth_addr;
7350 struct hns3_hw *hw = &hns->hw;
7353 PMD_INIT_FUNC_TRACE();
7355 eth_dev->process_private = (struct hns3_process_private *)
7356 rte_zmalloc_socket("hns3_filter_list",
7357 sizeof(struct hns3_process_private),
7358 RTE_CACHE_LINE_SIZE, eth_dev->device->numa_node);
7359 if (eth_dev->process_private == NULL) {
7360 PMD_INIT_LOG(ERR, "Failed to alloc memory for process private");
7363 /* initialize flow filter lists */
7364 hns3_filterlist_init(eth_dev);
7366 hns3_set_rxtx_function(eth_dev);
7367 eth_dev->dev_ops = &hns3_eth_dev_ops;
7368 eth_dev->rx_queue_count = hns3_rx_queue_count;
7369 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
7370 ret = hns3_mp_init_secondary();
7372 PMD_INIT_LOG(ERR, "Failed to init for secondary "
7373 "process, ret = %d", ret);
7374 goto err_mp_init_secondary;
7377 hw->secondary_cnt++;
7381 ret = hns3_mp_init_primary();
7384 "Failed to init for primary process, ret = %d",
7386 goto err_mp_init_primary;
7389 hw->adapter_state = HNS3_NIC_UNINITIALIZED;
7391 hw->data = eth_dev->data;
7392 hns3_parse_devargs(eth_dev);
7395 * Set default max packet size according to the mtu
7396 * default vale in DPDK frame.
7398 hns->pf.mps = hw->data->mtu + HNS3_ETH_OVERHEAD;
7400 ret = hns3_reset_init(hw);
7402 goto err_init_reset;
7403 hw->reset.ops = &hns3_reset_ops;
7405 ret = hns3_init_pf(eth_dev);
7407 PMD_INIT_LOG(ERR, "Failed to init pf: %d", ret);
7411 /* Allocate memory for storing MAC addresses */
7412 eth_dev->data->mac_addrs = rte_zmalloc("hns3-mac",
7413 sizeof(struct rte_ether_addr) *
7414 HNS3_UC_MACADDR_NUM, 0);
7415 if (eth_dev->data->mac_addrs == NULL) {
7416 PMD_INIT_LOG(ERR, "Failed to allocate %zx bytes needed "
7417 "to store MAC addresses",
7418 sizeof(struct rte_ether_addr) *
7419 HNS3_UC_MACADDR_NUM);
7421 goto err_rte_zmalloc;
7424 eth_addr = (struct rte_ether_addr *)hw->mac.mac_addr;
7425 if (!rte_is_valid_assigned_ether_addr(eth_addr)) {
7426 rte_eth_random_addr(hw->mac.mac_addr);
7427 hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
7428 (struct rte_ether_addr *)hw->mac.mac_addr);
7429 hns3_warn(hw, "default mac_addr from firmware is an invalid "
7430 "unicast address, using random MAC address %s",
7433 rte_ether_addr_copy((struct rte_ether_addr *)hw->mac.mac_addr,
7434 ð_dev->data->mac_addrs[0]);
7436 hw->adapter_state = HNS3_NIC_INITIALIZED;
7438 if (__atomic_load_n(&hw->reset.schedule, __ATOMIC_RELAXED) ==
7440 hns3_err(hw, "Reschedule reset service after dev_init");
7441 hns3_schedule_reset(hns);
7443 /* IMP will wait ready flag before reset */
7444 hns3_notify_reset_ready(hw, false);
7447 hns3_info(hw, "hns3 dev initialization successful!");
7451 hns3_uninit_pf(eth_dev);
7454 rte_free(hw->reset.wait_data);
7457 hns3_mp_uninit_primary();
7459 err_mp_init_primary:
7460 err_mp_init_secondary:
7461 eth_dev->dev_ops = NULL;
7462 eth_dev->rx_pkt_burst = NULL;
7463 eth_dev->rx_descriptor_status = NULL;
7464 eth_dev->tx_pkt_burst = NULL;
7465 eth_dev->tx_pkt_prepare = NULL;
7466 eth_dev->tx_descriptor_status = NULL;
7467 rte_free(eth_dev->process_private);
7468 eth_dev->process_private = NULL;
7473 hns3_dev_uninit(struct rte_eth_dev *eth_dev)
7475 struct hns3_adapter *hns = eth_dev->data->dev_private;
7476 struct hns3_hw *hw = &hns->hw;
7478 PMD_INIT_FUNC_TRACE();
7480 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
7481 rte_free(eth_dev->process_private);
7482 eth_dev->process_private = NULL;
7486 if (hw->adapter_state < HNS3_NIC_CLOSING)
7487 hns3_dev_close(eth_dev);
7489 hw->adapter_state = HNS3_NIC_REMOVED;
7494 eth_hns3_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
7495 struct rte_pci_device *pci_dev)
7497 return rte_eth_dev_pci_generic_probe(pci_dev,
7498 sizeof(struct hns3_adapter),
7503 eth_hns3_pci_remove(struct rte_pci_device *pci_dev)
7505 return rte_eth_dev_pci_generic_remove(pci_dev, hns3_dev_uninit);
7508 static const struct rte_pci_id pci_id_hns3_map[] = {
7509 { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_GE) },
7510 { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_25GE) },
7511 { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_25GE_RDMA) },
7512 { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_50GE_RDMA) },
7513 { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_100G_RDMA_MACSEC) },
7514 { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_200G_RDMA) },
7515 { .vendor_id = 0, }, /* sentinel */
7518 static struct rte_pci_driver rte_hns3_pmd = {
7519 .id_table = pci_id_hns3_map,
7520 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
7521 .probe = eth_hns3_pci_probe,
7522 .remove = eth_hns3_pci_remove,
7525 RTE_PMD_REGISTER_PCI(net_hns3, rte_hns3_pmd);
7526 RTE_PMD_REGISTER_PCI_TABLE(net_hns3, pci_id_hns3_map);
7527 RTE_PMD_REGISTER_KMOD_DEP(net_hns3, "* igb_uio | vfio-pci");
7528 RTE_PMD_REGISTER_PARAM_STRING(net_hns3,
7529 HNS3_DEVARG_RX_FUNC_HINT "=vec|sve|simple|common "
7530 HNS3_DEVARG_TX_FUNC_HINT "=vec|sve|simple|common "
7531 HNS3_DEVARG_DEV_CAPS_MASK "=<1-65535> ");
7532 RTE_LOG_REGISTER(hns3_logtype_init, pmd.net.hns3.init, NOTICE);
7533 RTE_LOG_REGISTER(hns3_logtype_driver, pmd.net.hns3.driver, NOTICE);