]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
dt-bindings: dmaengine: xilinx_dma: Remove DMA client properties
authorAbin Joseph <abin.joseph@amd.com>
Mon, 25 Aug 2025 13:04:23 +0000 (18:34 +0530)
committerVinod Koul <vkoul@kernel.org>
Tue, 2 Sep 2025 07:06:35 +0000 (12:36 +0530)
Remove DMA client section mentioned in the dt-bindings as it is
not required to document client bindings in dmaengine bindings.

Signed-off-by: Abin Joseph <abin.joseph@amd.com>
Signed-off-by: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Abin Joseph <abin.joseph@amd.com>
Link: https://lore.kernel.org/r/20250825130423.5739-1-abin.joseph@amd.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Documentation/devicetree/bindings/dma/xilinx/xilinx_dma.txt

index 590d1948f202c61d20bca4c70d8bb9aa5b6ac0c4..b567107270cbec94ed768a2fba8b929614415e35 100644 (file)
@@ -109,26 +109,3 @@ axi_vdma_0: axivdma@40030000 {
                xlnx,datawidth = <0x40>;
        } ;
 } ;
-
-
-* DMA client
-
-Required properties:
-- dmas: a list of <[Video DMA device phandle] [Channel ID]> pairs,
-       where Channel ID is '0' for write/tx and '1' for read/rx
-       channel. For MCMDA, MM2S channel(write/tx) ID start from
-       '0' and is in [0-15] range. S2MM channel(read/rx) ID start
-       from '16' and is in [16-31] range. These channels ID are
-       fixed irrespective of IP configuration.
-
-- dma-names: a list of DMA channel names, one per "dmas" entry
-
-Example:
-++++++++
-
-vdmatest_0: vdmatest@0 {
-       compatible ="xlnx,axi-vdma-test-1.00.a";
-       dmas = <&axi_vdma_0 0
-               &axi_vdma_0 1>;
-       dma-names = "vdma0", "vdma1";
-} ;