mediatek,g3dsys.txt 776 B

123456789101112131415161718192021222324252627282930
  1. MediaTek g3dsys controller
  2. ============================
  3. The MediaTek g3dsys controller provides various clocks and reset controller to
  4. the GPU.
  5. Required Properties:
  6. - compatible: Should be:
  7. - "mediatek,mt2701-g3dsys", "syscon":
  8. for MT2701 SoC
  9. - "mediatek,mt7623-g3dsys", "mediatek,mt2701-g3dsys", "syscon":
  10. for MT7623 SoC
  11. - #clock-cells: Must be 1
  12. - #reset-cells: Must be 1
  13. The g3dsys controller uses the common clk binding from
  14. Documentation/devicetree/bindings/clock/clock-bindings.txt
  15. The available clocks are defined in dt-bindings/clock/mt*-clk.h.
  16. Example:
  17. g3dsys: clock-controller@13000000 {
  18. compatible = "mediatek,mt7623-g3dsys",
  19. "mediatek,mt2701-g3dsys",
  20. "syscon";
  21. reg = <0 0x13000000 0 0x200>;
  22. #clock-cells = <1>;
  23. #reset-cells = <1>;
  24. };