From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alejandro Lucero Subject: Re: [PATCH v3 25/29] net/nfp: use eal I/O device memory read/write API Date: Thu, 12 Jan 2017 10:53:17 +0000 Message-ID: References: <1482832175-27199-1-git-send-email-jerin.jacob@caviumnetworks.com> <1484212646-10338-1-git-send-email-jerin.jacob@caviumnetworks.com> <1484212646-10338-26-git-send-email-jerin.jacob@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: dev , "Ananyev, Konstantin" , Thomas Monjalon , Bruce Richardson , jianbo.liu@linaro.org, Jan Viktorin , santosh.shukla@caviumnetworks.com To: Jerin Jacob Return-path: Received: from mail-vk0-f48.google.com (mail-vk0-f48.google.com [209.85.213.48]) by dpdk.org (Postfix) with ESMTP id A992D5A29 for ; Thu, 12 Jan 2017 11:53:18 +0100 (CET) Received: by mail-vk0-f48.google.com with SMTP id 137so9969204vkl.0 for ; Thu, 12 Jan 2017 02:53:18 -0800 (PST) In-Reply-To: <1484212646-10338-26-git-send-email-jerin.jacob@caviumnetworks.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" Hi, I've tried to find out which dpdk repo should I use for testing this change with NFP PMD. It seems rte_read/write functions are not with last dpdk main repo, nor with dpdk-net-next. Can someone tell me which repo should I use? On Thu, Jan 12, 2017 at 9:17 AM, Jerin Jacob wrote: > From: Santosh Shukla > > Replace the raw I/O device memory read/write access with eal > abstraction for I/O device memory read/write access to fix > portability issues across different architectures. > > CC: Alejandro Lucero > Signed-off-by: Santosh Shukla > Signed-off-by: Jerin Jacob > --- > drivers/net/nfp/nfp_net_pmd.h | 9 +++++---- > 1 file changed, 5 insertions(+), 4 deletions(-) > > diff --git a/drivers/net/nfp/nfp_net_pmd.h b/drivers/net/nfp/nfp_net_pmd.h > index c180972..f11b32e 100644 > --- a/drivers/net/nfp/nfp_net_pmd.h > +++ b/drivers/net/nfp/nfp_net_pmd.h > @@ -121,25 +121,26 @@ struct nfp_net_adapter; > #define NFD_CFG_MINOR_VERSION_of(x) (((x) >> 0) & 0xff) > > #include > +#include > > static inline uint8_t nn_readb(volatile const void *addr) > { > - return *((volatile const uint8_t *)(addr)); > + return rte_read8(addr); > } > > static inline void nn_writeb(uint8_t val, volatile void *addr) > { > - *((volatile uint8_t *)(addr)) = val; > + rte_write8(val, addr); > } > > static inline uint32_t nn_readl(volatile const void *addr) > { > - return *((volatile const uint32_t *)(addr)); > + return rte_read32(addr); > } > > static inline void nn_writel(uint32_t val, volatile void *addr) > { > - *((volatile uint32_t *)(addr)) = val; > + rte_write32(val, addr); > } > > static inline uint64_t nn_readq(volatile void *addr) > -- > 2.5.5 > >