Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mali: Increase voltage to fix some system instabilities #27

Merged
merged 1 commit into from
Sep 17, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
hgblob committed Sep 17, 2013
commit f6160cbcf6bec4ae4f47714d2d270b01df98c393
6 changes: 4 additions & 2 deletions drivers/gpu/arm/mali/platform/pegasus-m400/mali_platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ static struct clk *mali_clock = 0;

static unsigned int GPU_MHZ = 1000000;

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

#ifdef CONFIG_MALI_DVFS
#define MALI_DVFS_DEFAULT_STEP 0
Expand Down