mvebu-cpu-clock.txt 590 B

123456789101112131415161718192021
  1. Device Tree Clock bindings for cpu clock of Marvell EBU platforms
  2. Required properties:
  3. - compatible : shall be one of the following:
  4. "marvell,armada-xp-cpu-clock" - cpu clocks for Armada XP
  5. - reg : Address and length of the clock complex register set
  6. - #clock-cells : should be set to 1.
  7. - clocks : shall be the input parent clock phandle for the clock.
  8. cpuclk: clock-complex@d0018700 {
  9. #clock-cells = <1>;
  10. compatible = "marvell,armada-xp-cpu-clock";
  11. reg = <0xd0018700 0xA0>;
  12. clocks = <&coreclk 1>;
  13. }
  14. cpu@0 {
  15. compatible = "marvell,sheeva-v7";
  16. reg = <0>;
  17. clocks = <&cpuclk 0>;
  18. };