From patchwork Wed Jan 9 12:34:24 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yongseok Koh X-Patchwork-Id: 49539 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 758FF1B464; Wed, 9 Jan 2019 13:34:31 +0100 (CET) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id C6C7B1B45F for ; Wed, 9 Jan 2019 13:34:29 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from yskoh@mellanox.com) with ESMTPS (AES256-SHA encrypted); 9 Jan 2019 14:34:28 +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 x09CYQOD018356; Wed, 9 Jan 2019 14:34:27 +0200 From: Yongseok Koh To: thomas@monjalon.net Cc: dev@dpdk.org, shahafs@mellanox.com Date: Wed, 9 Jan 2019 04:34:24 -0800 Message-Id: <20190109123424.47100-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 v2] 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 Acked-by: Jerin Jacob --- config/defconfig_arm64-bluefield-linuxapp-gcc | 20 ++++++++++++++++++++ 1 file changed, 20 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..6d7338e54f --- /dev/null +++ b/config/defconfig_arm64-bluefield-linuxapp-gcc @@ -0,0 +1,20 @@ +# 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 +CONFIG_RTE_LIBRTE_MLX5_DEBUG=n +CONFIG_RTE_IBVERBS_LINK_DLOPEN=n