From patchwork Thu Jun 17 15:13:28 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Thierry Herbelot X-Patchwork-Id: 94362 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id CC576A0C4B; Thu, 17 Jun 2021 17:13:34 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5EFB74067A; Thu, 17 Jun 2021 17:13:34 +0200 (CEST) Received: from proxy.6wind.com (host.78.145.23.62.rev.coltfrance.com [62.23.145.78]) by mails.dpdk.org (Postfix) with ESMTP id 736A540150 for ; Thu, 17 Jun 2021 17:13:33 +0200 (CEST) Received: from localhost (unknown [10.16.0.39]) by proxy.6wind.com (Postfix) with ESMTP id 417C2A1A52F; Thu, 17 Jun 2021 17:13:33 +0200 (CEST) From: Thierry Herbelot To: dev@dpdk.org Cc: Thierry Herbelot , Thomas Monjalon , Jerin Jacob , Ruifeng Wang , Honnappa Nagarahalli , =?utf-8?q?Juraj_Linke?= =?utf-8?q?=C5=A1?= Date: Thu, 17 Jun 2021 17:13:28 +0200 Message-Id: <97239acdd64f1e3f0a36e707072d6075e3380131.1623942795.git.thierry.herbelot@6wind.com> X-Mailer: git-send-email 2.29.2 In-Reply-To: <1b58faa5588ee2add217208ef10716ae78c4e52b.1623930249.git.thierry.herbelot@6wind.com> References: <1b58faa5588ee2add217208ef10716ae78c4e52b.1623930249.git.thierry.herbelot@6wind.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH V6] config/arm: add Qualcomm Centriq 2400 part number 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 Sender: "dev" 0xc00 is for "SoC 2.0" Qualcomm Centriq servers. 0x800 is for "SoC 1.1". Cc: Jerin Jacob Cc: Ruifeng Wang Cc: Honnappa Nagarahalli Cc: Juraj Linkeš Signed-off-by: Thierry Herbelot Acked-by: Ruifeng Wang Acked-by: Ruifeng Wang --- V2: add maintainers as Cc V3: fix meson syntax for the SoC v1.1 machine description V4: add new soc_centriq2400_v1_1 to the supported SoC list V5: remove 'soc_' prefix in the supported SoC list V6: remove soc declarations for Centriq 2400 (SoC v1.1) --- config/arm/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/arm/meson.build b/config/arm/meson.build index e83a56e0d589..9795ef08bc08 100644 --- a/config/arm/meson.build +++ b/config/arm/meson.build @@ -179,7 +179,8 @@ implementer_qualcomm = { ['RTE_MAX_NUMA_NODES', 1] ], 'part_number_config': { - '0xc00': {'machine_args': ['-march=armv8-a+crc']} + '0x800': {'machine_args': ['-march=armv8-a+crc']}, + '0xc00': {'machine_args': ['-march=armv8-a+crc']}, } }