From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by smtp.lore.kernel.org (Postfix) with ESMTP id A6C2DC433F5 for ; Mon, 23 May 2022 13:34:54 +0000 (UTC) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AC2B44014F; Mon, 23 May 2022 15:34:53 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 740B740141 for ; Mon, 23 May 2022 15:34:51 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 24NAops6010138; Mon, 23 May 2022 06:34:47 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=pfpt0220; bh=blEt8tvATxSFK7HgT2UN2x8ddOlxp9ylNbT3HmR3M4k=; b=fGQI6RlnTj+RHo6OiYllYmD1OUeMUCVXFFaNiisGHSwi6vUMYeb2iYkrvxqSqluRaHPQ rnChW07h2Lsp6rGA2Oc2CZW/jPKAcR1b4PPTZnBEDuouqPOG4Fvm7soKsy5azVkwMEZ2 dPKOtpGucFMaGPxsykPnVvrmrt/OifFSiYIXr5OaR/je+DlkmUi5qrAKdCmaZpJEzTPv zOH/XkcmxPOJORT3T4Mp0GcQSPG1iM1M05JYTvClt7XtKEUng/S1h+eKji3K0UsowiYN bHX0rbwKqd1/76T21uQDXD/pyd7knHEZ9MagaSbLkiOom07U98ka6JCa1DZefhpof5DK PQ== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3g6ykkwy4g-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Mon, 23 May 2022 06:34:47 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Mon, 23 May 2022 06:34:44 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Mon, 23 May 2022 06:34:44 -0700 Received: from localhost.localdomain (unknown [10.29.52.211]) by maili.marvell.com (Postfix) with ESMTP id 04D073F70A4; Mon, 23 May 2022 06:34:42 -0700 (PDT) From: Harman Kalra To: , Ruifeng Wang , Jan Viktorin , Bruce Richardson CC: Harman Kalra Subject: [PATCH v2] config: add thunderX t83 config Date: Mon, 23 May 2022 19:04:29 +0530 Message-ID: <20220523133429.88577-1-hkalra@marvell.com> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20220517173941.189330-1-hkalra@marvell.com> References: <20220517173941.189330-1-hkalra@marvell.com> MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-GUID: JUfAUZJInEIDokvwkmefjtPSM3HDXb6T X-Proofpoint-ORIG-GUID: JUfAUZJInEIDokvwkmefjtPSM3HDXb6T X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.874,Hydra:6.0.486,FMLib:17.11.64.514 definitions=2022-05-23_06,2022-05-23_01,2022-02-23_01 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 marvell thunderX t83 platform. Signed-off-by: Harman Kalra Acked-by: Ruifeng Wang --- V2: * Seperated out this patch from the series * updated commit message config/arm/arm64_thunderxt83_linux_gcc | 16 ++++++++++++++++ config/arm/meson.build | 12 ++++++++++-- 2 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 config/arm/arm64_thunderxt83_linux_gcc diff --git a/config/arm/arm64_thunderxt83_linux_gcc b/config/arm/arm64_thunderxt83_linux_gcc new file mode 100644 index 0000000000..47102c900b --- /dev/null +++ b/config/arm/arm64_thunderxt83_linux_gcc @@ -0,0 +1,16 @@ +[binaries] +c = 'aarch64-linux-gnu-gcc' +cpp = 'aarch64-linux-gnu-cpp' +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 = 'thunderxt83' diff --git a/config/arm/meson.build b/config/arm/meson.build index 8aead74086..bfa482de6b 100644 --- a/config/arm/meson.build +++ b/config/arm/meson.build @@ -119,7 +119,7 @@ implementer_cavium = { 'flags': flags_part_number_thunderx }, '0xa3': { - 'compiler_options': ['-mcpu=thunderxt83'], + 'compiler_options': ['-march=armv8-a+crc', '-mcpu=thunderxt83'], 'flags': flags_part_number_thunderx }, '0xaf': { @@ -371,6 +371,12 @@ soc_thunderxt88 = { 'part_number': '0xa1' } +soc_thunderxt83 = { + 'description': 'Marvell ThunderX T83', + 'implementer': '0x43', + 'part_number': '0xa3' +} + ''' Start of SoCs list generic: Generic un-optimized build for armv8 aarch64 execution mode. @@ -390,6 +396,7 @@ n2: Arm Neoverse N2 stingray: Broadcom Stingray thunderx2: Marvell ThunderX2 T99 thunderxt88: Marvell ThunderX T88 +thunderxt83: Marvell ThunderX T83 End of SoCs list ''' # The string above is included in the documentation, keep it in sync with the @@ -411,7 +418,8 @@ socs = { 'n2': soc_n2, 'stingray': soc_stingray, 'thunderx2': soc_thunderx2, - 'thunderxt88': soc_thunderxt88 + 'thunderxt88': soc_thunderxt88, + 'thunderxt83': soc_thunderxt83 } dpdk_conf.set('RTE_ARCH_ARM', 1) -- 2.18.0