From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6277C42D5A; Mon, 26 Jun 2023 14:46:01 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3D3D84067B; Mon, 26 Jun 2023 14:46:01 +0200 (CEST) Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by mails.dpdk.org (Postfix) with ESMTP id 00EF94067B for ; Mon, 26 Jun 2023 14:45:59 +0200 (CEST) Received: from kwepemi500017.china.huawei.com (unknown [172.30.72.53]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4QqSDP00yRzMqCn; Mon, 26 Jun 2023 20:42:44 +0800 (CST) Received: from localhost.localdomain (10.28.79.22) by kwepemi500017.china.huawei.com (7.221.188.110) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.27; Mon, 26 Jun 2023 20:45:54 +0800 From: Dongdong Liu To: , , , Subject: [PATCH] config/arm: add HiSilicon hip10 Date: Mon, 26 Jun 2023 20:43:04 +0800 Message-ID: <20230626124304.27817-1-liudongdong3@huawei.com> X-Mailer: git-send-email 2.22.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Originating-IP: [10.28.79.22] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To kwepemi500017.china.huawei.com (7.221.188.110) X-CFilter-Loop: Reflected X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Adding support for HiSilicon hip10 platform. Signed-off-by: Dongdong Liu --- config/arm/arm64_hip10_linux_gcc | 16 ++++++++++++++++ config/arm/meson.build | 19 +++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 config/arm/arm64_hip10_linux_gcc diff --git a/config/arm/arm64_hip10_linux_gcc b/config/arm/arm64_hip10_linux_gcc new file mode 100644 index 0000000000..2943e4abbf --- /dev/null +++ b/config/arm/arm64_hip10_linux_gcc @@ -0,0 +1,16 @@ +[binaries] +c = ['ccache', 'aarch64-linux-gnu-gcc'] +cpp = ['ccache', 'aarch64-linux-gnu-g++'] +ar = 'aarch64-linux-gnu-gcc-ar' +strip = 'aarch64-linux-gnu-strip' +pkgconfig = 'aarch64-linux-gnu-pkg-config' +pcap-config = '' + +[host_machine] +system = 'linux' +cpu_family = 'aarch64' +cpu = 'armv8-a' +endian = 'little' + +[properties] +platform = 'hip10' diff --git a/config/arm/meson.build b/config/arm/meson.build index 535c8b4946..58e84abf2e 100644 --- a/config/arm/meson.build +++ b/config/arm/meson.build @@ -206,6 +206,16 @@ implementer_hisilicon = { ['RTE_MAX_LCORE', 1280], ['RTE_MAX_NUMA_NODES', 16] ] + }, + '0xd03': { + 'march': 'armv8.5-a', + 'march_features': ['crypto', 'sve'], + 'flags': [ + ['RTE_MACHINE', '"hip10"'], + ['RTE_ARM_FEATURE_ATOMICS', true], + ['RTE_MAX_LCORE', 1280], + ['RTE_MAX_NUMA_NODES', 16] + ] } } } @@ -389,6 +399,13 @@ soc_kunpeng930 = { 'numa': true } +soc_hip10 = { + 'description': 'HiSilicon HIP10', + 'implementer': '0x48', + 'part_number': '0xd03', + 'numa': true +} + soc_n1sdp = { 'description': 'Arm Neoverse N1SDP', 'implementer': '0x41', @@ -472,6 +489,7 @@ ft2000plus: Phytium FT-2000+ tys2500: Phytium TengYun S2500 graviton2: AWS Graviton2 graviton3: AWS Graviton3 +hip10: HiSilicon HIP10 kunpeng920: HiSilicon Kunpeng 920 kunpeng930: HiSilicon Kunpeng 930 n1sdp: Arm Neoverse N1SDP @@ -499,6 +517,7 @@ socs = { 'tys2500': soc_tys2500, 'graviton2': soc_graviton2, 'graviton3': soc_graviton3, + 'hip10': soc_hip10, 'kunpeng920': soc_kunpeng920, 'kunpeng930': soc_kunpeng930, 'n1sdp': soc_n1sdp, -- 2.22.0