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 7E0B3A0524; Thu, 29 Apr 2021 10:06:55 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 68E99412CB; Thu, 29 Apr 2021 10:06:55 +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 7379F40141 for ; Thu, 29 Apr 2021 10:06:52 +0200 (CEST) Received: from localhost (unknown [10.16.0.39]) by proxy.6wind.com (Postfix) with ESMTP id 5A6FC9532B4; Thu, 29 Apr 2021 10:06:52 +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 10:06:44 +0200 Message-Id: <20210429080644.11423-1-thierry.herbelot@6wind.com> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210428160807.17191-1-thierry.herbelot@6wind.com> References: <20210428160807.17191-1-thierry.herbelot@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH-V2] 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. Fixes: f2340c858046 ("config/arm: add platform config option") Signed-off-by: Thierry Herbelot -- V2: - use the right original commit in Fixes --- config/arm/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/arm/meson.build b/config/arm/meson.build index 22cd81319c06..4518b7e877b3 100644 --- a/config/arm/meson.build +++ b/config/arm/meson.build @@ -298,6 +298,13 @@ soc_octeontx2 = { 'numa': false } +soc_qualcomm = { + 'description': 'Qualcomm Centriq 2400', + 'implementer': '0x51', + 'part_number': '0xc00', + 'numa': false +} + soc_stingray = { 'description': 'Broadcom Stingray', 'implementer': '0x41', @@ -334,6 +341,7 @@ socs = { 'n1sdp': soc_n1sdp, 'n2': soc_n2, 'octeontx2': soc_octeontx2, + 'qualcomm': soc_qualcomm, 'stingray': soc_stingray, 'thunderx2': soc_thunderx2, 'thunderxt88': soc_thunderxt88 -- 2.29.2