From patchwork Sat May 18 21:10:54 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Liron Himi X-Patchwork-Id: 53545 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EDD272BF5; Sat, 18 May 2019 21:00:25 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id A49252BF5 for ; Sat, 18 May 2019 21:00:23 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x4IJ0MDT030435; Sat, 18 May 2019 12:00:22 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=pfpt0818; bh=EWSypH14htdL1lh+znXJlz6wGCAiKruRgCUPVOQiGWk=; b=e01nKiyATUf/d3znSSFGXwLVA/ksgh/gUfPYwOimmz1P0HfWKr5vhc14tms19IrRjjB6 plqxblSLyljyY+q7hxz4fbWt2jFBYlY6iWVf+OkIiwVMO6D+3n8nifEBgTXHHP1qGKon CdFRf/QUFlFId6bqhJGRI6dcCLURGg/M9fLxdliRWo5s+3tHlhYe+TlOaVS+VhVvYfbV mtbh1y4fV9+1fLad1zOKnufMSrZMcypHG+d8wMWZRObEVl6fP2ATQ+kfYbnQRvXxYEX3 JTi2Cl8mc2n2RQHoDGK80e245QE2lvQl+AWZ6Upbapf8b3LgiI4T+mTmBW6TlVDTxdo7 0A== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0a-0016f401.pphosted.com with ESMTP id 2sjfdn9hf5-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Sat, 18 May 2019 12:00:18 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Sat, 18 May 2019 12:00:18 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Sat, 18 May 2019 12:00:18 -0700 Received: from pt-lxl0023.marvell.com (pt-lxl0023.marvell.com [10.5.213.12]) by maili.marvell.com (Postfix) with ESMTP id 680A43F7041; Sat, 18 May 2019 12:00:17 -0700 (PDT) From: To: CC: , Liron Himi Date: Sun, 19 May 2019 00:10:54 +0300 Message-ID: <1558213855-21841-2-git-send-email-lironh@marvell.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1558213855-21841-1-git-send-email-lironh@marvell.com> References: <1558213855-21841-1-git-send-email-lironh@marvell.com> MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-05-18_16:, , signatures=0 Subject: [dpdk-dev] [PATCH v2 1/2] mk: add Marvell ARMADA architecture based on armv8-a X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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: Liron Himi This patch introduces armada target to address difference in number of cores, no numa support Signed-off-by: Liron Himi Reviewed-by: Alan Winkowski Tested-by: Liron Himi --- config/defconfig_arm64-armada-linux-gcc | 1 + config/defconfig_arm64-armada-linuxapp-gcc | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 120000 config/defconfig_arm64-armada-linux-gcc create mode 100644 config/defconfig_arm64-armada-linuxapp-gcc diff --git a/config/defconfig_arm64-armada-linux-gcc b/config/defconfig_arm64-armada-linux-gcc new file mode 120000 index 0000000..64ce2a5 --- /dev/null +++ b/config/defconfig_arm64-armada-linux-gcc @@ -0,0 +1 @@ +defconfig_arm64-armada-linuxapp-gcc \ No newline at end of file diff --git a/config/defconfig_arm64-armada-linuxapp-gcc b/config/defconfig_arm64-armada-linuxapp-gcc new file mode 100644 index 0000000..0591802 --- /dev/null +++ b/config/defconfig_arm64-armada-linuxapp-gcc @@ -0,0 +1,25 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Marvell International Ltd +# + +#include "defconfig_arm64-armv8a-linux-gcc" + +# +# Compile Environment Abstraction Layer +# +CONFIG_RTE_MAX_LCORE=16 +CONFIG_RTE_MAX_NUMA_NODES=1 +CONFIG_RTE_CACHE_LINE_SIZE=64 + +# Enable PMDs +CONFIG_RTE_LIBRTE_MVEP_COMMON=y +CONFIG_RTE_LIBRTE_MVPP2_PMD=y +CONFIG_RTE_LIBRTE_MVNETA_PMD=y +CONFIG_RTE_LIBRTE_PMD_MVSAM_CRYPTO=y + +# Disable NXP as it is conflict with MUSDK +CONFIG_RTE_LIBRTE_DPAA_BUS=n + +# Doesn't support NUMA +CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n +CONFIG_RTE_LIBRTE_VHOST_NUMA=n