|
@@ -133,15 +133,12 @@ static int exynos_boot_secondary(unsigned int cpu, struct task_struct *idle)
|
|
|
*/
|
|
|
write_pen_release(phys_cpu);
|
|
|
|
|
|
- if (!(__raw_readl(S5P_ARM_CORE1_STATUS) & S5P_CORE_LOCAL_PWR_EN)) {
|
|
|
- __raw_writel(S5P_CORE_LOCAL_PWR_EN,
|
|
|
- S5P_ARM_CORE1_CONFIGURATION);
|
|
|
-
|
|
|
+ if (!exynos_cpu_power_state(cpu)) {
|
|
|
+ exynos_cpu_power_up(cpu);
|
|
|
timeout = 10;
|
|
|
|
|
|
/* wait max 10 ms until cpu1 is on */
|
|
|
- while ((__raw_readl(S5P_ARM_CORE1_STATUS)
|
|
|
- & S5P_CORE_LOCAL_PWR_EN) != S5P_CORE_LOCAL_PWR_EN) {
|
|
|
+ while (exynos_cpu_power_state(cpu) != S5P_CORE_LOCAL_PWR_EN) {
|
|
|
if (timeout-- == 0)
|
|
|
break;
|
|
|
|