0001 * Marvell XOR v2 engines
0002
0003 Required properties:
0004 - compatible: one of the following values:
0005 "marvell,armada-7k-xor"
0006 "marvell,xor-v2"
0007 - reg: Should contain registers location and length (two sets)
0008 the first set is the DMA registers
0009 the second set is the global registers
0010 - msi-parent: Phandle to the MSI-capable interrupt controller used for
0011 interrupts.
0012
0013 Optional properties:
0014 - clocks: Optional reference to the clocks used by the XOR engine.
0015 - clock-names: mandatory if there is a second clock, in this case the
0016 name must be "core" for the first clock and "reg" for the second
0017 one
0018
0019
0020 Example:
0021
0022 xor0@400000 {
0023 compatible = "marvell,xor-v2";
0024 reg = <0x400000 0x1000>,
0025 <0x410000 0x1000>;
0026 msi-parent = <&gic_v2m0>;
0027 dma-coherent;
0028 };