Skip to content

Commit 38507b5

Browse files
committed
mach-tegra: tegra3_dvfs.c: increase some voltages
1 parent 3849af9 commit 38507b5

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

arch/arm/mach-tegra/tegra3_dvfs.c

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,19 @@
3030

3131
#ifdef CONFIG_VOLTAGE_CONTROL
3232
int user_mv_table[MAX_DVFS_FREQS] = {
33-
800, 825, 850, 875, 900, 912, 975, 1000, 1025, 1050, 1075, 1100, 1125, 1150, 1175, 1200, 1350, 1400};
33+
// a49 800, 825, 850, 875, 900, 912, 975, 1000, 1025, 1050, 1075, 1100, 1125, 1150, 1175, 1200, 1350, 1400};
34+
// a50 775, 800, 875, 900, 950, 975, 1000, 1050, 1100, 1125, 1150, 1100, 1125, 1150, 1175, 1200, 1212, 1300};
35+
800, 825, 900, 925, 950, 1000, 1025, 1050, 1100, 1125, 1150, 1100, 1125, 1150, 1175, 1200, 1212, 1300};
3436
#endif
3537

3638
static bool tegra_dvfs_cpu_disabled;
3739
static bool tegra_dvfs_core_disabled;
3840
static struct dvfs *cpu_dvfs;
3941

4042
static const int cpu_millivolts[MAX_DVFS_FREQS] = {
41-
800, 825, 850, 875, 900, 912, 975, 1000, 1025, 1050, 1075, 1100, 1125, 1150, 1175, 1200, 1350, 1400};
42-
43+
// a49 800, 825, 850, 875, 900, 912, 975, 1000, 1025, 1050, 1075, 1100, 1125, 1150, 1175, 1200, 1350, 1400};
44+
// a50 775, 800, 875, 900, 950, 975, 1000, 1050, 1100, 1125, 1150, 1100, 1125, 1150, 1175, 1200, 1212, 1300};
45+
800, 825, 900, 925, 950, 1000, 1025, 1050, 1100, 1125, 1150, 1100, 1125, 1150, 1175, 1200, 1212, 1300};
4346
static const unsigned int cpu_cold_offs_mhz[MAX_DVFS_FREQS] = {
4447
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 25, 25, 25, 25};
4548

@@ -175,8 +178,12 @@ static struct dvfs cpu_dvfs_table[] = {
175178
CPU_DVFS("cpu_g", 4, 1, MHZ, 480, 480, 650, 650, 780, 780, 990, 1040, 1100, 1200, 1250, 1300, 1330, 1360, 1400, 1500),
176179

177180
/* Nexus 7 - faking speedo id = 4, process id =2*/
178-
/* Cpu voltages (mV): 800, 825, 850, 875, 900, 912, 975, 1000, 1025, 1050, 1075, 1100, 1125, 1150, 1175, 1200, 1212, 1237 */
179-
CPU_DVFS("cpu_g", 4, 2, MHZ, 550, 550, 770, 770, 910, 910, 1150, 1230, 1280, 1330, 1370, 1400, 1500, 1600, 1700),
181+
/* Cpu voltages (mV): 800, 825, 850, 875, 900, 912, 975, 1000, 1025, 1050, 1075, 1100, 1125, 1150, 1175, 1200, 1212,*/
182+
// CPU_DVFS("cpu_g", 4, 2, MHZ, 550, 550, 770, 770, 910, 910, 1150, 1230, 1280, 1330, 1370, 1400, 1500, 1600, 1700),
183+
184+
/* Cpu voltages (mV): 775, 800, 875, 900, 950, 975, 1000, 1050, 1100, 1125, 1150, 1100, 1125, 1150, 1175, 1200, 1212,*/
185+
CPU_DVFS("cpu_g", 4, 2, MHZ, 340, 475, 666, 860, 1000, 1100, 1200, 1300, 1400, 1500, 1600),
186+
180187
CPU_DVFS("cpu_g", 4, 3, MHZ, 550, 550, 770, 770, 910, 910, 1150, 1230, 1280, 1330, 1370, 1400, 1500),
181188

182189
CPU_DVFS("cpu_g", 5, 3, MHZ, 550, 550, 770, 770, 910, 910, 1150, 1230, 1280, 1330, 1370, 1400, 1470, 1500, 1500, 1540, 1540, 1700),

0 commit comments

Comments
 (0)