armada3700-xtal-clock.txt 823 B

12345678910111213141516171819202122232425262728
  1. * Xtal Clock bindings for Marvell Armada 37xx SoCs
  2. Marvell Armada 37xx SoCs allow to determine the xtal clock frequencies by
  3. reading the gpio latch register.
  4. This node must be a subnode of the node exposing the register address
  5. of the GPIO block where the gpio latch is located.
  6. Required properties:
  7. - compatible : shall be one of the following:
  8. "marvell,armada-3700-xtal-clock"
  9. - #clock-cells : from common clock binding; shall be set to 0
  10. Optional properties:
  11. - clock-output-names : from common clock binding; allows overwrite default clock
  12. output names ("xtal")
  13. Example:
  14. gpio1: gpio@13800 {
  15. compatible = "marvell,armada-3700-gpio", "syscon", "simple-mfd";
  16. reg = <0x13800 0x1000>;
  17. xtalclk: xtal-clk {
  18. compatible = "marvell,armada-3700-xtal-clock";
  19. clock-output-names = "xtal";
  20. #clock-cells = <0>;
  21. };
  22. };