Skip to content

Commit

Permalink
[Fix] Changes in DSP frequencies to test enable HD playback
Browse files Browse the repository at this point in the history
  • Loading branch information
Napstar-xda committed May 28, 2012
1 parent b74e0ec commit 1a3f889
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
20 changes: 10 additions & 10 deletions kernel/arch/arm/mach-omap2/board-latona.c
Original file line number Diff line number Diff line change
Expand Up @@ -434,16 +434,16 @@ struct opp_frequencies {
};

static struct opp_frequencies opp_freq_add_table[] __initdata = {
{
.mpu = 120000000,
.iva = 250000000,
.ena = OMAP3630_CONTROL_FUSE_OPP1_LOW,
},
{
.mpu = 200000000,
.iva = 260000000,
.ena = OMAP3630_CONTROL_FUSE_OPP1_LOW2,
},
{
.mpu = 300000000,
.iva = 260000000,
.ena = OMAP3630_CONTROL_FUSE_OPP50_VDD1,
},
{
.mpu = 400000000,
.iva = 300000000,
Expand Down Expand Up @@ -476,27 +476,27 @@ static struct opp_frequencies opp_freq_add_table[] __initdata = {
},
{
.mpu = 1100000000,
.iva = 860000000,
.iva = 800000000,
.ena = OMAP3630_CONTROL_FUSE_OPP1_2G_VDD1,
},
{
.mpu = 1200000000,
.iva = 870000000,
.iva = 800000000,
.ena = OMAP3630_CONTROL_FUSE_OPP1_3G_VDD1,
},
{
.mpu = 1300000000,
.iva = 880000000,
.iva = 800000000,
.ena = OMAP3630_CONTROL_FUSE_OPP1_4G_VDD1,
},
{
.mpu = 1350000000,
.iva = 900000000,
.iva = 800000000,
.ena = OMAP3630_CONTROL_FUSE_OPP1_5G_VDD1,
},
{
.mpu = 1380000000,
.iva = 910000000,
.iva = 800000000,
.ena = OMAP3630_CONTROL_FUSE_OPP1_6G_VDD1,
},
{ 0, 0, 0 },
Expand Down
14 changes: 7 additions & 7 deletions kernel/arch/arm/mach-omap2/cpufreq34xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ static struct omap_opp_def __initdata omap36xx_opp_def_list[] = {


/* DSP OPP0 - LOW */
OMAP_OPP_DEF("iva", true, 250000000, 840000),
OMAP_OPP_DEF("iva", true, 260000000, 840000),
/* DSP OPP0 - LOW2 */
OMAP_OPP_DEF("iva", true, 260000000, 920000),
/* DSP OPP1 - OPP50 */
OMAP_OPP_DEF("iva", true, 270000000, 1000000),
OMAP_OPP_DEF("iva", true, 260000000, 1000000),
/* DSP OPP0 - OPP60 */
OMAP_OPP_DEF("iva", true, 300000000, 1050000),
/* DSP OPP0 - OPP70 */
Expand All @@ -141,15 +141,15 @@ static struct omap_opp_def __initdata omap36xx_opp_def_list[] = {
/* DSP OPP4 - OPP-SB */
OMAP_OPP_DEF("iva", true, 800000000, 1350000),
/* DSP OPP5 */
OMAP_OPP_DEF("iva", true, 860000000, 1370000),
OMAP_OPP_DEF("iva", true, 800000000, 1370000),
/* DSP OPP6 */
OMAP_OPP_DEF("iva", true, 870000000, 1380000),
OMAP_OPP_DEF("iva", true, 800000000, 1380000),
/* DSP OPP7 */
OMAP_OPP_DEF("iva", true, 880000000, 1455000),
OMAP_OPP_DEF("iva", true, 800000000, 1455000),
/* DSP OPP8 */
OMAP_OPP_DEF("iva", true, 900000000, 1485000),
OMAP_OPP_DEF("iva", true, 800000000, 1485000),
/* DSP OPP9 */
OMAP_OPP_DEF("iva", true, 910000000, 1500000),
OMAP_OPP_DEF("iva", true, 800000000, 1500000),
};
static u32 omap36xx_opp_def_size = ARRAY_SIZE(omap36xx_opp_def_list);

Expand Down

0 comments on commit 1a3f889

Please sign in to comment.