From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 151F0A2F67 for ; Fri, 4 Oct 2019 13:26:29 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5B84C1C1E8; Fri, 4 Oct 2019 13:26:28 +0200 (CEST) Received: from inva021.nxp.com (inva021.nxp.com [92.121.34.21]) by dpdk.org (Postfix) with ESMTP id DB9781C1E5 for ; Fri, 4 Oct 2019 13:26:26 +0200 (CEST) Received: from inva021.nxp.com (localhost [127.0.0.1]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 72BC82003BC; Fri, 4 Oct 2019 13:26:26 +0200 (CEST) Received: from invc005.ap-rdc01.nxp.com (invc005.ap-rdc01.nxp.com [165.114.16.14]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 44DE12001A8; Fri, 4 Oct 2019 13:26:23 +0200 (CEST) Received: from GDB1.ap.freescale.net (GDB1.ap.freescale.net [10.232.132.179]) by invc005.ap-rdc01.nxp.com (Postfix) with ESMTP id E7CEE402BE; Fri, 4 Oct 2019 19:26:18 +0800 (SGT) From: Nipun Gupta To: dev@dpdk.org Cc: thomas@monjalon.net, ferruh.yigit@intel.com, hemant.agrawal@nxp.com, sachin.saxena@nxp.com, Nipun Gupta Date: Fri, 4 Oct 2019 16:41:06 +0530 Message-Id: <20191004111106.30267-1-nipun.gupta@nxp.com> X-Mailer: git-send-email 2.17.1 X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-dev] [PATCH] config: disable iova phys for dpaa and 1588 for dpaa2 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" IOVA_PHYS flag is not required in the DPAA config, thus disable it. Also, disable the 1588 timer support by default on DPAA2 platform due to the performance impact Signed-off-by: Nipun Gupta --- This patch is rebase over dpdk-next-net config/defconfig_arm64-dpaa-linuxapp-gcc | 2 ++ config/defconfig_arm64-dpaa2-linuxapp-gcc | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/config/defconfig_arm64-dpaa-linuxapp-gcc b/config/defconfig_arm64-dpaa-linuxapp-gcc index b408d4f48..c5599b4fa 100644 --- a/config/defconfig_arm64-dpaa-linuxapp-gcc +++ b/config/defconfig_arm64-dpaa-linuxapp-gcc @@ -24,3 +24,5 @@ CONFIG_RTE_LIBRTE_DPAA_HWDEBUG=n # NXP CAAM_JR driver CONFIG_RTE_LIBRTE_PMD_CAAM_JR_BE=y + +CONFIG_RTE_LIBRTE_DPAA2_USE_PHYS_IOVA=n diff --git a/config/defconfig_arm64-dpaa2-linuxapp-gcc b/config/defconfig_arm64-dpaa2-linuxapp-gcc index 5c7eddd5e..b2ccbec0c 100644 --- a/config/defconfig_arm64-dpaa2-linuxapp-gcc +++ b/config/defconfig_arm64-dpaa2-linuxapp-gcc @@ -15,8 +15,8 @@ CONFIG_RTE_CACHE_LINE_SIZE=64 CONFIG_RTE_PKTMBUF_HEADROOM=128 -# Enable IEEE1588, Keep it disable by default -CONFIG_RTE_LIBRTE_IEEE1588=y +# Disable IEEE1588 by default +CONFIG_RTE_LIBRTE_IEEE1588=n # Doesn't support NUMA CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n -- 2.17.1