mvebu-cpu-clock.txt 671 B

12345678910111213141516171819202122
  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, followed
  6. by address and length of the PMU DFS registers
  7. - #clock-cells : should be set to 1.
  8. - clocks : shall be the input parent clock phandle for the clock.
  9. cpuclk: clock-complex@d0018700 {
  10. #clock-cells = <1>;
  11. compatible = "marvell,armada-xp-cpu-clock";
  12. reg = <0xd0018700 0xA0>, <0x1c054 0x10>;
  13. clocks = <&coreclk 1>;
  14. }
  15. cpu@0 {
  16. compatible = "marvell,sheeva-v7";
  17. reg = <0>;
  18. clocks = <&cpuclk 0>;
  19. };