mv-xor-v2.txt 765 B

1234567891011121314151617181920212223242526272829
  1. * Marvell XOR v2 engines
  2. Required properties:
  3. - compatible: one of the following values:
  4. "marvell,armada-7k-xor"
  5. "marvell,xor-v2"
  6. - reg: Should contain registers location and length (two sets)
  7. the first set is the DMA registers
  8. the second set is the global registers
  9. - msi-parent: Phandle to the MSI-capable interrupt controller used for
  10. interrupts.
  11. Optional properties:
  12. - clocks: Optional reference to the clocks used by the XOR engine.
  13. - clock-names: mandatory if there is a second clock, in this case the
  14. name must be "core" for the first clock and "reg" for the second
  15. one
  16. Example:
  17. xor0@400000 {
  18. compatible = "marvell,xor-v2";
  19. reg = <0x400000 0x1000>,
  20. <0x410000 0x1000>;
  21. msi-parent = <&gic_v2m0>;
  22. dma-coherent;
  23. };