net/hns3: support copper media type
authorWei Hu (Xavier) <xavier.huwei@huawei.com>
Tue, 14 Jul 2020 06:16:06 +0000 (14:16 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 17 Jul 2020 16:21:21 +0000 (18:21 +0200)
The hns3 network engine is built-in multiple SoCs, such as kunpeng 920,
kunpeng 930, etc. The PCI revision id is 0x21 in kunpeng 920, and the
PCI revision id is 0x30 in kunpeng 930.

Copper media type is supported for hns3 PF device in kunpeng 930 and
later SoCs. The configuration operation for PHY is implemented by
firmware.

Signed-off-by: Wei Hu (Xavier) <xavier.huwei@huawei.com>
drivers/net/hns3/hns3_ethdev.c
drivers/net/hns3/hns3_ethdev.h

index 9575a05..f218fb8 100644 (file)
@@ -2823,6 +2823,9 @@ hns3_get_capability(struct hns3_hw *hw)
        }
        hw->revision = revision;
 
+       if (revision >= PCI_REVISION_ID_HIP09_A)
+               hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_COPPER_B, 1);
+
        return 0;
 }
 
@@ -2840,7 +2843,8 @@ hns3_get_board_configuration(struct hns3_hw *hw)
                return ret;
        }
 
-       if (cfg.media_type == HNS3_MEDIA_TYPE_COPPER) {
+       if (cfg.media_type == HNS3_MEDIA_TYPE_COPPER &&
+           !hns3_dev_copper_supported(hw)) {
                PMD_INIT_LOG(ERR, "media type is copper, not supported.");
                return -EOPNOTSUPP;
        }
index 3c991f4..31d34b0 100644 (file)
@@ -30,6 +30,9 @@
 #define HNS3_PCI_REVISION_ID                   0x08
 #define HNS3_PCI_REVISION_ID_LEN               1
 
+#define PCI_REVISION_ID_HIP08_B                        0x21
+#define PCI_REVISION_ID_HIP09_A                        0x30
+
 #define HNS3_PF_FUNC_ID                        0
 #define HNS3_1ST_VF_FUNC_ID            1
 
@@ -530,10 +533,14 @@ struct hns3_adapter {
 };
 
 #define HNS3_DEV_SUPPORT_DCB_B                 0x0
+#define HNS3_DEV_SUPPORT_COPPER_B              0x1
 
 #define hns3_dev_dcb_supported(hw) \
        hns3_get_bit((hw)->capability, HNS3_DEV_SUPPORT_DCB_B)
 
+#define hns3_dev_copper_supported(hw) \
+       hns3_get_bit((hw)->capability, HNS3_DEV_SUPPORT_COPPER_B)
+
 #define HNS3_DEV_PRIVATE_TO_HW(adapter) \
        (&((struct hns3_adapter *)adapter)->hw)
 #define HNS3_DEV_PRIVATE_TO_ADAPTER(adapter) \