Skip to content

Commit

Permalink
dt-bindings: mmc: ingenic: Support using bi-directional DMA channel
Browse files Browse the repository at this point in the history
Update the binding documentation and the examples to support
bi-directional DMA channels.

Signed-off-by: Paul Cercueil <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Ulf Hansson <[email protected]>
  • Loading branch information
pcercuei authored and storulf committed Dec 21, 2021
1 parent 1a6fe7b commit 34ce293
Showing 1 changed file with 31 additions and 6 deletions.
37 changes: 31 additions & 6 deletions Documentation/devicetree/bindings/mmc/ingenic,mmc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,15 @@ properties:
const: mmc

dmas:
items:
- description: DMA controller phandle and request line for RX
- description: DMA controller phandle and request line for TX
minItems: 1
maxItems: 2

dma-names:
items:
- const: rx
- const: tx
oneOf:
- items:
- const: rx
- const: tx
- const: tx-rx

required:
- compatible
Expand Down Expand Up @@ -80,3 +81,27 @@ examples:
<&dma JZ4780_DMA_MSC0_TX 0xffffffff>;
dma-names = "rx", "tx";
};
- |
#include <dt-bindings/clock/ingenic,jz4780-cgu.h>
#include <dt-bindings/dma/jz4780-dma.h>
/*
* Alternative version of the example above,
* but using one single DMA channel for both
* TX and RX.
*/
mmc1: mmc@13460000 {
compatible = "ingenic,jz4780-mmc";
reg = <0x13460000 0x1000>;
interrupt-parent = <&intc>;
interrupts = <36>;
clocks = <&cgu JZ4780_CLK_MSC1>;
clock-names = "mmc";
cap-sd-highspeed;
cap-mmc-highspeed;
cap-sdio-irq;
dmas = <&dma JZ4780_DMA_MSC1_TX JZ4780_DMA_MSC1_RX 0xffffffff>;
dma-names = "tx-rx";
};

0 comments on commit 34ce293

Please sign in to comment.