From patchwork Thu Jun 17 08:16:27 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Thierry Herbelot X-Patchwork-Id: 94317 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 66876A0C4D; Thu, 17 Jun 2021 10:16:56 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 51DCA4067A; Thu, 17 Jun 2021 10:16:56 +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 86C7C40150 for ; Thu, 17 Jun 2021 10:16:55 +0200 (CEST) Received: from localhost (unknown [10.16.0.39]) by proxy.6wind.com (Postfix) with ESMTP id 591ABA19144; Thu, 17 Jun 2021 10:16:55 +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 10:16:27 +0200 Message-Id: <876d348bb6ab493f404c2c1f288262ff3112cada.1623917721.git.thierry.herbelot@6wind.com> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210525082402.8051-1-thierry.herbelot@6wind.com> References: <20210525082402.8051-1-thierry.herbelot@6wind.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH V3] 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 --- V2: add maintainers as Cc V3: fix meson syntax for the SoC v1.1 machine description --- config/arm/meson.build | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/config/arm/meson.build b/config/arm/meson.build index e83a56e0d589..b33303d09023 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']}, } } @@ -223,8 +224,15 @@ soc_bluefield = { 'numa': false } +soc_centriq2400_v1_1 = { + 'description': 'Qualcomm Centriq 2400 (SoC v1.1)', + 'implementer': '0x51', + 'part_number': '0x800', + 'numa': false +} + soc_centriq2400 = { - 'description': 'Qualcomm Centriq 2400', + 'description': 'Qualcomm Centriq 2400 (SoC v2.0)', 'implementer': '0x51', 'part_number': '0xc00', 'numa': false