blob: 6b267045f5221c40524e9da19cf28bd1e2c3d8c6 [file] [log] [blame]
Maxime Ripard3c677cc2014-07-17 21:46:15 +02001Allwinner A31 DMA Controller
2
3This driver follows the generic DMA bindings defined in dma.txt.
4
5Required properties:
6
Jens Kuskef008db82015-05-06 11:31:31 +02007- compatible: Must be one of
8 "allwinner,sun6i-a31-dma"
9 "allwinner,sun8i-a23-dma"
Jean-Francois Moine3a03ea72016-09-18 09:59:50 +020010 "allwinner,sun8i-a83t-dma"
Jens Kuskef008db82015-05-06 11:31:31 +020011 "allwinner,sun8i-h3-dma"
Maxime Ripard3c677cc2014-07-17 21:46:15 +020012- reg: Should contain the registers base address and length
13- interrupts: Should contain a reference to the interrupt used by this device
14- clocks: Should contain a reference to the parent AHB clock
15- resets: Should contain a reference to the reset controller asserting
16 this device in reset
17- #dma-cells : Should be 1, a single cell holding a line request number
18
19Example:
20 dma: dma-controller@01c02000 {
21 compatible = "allwinner,sun6i-a31-dma";
22 reg = <0x01c02000 0x1000>;
23 interrupts = <0 50 4>;
24 clocks = <&ahb1_gates 6>;
25 resets = <&ahb1_rst 6>;
26 #dma-cells = <1>;
27 };
28
29Clients:
30
31DMA clients connected to the A31 DMA controller must use the format
32described in the dma.txt file, using a two-cell specifier for each
33channel: a phandle plus one integer cells.
34The two cells in order are:
35
361. A phandle pointing to the DMA controller.
372. The port ID as specified in the datasheet
38
39Example:
40spi2: spi@01c6a000 {
41 compatible = "allwinner,sun6i-a31-spi";
42 reg = <0x01c6a000 0x1000>;
43 interrupts = <0 67 4>;
44 clocks = <&ahb1_gates 22>, <&spi2_clk>;
45 clock-names = "ahb", "mod";
46 dmas = <&dma 25>, <&dma 25>;
47 dma-names = "rx", "tx";
48 resets = <&ahb1_rst 22>;
49};