From mboxrd@z Thu Jan 1 00:00:00 1970 From: "De Lara Guarch, Pablo" Subject: Re: [PATCH v5 02/12] crypto/dpaa2_sec: add dpaa2 sec poll mode driver Date: Tue, 21 Mar 2017 15:07:08 +0000 Message-ID: References: <20170303193648.30665-1-akhil.goyal@nxp.com> <20170303194935.30831-1-akhil.goyal@nxp.com> <20170303194935.30831-3-akhil.goyal@nxp.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Cc: "thomas.monjalon@6wind.com" , "Doherty, Declan" , "Mcnamara, John" , "nhorman@tuxdriver.com" , "hemant.agrawal@nxp.com" To: Akhil Goyal , "dev@dpdk.org" Return-path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 9993C133F for ; Tue, 21 Mar 2017 16:07:11 +0100 (CET) In-Reply-To: <20170303194935.30831-3-akhil.goyal@nxp.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi Akhil, > -----Original Message----- > From: Akhil Goyal [mailto:akhil.goyal@nxp.com] > Sent: Friday, March 03, 2017 7:49 PM > To: dev@dpdk.org > Cc: thomas.monjalon@6wind.com; Doherty, Declan; De Lara Guarch, Pablo; > Mcnamara, John; nhorman@tuxdriver.com; hemant.agrawal@nxp.com; > Akhil Goyal > Subject: [PATCH v5 02/12] crypto/dpaa2_sec: add dpaa2 sec poll mode > driver >=20 > Signed-off-by: Hemant Agrawal > Signed-off-by: Akhil Goyal ... > diff --git a/config/defconfig_arm64-dpaa2-linuxapp-gcc > b/config/defconfig_arm64-dpaa2-linuxapp-gcc > index 29a56c7..50ba0d6 100644 > --- a/config/defconfig_arm64-dpaa2-linuxapp-gcc > +++ b/config/defconfig_arm64-dpaa2-linuxapp-gcc > @@ -65,3 +65,15 @@ CONFIG_RTE_LIBRTE_DPAA2_DEBUG_DRIVER=3Dn > CONFIG_RTE_LIBRTE_DPAA2_DEBUG_RX=3Dn > CONFIG_RTE_LIBRTE_DPAA2_DEBUG_TX=3Dn > CONFIG_RTE_LIBRTE_DPAA2_DEBUG_TX_FREE=3Dn > + > +#Compile NXP DPAA2 crypto sec driver for CAAM HW > +CONFIG_RTE_LIBRTE_PMD_DPAA2_SEC=3Dy > +CONFIG_RTE_LIBRTE_DPAA2_SEC_DEBUG_INIT=3Dn > +CONFIG_RTE_LIBRTE_DPAA2_SEC_DEBUG_DRIVER=3Dn > +CONFIG_RTE_LIBRTE_DPAA2_SEC_DEBUG_RX=3Dn > + > +# > +# Number of sessions to create in the session memory pool > +# on a single DPAA2 SEC device. > +# > +CONFIG_RTE_DPAA2_SEC_PMD_MAX_NB_SESSIONS=3D2048 > diff --git a/drivers/bus/Makefile b/drivers/bus/Makefile > index 8f7864b..3ef7f2e 100644 > --- a/drivers/bus/Makefile > +++ b/drivers/bus/Makefile > @@ -32,6 +32,9 @@ > include $(RTE_SDK)/mk/rte.vars.mk >=20 > CONFIG_RTE_LIBRTE_FSLMC_BUS =3D $(CONFIG_RTE_LIBRTE_DPAA2_PMD) > +ifneq ($(CONFIG_RTE_LIBRTE_FSLMC_BUS),y) > +CONFIG_RTE_LIBRTE_FSLMC_BUS =3D > $(CONFIG_RTE_LIBRTE_PMD_DPAA2_SEC) I assume that this patchset sits on top of the dpaa2 network driver. With that one applied, there is a conflict here. Could you rebase this patch against that one and submit a v6? Thanks! Pablo=20