Skip to content

Commit f6160cb

Browse files
committed
Mali: Increase voltage to fix some system instabilities
The previous mali voltage values were too low and causing the system to throw random oops at high CPU load, eg. all cores at 100% at 1.4GHz. Increasing the value fixes the random crashes.
1 parent 3b2871f commit f6160cb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

drivers/gpu/arm/mali/platform/pegasus-m400/mali_platform.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,10 @@ static struct clk *mali_clock = 0;
6363

6464
static unsigned int GPU_MHZ = 1000000;
6565

66-
int mali_gpu_clk = 533;//266;
67-
int mali_gpu_vol = 1075000;//900000
66+
/* Please take special care lowering these values, specially the voltage
67+
* as it can cause system stability problems: random oops, usb hub resets */
68+
int mali_gpu_clk = 533; /* 533 MHz */
69+
int mali_gpu_vol = 1125000;/* 1.1125 V */
6870

6971
#ifdef CONFIG_MALI_DVFS
7072
#define MALI_DVFS_DEFAULT_STEP 0

0 commit comments

Comments
 (0)