mediatek,pericfg.txt 984 B

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