Skip to content

Commit 26d6514

Browse files
xdarklightkhilman
authored andcommitted
ARM: dts: meson8b: fix the operating voltage of the Mali GPU
Amlogic's vendor kernel defines an OPP for the GPU on Meson8b boards with a voltage of 1.15V. It turns out that the vendor kernel relies on the bootloader to set up the voltage. The bootloader however sets a fixed voltage of 1.10V. Amlogic's patched u-boot sources (uboot-2015-01-15-23a3562521) confirm this: $ grep -oiE "VDD(EE|AO)_VOLTAGE[ ]+[0-9]+" board/amlogic/configs/m8b_* board/amlogic/configs/m8b_m100_v1.h:VDDAO_VOLTAGE 1100 board/amlogic/configs/m8b_m101_v1.h:VDDAO_VOLTAGE 1100 board/amlogic/configs/m8b_m102_v1.h:VDDAO_VOLTAGE 1100 board/amlogic/configs/m8b_m200_v1.h:VDDAO_VOLTAGE 1100 board/amlogic/configs/m8b_m201_v1.h:VDDEE_VOLTAGE 1100 board/amlogic/configs/m8b_m201_v1.h:VDDEE_VOLTAGE 1100 board/amlogic/configs/m8b_m202_v1.h:VDDEE_VOLTAGE 1100 Another hint at this is the VDDEE voltage on the EC-100 and Odroid-C1 boards. The VDDEE regulator supplies the Mali GPU. It's basically a copy of the VCCK (CPU supply) which means it's limited to 0.86V to 1.14V. Update the operating voltage of the Mali GPU on Meson8b to 1.10V so it matches with what the vendor u-boot sets. Fixes: c3ea80b ("ARM: dts: meson8b: add the Mali-450 MP2 GPU") Signed-off-by: Martin Blumenstingl <[email protected]> Signed-off-by: Kevin Hilman <[email protected]>
1 parent f3b7cbe commit 26d6514

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

arch/arm/boot/dts/meson8b.dtsi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -163,23 +163,23 @@
163163

164164
opp-255000000 {
165165
opp-hz = /bits/ 64 <255000000>;
166-
opp-microvolt = <1150000>;
166+
opp-microvolt = <1100000>;
167167
};
168168
opp-364300000 {
169169
opp-hz = /bits/ 64 <364300000>;
170-
opp-microvolt = <1150000>;
170+
opp-microvolt = <1100000>;
171171
};
172172
opp-425000000 {
173173
opp-hz = /bits/ 64 <425000000>;
174-
opp-microvolt = <1150000>;
174+
opp-microvolt = <1100000>;
175175
};
176176
opp-510000000 {
177177
opp-hz = /bits/ 64 <510000000>;
178-
opp-microvolt = <1150000>;
178+
opp-microvolt = <1100000>;
179179
};
180180
opp-637500000 {
181181
opp-hz = /bits/ 64 <637500000>;
182-
opp-microvolt = <1150000>;
182+
opp-microvolt = <1100000>;
183183
turbo-mode;
184184
};
185185
};

0 commit comments

Comments
 (0)