diff options
author | Heiko Stuebner <heiko.stuebner@theobroma-systems.com> | 2021-02-25 14:33:21 +0100 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2021-03-21 21:06:30 +0100 |
commit | 6d5989a36e60614e12949c6c2dac368b380bf2ca (patch) | |
tree | 247d755fdb012a16c5e922888817d9fb54cd2393 /arch/arm64/boot/dts/rockchip/rk3399-opp.dtsi | |
parent | arm64: dts: rockchip: synchronize rk3399 opps with vendor kernel (diff) | |
download | linux-6d5989a36e60614e12949c6c2dac368b380bf2ca.tar.xz linux-6d5989a36e60614e12949c6c2dac368b380bf2ca.zip |
arm64: dts: rockchip: used range'd gpu opps on rk3399
Similar to the cpu opps, also use opps with a range on the gpu.
(min, preferred, max). The voltage just needs to be higher than
the minimum and this allows the regulator more freedom if it
can't provide the exact voltage specified, but just say 5mV higher,
as can be seen on rk3399-puma which fails to scale panfrost voltages
nearly completely.
Signed-off-by: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
Link: https://lore.kernel.org/r/20210225133322.3420724-2-heiko@sntech.de
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Diffstat (limited to 'arch/arm64/boot/dts/rockchip/rk3399-opp.dtsi')
-rw-r--r-- | arch/arm64/boot/dts/rockchip/rk3399-opp.dtsi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm64/boot/dts/rockchip/rk3399-opp.dtsi b/arch/arm64/boot/dts/rockchip/rk3399-opp.dtsi index 20b0d60f7ee3..da41cd81ebb7 100644 --- a/arch/arm64/boot/dts/rockchip/rk3399-opp.dtsi +++ b/arch/arm64/boot/dts/rockchip/rk3399-opp.dtsi @@ -79,27 +79,27 @@ opp00 { opp-hz = /bits/ 64 <200000000>; - opp-microvolt = <825000>; + opp-microvolt = <825000 825000 1150000>; }; opp01 { opp-hz = /bits/ 64 <297000000>; - opp-microvolt = <825000>; + opp-microvolt = <825000 825000 1150000>; }; opp02 { opp-hz = /bits/ 64 <400000000>; - opp-microvolt = <825000>; + opp-microvolt = <825000 825000 1150000>; }; opp03 { opp-hz = /bits/ 64 <500000000>; - opp-microvolt = <875000>; + opp-microvolt = <875000 875000 1150000>; }; opp04 { opp-hz = /bits/ 64 <600000000>; - opp-microvolt = <925000>; + opp-microvolt = <925000 925000 1150000>; }; opp05 { opp-hz = /bits/ 64 <800000000>; - opp-microvolt = <1100000>; + opp-microvolt = <1100000 1100000 1150000>; }; }; }; |