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 X-Spam-Level: X-Spam-Status: No, score=-16.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 157B9C433ED for ; Thu, 29 Apr 2021 15:16:30 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 2D9FC60725 for ; Thu, 29 Apr 2021 15:16:29 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 2D9FC60725 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=6wind.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3D771410DD; Thu, 29 Apr 2021 17:16:28 +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 0C7E4406FF for ; Thu, 29 Apr 2021 17:16:27 +0200 (CEST) Received: from localhost (unknown [10.16.0.39]) by proxy.6wind.com (Postfix) with ESMTP id D7A039548FA; Thu, 29 Apr 2021 17:16:26 +0200 (CEST) From: Thierry Herbelot To: dev@dpdk.org Cc: Thierry Herbelot , Thomas Monjalon , =?UTF-8?q?Juraj=20Linke=C5=A1?= , Honnappa Nagarahalli , Ruifeng Wang Date: Thu, 29 Apr 2021 17:16:21 +0200 Message-Id: <20210429151621.6779-1-thierry.herbelot@6wind.com> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210429100707.20757-1-thierry.herbelot@6wind.com> References: <20210429100707.20757-1-thierry.herbelot@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH-V5] config/arm: restore support for Qualcomm servers 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" >From the documentation: "The SoC configuration is a combination of implementer and CPU part number configuration and SoC-specific configuration." Align Qualcomm SoC configuration with the configuration of other server SoCs (eMAG, Kunpeng 9x0): add a soc configuration to the existing implementer configuration. Signed-off-by: Thierry Herbelot -- V5: - rebase after http://patches.dpdk.org/project/dpdk/patch/20210429070751.6065-1-david.marchand@redhat.com/ V4: - use a more specific SoC name V3: - include doc patch - remove Fixes line V2: - use the right original commit in Fixes --- config/arm/meson.build | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config/arm/meson.build b/config/arm/meson.build index fbe942e5ec97..2f0ed2fe9428 100644 --- a/config/arm/meson.build +++ b/config/arm/meson.build @@ -223,6 +223,13 @@ soc_bluefield = { 'numa': false } +soc_centriq2400 = { + 'description': 'Qualcomm Centriq 2400', + 'implementer': '0x51', + 'part_number': '0xc00', + 'numa': false +} + soc_cn10k = { 'description' : 'Marvell OCTEON 10', 'implementer' : '0x41', @@ -327,6 +334,7 @@ soc_thunderxt88 = { # generic: Generic un-optimized build for all aarch64 machines. # armada: Marvell ARMADA # bluefield: NVIDIA BlueField +# centriq2400: soc_centriq2400, # cn10k: Marvell OCTEON 10 # dpaa: NXP DPAA # emag: Ampere eMAG @@ -344,6 +352,7 @@ socs = { 'generic': soc_generic, 'armada': soc_armada, 'bluefield': soc_bluefield, + 'centriq2400': soc_centriq2400, 'cn10k' : soc_cn10k, 'dpaa': soc_dpaa, 'emag': soc_emag, -- 2.29.2