Merge tag 'reset-for-4.9' of git://git.pengutronix.de/git/pza/linux into next/drivers
[deliverable/linux.git] / arch / arm / mach-imx / hotplug.c
CommitLineData
69c31b7a
SG
1/*
2 * Copyright 2011 Freescale Semiconductor, Inc.
3 * Copyright 2011 Linaro Ltd.
4 *
5 * The code contained herein is licensed under the GNU General Public
6 * License. You may obtain a copy of the GNU General Public License
7 * Version 2 or later at the following locations:
8 *
9 * http://www.opensource.org/licenses/gpl-license.html
10 * http://www.gnu.org/copyleft/gpl.html
11 */
12
13#include <linux/errno.h>
009e63f8 14#include <linux/jiffies.h>
602bf409 15#include <asm/cp15.h>
009e63f8 16#include <asm/proc-fns.h>
e3372474
SG
17
18#include "common.h"
69c31b7a 19
602bf409
SG
20static inline void cpu_enter_lowpower(void)
21{
22 unsigned int v;
23
602bf409
SG
24 asm volatile(
25 "mcr p15, 0, %1, c7, c5, 0\n"
26 " mcr p15, 0, %1, c7, c10, 4\n"
27 /*
28 * Turn off coherency
29 */
30 " mrc p15, 0, %0, c1, c0, 1\n"
31 " bic %0, %0, %3\n"
32 " mcr p15, 0, %0, c1, c0, 1\n"
33 " mrc p15, 0, %0, c1, c0, 0\n"
34 " bic %0, %0, %2\n"
35 " mcr p15, 0, %0, c1, c0, 0\n"
36 : "=&r" (v)
37 : "r" (0), "Ir" (CR_C), "Ir" (0x40)
38 : "cc");
39}
40
69c31b7a
SG
41/*
42 * platform-specific code to shutdown a CPU
43 *
44 * Called with IRQs disabled
45 */
e4f2d979 46void imx_cpu_die(unsigned int cpu)
69c31b7a 47{
602bf409 48 cpu_enter_lowpower();
2f3edfd7
SG
49 /*
50 * We use the cpu jumping argument register to sync with
51 * imx_cpu_kill() which is running on cpu0 and waiting for
52 * the register being cleared to kill the cpu.
53 */
54 imx_set_cpu_arg(cpu, ~0);
fcd75f92
SG
55
56 while (1)
57 cpu_do_idle();
83757664 58}
69c31b7a 59
83757664
SG
60int imx_cpu_kill(unsigned int cpu)
61{
2f3edfd7
SG
62 unsigned long timeout = jiffies + msecs_to_jiffies(50);
63
64 while (imx_get_cpu_arg(cpu) == 0)
65 if (time_after(jiffies, timeout))
66 return 0;
83757664 67 imx_enable_cpu(cpu, false);
2f3edfd7 68 imx_set_cpu_arg(cpu, 0);
83757664 69 return 1;
69c31b7a 70}
This page took 0.289353 seconds and 5 git commands to generate.