marvell,berlin.txt 986 B

12345678910111213141516171819202122232425262728293031
  1. Device Tree Clock bindings for Marvell Berlin
  2. This binding uses the common clock binding[1].
  3. [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
  4. Clock related registers are spread among the chip control registers. Berlin
  5. clock node should be a sub-node of the chip controller node. Marvell Berlin2
  6. (BG2, BG2CD, BG2Q) SoCs share the same IP for PLLs and clocks, with some
  7. minor differences in features and register layout.
  8. Required properties:
  9. - compatible: must be "marvell,berlin2-clk" or "marvell,berlin2q-clk"
  10. - #clock-cells: must be 1
  11. - clocks: must be the input parent clock phandle
  12. - clock-names: name of the input parent clock
  13. Allowed clock-names for the reference clocks are
  14. "refclk" for the SoCs oscillator input on all SoCs,
  15. and SoC-specific input clocks for
  16. BG2/BG2CD: "video_ext0" for the external video clock input
  17. Example:
  18. chip_clk: clock {
  19. compatible = "marvell,berlin2q-clk";
  20. #clock-cells = <1>;
  21. clocks = <&refclk>;
  22. clock-names = "refclk";
  23. };