@@ -45,10 +45,24 @@
cpus {
#address-cells = <1>;
#size-cells = <0>;
- cpu@0 {
+ cpu0: cpu@0 {
device_type = "cpu";
compatible = "arm,cortex-a8";
reg = <0x0>;
+ clocks = <&clks IMX5_CLK_CPU_PODF>,
+ <&clks IMX5_CLK_PLL1_SW>,
+ <&clks IMX5_CLK_STEP_SEL>,
+ <&clks IMX5_CLK_LP_APM>;
+ clock-names = "cpu", "pll1", "step", "lp_apm";
+ vddgp-supply-max-microvolt = <1400000>;
+ operating-points = <
+ /* kHz uV */
+ 166666 850000
+ 400000 900000
+ 800000 1050000
+ 1000000 1200000
+ 1200000 1300000
+ >;
};
};
Only thing missing is the vddgp regulator, which is board specific. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> --- arch/arm/boot/dts/imx53.dtsi | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-)