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 33648A0547; Thu, 29 Apr 2021 12:00:29 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1B8A9412C6; Thu, 29 Apr 2021 12:00:29 +0200 (CEST) Received: from mailgw01.pantheon.sk (mailgw01.pantheon.sk [46.229.239.26]) by mails.dpdk.org (Postfix) with ESMTP id E1C6541125 for ; Thu, 29 Apr 2021 12:00:27 +0200 (CEST) Received: from mailgw01.pantheon.sk (localhost.localdomain [127.0.0.1]) by mailgw01.pantheon.sk (Proxmox) with ESMTP id A7742203879; Thu, 29 Apr 2021 12:00:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pantheon.tech; h=cc:cc:content-transfer-encoding:content-type:content-type :date:from:from:in-reply-to:message-id:mime-version:references :reply-to:subject:subject:to:to; s=dkim; bh=O5jCz6/S/KCtfcN6DkDs xwVHny/JCHFw2EyyPnYgvYQ=; b=G13SHbL6HDsni7pm0DRt0GMfH2feb+LPERYO 5b7Z7LMA7utIp8e4GPGsogRskdOm2dJ2z9HXXRADf7GKJtLSvE4DNHMEjuLfl76d TGTci8od6BkZXwcAOq904TMVgvfDlUbK38VpjXPOxzzsZDc9mDI5wzyQJixw7QAr szvNbkYhnBEXpAQeVGI63HL+6mG9gBtrC+OEzjW38hpf0gi8oWIdc4tM/NQ8KdoH rCRrP+GzA6rl1/aE/yzqKGgRRELYsC3MHzBKV8dFwxd/MHRKT/VZfvSJ3Q5afflQ 4O24sOMO8oIBOkfTF9n3GMfLtPsFzhyhEiYNEe05hu0gHoTVYQ== From: =?iso-8859-2?Q?Juraj_Linke=B9?= To: Thierry Herbelot , "dev@dpdk.org" CC: Thomas Monjalon , Honnappa Nagarahalli , Ruifeng Wang Thread-Topic: [PATCH-V3] config/arm: restore support for Qualcomm servers Thread-Index: AQHXPNlafwQRbnOvjE+LS1hVvWn7D6rLQi9Q Date: Thu, 29 Apr 2021 10:00:26 +0000 Message-ID: <9a89220951c94a31ae8a9ecf1064643d@pantheon.tech> References: <20210429080644.11423-1-thierry.herbelot@6wind.com> <20210429092328.17594-1-thierry.herbelot@6wind.com> In-Reply-To: <20210429092328.17594-1-thierry.herbelot@6wind.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.101.4.10] Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH-V3] 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" > -----Original Message----- > From: Thierry Herbelot > Sent: Thursday, April 29, 2021 11:23 AM > To: dev@dpdk.org > Cc: Thierry Herbelot ; Thomas Monjalon > ; Juraj Linke=B9 ; Honna= ppa > Nagarahalli ; Ruifeng Wang > > Subject: [PATCH-V3] config/arm: restore support for Qualcomm servers >=20 > From the documentation: > "The SoC configuration is a combination of implementer and CPU part numbe= r > configuration and SoC-specific configuration." >=20 > Align Qualcomm SoC configuration with the configuration of other server S= oCs > (eMAG, Kunpeng 9x0): add a soc configuration to the existing implementer > configuration. >=20 > Signed-off-by: Thierry Herbelot > -- > V3: > - include doc patch > - remove Fixes line > V2: > - use the right original commit in Fixes > --- > config/arm/meson.build | 8 ++++++++ > doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst | 1 + > 2 files changed, 9 insertions(+) >=20 > 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 =3D { > 'numa': false > } >=20 > +soc_qualcomm =3D { > + 'description': 'Qualcomm Centriq 2400', > + 'implementer': '0x51', > + 'part_number': '0xc00', > + 'numa': false > +} > + > soc_stingray =3D { > 'description': 'Broadcom Stingray', > 'implementer': '0x41', > @@ -334,6 +341,7 @@ socs =3D { > 'n1sdp': soc_n1sdp, > 'n2': soc_n2, > 'octeontx2': soc_octeontx2, > + 'qualcomm': soc_qualcomm, > 'stingray': soc_stingray, > 'thunderx2': soc_thunderx2, > 'thunderxt88': soc_thunderxt88 > diff --git a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst > b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst > index 3e170436cd4f..5513948c9037 100644 > --- a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst > +++ b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst > @@ -211,6 +211,7 @@ Substitute with one of the supported > SoCs:: > n1sdp: Arm Neoverse N1SDP > n2: Arm Neoverse N2 > octeontx2: Marvell OCTEON TX2 > + qualcomm: Qualcomm Centriq 2400 Now that I think about it, 'qualcomm' isn't a suitable name for an soc, as = it's the name of the company, not the soc. The description says this is the= Centriq 2400 soc, so I suggest renaming it to that (qualcomm -> centriq240= 0 and soc_qualcomm -> soc_centriq2400 or something similar). > stingray: Broadcom Stingray > thunderx2: Marvell ThunderX2 T99 > thunderxt88: Marvell ThunderX T88 > -- > 2.29.2 >=20