Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / arm / mediatek / mediatek,infracfg.txt
1 Mediatek infracfg controller
2 ============================
3
4 The Mediatek infracfg controller provides various clocks and reset
5 outputs to the system.
6
7 Required Properties:
8
9 - compatible: Should be one of:
10         - "mediatek,mt2701-infracfg", "syscon"
11         - "mediatek,mt2712-infracfg", "syscon"
12         - "mediatek,mt6797-infracfg", "syscon"
13         - "mediatek,mt7622-infracfg", "syscon"
14         - "mediatek,mt7623-infracfg", "mediatek,mt2701-infracfg", "syscon"
15         - "mediatek,mt7629-infracfg", "syscon"
16         - "mediatek,mt8135-infracfg", "syscon"
17         - "mediatek,mt8173-infracfg", "syscon"
18 - #clock-cells: Must be 1
19 - #reset-cells: Must be 1
20
21 The infracfg controller uses the common clk binding from
22 Documentation/devicetree/bindings/clock/clock-bindings.txt
23 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
24 Also it uses the common reset controller binding from
25 Documentation/devicetree/bindings/reset/reset.txt.
26 The available reset outputs are defined in
27 dt-bindings/reset/mt*-resets.h
28
29 Example:
30
31 infracfg: power-controller@10001000 {
32         compatible = "mediatek,mt8173-infracfg", "syscon";
33         reg = <0 0x10001000 0 0x1000>;
34         #clock-cells = <1>;
35         #reset-cells = <1>;
36 };