From c4d17d776c872d66b49a97b4fbef700e4a69771e Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E9=BB=84=E6=B6=9B?= Date: Wed, 31 Jul 2013 14:47:57 +0800 Subject: [PATCH] rk3026: cpufreq: suspend voltage set to 1.1v --- arch/arm/mach-rk3188/cpufreq.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm/mach-rk3188/cpufreq.c b/arch/arm/mach-rk3188/cpufreq.c index c8c59423fac0..a25fcb7bca0a 100644 --- a/arch/arm/mach-rk3188/cpufreq.c +++ b/arch/arm/mach-rk3188/cpufreq.c @@ -67,7 +67,11 @@ static struct cpufreq_frequency_table *freq_table = default_freq_table; #define CPUFREQ_PRIVATE 0x100 static int no_cpufreq_access; static unsigned int suspend_freq = 816 * 1000; +#if defined(CONFIG_ARCH_RK3026) +static unsigned int suspend_volt = 1100000; // 1.1V +#else static unsigned int suspend_volt = 1000000; // 1V +#endif static unsigned int low_battery_freq = 600 * 1000; static unsigned int low_battery_capacity = 5; // 5% static bool is_booting = true; -- 2.34.1