blob: c986d08d0807d91a36c7a927cdbd807ba3ed1276 [file] [log] [blame]
Michael Ellerman0332c2d2006-12-05 17:52:36 +11001/*
2 * pseries CPU Hotplug infrastructure.
3 *
Michael Ellerman413f7c42006-12-05 17:52:38 +11004 * Split out from arch/powerpc/platforms/pseries/setup.c
5 * arch/powerpc/kernel/rtas.c, and arch/powerpc/platforms/pseries/smp.c
Michael Ellerman0332c2d2006-12-05 17:52:36 +11006 *
7 * Peter Bergner, IBM March 2001.
8 * Copyright (C) 2001 IBM.
Michael Ellerman413f7c42006-12-05 17:52:38 +11009 * Dave Engebretsen, Peter Bergner, and
10 * Mike Corrigan {engebret|bergner|mikec}@us.ibm.com
11 * Plus various changes from other IBM teams...
Michael Ellerman0332c2d2006-12-05 17:52:36 +110012 *
13 * Copyright (C) 2006 Michael Ellerman, IBM Corporation
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 */
20
21#include <linux/kernel.h>
Benjamin Herrenschmidt0b05ac62011-04-04 13:46:58 +100022#include <linux/interrupt.h>
Michael Ellerman0332c2d2006-12-05 17:52:36 +110023#include <linux/delay.h>
Paul Gortmaker62fe91b2011-05-27 14:25:11 -040024#include <linux/sched.h> /* for idle_task_exit */
Michael Ellerman0332c2d2006-12-05 17:52:36 +110025#include <linux/cpu.h>
26#include <asm/system.h>
27#include <asm/prom.h>
28#include <asm/rtas.h>
29#include <asm/firmware.h>
30#include <asm/machdep.h>
31#include <asm/vdso_datapage.h>
32#include <asm/pSeries_reconfig.h>
Benjamin Herrenschmidt0b05ac62011-04-04 13:46:58 +100033#include <asm/xics.h>
Michael Neuling473980a2008-01-11 14:02:47 +110034#include "plpar_wrappers.h"
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +000035#include "offline_states.h"
Michael Ellerman0332c2d2006-12-05 17:52:36 +110036
37/* This version can't take the spinlock, because it never returns */
38static struct rtas_args rtas_stop_self_args = {
39 .token = RTAS_UNKNOWN_SERVICE,
40 .nargs = 0,
41 .nret = 1,
42 .rets = &rtas_stop_self_args.args[0],
43};
44
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +000045static DEFINE_PER_CPU(enum cpu_state_vals, preferred_offline_state) =
46 CPU_STATE_OFFLINE;
47static DEFINE_PER_CPU(enum cpu_state_vals, current_state) = CPU_STATE_OFFLINE;
48
49static enum cpu_state_vals default_offline_state = CPU_STATE_OFFLINE;
50
51static int cede_offline_enabled __read_mostly = 1;
52
53/*
54 * Enable/disable cede_offline when available.
55 */
56static int __init setup_cede_offline(char *str)
57{
58 if (!strcmp(str, "off"))
59 cede_offline_enabled = 0;
60 else if (!strcmp(str, "on"))
61 cede_offline_enabled = 1;
62 else
63 return 0;
64 return 1;
65}
66
67__setup("cede_offline=", setup_cede_offline);
68
69enum cpu_state_vals get_cpu_current_state(int cpu)
70{
71 return per_cpu(current_state, cpu);
72}
73
74void set_cpu_current_state(int cpu, enum cpu_state_vals state)
75{
76 per_cpu(current_state, cpu) = state;
77}
78
79enum cpu_state_vals get_preferred_offline_state(int cpu)
80{
81 return per_cpu(preferred_offline_state, cpu);
82}
83
84void set_preferred_offline_state(int cpu, enum cpu_state_vals state)
85{
86 per_cpu(preferred_offline_state, cpu) = state;
87}
88
89void set_default_offline_state(int cpu)
90{
91 per_cpu(preferred_offline_state, cpu) = default_offline_state;
92}
93
Michael Ellerman04da6af2006-12-05 17:52:37 +110094static void rtas_stop_self(void)
Michael Ellerman0332c2d2006-12-05 17:52:36 +110095{
96 struct rtas_args *args = &rtas_stop_self_args;
97
98 local_irq_disable();
99
100 BUG_ON(args->token == RTAS_UNKNOWN_SERVICE);
101
102 printk("cpu %u (hwid %u) Ready to die...\n",
103 smp_processor_id(), hard_smp_processor_id());
104 enter_rtas(__pa(args));
105
106 panic("Alas, I survived.\n");
107}
108
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100109static void pseries_mach_cpu_die(void)
Michael Ellerman04da6af2006-12-05 17:52:37 +1100110{
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000111 unsigned int cpu = smp_processor_id();
112 unsigned int hwcpu = hard_smp_processor_id();
113 u8 cede_latency_hint = 0;
114
Michael Ellerman04da6af2006-12-05 17:52:37 +1100115 local_irq_disable();
116 idle_task_exit();
Nathan Fontenotc3e85062008-02-07 07:37:31 +1100117 xics_teardown_cpu();
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000118
119 if (get_preferred_offline_state(cpu) == CPU_STATE_INACTIVE) {
120 set_cpu_current_state(cpu, CPU_STATE_INACTIVE);
Brian King32d8ad42010-07-07 12:31:02 +0000121 if (ppc_md.suspend_disable_cpu)
122 ppc_md.suspend_disable_cpu();
123
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000124 cede_latency_hint = 2;
125
126 get_lppaca()->idle = 1;
127 if (!get_lppaca()->shared_proc)
128 get_lppaca()->donate_dedicated_cpu = 1;
129
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000130 while (get_preferred_offline_state(cpu) == CPU_STATE_INACTIVE) {
131 extended_cede_processor(cede_latency_hint);
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000132 }
133
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000134 if (!get_lppaca()->shared_proc)
135 get_lppaca()->donate_dedicated_cpu = 0;
136 get_lppaca()->idle = 0;
Vaidyanathan Srinivasan0212f262010-03-01 02:58:16 +0000137
138 if (get_preferred_offline_state(cpu) == CPU_STATE_ONLINE) {
Anton Blanchard598c8232011-07-25 01:46:34 +0000139 unregister_slb_shadow(hwcpu);
Vaidyanathan Srinivasan0212f262010-03-01 02:58:16 +0000140
141 /*
142 * Call to start_secondary_resume() will not return.
143 * Kernel stack will be reset and start_secondary()
144 * will be called to continue the online operation.
145 */
146 start_secondary_resume();
147 }
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000148 }
149
Vaidyanathan Srinivasan0212f262010-03-01 02:58:16 +0000150 /* Requested state is CPU_STATE_OFFLINE at this point */
151 WARN_ON(get_preferred_offline_state(cpu) != CPU_STATE_OFFLINE);
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000152
Vaidyanathan Srinivasan0212f262010-03-01 02:58:16 +0000153 set_cpu_current_state(cpu, CPU_STATE_OFFLINE);
Anton Blanchard598c8232011-07-25 01:46:34 +0000154 unregister_slb_shadow(hwcpu);
Vaidyanathan Srinivasan0212f262010-03-01 02:58:16 +0000155 rtas_stop_self();
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000156
Michael Ellerman04da6af2006-12-05 17:52:37 +1100157 /* Should never get here... */
158 BUG();
159 for(;;);
160}
161
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100162static int pseries_cpu_disable(void)
Michael Ellerman413f7c42006-12-05 17:52:38 +1100163{
164 int cpu = smp_processor_id();
165
Rusty Russellea0f1ca2009-09-24 09:34:48 -0600166 set_cpu_online(cpu, false);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100167 vdso_data->processorCount--;
168
169 /*fix boot_cpuid here*/
170 if (cpu == boot_cpuid)
Anton Blanchard8729faa2010-04-26 15:32:42 +0000171 boot_cpuid = cpumask_any(cpu_online_mask);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100172
173 /* FIXME: abstract this to not be platform specific later on */
174 xics_migrate_irqs_away();
175 return 0;
176}
177
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000178/*
179 * pseries_cpu_die: Wait for the cpu to die.
180 * @cpu: logical processor id of the CPU whose death we're awaiting.
181 *
182 * This function is called from the context of the thread which is performing
183 * the cpu-offline. Here we wait for long enough to allow the cpu in question
184 * to self-destroy so that the cpu-offline thread can send the CPU_DEAD
185 * notifications.
186 *
187 * OTOH, pseries_mach_cpu_die() is called by the @cpu when it wants to
188 * self-destruct.
189 */
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100190static void pseries_cpu_die(unsigned int cpu)
Michael Ellerman413f7c42006-12-05 17:52:38 +1100191{
192 int tries;
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000193 int cpu_status = 1;
Michael Ellerman413f7c42006-12-05 17:52:38 +1100194 unsigned int pcpu = get_hard_smp_processor_id(cpu);
195
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000196 if (get_preferred_offline_state(cpu) == CPU_STATE_INACTIVE) {
197 cpu_status = 1;
Benjamin Herrenschmidt940ce422010-07-31 15:04:15 +1000198 for (tries = 0; tries < 5000; tries++) {
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000199 if (get_cpu_current_state(cpu) == CPU_STATE_INACTIVE) {
200 cpu_status = 0;
201 break;
202 }
Benjamin Herrenschmidt940ce422010-07-31 15:04:15 +1000203 msleep(1);
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000204 }
205 } else if (get_preferred_offline_state(cpu) == CPU_STATE_OFFLINE) {
206
207 for (tries = 0; tries < 25; tries++) {
Michael Neulingf8b67692010-04-28 13:39:41 +0000208 cpu_status = smp_query_cpu_stopped(pcpu);
209 if (cpu_status == QCSS_STOPPED ||
210 cpu_status == QCSS_HARDWARE_ERROR)
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000211 break;
212 cpu_relax();
213 }
Michael Ellerman413f7c42006-12-05 17:52:38 +1100214 }
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000215
Michael Ellerman413f7c42006-12-05 17:52:38 +1100216 if (cpu_status != 0) {
217 printk("Querying DEAD? cpu %i (%i) shows %i\n",
218 cpu, pcpu, cpu_status);
219 }
220
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300221 /* Isolation and deallocation are definitely done by
Michael Ellerman413f7c42006-12-05 17:52:38 +1100222 * drslot_chrp_cpu. If they were not they would be
223 * done here. Change isolate state to Isolate and
224 * change allocation-state to Unusable.
225 */
226 paca[cpu].cpu_start = 0;
227}
228
229/*
Anton Blanchard828a6982010-04-26 15:32:44 +0000230 * Update cpu_present_mask and paca(s) for a new cpu node. The wrinkle
Michael Ellerman413f7c42006-12-05 17:52:38 +1100231 * here is that a cpu device node may represent up to two logical cpus
232 * in the SMT case. We must honor the assumption in other code that
233 * the logical ids for sibling SMT threads x and y are adjacent, such
234 * that x^1 == y and y^1 == x.
235 */
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100236static int pseries_add_processor(struct device_node *np)
Michael Ellerman413f7c42006-12-05 17:52:38 +1100237{
238 unsigned int cpu;
Anton Blanchard8729faa2010-04-26 15:32:42 +0000239 cpumask_var_t candidate_mask, tmp;
Michael Ellerman413f7c42006-12-05 17:52:38 +1100240 int err = -ENOSPC, len, nthreads, i;
241 const u32 *intserv;
242
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000243 intserv = of_get_property(np, "ibm,ppc-interrupt-server#s", &len);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100244 if (!intserv)
245 return 0;
246
Anton Blanchard8729faa2010-04-26 15:32:42 +0000247 zalloc_cpumask_var(&candidate_mask, GFP_KERNEL);
248 zalloc_cpumask_var(&tmp, GFP_KERNEL);
249
Michael Ellerman413f7c42006-12-05 17:52:38 +1100250 nthreads = len / sizeof(u32);
251 for (i = 0; i < nthreads; i++)
Anton Blanchard8729faa2010-04-26 15:32:42 +0000252 cpumask_set_cpu(i, tmp);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100253
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100254 cpu_maps_update_begin();
Michael Ellerman413f7c42006-12-05 17:52:38 +1100255
Anton Blanchard8729faa2010-04-26 15:32:42 +0000256 BUG_ON(!cpumask_subset(cpu_present_mask, cpu_possible_mask));
Michael Ellerman413f7c42006-12-05 17:52:38 +1100257
258 /* Get a bitmap of unoccupied slots. */
Anton Blanchard8729faa2010-04-26 15:32:42 +0000259 cpumask_xor(candidate_mask, cpu_possible_mask, cpu_present_mask);
260 if (cpumask_empty(candidate_mask)) {
Michael Ellerman413f7c42006-12-05 17:52:38 +1100261 /* If we get here, it most likely means that NR_CPUS is
262 * less than the partition's max processors setting.
263 */
264 printk(KERN_ERR "Cannot add cpu %s; this system configuration"
265 " supports %d logical cpus.\n", np->full_name,
Anton Blanchard8729faa2010-04-26 15:32:42 +0000266 cpumask_weight(cpu_possible_mask));
Michael Ellerman413f7c42006-12-05 17:52:38 +1100267 goto out_unlock;
268 }
269
Anton Blanchard8729faa2010-04-26 15:32:42 +0000270 while (!cpumask_empty(tmp))
271 if (cpumask_subset(tmp, candidate_mask))
Michael Ellerman413f7c42006-12-05 17:52:38 +1100272 /* Found a range where we can insert the new cpu(s) */
273 break;
274 else
Anton Blanchard8729faa2010-04-26 15:32:42 +0000275 cpumask_shift_left(tmp, tmp, nthreads);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100276
Anton Blanchard8729faa2010-04-26 15:32:42 +0000277 if (cpumask_empty(tmp)) {
Anton Blanchard828a6982010-04-26 15:32:44 +0000278 printk(KERN_ERR "Unable to find space in cpu_present_mask for"
Michael Ellerman413f7c42006-12-05 17:52:38 +1100279 " processor %s with %d thread(s)\n", np->name,
280 nthreads);
281 goto out_unlock;
282 }
283
Anton Blanchard8729faa2010-04-26 15:32:42 +0000284 for_each_cpu(cpu, tmp) {
KOSAKI Motohiro104699c2011-04-28 05:07:23 +0000285 BUG_ON(cpu_present(cpu));
Rusty Russellea0f1ca2009-09-24 09:34:48 -0600286 set_cpu_present(cpu, true);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100287 set_hard_smp_processor_id(cpu, *intserv++);
288 }
289 err = 0;
290out_unlock:
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100291 cpu_maps_update_done();
Anton Blanchard8729faa2010-04-26 15:32:42 +0000292 free_cpumask_var(candidate_mask);
293 free_cpumask_var(tmp);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100294 return err;
295}
296
297/*
298 * Update the present map for a cpu node which is going away, and set
299 * the hard id in the paca(s) to -1 to be consistent with boot time
300 * convention for non-present cpus.
301 */
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100302static void pseries_remove_processor(struct device_node *np)
Michael Ellerman413f7c42006-12-05 17:52:38 +1100303{
304 unsigned int cpu;
305 int len, nthreads, i;
306 const u32 *intserv;
307
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000308 intserv = of_get_property(np, "ibm,ppc-interrupt-server#s", &len);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100309 if (!intserv)
310 return;
311
312 nthreads = len / sizeof(u32);
313
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100314 cpu_maps_update_begin();
Michael Ellerman413f7c42006-12-05 17:52:38 +1100315 for (i = 0; i < nthreads; i++) {
316 for_each_present_cpu(cpu) {
317 if (get_hard_smp_processor_id(cpu) != intserv[i])
318 continue;
319 BUG_ON(cpu_online(cpu));
Rusty Russellea0f1ca2009-09-24 09:34:48 -0600320 set_cpu_present(cpu, false);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100321 set_hard_smp_processor_id(cpu, -1);
322 break;
323 }
Anton Blanchard8729faa2010-04-26 15:32:42 +0000324 if (cpu >= nr_cpu_ids)
Michael Ellerman413f7c42006-12-05 17:52:38 +1100325 printk(KERN_WARNING "Could not find cpu to remove "
326 "with physical id 0x%x\n", intserv[i]);
327 }
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100328 cpu_maps_update_done();
Michael Ellerman413f7c42006-12-05 17:52:38 +1100329}
330
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100331static int pseries_smp_notifier(struct notifier_block *nb,
332 unsigned long action, void *node)
Michael Ellerman413f7c42006-12-05 17:52:38 +1100333{
Akinobu Mitade2780a2011-06-21 03:35:56 +0000334 int err = 0;
Michael Ellerman413f7c42006-12-05 17:52:38 +1100335
336 switch (action) {
337 case PSERIES_RECONFIG_ADD:
Akinobu Mitade2780a2011-06-21 03:35:56 +0000338 err = pseries_add_processor(node);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100339 break;
340 case PSERIES_RECONFIG_REMOVE:
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100341 pseries_remove_processor(node);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100342 break;
Michael Ellerman413f7c42006-12-05 17:52:38 +1100343 }
Akinobu Mitade2780a2011-06-21 03:35:56 +0000344 return notifier_from_errno(err);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100345}
346
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100347static struct notifier_block pseries_smp_nb = {
348 .notifier_call = pseries_smp_notifier,
Michael Ellerman413f7c42006-12-05 17:52:38 +1100349};
350
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000351#define MAX_CEDE_LATENCY_LEVELS 4
352#define CEDE_LATENCY_PARAM_LENGTH 10
353#define CEDE_LATENCY_PARAM_MAX_LENGTH \
354 (MAX_CEDE_LATENCY_LEVELS * CEDE_LATENCY_PARAM_LENGTH * sizeof(char))
355#define CEDE_LATENCY_TOKEN 45
356
357static char cede_parameters[CEDE_LATENCY_PARAM_MAX_LENGTH];
358
359static int parse_cede_parameters(void)
360{
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000361 memset(cede_parameters, 0, CEDE_LATENCY_PARAM_MAX_LENGTH);
Anton Blanchard20a8ab92010-02-07 13:52:05 +0000362 return rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1,
363 NULL,
364 CEDE_LATENCY_TOKEN,
365 __pa(cede_parameters),
366 CEDE_LATENCY_PARAM_MAX_LENGTH);
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000367}
368
Michael Ellerman0332c2d2006-12-05 17:52:36 +1100369static int __init pseries_cpu_hotplug_init(void)
370{
Olof Johansson64f27582007-10-10 10:38:24 +1000371 struct device_node *np;
372 const char *typep;
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000373 int cpu;
Michael Neulingf8b67692010-04-28 13:39:41 +0000374 int qcss_tok;
Olof Johansson64f27582007-10-10 10:38:24 +1000375
376 for_each_node_by_name(np, "interrupt-controller") {
377 typep = of_get_property(np, "compatible", NULL);
378 if (strstr(typep, "open-pic")) {
379 of_node_put(np);
380
381 printk(KERN_INFO "CPU Hotplug not supported on "
382 "systems using MPIC\n");
383 return 0;
384 }
385 }
386
Michael Ellerman0332c2d2006-12-05 17:52:36 +1100387 rtas_stop_self_args.token = rtas_token("stop-self");
Michael Ellerman674fa672006-12-05 17:52:38 +1100388 qcss_tok = rtas_token("query-cpu-stopped-state");
389
390 if (rtas_stop_self_args.token == RTAS_UNKNOWN_SERVICE ||
391 qcss_tok == RTAS_UNKNOWN_SERVICE) {
392 printk(KERN_INFO "CPU Hotplug not supported by firmware "
393 "- disabling.\n");
394 return 0;
395 }
Michael Ellerman0332c2d2006-12-05 17:52:36 +1100396
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100397 ppc_md.cpu_die = pseries_mach_cpu_die;
398 smp_ops->cpu_disable = pseries_cpu_disable;
399 smp_ops->cpu_die = pseries_cpu_die;
Michael Ellerman413f7c42006-12-05 17:52:38 +1100400
401 /* Processors can be added/removed only on LPAR */
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000402 if (firmware_has_feature(FW_FEATURE_LPAR)) {
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100403 pSeries_reconfig_notifier_register(&pseries_smp_nb);
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000404 cpu_maps_update_begin();
405 if (cede_offline_enabled && parse_cede_parameters() == 0) {
406 default_offline_state = CPU_STATE_INACTIVE;
407 for_each_online_cpu(cpu)
408 set_default_offline_state(cpu);
409 }
410 cpu_maps_update_done();
411 }
Michael Ellerman413f7c42006-12-05 17:52:38 +1100412
Michael Ellerman0332c2d2006-12-05 17:52:36 +1100413 return 0;
414}
415arch_initcall(pseries_cpu_hotplug_init);