mediatek,pericfg.txt 871 B

12345678910111213141516171819202122232425262728293031
  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:
  7. - "mediatek,mt8135-pericfg", "syscon"
  8. - "mediatek,mt8173-pericfg", "syscon"
  9. - #clock-cells: Must be 1
  10. - #reset-cells: Must be 1
  11. The pericfg controller uses the common clk binding from
  12. Documentation/devicetree/bindings/clock/clock-bindings.txt
  13. The available clocks are defined in dt-bindings/clock/mt*-clk.h.
  14. Also it uses the common reset controller binding from
  15. Documentation/devicetree/bindings/reset/reset.txt.
  16. The available reset outputs are defined in
  17. dt-bindings/reset-controller/mt*-resets.h
  18. Example:
  19. pericfg: power-controller@10003000 {
  20. compatible = "mediatek,mt8173-pericfg", "syscon";
  21. reg = <0 0x10003000 0 0x1000>;
  22. #clock-cells = <1>;
  23. #reset-cells = <1>;
  24. };