rk31xx:act8846:support sleep voltage for new hardware

This commit is contained in:
张晴
2013-01-31 19:02:44 +08:00
parent f5688ee309
commit 4f3e4efb38
3 changed files with 41 additions and 2 deletions

View File

@@ -1180,19 +1180,31 @@ static struct pmu_info act8846_dcdc_info[] = {
.name = "vdd_core", //logic
.min_uv = 1000000,
.max_uv = 1000000,
#ifdef CONFIG_ACT8846_SUPPORT_RESET
.suspend_vol = 1200000,
#else
.suspend_vol = 900000,
#endif
},
{
.name = "vdd_cpu", //arm
.min_uv = 1000000,
.max_uv = 1000000,
#ifdef CONFIG_ACT8846_SUPPORT_RESET
.suspend_vol = 1200000,
#else
.suspend_vol = 900000,
#endif
},
{
.name = "act_dcdc4", //vccio
.min_uv = 3000000,
.max_uv = 3000000,
#ifdef CONFIG_ACT8846_SUPPORT_RESET
.suspend_vol = 3000000,
#else
.suspend_vol = 2800000,
#endif
},
};

View File

@@ -1576,19 +1576,34 @@ static struct pmu_info act8846_dcdc_info[] = {
.name = "vdd_core", //logic
.min_uv = 1000000,
.max_uv = 1000000,
.suspend_vol = 1000000,
#ifdef CONFIG_ACT8846_SUPPORT_RESET
.suspend_vol = 1200000,
#else
.suspend_vol = 900000,
#endif
},
{
.name = "vdd_cpu", //arm
.min_uv = 1000000,
.max_uv = 1000000,
.suspend_vol = 1000000,
#ifdef CONFIG_ACT8846_SUPPORT_RESET
.suspend_vol = 1200000,
#else
.suspend_vol = 900000,
#endif
},
{
.name = "act_dcdc4", //vccio
.min_uv = 3000000,
.max_uv = 3000000,
#ifdef CONFIG_ACT8846_SUPPORT_RESET
.suspend_vol = 3000000,
#else
.suspend_vol = 2800000,
#endif
},
};

View File

@@ -1235,19 +1235,31 @@ static struct pmu_info act8846_dcdc_info[] = {
.name = "vdd_core", //logic
.min_uv = 1000000,
.max_uv = 1000000,
#ifdef CONFIG_ACT8846_SUPPORT_RESET
.suspend_vol = 1200000,
#else
.suspend_vol = 900000,
#endif
},
{
.name = "vdd_cpu", //arm
.min_uv = 1000000,
.max_uv = 1000000,
#ifdef CONFIG_ACT8846_SUPPORT_RESET
.suspend_vol = 1200000,
#else
.suspend_vol = 900000,
#endif
},
{
.name = "act_dcdc4", //vccio
.min_uv = 3000000,
.max_uv = 3000000,
#ifdef CONFIG_ACT8846_SUPPORT_RESET
.suspend_vol = 3000000,
#else
.suspend_vol = 2800000,
#endif
},
};