blob: 6b3a0c15144f3404294dde422348e17242990e2b [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",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700101 p->comm, task_pid_nr(p), cpu,
102 p->state, p->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104 write_unlock_irq(&tasklist_lock);
105}
106
Avi Kivitydb912f92007-05-24 12:23:10 +0300107struct take_cpu_down_param {
108 unsigned long mod;
109 void *hcpu;
110};
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* Take this CPU down. */
Avi Kivitydb912f92007-05-24 12:23:10 +0300113static int take_cpu_down(void *_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Avi Kivitydb912f92007-05-24 12:23:10 +0300115 struct take_cpu_down_param *param = _param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int err;
117
Avi Kivitydb912f92007-05-24 12:23:10 +0300118 raw_notifier_call_chain(&cpu_chain, CPU_DYING | param->mod,
119 param->hcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 /* Ensure this CPU doesn't handle any more interrupts. */
121 err = __cpu_disable();
122 if (err < 0)
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700123 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700125 /* Force idle task to run as soon as we yield: it should
126 immediately notice cpu is offline and die quickly. */
127 sched_idle_next();
128 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700131/* Requires cpu_add_remove_lock to be held */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700132static int _cpu_down(unsigned int cpu, int tasks_frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Heiko Carstense7407dc2007-05-09 02:34:04 -0700134 int err, nr_calls = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 struct task_struct *p;
136 cpumask_t old_allowed, tmp;
Heiko Carstense7407dc2007-05-09 02:34:04 -0700137 void *hcpu = (void *)(long)cpu;
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700138 unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0;
Avi Kivitydb912f92007-05-24 12:23:10 +0300139 struct take_cpu_down_param tcd_param = {
140 .mod = mod,
141 .hcpu = hcpu,
142 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700144 if (num_online_cpus() == 1)
145 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700147 if (!cpu_online(cpu))
148 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Heiko Carstense7407dc2007-05-09 02:34:04 -0700150 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_ACQUIRE, hcpu);
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700151 err = __raw_notifier_call_chain(&cpu_chain, CPU_DOWN_PREPARE | mod,
Heiko Carstense7407dc2007-05-09 02:34:04 -0700152 hcpu, -1, &nr_calls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (err == NOTIFY_BAD) {
Akinobu Mitaa0d8cdb2007-10-18 03:05:12 -0700154 nr_calls--;
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700155 __raw_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED | mod,
156 hcpu, nr_calls, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 printk("%s: attempt to take down CPU %u failed\n",
158 __FUNCTION__, cpu);
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700159 err = -EINVAL;
160 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 }
162
163 /* Ensure that we are not runnable on dying cpu */
164 old_allowed = current->cpus_allowed;
165 tmp = CPU_MASK_ALL;
166 cpu_clear(cpu, tmp);
167 set_cpus_allowed(current, tmp);
168
Linus Torvaldsaa953872006-07-23 12:12:16 -0700169 mutex_lock(&cpu_bitmask_lock);
Avi Kivitydb912f92007-05-24 12:23:10 +0300170 p = __stop_machine_run(take_cpu_down, &tcd_param, cpu);
Linus Torvaldsaa953872006-07-23 12:12:16 -0700171 mutex_unlock(&cpu_bitmask_lock);
172
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700173 if (IS_ERR(p) || cpu_online(cpu)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 /* CPU didn't die: tell everyone. Can't complain. */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700175 if (raw_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED | mod,
Heiko Carstense7407dc2007-05-09 02:34:04 -0700176 hcpu) == NOTIFY_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 BUG();
178
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700179 if (IS_ERR(p)) {
180 err = PTR_ERR(p);
181 goto out_allowed;
182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 goto out_thread;
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /* Wait for it to sleep (leaving idle task). */
187 while (!idle_cpu(cpu))
188 yield();
189
190 /* This actually kills the CPU. */
191 __cpu_die(cpu);
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 /* CPU is completely dead: tell everyone. Too late to complain. */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700194 if (raw_notifier_call_chain(&cpu_chain, CPU_DEAD | mod,
195 hcpu) == NOTIFY_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 BUG();
197
198 check_for_tasks(cpu);
199
200out_thread:
201 err = kthread_stop(p);
202out_allowed:
203 set_cpus_allowed(current, old_allowed);
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700204out_release:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700205 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_RELEASE, hcpu);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700206 return err;
207}
208
209int cpu_down(unsigned int cpu)
210{
211 int err = 0;
212
213 mutex_lock(&cpu_add_remove_lock);
214 if (cpu_hotplug_disabled)
215 err = -EBUSY;
216 else
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700217 err = _cpu_down(cpu, 0);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700218
Linus Torvaldsaa953872006-07-23 12:12:16 -0700219 mutex_unlock(&cpu_add_remove_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return err;
221}
222#endif /*CONFIG_HOTPLUG_CPU*/
223
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700224/* Requires cpu_add_remove_lock to be held */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700225static int __cpuinit _cpu_up(unsigned int cpu, int tasks_frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700227 int ret, nr_calls = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 void *hcpu = (void *)(long)cpu;
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700229 unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700231 if (cpu_online(cpu) || !cpu_present(cpu))
232 return -EINVAL;
Ashok Raj90d45d12005-11-08 21:34:24 -0800233
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700234 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_ACQUIRE, hcpu);
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700235 ret = __raw_notifier_call_chain(&cpu_chain, CPU_UP_PREPARE | mod, hcpu,
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700236 -1, &nr_calls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (ret == NOTIFY_BAD) {
Akinobu Mitaa0d8cdb2007-10-18 03:05:12 -0700238 nr_calls--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 printk("%s: attempt to bring up CPU %u failed\n",
240 __FUNCTION__, cpu);
241 ret = -EINVAL;
242 goto out_notify;
243 }
244
245 /* Arch-specific enabling code. */
Linus Torvaldsaa953872006-07-23 12:12:16 -0700246 mutex_lock(&cpu_bitmask_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 ret = __cpu_up(cpu);
Linus Torvaldsaa953872006-07-23 12:12:16 -0700248 mutex_unlock(&cpu_bitmask_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (ret != 0)
250 goto out_notify;
Eric Sesterhenn6978c702006-03-24 18:45:21 +0100251 BUG_ON(!cpu_online(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 /* Now call notifier in preparation. */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700254 raw_notifier_call_chain(&cpu_chain, CPU_ONLINE | mod, hcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256out_notify:
257 if (ret != 0)
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700258 __raw_notifier_call_chain(&cpu_chain,
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700259 CPU_UP_CANCELED | mod, hcpu, nr_calls, NULL);
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700260 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_RELEASE, hcpu);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return ret;
263}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700264
Gautham R Shenoyb282b6f2007-01-10 23:15:34 -0800265int __cpuinit cpu_up(unsigned int cpu)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700266{
267 int err = 0;
KAMEZAWA Hiroyuki73e753a2007-10-18 23:40:47 -0700268 if (!cpu_isset(cpu, cpu_possible_map)) {
269 printk(KERN_ERR "can't online cpu %d because it is not "
270 "configured as may-hotadd at boot time\n", cpu);
271#if defined(CONFIG_IA64) || defined(CONFIG_X86_64) || defined(CONFIG_S390)
272 printk(KERN_ERR "please check additional_cpus= boot "
273 "parameter\n");
274#endif
275 return -EINVAL;
276 }
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700277
278 mutex_lock(&cpu_add_remove_lock);
279 if (cpu_hotplug_disabled)
280 err = -EBUSY;
281 else
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700282 err = _cpu_up(cpu, 0);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700283
284 mutex_unlock(&cpu_add_remove_lock);
285 return err;
286}
287
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -0700288#ifdef CONFIG_PM_SLEEP_SMP
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700289static cpumask_t frozen_cpus;
290
291int disable_nonboot_cpus(void)
292{
Ingo Molnare1d9fd22006-12-23 16:55:29 +0100293 int cpu, first_cpu, error = 0;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700294
295 mutex_lock(&cpu_add_remove_lock);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700296 first_cpu = first_cpu(cpu_online_map);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700297 /* We take down all of the non-boot CPUs in one shot to avoid races
298 * with the userspace trying to use the CPU hotplug at the same time
299 */
300 cpus_clear(frozen_cpus);
301 printk("Disabling non-boot CPUs ...\n");
302 for_each_online_cpu(cpu) {
303 if (cpu == first_cpu)
304 continue;
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700305 error = _cpu_down(cpu, 1);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700306 if (!error) {
307 cpu_set(cpu, frozen_cpus);
308 printk("CPU%d is down\n", cpu);
309 } else {
310 printk(KERN_ERR "Error taking CPU%d down: %d\n",
311 cpu, error);
312 break;
313 }
314 }
315 if (!error) {
316 BUG_ON(num_online_cpus() > 1);
317 /* Make sure the CPUs won't be enabled by someone else */
318 cpu_hotplug_disabled = 1;
319 } else {
Ingo Molnare1d9fd22006-12-23 16:55:29 +0100320 printk(KERN_ERR "Non-boot CPUs are not disabled\n");
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700321 }
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700322 mutex_unlock(&cpu_add_remove_lock);
323 return error;
324}
325
326void enable_nonboot_cpus(void)
327{
328 int cpu, error;
329
330 /* Allow everyone to use the CPU hotplug again */
331 mutex_lock(&cpu_add_remove_lock);
332 cpu_hotplug_disabled = 0;
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800333 if (cpus_empty(frozen_cpus))
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700334 goto out;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700335
336 printk("Enabling non-boot CPUs ...\n");
337 for_each_cpu_mask(cpu, frozen_cpus) {
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700338 error = _cpu_up(cpu, 1);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700339 if (!error) {
340 printk("CPU%d is up\n", cpu);
341 continue;
342 }
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700343 printk(KERN_WARNING "Error taking CPU%d up: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700344 }
345 cpus_clear(frozen_cpus);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700346out:
347 mutex_unlock(&cpu_add_remove_lock);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700348}
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -0700349#endif /* CONFIG_PM_SLEEP_SMP */