blob: a21f71af9d81fba3c0012afd8538d25a1f7c0c62 [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
Avi Kivitydb912f92007-05-24 12:23:10 +0300106struct take_cpu_down_param {
107 unsigned long mod;
108 void *hcpu;
109};
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/* Take this CPU down. */
Avi Kivitydb912f92007-05-24 12:23:10 +0300112static int take_cpu_down(void *_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Avi Kivitydb912f92007-05-24 12:23:10 +0300114 struct take_cpu_down_param *param = _param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 int err;
116
Avi Kivitydb912f92007-05-24 12:23:10 +0300117 raw_notifier_call_chain(&cpu_chain, CPU_DYING | param->mod,
118 param->hcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 /* Ensure this CPU doesn't handle any more interrupts. */
120 err = __cpu_disable();
121 if (err < 0)
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700122 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700124 /* Force idle task to run as soon as we yield: it should
125 immediately notice cpu is offline and die quickly. */
126 sched_idle_next();
127 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700130/* Requires cpu_add_remove_lock to be held */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700131static int _cpu_down(unsigned int cpu, int tasks_frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Heiko Carstense7407dc2007-05-09 02:34:04 -0700133 int err, nr_calls = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 struct task_struct *p;
135 cpumask_t old_allowed, tmp;
Heiko Carstense7407dc2007-05-09 02:34:04 -0700136 void *hcpu = (void *)(long)cpu;
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700137 unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0;
Avi Kivitydb912f92007-05-24 12:23:10 +0300138 struct take_cpu_down_param tcd_param = {
139 .mod = mod,
140 .hcpu = hcpu,
141 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700143 if (num_online_cpus() == 1)
144 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700146 if (!cpu_online(cpu))
147 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Heiko Carstense7407dc2007-05-09 02:34:04 -0700149 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_ACQUIRE, hcpu);
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700150 err = __raw_notifier_call_chain(&cpu_chain, CPU_DOWN_PREPARE | mod,
Heiko Carstense7407dc2007-05-09 02:34:04 -0700151 hcpu, -1, &nr_calls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (err == NOTIFY_BAD) {
Akinobu Mitaa0d8cdb2007-10-18 03:05:12 -0700153 nr_calls--;
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700154 __raw_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED | mod,
155 hcpu, nr_calls, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 printk("%s: attempt to take down CPU %u failed\n",
157 __FUNCTION__, cpu);
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700158 err = -EINVAL;
159 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161
162 /* Ensure that we are not runnable on dying cpu */
163 old_allowed = current->cpus_allowed;
164 tmp = CPU_MASK_ALL;
165 cpu_clear(cpu, tmp);
166 set_cpus_allowed(current, tmp);
167
Linus Torvaldsaa953872006-07-23 12:12:16 -0700168 mutex_lock(&cpu_bitmask_lock);
Avi Kivitydb912f92007-05-24 12:23:10 +0300169 p = __stop_machine_run(take_cpu_down, &tcd_param, cpu);
Linus Torvaldsaa953872006-07-23 12:12:16 -0700170 mutex_unlock(&cpu_bitmask_lock);
171
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700172 if (IS_ERR(p) || cpu_online(cpu)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 /* CPU didn't die: tell everyone. Can't complain. */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700174 if (raw_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED | mod,
Heiko Carstense7407dc2007-05-09 02:34:04 -0700175 hcpu) == NOTIFY_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 BUG();
177
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700178 if (IS_ERR(p)) {
179 err = PTR_ERR(p);
180 goto out_allowed;
181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 goto out_thread;
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 /* Wait for it to sleep (leaving idle task). */
186 while (!idle_cpu(cpu))
187 yield();
188
189 /* This actually kills the CPU. */
190 __cpu_die(cpu);
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 /* CPU is completely dead: tell everyone. Too late to complain. */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700193 if (raw_notifier_call_chain(&cpu_chain, CPU_DEAD | mod,
194 hcpu) == NOTIFY_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 BUG();
196
197 check_for_tasks(cpu);
198
199out_thread:
200 err = kthread_stop(p);
201out_allowed:
202 set_cpus_allowed(current, old_allowed);
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700203out_release:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700204 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_RELEASE, hcpu);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700205 return err;
206}
207
208int cpu_down(unsigned int cpu)
209{
210 int err = 0;
211
212 mutex_lock(&cpu_add_remove_lock);
213 if (cpu_hotplug_disabled)
214 err = -EBUSY;
215 else
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700216 err = _cpu_down(cpu, 0);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700217
Linus Torvaldsaa953872006-07-23 12:12:16 -0700218 mutex_unlock(&cpu_add_remove_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return err;
220}
221#endif /*CONFIG_HOTPLUG_CPU*/
222
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700223/* Requires cpu_add_remove_lock to be held */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700224static int __cpuinit _cpu_up(unsigned int cpu, int tasks_frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700226 int ret, nr_calls = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 void *hcpu = (void *)(long)cpu;
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700228 unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700230 if (cpu_online(cpu) || !cpu_present(cpu))
231 return -EINVAL;
Ashok Raj90d45d12005-11-08 21:34:24 -0800232
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700233 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_ACQUIRE, hcpu);
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700234 ret = __raw_notifier_call_chain(&cpu_chain, CPU_UP_PREPARE | mod, hcpu,
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700235 -1, &nr_calls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (ret == NOTIFY_BAD) {
Akinobu Mitaa0d8cdb2007-10-18 03:05:12 -0700237 nr_calls--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 printk("%s: attempt to bring up CPU %u failed\n",
239 __FUNCTION__, cpu);
240 ret = -EINVAL;
241 goto out_notify;
242 }
243
244 /* Arch-specific enabling code. */
Linus Torvaldsaa953872006-07-23 12:12:16 -0700245 mutex_lock(&cpu_bitmask_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 ret = __cpu_up(cpu);
Linus Torvaldsaa953872006-07-23 12:12:16 -0700247 mutex_unlock(&cpu_bitmask_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (ret != 0)
249 goto out_notify;
Eric Sesterhenn6978c702006-03-24 18:45:21 +0100250 BUG_ON(!cpu_online(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 /* Now call notifier in preparation. */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700253 raw_notifier_call_chain(&cpu_chain, CPU_ONLINE | mod, hcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255out_notify:
256 if (ret != 0)
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700257 __raw_notifier_call_chain(&cpu_chain,
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700258 CPU_UP_CANCELED | mod, hcpu, nr_calls, NULL);
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700259 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_RELEASE, hcpu);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return ret;
262}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700263
Gautham R Shenoyb282b6f2007-01-10 23:15:34 -0800264int __cpuinit cpu_up(unsigned int cpu)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700265{
266 int err = 0;
267
268 mutex_lock(&cpu_add_remove_lock);
269 if (cpu_hotplug_disabled)
270 err = -EBUSY;
271 else
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700272 err = _cpu_up(cpu, 0);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700273
274 mutex_unlock(&cpu_add_remove_lock);
275 return err;
276}
277
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -0700278#ifdef CONFIG_PM_SLEEP_SMP
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700279static cpumask_t frozen_cpus;
280
281int disable_nonboot_cpus(void)
282{
Ingo Molnare1d9fd22006-12-23 16:55:29 +0100283 int cpu, first_cpu, error = 0;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700284
285 mutex_lock(&cpu_add_remove_lock);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700286 first_cpu = first_cpu(cpu_online_map);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700287 /* We take down all of the non-boot CPUs in one shot to avoid races
288 * with the userspace trying to use the CPU hotplug at the same time
289 */
290 cpus_clear(frozen_cpus);
291 printk("Disabling non-boot CPUs ...\n");
292 for_each_online_cpu(cpu) {
293 if (cpu == first_cpu)
294 continue;
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700295 error = _cpu_down(cpu, 1);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700296 if (!error) {
297 cpu_set(cpu, frozen_cpus);
298 printk("CPU%d is down\n", cpu);
299 } else {
300 printk(KERN_ERR "Error taking CPU%d down: %d\n",
301 cpu, error);
302 break;
303 }
304 }
305 if (!error) {
306 BUG_ON(num_online_cpus() > 1);
307 /* Make sure the CPUs won't be enabled by someone else */
308 cpu_hotplug_disabled = 1;
309 } else {
Ingo Molnare1d9fd22006-12-23 16:55:29 +0100310 printk(KERN_ERR "Non-boot CPUs are not disabled\n");
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700311 }
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700312 mutex_unlock(&cpu_add_remove_lock);
313 return error;
314}
315
316void enable_nonboot_cpus(void)
317{
318 int cpu, error;
319
320 /* Allow everyone to use the CPU hotplug again */
321 mutex_lock(&cpu_add_remove_lock);
322 cpu_hotplug_disabled = 0;
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800323 if (cpus_empty(frozen_cpus))
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700324 goto out;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700325
326 printk("Enabling non-boot CPUs ...\n");
327 for_each_cpu_mask(cpu, frozen_cpus) {
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700328 error = _cpu_up(cpu, 1);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700329 if (!error) {
330 printk("CPU%d is up\n", cpu);
331 continue;
332 }
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700333 printk(KERN_WARNING "Error taking CPU%d up: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700334 }
335 cpus_clear(frozen_cpus);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700336out:
337 mutex_unlock(&cpu_add_remove_lock);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700338}
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -0700339#endif /* CONFIG_PM_SLEEP_SMP */