Message ID | 1607518771-7564-1-git-send-email-juraj.linkes@pantheon.tech (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 295B0A09EA; Wed, 9 Dec 2020 13:59:46 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5CD1AC8F8; Wed, 9 Dec 2020 13:59:43 +0100 (CET) Received: from lb.pantheon.sk (lb.pantheon.sk [46.229.239.20]) by dpdk.org (Postfix) with ESMTP id 17ACD2B8B for <dev@dpdk.org>; Wed, 9 Dec 2020 13:59:41 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by lb.pantheon.sk (Postfix) with ESMTP id BF44ABCBFD; Wed, 9 Dec 2020 13:59:38 +0100 (CET) X-Virus-Scanned: amavisd-new at siecit.sk Received: from lb.pantheon.sk ([127.0.0.1]) by localhost (lb.pantheon.sk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 74_0OlKuNzeB; Wed, 9 Dec 2020 13:59:37 +0100 (CET) Received: from service-node1.lab.pantheon.local (unknown [46.229.239.141]) by lb.pantheon.sk (Postfix) with ESMTP id 1C87FBC034; Wed, 9 Dec 2020 13:59:36 +0100 (CET) From: =?utf-8?q?Juraj_Linke=C5=A1?= <juraj.linkes@pantheon.tech> To: thomas@monjalon.net, bruce.richardson@intel.com, aconole@redhat.com, maicolgabriel@hotmail.com Cc: dev@dpdk.org, juraj.linkes@pantheon.tech Date: Wed, 9 Dec 2020 13:59:24 +0100 Message-Id: <1607518771-7564-1-git-send-email-juraj.linkes@pantheon.tech> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1600244472-29696-1-git-send-email-juraj.linkes@pantheon.tech> References: <1600244472-29696-1-git-send-email-juraj.linkes@pantheon.tech> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v11 0/7] aarch64 -> aarch32 cross compilation support X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> |
Series |
aarch64 -> aarch32 cross compilation support
|
|
Message
Juraj Linkeš
Dec. 9, 2020, 12:59 p.m. UTC
Add support for aarch32 cross build in meson and add aarch64 -> aarch32
cross build to Travis.
Aarch32 is an execution state that allows execution of 32-bit code on
armv8 machines. This execution state contains a superset of previous
armv7 32-bit instructions and features. Thus the aarch32 build is distinct
from arvm7 build.
v4:
Removed disabled drivers which actually build on arm32.
Also tested the patchset with series 9609 which fixes underlying failures.
v5:
Changed the condition for running test-null.sh in ci.
Re-uploaded after underlying fixes have been committed.
v6:
Changed the condition for running test-null.sh again.
Reworked the patch to do aarch32 build instead of arvm7-a build.
Simplified meson build flags. Changed commit msgs.
Added 32b qualifier to .travis.yml.
Added a patch with fixes for bnxt.
Added a patch with cross compilation docs.
v7:
Rebased the patchset.
v8:
Removed Makefile additions from net/bnxt patch.
v9:
Changed ci test-null.sh condition, only run it if not cross-compiling
aarch64 nor aarch32.
Cleaned up docs.
v10:
Fixed doc: add aarch32 build guidance commit message.
v11:
Rebase and fix scf and bnxt after rebase.
Acked-by: Aaron Conole <aconole@redhat.com>
Juraj Linkeš (3):
build: add aarch32 meson build flags
build: add aarch32 to meson cross-compilation
ci: add aarch64 -> aarch32 cross compiling jobs
Phil Yang (1):
doc: add aarch32 build guidance
Ruifeng Wang (3):
net/sfc: fix aarch32 build
net/bnxt: fix aarch32 build
net/bnxt: add support for aarch32
.ci/linux-build.sh | 7 +++-
.travis.yml | 19 +++++++++++
config/arm/arm32_armv8a_linux_gcc | 17 ++++++++++
config/arm/meson.build | 22 ++++++++++--
.../linux_gsg/cross_build_dpdk_for_arm64.rst | 34 +++++++++++++------
drivers/common/sfc_efx/meson.build | 2 +-
drivers/net/bnxt/bnxt_rxq.h | 2 +-
drivers/net/bnxt/bnxt_rxr.h | 2 +-
drivers/net/bnxt/bnxt_txr.h | 2 +-
drivers/net/bnxt/meson.build | 2 +-
drivers/net/sfc/meson.build | 2 +-
11 files changed, 91 insertions(+), 20 deletions(-)
create mode 100644 config/arm/arm32_armv8a_linux_gcc