blob: 1a823944e972ae51fc3b05e100c83992ab57d315 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* CPU control.
2 * (C) 2001, 2002, 2003, 2004 Rusty Russell
3 *
4 * This code is licenced under the GPL.
5 */
6#include <linux/proc_fs.h>
7#include <linux/smp.h>
8#include <linux/init.h>
9#include <linux/notifier.h>
10#include <linux/sched.h>
11#include <linux/unistd.h>
12#include <linux/cpu.h>
13#include <linux/module.h>
14#include <linux/kthread.h>
15#include <linux/stop_machine.h>
Ingo Molnar81615b62006-06-26 00:24:32 -070016#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/* This protects CPUs going up and down... */
Linus Torvaldsaa953872006-07-23 12:12:16 -070019static DEFINE_MUTEX(cpu_add_remove_lock);
20static DEFINE_MUTEX(cpu_bitmask_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Neil Brownbd5349c2006-10-17 00:10:35 -070022static __cpuinitdata RAW_NOTIFIER_HEAD(cpu_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070024/* If set, cpu_up and cpu_down will return -EBUSY and do nothing.
25 * Should always be manipulated under cpu_add_remove_lock
26 */
27static int cpu_hotplug_disabled;
28
Ashok Raja9d9baa2005-11-28 13:43:46 -080029#ifdef CONFIG_HOTPLUG_CPU
Ashok Raj90d45d12005-11-08 21:34:24 -080030
Linus Torvaldsaa953872006-07-23 12:12:16 -070031/* Crappy recursive lock-takers in cpufreq! Complain loudly about idiots */
32static struct task_struct *recursive;
33static int recursive_depth;
Ashok Raj90d45d12005-11-08 21:34:24 -080034
Ashok Raja9d9baa2005-11-28 13:43:46 -080035void lock_cpu_hotplug(void)
36{
Linus Torvaldsaa953872006-07-23 12:12:16 -070037 struct task_struct *tsk = current;
38
39 if (tsk == recursive) {
40 static int warnings = 10;
41 if (warnings) {
42 printk(KERN_ERR "Lukewarm IQ detected in hotplug locking\n");
43 WARN_ON(1);
44 warnings--;
45 }
46 recursive_depth++;
47 return;
48 }
49 mutex_lock(&cpu_bitmask_lock);
50 recursive = tsk;
Ashok Raja9d9baa2005-11-28 13:43:46 -080051}
52EXPORT_SYMBOL_GPL(lock_cpu_hotplug);
Ashok Raj90d45d12005-11-08 21:34:24 -080053
Ashok Raja9d9baa2005-11-28 13:43:46 -080054void unlock_cpu_hotplug(void)
55{
Linus Torvaldsaa953872006-07-23 12:12:16 -070056 WARN_ON(recursive != current);
57 if (recursive_depth) {
58 recursive_depth--;
59 return;
Ashok Raja9d9baa2005-11-28 13:43:46 -080060 }
Linus Torvaldsaa953872006-07-23 12:12:16 -070061 recursive = NULL;
Gautham R Shenoy4b96b1a2006-11-05 23:52:04 -080062 mutex_unlock(&cpu_bitmask_lock);
Ashok Raja9d9baa2005-11-28 13:43:46 -080063}
64EXPORT_SYMBOL_GPL(unlock_cpu_hotplug);
65
Ashok Raja9d9baa2005-11-28 13:43:46 -080066#endif /* CONFIG_HOTPLUG_CPU */
Ashok Raj90d45d12005-11-08 21:34:24 -080067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/* Need to know about CPUs going up/down? */
Chandra Seetharaman65edc682006-06-27 02:54:08 -070069int __cpuinit register_cpu_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Neil Brownbd5349c2006-10-17 00:10:35 -070071 int ret;
72 mutex_lock(&cpu_add_remove_lock);
73 ret = raw_notifier_chain_register(&cpu_chain, nb);
74 mutex_unlock(&cpu_add_remove_lock);
75 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
Chandra Seetharaman65edc682006-06-27 02:54:08 -070077
78#ifdef CONFIG_HOTPLUG_CPU
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080EXPORT_SYMBOL(register_cpu_notifier);
81
82void unregister_cpu_notifier(struct notifier_block *nb)
83{
Neil Brownbd5349c2006-10-17 00:10:35 -070084 mutex_lock(&cpu_add_remove_lock);
85 raw_notifier_chain_unregister(&cpu_chain, nb);
86 mutex_unlock(&cpu_add_remove_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88EXPORT_SYMBOL(unregister_cpu_notifier);
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static inline void check_for_tasks(int cpu)
91{
92 struct task_struct *p;
93
94 write_lock_irq(&tasklist_lock);
95 for_each_process(p) {
96 if (task_cpu(p) == cpu &&
97 (!cputime_eq(p->utime, cputime_zero) ||
98 !cputime_eq(p->stime, cputime_zero)))
99 printk(KERN_WARNING "Task %s (pid = %d) is on cpu %d\
Heiko Carstense7407dc2007-05-09 02:34:04 -0700100 (state = %ld, flags = %x) \n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 p->comm, p->pid, cpu, p->state, p->flags);
102 }
103 write_unlock_irq(&tasklist_lock);
104}
105
106/* Take this CPU down. */
107static int take_cpu_down(void *unused)
108{
109 int err;
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 /* Ensure this CPU doesn't handle any more interrupts. */
112 err = __cpu_disable();
113 if (err < 0)
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700114 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700116 /* Force idle task to run as soon as we yield: it should
117 immediately notice cpu is offline and die quickly. */
118 sched_idle_next();
119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700122/* Requires cpu_add_remove_lock to be held */
123static int _cpu_down(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Heiko Carstense7407dc2007-05-09 02:34:04 -0700125 int err, nr_calls = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 struct task_struct *p;
127 cpumask_t old_allowed, tmp;
Heiko Carstense7407dc2007-05-09 02:34:04 -0700128 void *hcpu = (void *)(long)cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700130 if (num_online_cpus() == 1)
131 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700133 if (!cpu_online(cpu))
134 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Heiko Carstense7407dc2007-05-09 02:34:04 -0700136 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_ACQUIRE, hcpu);
137 err = __raw_notifier_call_chain(&cpu_chain, CPU_DOWN_PREPARE,
138 hcpu, -1, &nr_calls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (err == NOTIFY_BAD) {
Heiko Carstense7407dc2007-05-09 02:34:04 -0700140 __raw_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED, hcpu,
141 nr_calls, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 printk("%s: attempt to take down CPU %u failed\n",
143 __FUNCTION__, cpu);
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700144 err = -EINVAL;
145 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
147
148 /* Ensure that we are not runnable on dying cpu */
149 old_allowed = current->cpus_allowed;
150 tmp = CPU_MASK_ALL;
151 cpu_clear(cpu, tmp);
152 set_cpus_allowed(current, tmp);
153
Linus Torvaldsaa953872006-07-23 12:12:16 -0700154 mutex_lock(&cpu_bitmask_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 p = __stop_machine_run(take_cpu_down, NULL, cpu);
Linus Torvaldsaa953872006-07-23 12:12:16 -0700156 mutex_unlock(&cpu_bitmask_lock);
157
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700158 if (IS_ERR(p) || cpu_online(cpu)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 /* CPU didn't die: tell everyone. Can't complain. */
Neil Brownbd5349c2006-10-17 00:10:35 -0700160 if (raw_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED,
Heiko Carstense7407dc2007-05-09 02:34:04 -0700161 hcpu) == NOTIFY_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 BUG();
163
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700164 if (IS_ERR(p)) {
165 err = PTR_ERR(p);
166 goto out_allowed;
167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 goto out_thread;
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 /* Wait for it to sleep (leaving idle task). */
172 while (!idle_cpu(cpu))
173 yield();
174
175 /* This actually kills the CPU. */
176 __cpu_die(cpu);
177
178 /* Move it here so it can run. */
179 kthread_bind(p, get_cpu());
180 put_cpu();
181
182 /* CPU is completely dead: tell everyone. Too late to complain. */
Heiko Carstense7407dc2007-05-09 02:34:04 -0700183 if (raw_notifier_call_chain(&cpu_chain, CPU_DEAD, hcpu) == NOTIFY_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 BUG();
185
186 check_for_tasks(cpu);
187
188out_thread:
189 err = kthread_stop(p);
190out_allowed:
191 set_cpus_allowed(current, old_allowed);
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700192out_release:
193 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_RELEASE,
194 (void *)(long)cpu);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700195 return err;
196}
197
198int cpu_down(unsigned int cpu)
199{
200 int err = 0;
201
202 mutex_lock(&cpu_add_remove_lock);
203 if (cpu_hotplug_disabled)
204 err = -EBUSY;
205 else
206 err = _cpu_down(cpu);
207
Linus Torvaldsaa953872006-07-23 12:12:16 -0700208 mutex_unlock(&cpu_add_remove_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return err;
210}
211#endif /*CONFIG_HOTPLUG_CPU*/
212
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700213/* Requires cpu_add_remove_lock to be held */
Gautham R Shenoyb282b6f2007-01-10 23:15:34 -0800214static int __cpuinit _cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700216 int ret, nr_calls = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 void *hcpu = (void *)(long)cpu;
218
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700219 if (cpu_online(cpu) || !cpu_present(cpu))
220 return -EINVAL;
Ashok Raj90d45d12005-11-08 21:34:24 -0800221
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700222 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_ACQUIRE, hcpu);
223 ret = __raw_notifier_call_chain(&cpu_chain, CPU_UP_PREPARE, hcpu,
224 -1, &nr_calls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (ret == NOTIFY_BAD) {
226 printk("%s: attempt to bring up CPU %u failed\n",
227 __FUNCTION__, cpu);
228 ret = -EINVAL;
229 goto out_notify;
230 }
231
232 /* Arch-specific enabling code. */
Linus Torvaldsaa953872006-07-23 12:12:16 -0700233 mutex_lock(&cpu_bitmask_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 ret = __cpu_up(cpu);
Linus Torvaldsaa953872006-07-23 12:12:16 -0700235 mutex_unlock(&cpu_bitmask_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (ret != 0)
237 goto out_notify;
Eric Sesterhenn6978c702006-03-24 18:45:21 +0100238 BUG_ON(!cpu_online(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 /* Now call notifier in preparation. */
Neil Brownbd5349c2006-10-17 00:10:35 -0700241 raw_notifier_call_chain(&cpu_chain, CPU_ONLINE, hcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243out_notify:
244 if (ret != 0)
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700245 __raw_notifier_call_chain(&cpu_chain,
246 CPU_UP_CANCELED, hcpu, nr_calls, NULL);
247 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_RELEASE, hcpu);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return ret;
250}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700251
Gautham R Shenoyb282b6f2007-01-10 23:15:34 -0800252int __cpuinit cpu_up(unsigned int cpu)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700253{
254 int err = 0;
255
256 mutex_lock(&cpu_add_remove_lock);
257 if (cpu_hotplug_disabled)
258 err = -EBUSY;
259 else
260 err = _cpu_up(cpu);
261
262 mutex_unlock(&cpu_add_remove_lock);
263 return err;
264}
265
266#ifdef CONFIG_SUSPEND_SMP
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700267/* Needed to prevent the microcode driver from requesting firmware in its CPU
268 * hotplug notifier during the suspend/resume.
269 */
270int suspend_cpu_hotplug;
271EXPORT_SYMBOL(suspend_cpu_hotplug);
272
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700273static cpumask_t frozen_cpus;
274
275int disable_nonboot_cpus(void)
276{
Ingo Molnare1d9fd22006-12-23 16:55:29 +0100277 int cpu, first_cpu, error = 0;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700278
279 mutex_lock(&cpu_add_remove_lock);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700280 suspend_cpu_hotplug = 1;
281 first_cpu = first_cpu(cpu_online_map);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700282 /* We take down all of the non-boot CPUs in one shot to avoid races
283 * with the userspace trying to use the CPU hotplug at the same time
284 */
285 cpus_clear(frozen_cpus);
286 printk("Disabling non-boot CPUs ...\n");
287 for_each_online_cpu(cpu) {
288 if (cpu == first_cpu)
289 continue;
290 error = _cpu_down(cpu);
291 if (!error) {
292 cpu_set(cpu, frozen_cpus);
293 printk("CPU%d is down\n", cpu);
294 } else {
295 printk(KERN_ERR "Error taking CPU%d down: %d\n",
296 cpu, error);
297 break;
298 }
299 }
300 if (!error) {
301 BUG_ON(num_online_cpus() > 1);
302 /* Make sure the CPUs won't be enabled by someone else */
303 cpu_hotplug_disabled = 1;
304 } else {
Ingo Molnare1d9fd22006-12-23 16:55:29 +0100305 printk(KERN_ERR "Non-boot CPUs are not disabled\n");
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700306 }
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700307 suspend_cpu_hotplug = 0;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700308 mutex_unlock(&cpu_add_remove_lock);
309 return error;
310}
311
312void enable_nonboot_cpus(void)
313{
314 int cpu, error;
315
316 /* Allow everyone to use the CPU hotplug again */
317 mutex_lock(&cpu_add_remove_lock);
318 cpu_hotplug_disabled = 0;
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800319 if (cpus_empty(frozen_cpus))
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700320 goto out;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700321
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700322 suspend_cpu_hotplug = 1;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700323 printk("Enabling non-boot CPUs ...\n");
324 for_each_cpu_mask(cpu, frozen_cpus) {
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700325 error = _cpu_up(cpu);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700326 if (!error) {
327 printk("CPU%d is up\n", cpu);
328 continue;
329 }
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700330 printk(KERN_WARNING "Error taking CPU%d up: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700331 }
332 cpus_clear(frozen_cpus);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700333 suspend_cpu_hotplug = 0;
334out:
335 mutex_unlock(&cpu_add_remove_lock);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700336}
337#endif