From: Dave Gerlach Date: Fri, 15 Dec 2017 17:16:42 +0000 (-0600) Subject: ARM: dts: am437x-idk-evm: Disable OPP50 for MPU X-Git-Tag: v4.16-rc1~100^2~32^2~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=337c6c9a69af73dd367daeddee44cbbc2408cf9f;p=thirdparty%2Fkernel%2Flinux.git ARM: dts: am437x-idk-evm: Disable OPP50 for MPU AM437x IDK has a TPS386000 supply voltage supervisor on the VDD_MPU rail set to trigger undervoltage condition at 0.96V. Because of this, OPP50, which is normally configured to 300MHz at 0.95V, must be disabled to avoid triggering the undervoltage condition. Also mark OPP100 as the suspend-opp as it is now our lowest OPP. Signed-off-by: Dave Gerlach Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/boot/dts/am437x-idk-evm.dts b/arch/arm/boot/dts/am437x-idk-evm.dts index 5e364473067fa..20132477a8711 100644 --- a/arch/arm/boot/dts/am437x-idk-evm.dts +++ b/arch/arm/boot/dts/am437x-idk-evm.dts @@ -519,3 +519,17 @@ &cpu { cpu0-supply = <&tps>; }; + +&cpu0_opp_table { + /* + * Supply voltage supervisor on board will not allow opp50 so + * disable it and set opp100 as suspend OPP. + */ + opp50@300000000 { + status = "disabled"; + }; + + opp100@600000000 { + opp-suspend; + }; +};