X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fhns3%2Fhns3_cmd.c;h=50769c622614026556cb829004dc950b16cb6060;hb=11f99cfc886fff5e7c60218c50d993227871460f;hp=928f938536caf33beb18c40a20eb4917d085d13d;hpb=fc18d1b4b85f9dcda468d4a424b668d0d8724382;p=dpdk.git diff --git a/drivers/net/hns3/hns3_cmd.c b/drivers/net/hns3/hns3_cmd.c index 928f938536..50769c6226 100644 --- a/drivers/net/hns3/hns3_cmd.c +++ b/drivers/net/hns3/hns3_cmd.c @@ -423,6 +423,7 @@ hns3_get_caps_name(uint32_t caps_id) } dev_caps[] = { { HNS3_CAPS_FD_QUEUE_REGION_B, "fd_queue_region" }, { HNS3_CAPS_PTP_B, "ptp" }, + { HNS3_CAPS_TX_PUSH_B, "tx_push" }, { HNS3_CAPS_PHY_IMP_B, "phy_imp" }, { HNS3_CAPS_TQP_TXRX_INDEP_B, "tqp_txrx_indep" }, { HNS3_CAPS_HW_PAD_B, "hw_pad" }, @@ -492,6 +493,8 @@ hns3_parse_capability(struct hns3_hw *hw, hns3_warn(hw, "ignore PTP capability due to lack of " "rxd advanced layout capability."); } + if (hns3_get_bit(caps, HNS3_CAPS_TX_PUSH_B)) + hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_TX_PUSH_B, 1); if (hns3_get_bit(caps, HNS3_CAPS_PHY_IMP_B)) hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_COPPER_B, 1); if (hns3_get_bit(caps, HNS3_CAPS_TQP_TXRX_INDEP_B)) @@ -614,7 +617,7 @@ hns3_update_dev_lsc_cap(struct hns3_hw *hw, int fw_compact_cmd_result) static int hns3_apply_fw_compat_cmd_result(struct hns3_hw *hw, int result) { - if (result != 0 && hns3_dev_copper_supported(hw)) { + if (result != 0 && hns3_dev_get_support(hw, COPPER)) { hns3_err(hw, "firmware fails to initialize the PHY, ret = %d.", result); return result; @@ -653,7 +656,7 @@ hns3_firmware_compat_config(struct hns3_hw *hw, bool is_init) } if (revision == PCI_REVISION_ID_HIP09_A) { struct hns3_pf *pf = HNS3_DEV_HW_TO_PF(hw); - if (hns3_dev_copper_supported(hw) == 0 || pf->is_tmp_phy) { + if (hns3_dev_get_support(hw, COPPER) == 0 || pf->is_tmp_phy) { PMD_INIT_LOG(ERR, "***use temp phy driver in dpdk***"); pf->is_tmp_phy = true; hns3_set_bit(hw->capability, @@ -671,7 +674,7 @@ hns3_firmware_compat_config(struct hns3_hw *hw, bool is_init) if (is_init) { hns3_set_bit(compat, HNS3_LINK_EVENT_REPORT_EN_B, 1); hns3_set_bit(compat, HNS3_NCSI_ERROR_REPORT_EN_B, 0); - if (hns3_dev_copper_supported(hw)) + if (hns3_dev_get_support(hw, COPPER)) hns3_set_bit(compat, HNS3_FIRMWARE_PHY_DRIVER_EN_B, 1); } req->compat = rte_cpu_to_le_32(compat);