From patchwork Mon Oct 21 05:31:27 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gagandeep Singh X-Patchwork-Id: 61501 X-Patchwork-Delegate: gakhil@marvell.com 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 9EECD29D2; Mon, 21 Oct 2019 07:47:23 +0200 (CEST) Received: from inva020.nxp.com (inva020.nxp.com [92.121.34.13]) by dpdk.org (Postfix) with ESMTP id CCC8D29C6 for ; Mon, 21 Oct 2019 07:47:22 +0200 (CEST) Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 55BA31A02BF; Mon, 21 Oct 2019 07:47:22 +0200 (CEST) Received: from invc005.ap-rdc01.nxp.com (invc005.ap-rdc01.nxp.com [165.114.16.14]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 800961A01EA; Mon, 21 Oct 2019 07:47:20 +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 54352402B6; Mon, 21 Oct 2019 13:47:17 +0800 (SGT) From: Gagandeep Singh To: dev@dpdk.org, khil.goyal@nxp.com Cc: Gagandeep Singh Date: Mon, 21 Oct 2019 11:01:27 +0530 Message-Id: <20191021053127.24121-1-g.singh@nxp.com> X-Mailer: git-send-email 2.17.1 X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-dev] [PATCH] crypto/caam_jr: remove default big endianness compilation 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" CAAM JR can work on both LE and BE mode. Latest platforms are in LE mode, so changing the default mode to LE to make it more convenient for the latest platforms. Signed-off-by: Gagandeep Singh Acked-by: Akhil Goyal --- config/defconfig_arm64-dpaa-linuxapp-gcc | 3 --- doc/guides/cryptodevs/caam_jr.rst | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/config/defconfig_arm64-dpaa-linuxapp-gcc b/config/defconfig_arm64-dpaa-linuxapp-gcc index b408d4f48..19614fb01 100644 --- a/config/defconfig_arm64-dpaa-linuxapp-gcc +++ b/config/defconfig_arm64-dpaa-linuxapp-gcc @@ -21,6 +21,3 @@ CONFIG_RTE_PKTMBUF_HEADROOM=128 # NXP DPAA Bus CONFIG_RTE_LIBRTE_DPAA_DEBUG_DRIVER=n CONFIG_RTE_LIBRTE_DPAA_HWDEBUG=n - -# NXP CAAM_JR driver -CONFIG_RTE_LIBRTE_PMD_CAAM_JR_BE=y diff --git a/doc/guides/cryptodevs/caam_jr.rst b/doc/guides/cryptodevs/caam_jr.rst index 6622b79c7..6d9daf736 100644 --- a/doc/guides/cryptodevs/caam_jr.rst +++ b/doc/guides/cryptodevs/caam_jr.rst @@ -127,8 +127,8 @@ Please note that enabling debugging options may affect system performance. * ``CONFIG_RTE_LIBRTE_PMD_CAAM_JR_BE`` (default ``n``) By default it is disabled. It can be used when the underlying hardware supports the CAAM in BE mode. - e.g. LS1043A, LS1046A supports CAAM in BE mode. - BE mode is enabled by default in defconfig-arm64-dpaa-linux-gcc. + LS1043A, LS1046A and LS1012A support CAAM in BE mode. + LS1028A supports CAAM in LE mode. Installations -------------