~beagleboard-kernel/+junk/2.6.35-devel

45 by Robert Nelson
resync dspbridge staging, xm remove 1Ghz limitation (830Mhz on my Xm)
1
From 785860b0f1a11884573c26d44a5edb89ae3c6bb9 Mon Sep 17 00:00:00 2001
2
From: Vishwanath BS <vishwanath.bs@ti.com>
3
Date: Wed, 7 Apr 2010 02:06:09 +0800
4
Subject: [PATCH] OMAP3630 PM: Update for OPP 1GHz
5
6
It is found that system is not very stable with current 1GHz OPP configuration
7
(ARM@1G, IVA@880M, VDD1@1.31V) and it has been recommended to
8
use below configuration for stable 1GHz OPP.
9
(ARM@1G, IVA@800M, VDD1@1.35V).
10
11
Signed-off-by: Vishwanath BS <vishwanath.bs@ti.com>
12
Acked-by: Nishanth Menon <nm@ti.com>
13
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
14
---
15
 arch/arm/mach-omap2/cpufreq34xx.c |    4 ++--
16
 1 files changed, 2 insertions(+), 2 deletions(-)
17
18
diff --git a/arch/arm/mach-omap2/cpufreq34xx.c b/arch/arm/mach-omap2/cpufreq34xx.c
19
index c453ec5..189c42e 100644
20
--- a/arch/arm/mach-omap2/cpufreq34xx.c
21
+++ b/arch/arm/mach-omap2/cpufreq34xx.c
22
@@ -82,7 +82,7 @@ static struct omap_opp_def __initdata omap36xx_mpu_rate_table[] = {
23
 	/* OPP3 - OPP-Turbo */
24
 	OMAP_OPP_DEF(false, 800000000, 1260000),
25
 	/* OPP4 - OPP-SB */
26
-	OMAP_OPP_DEF(false, 1000000000, 1310000),
27
+	OMAP_OPP_DEF(false, 1000000000, 1350000),
28
 	/* Terminator */
29
 	OMAP_OPP_DEF(0, 0, 0)
30
 };
31
@@ -104,7 +104,7 @@ static struct omap_opp_def __initdata omap36xx_dsp_rate_table[] = {
32
 	/* OPP3 - OPP-Turbo */
33
 	OMAP_OPP_DEF(false, 660000000, 1260000),
34
 	/* OPP4 - OPP-SB */
35
-	OMAP_OPP_DEF(false, 875000000, 1310000),
36
+	OMAP_OPP_DEF(false, 800000000, 1350000),
37
 	/* Terminator */
38
 	OMAP_OPP_DEF(0, 0, 0)
39
 };
40
-- 
41
1.7.0.4
42