1 Freescale i.MX General Power Controller
2 =======================================
4 The i.MX6 General Power Control (GPC) block contains DVFS load tracking
5 counters and Power Gating Control (PGC).
8 - compatible: Should be one of the following:
13 - reg: should be register base and length as documented in the
15 - interrupts: Should contain one interrupt specifier for the GPC interrupt
16 - clocks: Must contain an entry for each entry in clock-names.
17 See Documentation/devicetree/bindings/clocks/clock-bindings.txt for details.
18 - clock-names: Must include the following entries:
21 The power domains are generic power domain providers as documented in
22 Documentation/devicetree/bindings/power/power_domain.txt. They are described as
23 subnodes of the power gating controller 'pgc' node of the GPC and should
24 contain the following:
27 - reg: Must contain the DOMAIN_INDEX of this power domain
28 The following DOMAIN_INDEX values are valid for i.MX6Q:
31 The following additional DOMAIN_INDEX value is valid for i.MX6SL:
33 The following additional DOMAIN_INDEX value is valid for i.MX6SX:
36 - #power-domain-cells: Should be 0
39 - clocks: a number of phandles to clocks that need to be enabled during domain
40 power-up sequencing to ensure reset propagation into devices located inside
42 - power-supply: a phandle to the regulator powering this domain
47 compatible = "fsl,imx6q-gpc";
48 reg = <0x020dc000 0x4000>;
49 interrupts = <0 89 IRQ_TYPE_LEVEL_HIGH>,
50 <0 90 IRQ_TYPE_LEVEL_HIGH>;
51 clocks = <&clks IMX6QDL_CLK_IPG>;
60 #power-domain-cells = <0>;
63 pd_pu: power-domain@1 {
65 #power-domain-cells = <0>;
66 power-supply = <®_pu>;
67 clocks = <&clks IMX6QDL_CLK_GPU3D_CORE>,
68 <&clks IMX6QDL_CLK_GPU3D_SHADER>,
69 <&clks IMX6QDL_CLK_GPU2D_CORE>,
70 <&clks IMX6QDL_CLK_GPU2D_AXI>,
71 <&clks IMX6QDL_CLK_OPENVG_AXI>,
72 <&clks IMX6QDL_CLK_VPU_AXI>;
78 Specifying power domain for IP modules
79 ======================================
81 IP cores belonging to a power domain should contain a 'power-domains' property
82 that is a phandle pointing to the power domain the device belongs to.
84 Example of a device that is part of the PU power domain:
87 reg = <0x02040000 0x3c000>;
89 power-domains = <&pd_pu>;