Merge tag 'v4.8-rc1' into patchwork
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / dma / mv-xor-v2.txt
1 * Marvell XOR v2 engines
2
3 Required properties:
4 - compatible: one of the following values:
5     "marvell,armada-7k-xor"
6     "marvell,xor-v2"
7 - reg: Should contain registers location and length (two sets)
8     the first set is the DMA registers
9     the second set is the global registers
10 - msi-parent: Phandle to the MSI-capable interrupt controller used for
11   interrupts.
12
13 Optional properties:
14 - clocks: Optional reference to the clock used by the XOR engine.
15
16 Example:
17
18         xor0@400000 {
19                 compatible = "marvell,xor-v2";
20                 reg = <0x400000 0x1000>,
21                       <0x410000 0x1000>;
22                 msi-parent = <&gic_v2m0>;
23                 dma-coherent;
24         };