Avoid reading past buffer when calling GETACL
[zen-stable.git] / arch / arm / mach-ux500 / hotplug.c
blobc76f0f456f045d8baaaf2c9b228633f98d63186d
1 /*
2 * Copyright (C) STMicroelectronics 2009
3 * Copyright (C) ST-Ericsson SA 2010
5 * License Terms: GNU General Public License v2
6 * Based on ARM realview platform
8 * Author: Sundar Iyer <sundar.iyer@stericsson.com>
11 #include <linux/kernel.h>
12 #include <linux/errno.h>
13 #include <linux/smp.h>
15 #include <asm/cacheflush.h>
16 #include <asm/smp_plat.h>
18 extern volatile int pen_release;
20 static inline void platform_do_lowpower(unsigned int cpu)
22 flush_cache_all();
24 /* we put the platform to just WFI */
25 for (;;) {
26 __asm__ __volatile__("dsb\n\t" "wfi\n\t"
27 : : : "memory");
28 if (pen_release == cpu_logical_map(cpu)) {
30 * OK, proper wakeup, we're done
32 break;
37 int platform_cpu_kill(unsigned int cpu)
39 return 1;
43 * platform-specific code to shutdown a CPU
45 * Called with IRQs disabled
47 void platform_cpu_die(unsigned int cpu)
49 /* directly enter low power state, skipping secure registers */
50 platform_do_lowpower(cpu);
53 int platform_cpu_disable(unsigned int cpu)
56 * we don't allow CPU 0 to be shutdown (it is still too special
57 * e.g. clock tick interrupts)
59 return cpu == 0 ? -EPERM : 0;