From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH 17/32] net/dpaa2: dpbp based mempool hw offload driver Date: Thu, 15 Dec 2016 11:39:28 +0530 Message-ID: <20161215060927.GB19354@localhost.localdomain> References: <1480875447-23680-1-git-send-email-hemant.agrawal@nxp.com> <1480875447-23680-18-git-send-email-hemant.agrawal@nxp.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Cc: , , , To: Hemant Agrawal Return-path: Received: from NAM02-SN1-obe.outbound.protection.outlook.com (mail-sn1nam02on0067.outbound.protection.outlook.com [104.47.36.67]) by dpdk.org (Postfix) with ESMTP id 6625D10A7 for ; Thu, 15 Dec 2016 07:09:53 +0100 (CET) Content-Disposition: inline In-Reply-To: <1480875447-23680-18-git-send-email-hemant.agrawal@nxp.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Sun, Dec 04, 2016 at 11:47:12PM +0530, Hemant Agrawal wrote: > DPBP represent a buffer pool instance in DPAA2-QBMAN > HW accelerator. > > All buffers needs to be programmed in the HW accelerator. > > Signed-off-by: Hemant Agrawal > --- > config/defconfig_arm64-dpaa2-linuxapp-gcc | 5 + > drivers/net/dpaa2/Makefile | 2 + > drivers/net/dpaa2/base/dpaa2_hw_dpbp.c | 366 ++++++++++++++++++++++++++++++ > drivers/net/dpaa2/base/dpaa2_hw_dpbp.h | 101 +++++++++ > drivers/net/dpaa2/base/dpaa2_hw_pvt.h | 7 + How about moving the external mempool driver to RTE_SDK/driver/pool. We are planning to push our external mempool driver to driver/pool. > drivers/net/dpaa2/dpaa2_vfio.c | 13 +- > 6 files changed, 493 insertions(+), 1 deletion(-) > create mode 100644 drivers/net/dpaa2/base/dpaa2_hw_dpbp.c > create mode 100644 drivers/net/dpaa2/base/dpaa2_hw_dpbp.h >