img,boston-clock.txt 801 B

12345678910111213141516171819202122232425262728293031
  1. Binding for Imagination Technologies MIPS Boston clock sources.
  2. This binding uses the common clock binding[1].
  3. [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
  4. The device node must be a child node of the syscon node corresponding to the
  5. Boston system's platform registers.
  6. Required properties:
  7. - compatible : Should be "img,boston-clock".
  8. - #clock-cells : Should be set to 1.
  9. Values available for clock consumers can be found in the header file:
  10. <dt-bindings/clock/boston-clock.h>
  11. Example:
  12. system-controller@17ffd000 {
  13. compatible = "img,boston-platform-regs", "syscon";
  14. reg = <0x17ffd000 0x1000>;
  15. clk_boston: clock {
  16. compatible = "img,boston-clock";
  17. #clock-cells = <1>;
  18. };
  19. };
  20. uart0: uart@17ffe000 {
  21. /* ... */
  22. clocks = <&clk_boston BOSTON_CLK_SYS>;
  23. };