[PATCH v3] dma/cnxk: add support for CN10K DMA engine

2022-08-05 Thread Radha Mohan Chintakuntla
Added support for CN10K SoC DMA engine to dmadev. Signed-off-by: Radha Mohan Chintakuntla Reviewed-by: Jerin Jacob Kollanukkaran --- Changes from v2: - Added missing files required in the patch Changes from v1: - Removed gerrit changeID drivers/common/cnxk/hw/dpi.h | 16 +- drivers

[PATCH v2] dma/cnxk: add support for CN10K DMA engine

2022-08-05 Thread Radha Mohan Chintakuntla
Added support for CN10K SoC DMA engine to dmadev. Signed-off-by: Radha Mohan Chintakuntla Reviewed-by: Jerin Jacob Kollanukkaran --- Changes from v1: - Removed gerrit changeID drivers/dma/cnxk/cnxk_dmadev.c | 248 + drivers/dma/cnxk/cnxk_dmadev.h | 2 +- 2

[PATCH] dma/cnxk: add support for CN10K DMA engine

2022-08-05 Thread Radha Mohan Chintakuntla
Added support for CN10K SoC DMA engine to dmadev. Signed-off-by: Radha Mohan Chintakuntla Change-Id: Ib119b3ceab0810724820e9af1d29fdd3f95d5cc9 Reviewed-on: https://sj1git1.cavium.com/c/IP/SW/dataplane/dpdk/+/68103 Tested-by: sa_ip-toolkits-Jenkins Reviewed-by: Jerin Jacob Kollanukkaran

[dpdk-dev] [PATCH v2] usertools/devbind: update octeontx2 DMA device

2021-11-09 Thread Radha Mohan Chintakuntla
The octeontx2_dma rawdev driver is removed in DPDK-21.11. The new driver for the same device uses the dmadev. So this patch updates the device naming and lists it under dma devices section. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v1: - Sort the names alphabetically usertools

Re: [dpdk-dev] [PATCH] usertools/devbind: update octeontx2 DMA device

2021-11-09 Thread Radha Mohan
On Tue, Nov 9, 2021 at 12:50 PM Thomas Monjalon wrote: > > 09/11/2021 17:55, Radha Mohan Chintakuntla: > > The octeontx2_dma rawdev driver is removed in DPDK-21.11. The new driver > > for the same device uses the dmadev. So this patch updates the device > > naming and li

[dpdk-dev] [PATCH] usertools/devbind: update octeontx2 DMA device

2021-11-09 Thread Radha Mohan Chintakuntla
The octeontx2_dma rawdev driver is removed in DPDK-21.11. The new driver for the same device uses the dmadev. So this patch updates the device naming and lists it under dma devices section. Signed-off-by: Radha Mohan Chintakuntla --- usertools/dpdk-devbind.py | 11 ++- 1 file changed, 6

Re: [dpdk-dev] [PATCH] usertools/devbind: remove octeontx2 DMA device

2021-11-08 Thread Radha Mohan
On Sun, Nov 7, 2021 at 5:57 PM Thomas Monjalon wrote: > > The DMA raw driver for octeontx2 was removed in DPDK 21.11. > The binding ability is also removed in the same release > to be consistent. > > Fixes: a59745ebccf0 ("raw/octeontx2_dma: remove driver") > > Signed-off-by: Thomas Monjalon > > -

Re: [dpdk-dev] [PATCH v3 2/5] dma/cnxk: create and initialize dmadev on pci probe

2021-11-08 Thread Radha Mohan
On Sun, Nov 7, 2021 at 6:04 PM Thomas Monjalon wrote: > > 03/11/2021 19:01, Radha Mohan Chintakuntla: > > This patch creates and initializes a dmadev device on pci probe. > > > > Signed-off-by: Radha Mohan Chintakuntla > > Series applied with few small improvements

[dpdk-dev] [PATCH v3 5/5] dma/cnxk: add stats function

2021-11-03 Thread Radha Mohan Chintakuntla
Add the stats function to get the DMA statistics. Signed-off-by: Radha Mohan Chintakuntla --- drivers/dma/cnxk/cnxk_dmadev.c | 41 -- drivers/dma/cnxk/cnxk_dmadev.h | 1 + 2 files changed, 40 insertions(+), 2 deletions(-) diff --git a/drivers/dma/cnxk

[dpdk-dev] [PATCH v3 4/5] dma/cnxk: add copy_sg function

2021-11-03 Thread Radha Mohan Chintakuntla
Add the copy_sg function that will do the multiple DMA transfers of different sizes and different source/destination as well. Signed-off-by: Radha Mohan Chintakuntla --- drivers/dma/cnxk/cnxk_dmadev.c | 69 +- 1 file changed, 68 insertions(+), 1 deletion(-) diff

[dpdk-dev] [PATCH v3 3/5] dma/cnxk: add dma channel operations

2021-11-03 Thread Radha Mohan Chintakuntla
Add functions for the dmadev vchan setup and DMA operations. Signed-off-by: Radha Mohan Chintakuntla --- drivers/dma/cnxk/cnxk_dmadev.c | 331 + drivers/dma/cnxk/cnxk_dmadev.h | 32 drivers/dma/cnxk/version.map | 3 + 3 files changed, 366 insertions

[dpdk-dev] [PATCH v3 1/5] common/cnxk: add DPI DMA support

2021-11-03 Thread Radha Mohan Chintakuntla
Add base support as ROC(Rest of Chip) API which will be used by PMD dmadev driver. This patch adds routines to init, fini, configure the DPI DMA device found in Marvell's CN9k or CN10k SoC families. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v2: - added stats function - u

[dpdk-dev] [PATCH v3 2/5] dma/cnxk: create and initialize dmadev on pci probe

2021-11-03 Thread Radha Mohan Chintakuntla
This patch creates and initializes a dmadev device on pci probe. Signed-off-by: Radha Mohan Chintakuntla --- MAINTAINERS| 6 ++ doc/guides/dmadevs/cnxk.rst| 58 +++ doc/guides/dmadevs/index.rst | 1 + doc/guides/platform/cnxk.rst | 5

Re: [dpdk-dev] [PATCH v2 3/4] dma/cnxk: add dma channel operations

2021-11-02 Thread Radha Mohan
On Tue, Nov 2, 2021 at 5:00 AM fengchengwen wrote: > > On 2021/11/2 11:40, Radha Mohan Chintakuntla wrote: > > Add functions for the dmadev vchan setup and DMA operations. > > > > Signed-off-by: Radha Mohan Chintakuntla > > ... > > > > > +stat

[dpdk-dev] [PATCH v2 4/4] dma/cnxk: add copy_sg function

2021-11-01 Thread Radha Mohan Chintakuntla
Add the copy_sg function that will do the multiple DMA transfers of different sizes and different source/destination as well. Signed-off-by: Radha Mohan Chintakuntla --- drivers/dma/cnxk/cnxk_dmadev.c | 68 +- 1 file changed, 67 insertions(+), 1 deletion(-) diff

[dpdk-dev] [PATCH v2 3/4] dma/cnxk: add dma channel operations

2021-11-01 Thread Radha Mohan Chintakuntla
Add functions for the dmadev vchan setup and DMA operations. Signed-off-by: Radha Mohan Chintakuntla --- drivers/dma/cnxk/cnxk_dmadev.c | 322 + drivers/dma/cnxk/cnxk_dmadev.h | 31 drivers/dma/cnxk/version.map | 3 + 3 files changed, 356 insertions

[dpdk-dev] [PATCH v2 2/4] dma/cnxk: create and initialize dmadev on pci probe

2021-11-01 Thread Radha Mohan Chintakuntla
This patch creates and initializes a dmadev device on pci probe. Signed-off-by: Radha Mohan Chintakuntla --- MAINTAINERS| 6 ++ doc/guides/dmadevs/cnxk.rst| 58 +++ doc/guides/dmadevs/index.rst | 1 + drivers/dma/cnxk/cnxk_dmadev.c | 100

[dpdk-dev] [PATCH v2 1/4] common/cnxk: add DPI DMA support

2021-11-01 Thread Radha Mohan Chintakuntla
Add base support as ROC(Rest of Chip) API which will be used by PMD dmadev driver. This patch adds routines to init, fini, configure the DPI DMA device found in Marvell's CN9k or CN10k SoC families. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v1: - Changed to roc_dpi_enable()

Re: [dpdk-dev] [PATCH 3/4] dma/cnxk: add dma channel operations

2021-10-29 Thread Radha Mohan
On Fri, Oct 29, 2021 at 7:54 AM Jerin Jacob wrote: > > On Thu, Oct 28, 2021 at 11:48 PM Radha Mohan wrote: > > > > On Tue, Oct 26, 2021 at 1:49 AM Jerin Jacob wrote: > > > > > > On Tue, Oct 26, 2021 at 9:43 AM Radha Mohan Chintakuntla > > > wrote:

Re: [dpdk-dev] [PATCH 3/4] dma/cnxk: add dma channel operations

2021-10-28 Thread Radha Mohan
On Tue, Oct 26, 2021 at 1:49 AM Jerin Jacob wrote: > > On Tue, Oct 26, 2021 at 9:43 AM Radha Mohan Chintakuntla > wrote: > > > > Add functions for the dmadev vchan setup and DMA operations. > > > > Signed-off-by: Radha Mohan Chintakuntla > > --- &g

Re: [dpdk-dev] [PATCH 2/4] dma/cnxk: create and initialize dmadev on pci probe

2021-10-26 Thread Radha Mohan
On Tue, Oct 26, 2021 at 2:32 AM Jerin Jacob wrote: > > On Tue, Oct 26, 2021 at 9:43 AM Radha Mohan Chintakuntla > wrote: > > > > This patch creates and initializes a dmadev device on pci probe. > > > > Signed-off-by: Radha Mohan Chintakuntla > > --- &g

Re: [dpdk-dev] [PATCH 1/4] common/cnxk: add DPI DMA support

2021-10-26 Thread Radha Mohan
On Tue, Oct 26, 2021 at 1:34 AM Jerin Jacob wrote: > > On Tue, Oct 26, 2021 at 9:43 AM Radha Mohan Chintakuntla > wrote: > > > > Add base support as ROC(Rest of Chip) API which will be used by PMD > > dmadev driver. > > > > This patch adds routines to i

Re: [dpdk-dev] [PATCH v2 1/3] dmadev: hide devices array

2021-10-25 Thread Radha Mohan
On Thu, Oct 21, 2021 at 7:04 AM Kevin Laatz wrote: > > On 21/10/2021 13:59, Chengwen Feng wrote: > > From: David Marchand > > > > No need to expose rte_dma_devices out of the dmadev library. > > Existing helpers should be enough, and inlines make use of > > rte_dma_fp_objs. I asked this earlier

[dpdk-dev] [PATCH 3/4] dma/cnxk: add dma channel operations

2021-10-25 Thread Radha Mohan Chintakuntla
Add functions for the dmadev vchan setup and DMA operations. Signed-off-by: Radha Mohan Chintakuntla --- drivers/dma/cnxk/cnxk_dmadev.c | 322 + drivers/dma/cnxk/cnxk_dmadev.h | 53 ++ drivers/dma/cnxk/version.map | 3 + 3 files changed, 378 insertions

[dpdk-dev] [PATCH 4/4] dma/cnxk: add copy_sg function

2021-10-25 Thread Radha Mohan Chintakuntla
Add the copy_sg function that will do the multiple DMA transfers of different sizes and different source/destination as well. Signed-off-by: Radha Mohan Chintakuntla --- drivers/dma/cnxk/cnxk_dmadev.c | 80 +- 1 file changed, 79 insertions(+), 1 deletion(-) diff

[dpdk-dev] [PATCH 1/4] common/cnxk: add DPI DMA support

2021-10-25 Thread Radha Mohan Chintakuntla
Add base support as ROC(Rest of Chip) API which will be used by PMD dmadev driver. This patch adds routines to init, fini, configure the DPI DMA device found in Marvell's CN9k or CN10k SoC familes. Signed-off-by: Radha Mohan Chintakuntla --- drivers/common/cnxk/hw/dpi.h

[dpdk-dev] [PATCH 2/4] dma/cnxk: create and initialize dmadev on pci probe

2021-10-25 Thread Radha Mohan Chintakuntla
This patch creates and initializes a dmadev device on pci probe. Signed-off-by: Radha Mohan Chintakuntla --- MAINTAINERS| 7 +- doc/guides/dmadevs/cnxk.rst| 53 +++ doc/guides/dmadevs/index.rst | 1 + drivers/dma/cnxk/cnxk_dmadev.c | 119

Re: [dpdk-dev] [PATCH v23 1/6] dmadev: introduce DMA device library

2021-10-05 Thread Radha Mohan
On Tue, Oct 5, 2021 at 1:24 AM Kevin Laatz wrote: > > On 04/10/2021 22:12, Radha Mohan wrote: > > On Fri, Sep 24, 2021 at 3:58 AM Chengwen Feng > > wrote: > >> The 'dmadevice' is a generic type of DMA device. > >> > >> This patch introduc

Re: [dpdk-dev] [PATCH v23 1/6] dmadev: introduce DMA device library

2021-10-04 Thread Radha Mohan
mode 100644 lib/dmadev/version.map > Hi Chengwen, I see that the new version removed the "rte_dmadev_get_device_by_name()". What is the way to get the dmadev from inside the PMD .remove ? I am looking to get the dev_private as we need to do some cleanup operations from the remove function. regards, Radha Mohan

Re: [dpdk-dev] [PATCH v5 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-26 Thread Radha Mohan
On Thu, Aug 26, 2021 at 4:20 PM Radha Mohan Chintakuntla wrote: > > Removing the rawdev based octeontx2-ep driver as the dependent > common/octeontx2 will soon be going away. Moreover this driver is no > longer required as the net/octeontx_ep driver is sufficient. > > Signed-o

[dpdk-dev] [PATCH v5 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-26 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-ep driver as the dependent common/octeontx2 will soon be going away. Moreover this driver is no longer required as the net/octeontx_ep driver is sufficient. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v4: Replaced the reference to documentation in

[dpdk-dev] [PATCH v5 1/2] drivers/raw: remove octeontx2-dma driver

2021-08-26 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-dma driver as the dependent common/octeontx2 will be soon be going away. Also a new DMA driver will be coming in this place once the rte_dmadev library is in. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v4: Replaced the reference to documentation

Re: [dpdk-dev] [PATCH RESEND v4 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-23 Thread Radha Mohan
On Mon, Aug 23, 2021 at 8:51 PM Radha Mohan Chintakuntla wrote: > > Removing the rawdev based octeontx2-ep driver as the dependent > common/octeontx2 will soon be going away. Moreover this driver is no > longer required as the net/octeontx_ep driver is sufficient. > > Signed-o

[dpdk-dev] [PATCH RESEND v4 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-23 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-ep driver as the dependent common/octeontx2 will soon be going away. Moreover this driver is no longer required as the net/octeontx_ep driver is sufficient. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v3: Fixed patch application failure due to

[dpdk-dev] [PATCH RESEND v4 1/2] drivers/raw: remove octeontx2-dma driver

2021-08-23 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-dma driver as the dependent common/octeontx2 will be soon be going away. Also a new DMA driver will be coming in this place once the rte_dmadev library is in. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v3: Fixed patch application failure due to

Re: [dpdk-dev] [PATCH v4 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-23 Thread Radha Mohan
On Mon, Aug 23, 2021 at 6:02 PM David Marchand wrote: > > On Mon, Aug 23, 2021 at 2:19 PM Radha Mohan wrote: > > I received this report that this patch failed to apply > > http://mails.dpdk.org/archives/test-report/2021-August/211611.html > > The two patches of thi

Re: [dpdk-dev] [PATCH v4 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-23 Thread Radha Mohan
On Thu, Aug 19, 2021 at 1:29 PM Radha Mohan Chintakuntla wrote: > > Removing the rawdev based octeontx2-ep driver as the dependent > common/octeontx2 will soon be going away. Moreover this driver is no > longer required as the net/octeontx_ep driver is sufficient. > > Signed-o

Re: [dpdk-dev] [PATCH v4 1/2] drivers/raw: remove octeontx2-dma driver

2021-08-19 Thread Radha Mohan
On Thu, Aug 19, 2021 at 1:27 PM Radha Mohan Chintakuntla wrote: > > Removing the rawdev based octeontx2-dma driver as the dependent > common/octeontx2 will be soon be going away. Also a new DMA driver will > be coming in this place once the rte_dmadev library is in. > > Signed-o

[dpdk-dev] [PATCH v4 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-19 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-ep driver as the dependent common/octeontx2 will soon be going away. Moreover this driver is no longer required as the net/octeontx_ep driver is sufficient. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v3: Fixed patch application failure due to

[dpdk-dev] [PATCH v4 1/2] drivers/raw: remove octeontx2-dma driver

2021-08-19 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-dma driver as the dependent common/octeontx2 will be soon be going away. Also a new DMA driver will be coming in this place once the rte_dmadev library is in. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v3: Fixed patch application failure on main

[dpdk-dev] [PATCH v3 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-13 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-ep driver as the dependent common/octeontx2 will soon be going away. Moreover this driver is no longer required as the net/octeontx_ep driver is sufficient. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v2: Fixed DPDK CI reported issues for more

[dpdk-dev] [PATCH v3 1/2] drivers/raw: remove octeontx2-dma driver

2021-08-13 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-dma driver as the dependent common/octeontx2 will be soon be going away. Also a new DMA driver will be coming in this place once the rte_dmadev library is in. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v2: Fixed DPDK CI reported issues for more

[dpdk-dev] [PATCH v2 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-12 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-ep driver as the dependent common/octeontx2 will soon be going away. Moreover this driver is no longer required as the net/octeontx_ep driver is sufficient. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v1: Fixed compilation issues in documentation

[dpdk-dev] [PATCH v2 1/2] drivers/raw: remove octeontx2-dma driver

2021-08-12 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-dma driver as the dependent common/octeontx2 will be soon be going away. Also a new DMA driver will be coming in this place once the rte_dmadev library is in. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v1: Fixed compilation issues in

[dpdk-dev] [PATCH 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-12 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-ep driver as the dependent common/octeontx2 will soon be going away. Moreover this driver is no longer required as the net/octeontx_ep driver is sufficient. Signed-off-by: Radha Mohan Chintakuntla --- MAINTAINERS | 6 - doc

[dpdk-dev] [PATCH 1/2] drivers/raw: remove octeontx2-dma driver

2021-08-12 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-dma driver as the dependent common/octeontx2 will be soon be going away. Also a new DMA driver will be coming in this place once the rte_dmadev library is in. Signed-off-by: Radha Mohan Chintakuntla --- MAINTAINERS | 6 - doc

Re: [dpdk-dev] [PATCH] raw/octeontx2_dma: fix unavailable PCI device in dpivf

2021-04-09 Thread Radha Mohan
On Fri, Apr 9, 2021 at 1:29 PM Radha Mohan Chintakuntla wrote: > > The PCI device address is being used for sending mailbox which was > introduced in previous commit which replaced the macros so that > multiple DPI blocks in the hardware can be supported. > > This patch fi

[dpdk-dev] [PATCH v2] raw/octeontx2_dma: fix unavailable PCI device in dpivf

2021-04-09 Thread Radha Mohan Chintakuntla
("raw/octeontx2_dma: support multiple DPI blocks") Signed-off-by: Radha Mohan Chintakuntla --- drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c b/drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c index

Re: [dpdk-dev] [PATCH] raw/octeontx2_dma: fix unavailable PCI device in dpivf

2021-04-09 Thread Radha Mohan
On Fri, Apr 9, 2021 at 12:13 PM Jerin Jacob wrote: > > On Mon, Mar 22, 2021 at 8:52 PM Radha Mohan Chintakuntla > wrote: > > > > Add PCI device to dpivf structure. > > > > Fixes: 4495bd887d38 ("raw/octeontx2_dma: support multiple DPI blocks") > >

[dpdk-dev] [PATCH] raw/octeontx2_dma: fix unavailable PCI device in dpivf

2021-04-09 Thread Radha Mohan Chintakuntla
("raw/octeontx2_dma: support multiple DPI blocks") Signed-off-by: Radha Mohan Chintakuntla --- drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c b/drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c index

[dpdk-dev] [PATCH] raw/octeontx2_dma: fix unavailable PCI device in dpivf

2021-03-22 Thread Radha Mohan Chintakuntla
Add PCI device to dpivf structure. Fixes: 4495bd887d38 ("raw/octeontx2_dma: support multiple DPI blocks") Signed-off-by: Radha Mohan Chintakuntla --- drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/raw/octeontx2_dma/otx2_dpi_r

Re: [dpdk-dev] [PATCH 6/7] raw/octeontx2: enable build only for 64bit Linux

2021-03-22 Thread Radha Mohan
et('RTE_ARCH_64') > - extra_flags += ['-Wno-int-to-pointer-cast', > '-Wno-pointer-to-int-cast'] > -endif > > foreach flag: extra_flags > if cc.has_argument(flag) > -- > 2.17.1 > Acked-by: Radha Mohan Chintakuntla

Re: [dpdk-dev] [PATCH v7 01/12] raw/octeontx_ep: changed device id

2021-02-10 Thread Radha Mohan
switch (dev_id) { > - case PCI_DEVID_OCTEONTX2_EP_VF: > - sdpvf->chip_id = PCI_DEVID_OCTEONTX2_EP_VF; > + case PCI_DEVID_OCTEONTX2_EP_RAW_VF: > + sdpvf->chip_id = PCI_DEVID_OCTEONTX2_EP_RAW_VF; > ret = sdp_vf_setup_device(sdpvf); > > break; > -- > 2.17.1 > Acked-by: Radha Mohan Chintakuntla

Re: [dpdk-dev] [EXT] Re: [PATCH] maintainers: Update for OcteonTx2 DMA and EP

2020-11-18 Thread Radha Mohan
On Wed, Nov 18, 2020 at 1:15 AM Thomas Monjalon wrote: > > 18/11/2020 05:15, Radha Mohan: > > On Mon, Nov 16, 2020 at 12:28 PM Thomas Monjalon > > wrote: > > > 16/11/2020 19:28, Radha Mohan: > > > > On Fri, Nov 13, 2020 at 2:39 PM Thomas Monjalon &g

Re: [dpdk-dev] [EXT] Re: [PATCH] maintainers: Update for OcteonTx2 DMA and EP

2020-11-17 Thread Radha Mohan
On Mon, Nov 16, 2020 at 12:28 PM Thomas Monjalon wrote: > > 16/11/2020 19:28, Radha Mohan: > > On Fri, Nov 13, 2020 at 2:39 PM Thomas Monjalon wrote: > > > 13/11/2020 20:18, Radha Mohan: > > > > On Tue, Nov 10, 2020 at 11:57 PM Mahipal Challa > &g

Re: [dpdk-dev] [EXT] Re: [PATCH] maintainers: Update for OcteonTx2 DMA and EP

2020-11-16 Thread Radha Mohan
On Fri, Nov 13, 2020 at 2:39 PM Thomas Monjalon wrote: > > 13/11/2020 20:18, Radha Mohan: > > On Tue, Nov 10, 2020 at 11:57 PM Mahipal Challa wrote: > > From: Radha Mohan > > Sent: Tuesday, November 10, 2020 11:44 PM > > > On Mon, Nov 9, 2020 at 4:20 PM Radha

Re: [dpdk-dev] [EXT] Re: [PATCH] maintainers: Update for OcteonTx2 DMA and EP

2020-11-13 Thread Radha Mohan
On Tue, Nov 10, 2020 at 11:57 PM Mahipal Challa wrote: > > > > -Original Message----- > From: Radha Mohan > Sent: Tuesday, November 10, 2020 11:44 PM > To: Radha Chintakuntla ; Satha Koteswara Rao Kottidi > ; Mahipal Challa > Cc: dev@dpdk.org; Thomas Monj

Re: [dpdk-dev] [PATCH] maintainers: Update for OcteonTx2 DMA and EP

2020-11-10 Thread Radha Mohan
On Mon, Nov 9, 2020 at 4:20 PM Radha Mohan Chintakuntla wrote: > > Replace the maintainers for OcteonTx2 DMA and EP drivers. > > Signed-off-by: Radha Mohan Chintakuntla > --- > MAINTAINERS | 6 -- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git

[dpdk-dev] [PATCH] maintainers: Update for OcteonTx2 DMA and EP

2020-11-09 Thread Radha Mohan Chintakuntla
Replace the maintainers for OcteonTx2 DMA and EP drivers. Signed-off-by: Radha Mohan Chintakuntla --- MAINTAINERS | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index a720cf672e..214515060a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS

Re: [dpdk-dev] [PATCH RESEND 1/2] raw/octeontx2_dma: Assign pem_id as lport for non-internal DMA

2020-10-09 Thread Radha Mohan
On Wed, Oct 7, 2020 at 10:33 AM Satha Koteswara Rao Kottidi wrote: > > > > -Original Message----- > From: Radha Mohan Chintakuntla > Sent: Tuesday, October 6, 2020 11:00 AM > To: dev@dpdk.org; Satha Koteswara Rao Kottidi > Cc: Jerin Jacob Kollanukkaran ; Radha Chi

[dpdk-dev] [PATCH RESEND 2/2] raw/octeontx2_dma: Add support in case of multiple DPI blocks

2020-10-05 Thread Radha Mohan Chintakuntla
This patch adds support for multiple DPI blocks by removing the fixed macro that was writing to same sysfs entry for different DPI blocks. Signed-off-by: Radha Mohan Chintakuntla Reviewed-by: Satananda Burla --- drivers/raw/octeontx2_dma/otx2_dpi_msg.c| 18 +- drivers/raw

[dpdk-dev] [PATCH RESEND 1/2] raw/octeontx2_dma: Assign pem_id as lport for non-internal DMA

2020-10-05 Thread Radha Mohan Chintakuntla
DPI needs to know the PEM number for all external transfers. Signed-off-by: Radha Mohan Chintakuntla Reviewed-by: Satha Koteswara Rao Kottidi Reviewed-by: Satananda Burla --- drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c | 2 ++ drivers/raw/octeontx2_dma/otx2_dpi_rawdev.h | 1 + 2 files changed

[dpdk-dev] [PATCH 2/2] raw/octeontx2_dma: Add support in case of multiple DPI blocks

2020-10-01 Thread Radha Mohan Chintakuntla
This patch adds support for multiple DPI blocks by removing the fixed macro that was writing to same sysfs entry for different DPI blocks. Signed-off-by: Radha Mohan Chintakuntla Reviewed-by: Satananda Burla --- drivers/raw/octeontx2_dma/otx2_dpi_msg.c| 18 +- drivers/raw

[dpdk-dev] [PATCH 1/2] raw/octeontx2_dma: Assign pem_id as lport for non-internal DMA

2020-10-01 Thread Radha Mohan Chintakuntla
DPI needs to know the PEM number for all external transfers. Signed-off-by: Radha Mohan Chintakuntla Reviewed-by: Satha Koteswara Rao Kottidi Reviewed-by: Satananda Burla --- drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c | 2 ++ drivers/raw/octeontx2_dma/otx2_dpi_rawdev.h | 1 + 2 files changed