dove-divider-clock.txt 844 B

1234567891011121314151617181920212223242526272829
  1. PLL divider based Dove clocks
  2. Marvell Dove has a 2GHz PLL, which feeds into a set of dividers to provide
  3. high speed clocks for a number of peripherals. These dividers are part of
  4. the PMU, and thus this node should be a child of the PMU node.
  5. The following clocks are provided:
  6. ID Clock
  7. -------------
  8. 0 AXI bus clock
  9. 1 GPU clock
  10. 2 VMeta clock
  11. 3 LCD clock
  12. Required properties:
  13. - compatible : shall be "marvell,dove-divider-clock"
  14. - reg : shall be the register address of the Core PLL and Clock Divider
  15. Control 0 register. This will cover that register, as well as the
  16. Core PLL and Clock Divider Control 1 register. Thus, it will have
  17. a size of 8.
  18. - #clock-cells : from common clock binding; shall be set to 1
  19. divider_clk: core-clock@0064 {
  20. compatible = "marvell,dove-divider-clock";
  21. reg = <0x0064 0x8>;
  22. #clock-cells = <1>;
  23. };