blob: b8e4d9ed62d8a90cc3d4f977ee184a9a5853227a [file] [log] [blame]
Sundar Iyer9d704c02010-09-15 10:45:51 +01001/*
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>
Sundar Iyer9d704c02010-09-15 10:45:51 +010014
15#include <asm/cacheflush.h>
Will Deaconeb504392012-01-20 12:01:12 +010016#include <asm/smp_plat.h>
Sundar Iyer9d704c02010-09-15 10:45:51 +010017
Marc Zyngier5ac21a92011-09-08 13:15:22 +010018#include <mach/setup.h>
19
Sundar Iyer9d704c02010-09-15 10:45:51 +010020extern volatile int pen_release;
21
Marc Zyngier5ac21a92011-09-08 13:15:22 +010022/*
23 * platform-specific code to shutdown a CPU
24 *
25 * Called with IRQs disabled
26 */
27void __ref ux500_cpu_die(unsigned int cpu)
Sundar Iyer9d704c02010-09-15 10:45:51 +010028{
29 flush_cache_all();
30
Marc Zyngier5ac21a92011-09-08 13:15:22 +010031 /* directly enter low power state, skipping secure registers */
Sundar Iyer9d704c02010-09-15 10:45:51 +010032 for (;;) {
33 __asm__ __volatile__("dsb\n\t" "wfi\n\t"
34 : : : "memory");
Will Deacon28763482011-08-09 12:21:36 +010035 if (pen_release == cpu_logical_map(cpu)) {
Sundar Iyer9d704c02010-09-15 10:45:51 +010036 /*
37 * OK, proper wakeup, we're done
38 */
39 break;
40 }
41 }
42}