xref: /linux/arch/arm/mach-tegra/hotplug.c (revision ee2c25efdd46d7ed5605d6fe877bdf4b47a4ab2e)
1 /*
2  *
3  *  Copyright (C) 2002 ARM Ltd.
4  *  All Rights Reserved
5  *  Copyright (c) 2010, 2012 NVIDIA Corporation. All rights reserved.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
11 #include <linux/kernel.h>
12 #include <linux/smp.h>
13 #include <linux/clk/tegra.h>
14 
15 #include <asm/cacheflush.h>
16 #include <asm/smp_plat.h>
17 
18 #include "sleep.h"
19 
20 static void (*tegra_hotplug_shutdown)(void);
21 
22 int tegra_cpu_kill(unsigned cpu)
23 {
24 	cpu = cpu_logical_map(cpu);
25 
26 	/* Clock gate the CPU */
27 	tegra_wait_cpu_in_reset(cpu);
28 	tegra_disable_cpu_clock(cpu);
29 
30 	return 1;
31 }
32 
33 /*
34  * platform-specific code to shutdown a CPU
35  *
36  * Called with IRQs disabled
37  */
38 void __ref tegra_cpu_die(unsigned int cpu)
39 {
40 	/* Clean L1 data cache */
41 	tegra_disable_clean_inv_dcache();
42 
43 	/* Shut down the current CPU. */
44 	tegra_hotplug_shutdown();
45 
46 	/* Should never return here. */
47 	BUG();
48 }
49 
50 int tegra_cpu_disable(unsigned int cpu)
51 {
52 	/*
53 	 * we don't allow CPU 0 to be shutdown (it is still too special
54 	 * e.g. clock tick interrupts)
55 	 */
56 	return cpu == 0 ? -EPERM : 0;
57 }
58 
59 #ifdef CONFIG_ARCH_TEGRA_2x_SOC
60 extern void tegra20_hotplug_shutdown(void);
61 void __init tegra20_hotplug_init(void)
62 {
63 	tegra_hotplug_shutdown = tegra20_hotplug_shutdown;
64 }
65 #endif
66 
67 #ifdef CONFIG_ARCH_TEGRA_3x_SOC
68 extern void tegra30_hotplug_shutdown(void);
69 void __init tegra30_hotplug_init(void)
70 {
71 	tegra_hotplug_shutdown = tegra30_hotplug_shutdown;
72 }
73 #endif
74