From patchwork Thu Apr 29 07:07:50 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 92379 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 EACD0A0A0E; Thu, 29 Apr 2021 09:08:21 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C9D8641122; Thu, 29 Apr 2021 09:08:21 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 3AF914067E for ; Thu, 29 Apr 2021 09:08:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1619680099; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=FxK99droy57Gas2fDRW0RO8AV2YFEt/O3hBPFwL8/R0=; b=GZVYh10RFYXDzVDgr1XQKzvEPolE4Qtv0eR/q3Lw/lVVYQQY7/0/cl4Z0xuj3t+os3/oik W9HoCswIoLX008ln/7IKKFhZGr2aFqmyE00h1V/nvOqIAUk6pPLMxqMSkzVhefmfOHB4tt ZeH8b43SyLFlRe9CLLtdX00BV7T1iuw= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-343-W9XDBogVNSGQwmKHxalPrA-1; Thu, 29 Apr 2021 03:08:15 -0400 X-MC-Unique: W9XDBogVNSGQwmKHxalPrA-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 25122107ACE8; Thu, 29 Apr 2021 07:08:13 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.192.93]) by smtp.corp.redhat.com (Postfix) with ESMTP id 2409B6C354; Thu, 29 Apr 2021 07:08:08 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, Jerin Jacob , Ruifeng Wang , Jan Viktorin , Bruce Richardson , Pavan Nikhilesh , Nithin Dabilpuram , Lijun Ou , Chengchang Tang Date: Thu, 29 Apr 2021 09:07:50 +0200 Message-Id: <20210429070751.6065-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Subject: [dpdk-dev] [PATCH] doc: fix Arm socs list 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" Keep the list of socs in a single place and include it so that the documentation won't get outdated. Fixes: 1b4c86a721c9 ("config/arm: add Marvell CN10K") Fixes: 7cf32a22b240 ("config/arm: add Hisilicon kunpeng") Signed-off-by: David Marchand Reviewed-by: Jerin Jacob Reviewed-by: Ruifeng Wang --- config/arm/meson.build | 19 +++++++++++++++++++ .../linux_gsg/cross_build_dpdk_for_arm64.rst | 18 +++++------------- 2 files changed, 24 insertions(+), 13 deletions(-) diff --git a/config/arm/meson.build b/config/arm/meson.build index 22cd81319c..fbe942e5ec 100644 --- a/config/arm/meson.build +++ b/config/arm/meson.build @@ -321,6 +321,25 @@ soc_thunderxt88 = { 'part_number': '0xa1' } +# Keep this part in sync with the socs list below: +# +# #guide_doc Start of socs list +# generic: Generic un-optimized build for all aarch64 machines. +# armada: Marvell ARMADA +# bluefield: NVIDIA BlueField +# cn10k: Marvell OCTEON 10 +# dpaa: NXP DPAA +# emag: Ampere eMAG +# graviton2: AWS Graviton2 +# kunpeng920: HiSilicon Kunpeng 920 +# kunpeng930: HiSilicon Kunpeng 930 +# n1sdp: Arm Neoverse N1SDP +# n2: Arm Neoverse N2 +# octeontx2: Marvell OCTEON TX2 +# stingray: Broadcom Stingray +# thunderx2: Marvell ThunderX2 T99 +# thunderxt88: Marvell ThunderX T88 +# #guide_doc End of socs list socs = { 'generic': soc_generic, 'armada': soc_armada, 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 3857cdefe9..958bc81784 100644 --- a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst +++ b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst @@ -197,19 +197,11 @@ option:: meson soc_build -Dplatform= -Substitute with one of the supported SoCs:: - - generic: Generic un-optimized build for all aarch64 machines. - armada: Marvell ARMADA - bluefield: NVIDIA BlueField - dpaa: NXP DPAA - emag: Ampere eMAG - graviton2: AWS Graviton2 - n1sdp: Arm Neoverse N1SDP - octeontx2: Marvell OCTEON TX2 - stingray: Broadcom Stingray - thunderx2: Marvell ThunderX2 T99 - thunderxt88: Marvell ThunderX T88 +Substitute with one of the supported SoCs + +.. literalinclude:: ../../../config/arm/meson.build + :start-after: #guide_doc Start of socs list + :end-before: #guide_doc End of socs list These SoCs are also used in cross files, e.g.::