1 Amlogic Meson Power Controller
2 ==============================
4 The Amlogic Meson SoCs embeds an internal Power domain controller.
9 The Video Processing Unit power domain is controlled by this power controller,
10 but the domain requires some external resources to meet the correct power
12 The bindings must respect the power domain bindings as described in the file
19 - compatible: should be "amlogic,meson-gx-pwrc-vpu" for the Meson GX SoCs
20 - #power-domain-cells: should be 0
21 - amlogic,hhi-sysctrl: phandle to the HHI sysctrl node
22 - resets: phandles to the reset lines needed for this power demain sequence
23 as described in ../reset/reset.txt
24 - clocks: from common clock binding: handle to VPU and VAPB clocks
25 - clock-names: from common clock binding: must contain "vpu", "vapb"
26 corresponding to entry in the clocks property.
28 Parent node should have the following properties :
29 - compatible: "amlogic,meson-gx-ao-sysctrl", "syscon", "simple-mfd"
30 - reg: base address and size of the AO system control register space.
35 ao_sysctrl: sys-ctrl@0 {
36 compatible = "amlogic,meson-gx-ao-sysctrl", "syscon", "simple-mfd";
37 reg = <0x0 0x0 0x0 0x100>;
39 pwrc_vpu: power-controller-vpu {
40 compatible = "amlogic,meson-gx-pwrc-vpu";
41 #power-domain-cells = <0>;
42 amlogic,hhi-sysctrl = <&sysctrl>;
43 resets = <&reset RESET_VIU>,
47 <&reset RESET_DVIN_RESET>,
54 <&reset RESET_VID_LOCK>;
55 clocks = <&clkc CLKID_VPU>,
57 clock-names = "vpu", "vapb";