From: Vinod Koul <vkoul@kernel.org>
To: Sarath Babu Naidu Gaddam <sarath.babu.naidu.gaddam@amd.com>
Cc: robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
lars@metafoo.de, adrianml@alumnos.upm.es,
dmaengine@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, michal.simek@amd.com,
radhey.shyam.pandey@amd.com, anirudha.sarangi@amd.com,
harini.katakam@amd.com, git@xilinx.com, git@amd.com
Subject: Re: [RFC V3 PATCH 0/8] Xilinx DMA enhancements and optimization
Date: Tue, 20 Sep 2022 16:57:29 +0530 [thread overview]
Message-ID: <YymjofmCECa3iF20@matsya> (raw)
In-Reply-To: <20220920055119.12634-1-sarath.babu.naidu.gaddam@amd.com>
On 20-09-22, 11:21, Sarath Babu Naidu Gaddam wrote:
> Some background about the patch series: Xilinx Axi Ethernet device driver
> (xilinx_axienet_main.c) currently has axi-dma code inside it. The goal is
> to refactor axiethernet driver and use existing AXI DMA driver using
> DMAEngine API.
>
> This patchset does feature addition and optimization to support axidma
> integration with axiethernet network driver. Once axidma version is
> accepted mcdma specific changes will be added in followup version.
why is this tagged RFC? Is it not ready for merge?
>
> Changes for V2:
> - Use metadata API[1] for passing metadata from dma to netdev client.
> - Read irq-delay from DT.
> - Remove desc_callback_valid check.
> - Addressed RFC v1 comments[2].
> - Minor code refactoring.
>
> Changes for V3:
> - Add device_config support for passing any dma client data.
> - Address RFC v2 comments.
> - remove hardcoding for axidma_tx_segment.
> - Below review comment is in pipeline. We are facing a race issue when
> addressing it. we will fix it in the next version.
> "chan->idle = true; in xilinx_dma_irq_handler() needs to be gated on
> the active_list being empty".
>
> Comments, suggestions are very welcome
>
> Radhey Shyam Pandey (7):
> dt-bindings: dmaengine: xilinx_dma: Add xlnx,axistream-connected
> property
> dt-bindings: dmaengine: xilinx_dma: Add xlnx,irq-delay property
> dmaengine: xilinx_dma: Pass AXI4-Stream control words to dma client
> dmaengine: xilinx_dma: Increase AXI DMA transaction segment count
> dmaengine: xilinx_dma: Freeup active list based on descriptor
> completion bit
> dmaengine: xilinx_dma: Use tasklet_hi_schedule for timing critical
> usecase
> dmaengine: xilinx_dma: Program interrupt delay timeout
>
> Sarath Babu Naidu Gaddam (1):
> dmaengine: xilinx_dma: Add device_config support
>
> .../bindings/dma/xilinx/xilinx_dma.txt | 4 +
> drivers/dma/xilinx/xilinx_dma.c | 107 ++++++++++++++++--
> include/linux/dma/xilinx_dma.h | 16 +++
> 3 files changed, 115 insertions(+), 12 deletions(-)
>
> --
> 2.25.1
--
~Vinod
WARNING: multiple messages have this Message-ID (diff)
From: Vinod Koul <vkoul@kernel.org>
To: Sarath Babu Naidu Gaddam <sarath.babu.naidu.gaddam@amd.com>
Cc: robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
lars@metafoo.de, adrianml@alumnos.upm.es,
dmaengine@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, michal.simek@amd.com,
radhey.shyam.pandey@amd.com, anirudha.sarangi@amd.com,
harini.katakam@amd.com, git@xilinx.com, git@amd.com
Subject: Re: [RFC V3 PATCH 0/8] Xilinx DMA enhancements and optimization
Date: Tue, 20 Sep 2022 16:57:29 +0530 [thread overview]
Message-ID: <YymjofmCECa3iF20@matsya> (raw)
In-Reply-To: <20220920055119.12634-1-sarath.babu.naidu.gaddam@amd.com>
On 20-09-22, 11:21, Sarath Babu Naidu Gaddam wrote:
> Some background about the patch series: Xilinx Axi Ethernet device driver
> (xilinx_axienet_main.c) currently has axi-dma code inside it. The goal is
> to refactor axiethernet driver and use existing AXI DMA driver using
> DMAEngine API.
>
> This patchset does feature addition and optimization to support axidma
> integration with axiethernet network driver. Once axidma version is
> accepted mcdma specific changes will be added in followup version.
why is this tagged RFC? Is it not ready for merge?
>
> Changes for V2:
> - Use metadata API[1] for passing metadata from dma to netdev client.
> - Read irq-delay from DT.
> - Remove desc_callback_valid check.
> - Addressed RFC v1 comments[2].
> - Minor code refactoring.
>
> Changes for V3:
> - Add device_config support for passing any dma client data.
> - Address RFC v2 comments.
> - remove hardcoding for axidma_tx_segment.
> - Below review comment is in pipeline. We are facing a race issue when
> addressing it. we will fix it in the next version.
> "chan->idle = true; in xilinx_dma_irq_handler() needs to be gated on
> the active_list being empty".
>
> Comments, suggestions are very welcome
>
> Radhey Shyam Pandey (7):
> dt-bindings: dmaengine: xilinx_dma: Add xlnx,axistream-connected
> property
> dt-bindings: dmaengine: xilinx_dma: Add xlnx,irq-delay property
> dmaengine: xilinx_dma: Pass AXI4-Stream control words to dma client
> dmaengine: xilinx_dma: Increase AXI DMA transaction segment count
> dmaengine: xilinx_dma: Freeup active list based on descriptor
> completion bit
> dmaengine: xilinx_dma: Use tasklet_hi_schedule for timing critical
> usecase
> dmaengine: xilinx_dma: Program interrupt delay timeout
>
> Sarath Babu Naidu Gaddam (1):
> dmaengine: xilinx_dma: Add device_config support
>
> .../bindings/dma/xilinx/xilinx_dma.txt | 4 +
> drivers/dma/xilinx/xilinx_dma.c | 107 ++++++++++++++++--
> include/linux/dma/xilinx_dma.h | 16 +++
> 3 files changed, 115 insertions(+), 12 deletions(-)
>
> --
> 2.25.1
--
~Vinod
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2022-09-20 11:27 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-20 5:51 [RFC V3 PATCH 0/8] Xilinx DMA enhancements and optimization Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` [RFC V3 PATCH 1/8] dt-bindings: dmaengine: xilinx_dma: Add xlnx,axistream-connected property Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` [RFC V3 PATCH 2/8] dt-bindings: dmaengine: xilinx_dma: Add xlnx,irq-delay property Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` [RFC V3 PATCH 3/8] dmaengine: xilinx_dma: Pass AXI4-Stream control words to dma client Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` [RFC V3 PATCH 4/8] dmaengine: xilinx_dma: Increase AXI DMA transaction segment count Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` [RFC V3 PATCH 5/8] dmaengine: xilinx_dma: Freeup active list based on descriptor completion bit Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` [RFC V3 PATCH 6/8] dmaengine: xilinx_dma: Use tasklet_hi_schedule for timing critical usecase Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` [RFC V3 PATCH 7/8] dmaengine: xilinx_dma: Program interrupt delay timeout Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` [RFC V3 PATCH 8/8] dmaengine: xilinx_dma: Add device_config support Sarath Babu Naidu Gaddam
2022-09-20 5:51 ` Sarath Babu Naidu Gaddam
2022-09-20 11:27 ` Vinod Koul [this message]
2022-09-20 11:27 ` [RFC V3 PATCH 0/8] Xilinx DMA enhancements and optimization Vinod Koul
2022-09-20 12:00 ` Pandey, Radhey Shyam
2022-09-20 12:00 ` Pandey, Radhey Shyam
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YymjofmCECa3iF20@matsya \
--to=vkoul@kernel.org \
--cc=adrianml@alumnos.upm.es \
--cc=anirudha.sarangi@amd.com \
--cc=devicetree@vger.kernel.org \
--cc=dmaengine@vger.kernel.org \
--cc=git@amd.com \
--cc=git@xilinx.com \
--cc=harini.katakam@amd.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=lars@metafoo.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michal.simek@amd.com \
--cc=radhey.shyam.pandey@amd.com \
--cc=robh+dt@kernel.org \
--cc=sarath.babu.naidu.gaddam@amd.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.