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