]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/mach-ux500/hotplug.c
ARM: SoC: convert ux500 to SMP operations
[karo-tx-linux.git] / arch / arm / mach-ux500 / hotplug.c
1 /*
2  * Copyright (C) STMicroelectronics 2009
3  * Copyright (C) ST-Ericsson SA 2010
4  *
5  * License Terms: GNU General Public License v2
6  *      Based on ARM realview platform
7  *
8  * Author: Sundar Iyer <sundar.iyer@stericsson.com>
9  *
10  */
11 #include <linux/kernel.h>
12 #include <linux/errno.h>
13 #include <linux/smp.h>
14
15 #include <asm/cacheflush.h>
16 #include <asm/smp_plat.h>
17
18 #include <mach/setup.h>
19
20 extern volatile int pen_release;
21
22 /*
23  * platform-specific code to shutdown a CPU
24  *
25  * Called with IRQs disabled
26  */
27 void __ref ux500_cpu_die(unsigned int cpu)
28 {
29         flush_cache_all();
30
31         /* directly enter low power state, skipping secure registers */
32         for (;;) {
33                 __asm__ __volatile__("dsb\n\t" "wfi\n\t"
34                                 : : : "memory");
35                 if (pen_release == cpu_logical_map(cpu)) {
36                         /*
37                          * OK, proper wakeup, we're done
38                          */
39                         break;
40                 }
41         }
42 }