2010-09-15 17:45:51 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) STMicroelectronics 2009
|
|
|
|
* Copyright (C) ST-Ericsson SA 2010
|
|
|
|
*
|
|
|
|
* License Terms: GNU General Public License v2
|
|
|
|
* Based on ARM realview platform
|
|
|
|
*
|
|
|
|
* Author: Sundar Iyer <sundar.iyer@stericsson.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/smp.h>
|
|
|
|
|
2012-01-20 19:01:12 +08:00
|
|
|
#include <asm/smp_plat.h>
|
2010-09-15 17:45:51 +08:00
|
|
|
|
2013-03-22 05:51:12 +08:00
|
|
|
#include "setup.h"
|
2011-09-08 20:15:22 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* platform-specific code to shutdown a CPU
|
|
|
|
*
|
|
|
|
* Called with IRQs disabled
|
|
|
|
*/
|
|
|
|
void __ref ux500_cpu_die(unsigned int cpu)
|
2010-09-15 17:45:51 +08:00
|
|
|
{
|
2011-09-08 20:15:22 +08:00
|
|
|
/* directly enter low power state, skipping secure registers */
|
2010-09-15 17:45:51 +08:00
|
|
|
for (;;) {
|
|
|
|
__asm__ __volatile__("dsb\n\t" "wfi\n\t"
|
|
|
|
: : : "memory");
|
2011-08-09 19:21:36 +08:00
|
|
|
if (pen_release == cpu_logical_map(cpu)) {
|
2010-09-15 17:45:51 +08:00
|
|
|
/*
|
|
|
|
* OK, proper wakeup, we're done
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|