diff options
author | Vishwanath BS <vishwanath.bs@ti.com> | 2011-03-05 05:27:22 -0500 |
---|---|---|
committer | Kevin Hilman <khilman@ti.com> | 2011-03-11 10:21:44 -0500 |
commit | 15f13e23e818c9de81003f37430eb648abae9107 (patch) | |
tree | 87f9641a9bac2a67e33a3b1335657723e1fe45dd /arch/arm/mach-omap2/opp4xxx_data.c | |
parent | a08572ae529b1e8de12393eeced661feae8fd44c (diff) |
OMAP3+: OPP: Replace voltage values with Macros
Since all voltage data is now centralized in oppxxx_data.c, we can replace
the values in the opp table with the macros used for voltage values.
This will avoid opp table and voltage layer having conflicting values.
Signed-off-by: Vishwanath BS <vishwanath.bs@ti.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/opp4xxx_data.c')
-rw-r--r-- | arch/arm/mach-omap2/opp4xxx_data.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/mach-omap2/opp4xxx_data.c b/arch/arm/mach-omap2/opp4xxx_data.c index fdee8d4186ab..b5b1bb3d59d6 100644 --- a/arch/arm/mach-omap2/opp4xxx_data.c +++ b/arch/arm/mach-omap2/opp4xxx_data.c | |||
@@ -66,17 +66,17 @@ struct omap_volt_data omap44xx_vdd_core_volt_data[] = { | |||
66 | 66 | ||
67 | static struct omap_opp_def __initdata omap44xx_opp_def_list[] = { | 67 | static struct omap_opp_def __initdata omap44xx_opp_def_list[] = { |
68 | /* MPU OPP1 - OPP50 */ | 68 | /* MPU OPP1 - OPP50 */ |
69 | OPP_INITIALIZER("mpu", true, 300000000, 1100000), | 69 | OPP_INITIALIZER("mpu", true, 300000000, OMAP4430_VDD_MPU_OPP50_UV), |
70 | /* MPU OPP2 - OPP100 */ | 70 | /* MPU OPP2 - OPP100 */ |
71 | OPP_INITIALIZER("mpu", true, 600000000, 1200000), | 71 | OPP_INITIALIZER("mpu", true, 600000000, OMAP4430_VDD_MPU_OPP100_UV), |
72 | /* MPU OPP3 - OPP-Turbo */ | 72 | /* MPU OPP3 - OPP-Turbo */ |
73 | OPP_INITIALIZER("mpu", false, 800000000, 1260000), | 73 | OPP_INITIALIZER("mpu", false, 800000000, OMAP4430_VDD_MPU_OPPTURBO_UV), |
74 | /* MPU OPP4 - OPP-SB */ | 74 | /* MPU OPP4 - OPP-SB */ |
75 | OPP_INITIALIZER("mpu", false, 1008000000, 1350000), | 75 | OPP_INITIALIZER("mpu", false, 1008000000, OMAP4430_VDD_MPU_OPPNITRO_UV), |
76 | /* L3 OPP1 - OPP50 */ | 76 | /* L3 OPP1 - OPP50 */ |
77 | OPP_INITIALIZER("l3_main_1", true, 100000000, 930000), | 77 | OPP_INITIALIZER("l3_main_1", true, 100000000, OMAP4430_VDD_CORE_OPP50_UV), |
78 | /* L3 OPP2 - OPP100, OPP-Turbo, OPP-SB */ | 78 | /* L3 OPP2 - OPP100, OPP-Turbo, OPP-SB */ |
79 | OPP_INITIALIZER("l3_main_1", true, 200000000, 1100000), | 79 | OPP_INITIALIZER("l3_main_1", true, 200000000, OMAP4430_VDD_CORE_OPP100_UV), |
80 | /* TODO: add IVA, DSP, aess, fdif, gpu */ | 80 | /* TODO: add IVA, DSP, aess, fdif, gpu */ |
81 | }; | 81 | }; |
82 | 82 | ||