From patchwork Thu Jan 10 18:39:19 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yongseok Koh X-Patchwork-Id: 49633 X-Patchwork-Delegate: thomas@monjalon.net 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 065FE1B8FF; Thu, 10 Jan 2019 19:39:29 +0100 (CET) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 87D631B889 for ; Thu, 10 Jan 2019 19:39:27 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from yskoh@mellanox.com) with ESMTPS (AES256-SHA encrypted); 10 Jan 2019 20:39:23 +0200 Received: from scfae-sc-2.mti.labs.mlnx (scfae-sc-2.mti.labs.mlnx [10.101.0.96]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x0AIdLg5008825; Thu, 10 Jan 2019 20:39:21 +0200 From: Yongseok Koh To: thomas@monjalon.net Cc: dev@dpdk.org, shahafs@mellanox.com, jerinj@marvell.com Date: Thu, 10 Jan 2019 10:39:19 -0800 Message-Id: <20190110183919.42658-1-yskoh@mellanox.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20190109093201.40603-1-yskoh@mellanox.com> References: <20190109093201.40603-1-yskoh@mellanox.com> Subject: [dpdk-dev] [PATCH v3] config: add Mellanox BlueField ARMv8 SoC 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" BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single device. http://www.mellanox.com/page/products_dyn?product_family=256&mtag=soc_overview Signed-off-by: Yongseok Koh --- v3: * remove redundant mlx5 config items v2: * remove config items which can be used for external PCIe device config/defconfig_arm64-bluefield-linuxapp-gcc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc b/config/defconfig_arm64-bluefield-linuxapp-gcc new file mode 100644 index 0000000000..dd252c0e47 --- /dev/null +++ b/config/defconfig_arm64-bluefield-linuxapp-gcc @@ -0,0 +1,18 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright 2019 Mellanox Technologies, Ltd +# + +#include "defconfig_arm64-armv8a-linuxapp-gcc" + +# Mellanox BlueField +CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72" + +CONFIG_RTE_MAX_NUMA_NODES=1 +CONFIG_RTE_CACHE_LINE_SIZE=64 + +# UMA architecture +CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n +CONFIG_RTE_LIBRTE_VHOST_NUMA=n + +# PMD for ConnectX-5 +CONFIG_RTE_LIBRTE_MLX5_PMD=y