ARM: EXYNOS: Fix core ID used by platsmp and hotplug code
[cascardo/linux.git] / arch / arm / mach-exynos / hotplug.c
1 /* linux arch/arm/mach-exynos4/hotplug.c
2  *
3  *  Cloned from linux/arch/arm/mach-realview/hotplug.c
4  *
5  *  Copyright (C) 2002 ARM Ltd.
6  *  All Rights Reserved
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11 */
12
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/smp.h>
16 #include <linux/io.h>
17
18 #include <asm/cacheflush.h>
19 #include <asm/cp15.h>
20 #include <asm/smp_plat.h>
21
22 #include "common.h"
23 #include "regs-pmu.h"
24
25 static inline void cpu_leave_lowpower(void)
26 {
27         unsigned int v;
28
29         asm volatile(
30         "mrc    p15, 0, %0, c1, c0, 0\n"
31         "       orr     %0, %0, %1\n"
32         "       mcr     p15, 0, %0, c1, c0, 0\n"
33         "       mrc     p15, 0, %0, c1, c0, 1\n"
34         "       orr     %0, %0, %2\n"
35         "       mcr     p15, 0, %0, c1, c0, 1\n"
36           : "=&r" (v)
37           : "Ir" (CR_C), "Ir" (0x40)
38           : "cc");
39 }
40
41 static inline void platform_do_lowpower(unsigned int cpu, int *spurious)
42 {
43         u32 mpidr = cpu_logical_map(cpu);
44         u32 core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0);
45
46         for (;;) {
47
48                 /* Turn the CPU off on next WFI instruction. */
49                 exynos_cpu_power_down(core_id);
50
51                 wfi();
52
53                 if (pen_release == core_id) {
54                         /*
55                          * OK, proper wakeup, we're done
56                          */
57                         break;
58                 }
59
60                 /*
61                  * Getting here, means that we have come out of WFI without
62                  * having been woken up - this shouldn't happen
63                  *
64                  * Just note it happening - when we're woken, we can report
65                  * its occurrence.
66                  */
67                 (*spurious)++;
68         }
69 }
70
71 /*
72  * platform-specific code to shutdown a CPU
73  *
74  * Called with IRQs disabled
75  */
76 void __ref exynos_cpu_die(unsigned int cpu)
77 {
78         int spurious = 0;
79
80         v7_exit_coherency_flush(louis);
81
82         platform_do_lowpower(cpu, &spurious);
83
84         /*
85          * bring this CPU back into the world of cache
86          * coherency, and then restore interrupts
87          */
88         cpu_leave_lowpower();
89
90         if (spurious)
91                 pr_warn("CPU%u: %u spurious wakeup calls\n", cpu, spurious);
92 }