mediatek,pericfg.txt 906 B

1234567891011121314151617181920212223242526272829303132
  1. Mediatek pericfg controller
  2. ===========================
  3. The Mediatek pericfg controller provides various clocks and reset
  4. outputs to the system.
  5. Required Properties:
  6. - compatible: Should be one of:
  7. - "mediatek,mt2701-pericfg", "syscon"
  8. - "mediatek,mt8135-pericfg", "syscon"
  9. - "mediatek,mt8173-pericfg", "syscon"
  10. - #clock-cells: Must be 1
  11. - #reset-cells: Must be 1
  12. The pericfg controller uses the common clk binding from
  13. Documentation/devicetree/bindings/clock/clock-bindings.txt
  14. The available clocks are defined in dt-bindings/clock/mt*-clk.h.
  15. Also it uses the common reset controller binding from
  16. Documentation/devicetree/bindings/reset/reset.txt.
  17. The available reset outputs are defined in
  18. dt-bindings/reset/mt*-resets.h
  19. Example:
  20. pericfg: power-controller@10003000 {
  21. compatible = "mediatek,mt8173-pericfg", "syscon";
  22. reg = <0 0x10003000 0 0x1000>;
  23. #clock-cells = <1>;
  24. #reset-cells = <1>;
  25. };