blob: b0760d7701b4336a3630d121b0acbbafad901fb0 [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>
22#include <linux/delay.h>
23#include <linux/cpu.h>
24#include <asm/system.h>
25#include <asm/prom.h>
26#include <asm/rtas.h>
27#include <asm/firmware.h>
28#include <asm/machdep.h>
29#include <asm/vdso_datapage.h>
30#include <asm/pSeries_reconfig.h>
31#include "xics.h"
Michael Neuling473980a2008-01-11 14:02:47 +110032#include "plpar_wrappers.h"
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +000033#include "offline_states.h"
Michael Ellerman0332c2d2006-12-05 17:52:36 +110034
35/* This version can't take the spinlock, because it never returns */
36static struct rtas_args rtas_stop_self_args = {
37 .token = RTAS_UNKNOWN_SERVICE,
38 .nargs = 0,
39 .nret = 1,
40 .rets = &rtas_stop_self_args.args[0],
41};
42
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +000043static DEFINE_PER_CPU(enum cpu_state_vals, preferred_offline_state) =
44 CPU_STATE_OFFLINE;
45static DEFINE_PER_CPU(enum cpu_state_vals, current_state) = CPU_STATE_OFFLINE;
46
47static enum cpu_state_vals default_offline_state = CPU_STATE_OFFLINE;
48
49static int cede_offline_enabled __read_mostly = 1;
50
51/*
52 * Enable/disable cede_offline when available.
53 */
54static int __init setup_cede_offline(char *str)
55{
56 if (!strcmp(str, "off"))
57 cede_offline_enabled = 0;
58 else if (!strcmp(str, "on"))
59 cede_offline_enabled = 1;
60 else
61 return 0;
62 return 1;
63}
64
65__setup("cede_offline=", setup_cede_offline);
66
67enum cpu_state_vals get_cpu_current_state(int cpu)
68{
69 return per_cpu(current_state, cpu);
70}
71
72void set_cpu_current_state(int cpu, enum cpu_state_vals state)
73{
74 per_cpu(current_state, cpu) = state;
75}
76
77enum cpu_state_vals get_preferred_offline_state(int cpu)
78{
79 return per_cpu(preferred_offline_state, cpu);
80}
81
82void set_preferred_offline_state(int cpu, enum cpu_state_vals state)
83{
84 per_cpu(preferred_offline_state, cpu) = state;
85}
86
87void set_default_offline_state(int cpu)
88{
89 per_cpu(preferred_offline_state, cpu) = default_offline_state;
90}
91
Michael Ellerman04da6af2006-12-05 17:52:37 +110092static void rtas_stop_self(void)
Michael Ellerman0332c2d2006-12-05 17:52:36 +110093{
94 struct rtas_args *args = &rtas_stop_self_args;
95
96 local_irq_disable();
97
98 BUG_ON(args->token == RTAS_UNKNOWN_SERVICE);
99
100 printk("cpu %u (hwid %u) Ready to die...\n",
101 smp_processor_id(), hard_smp_processor_id());
102 enter_rtas(__pa(args));
103
104 panic("Alas, I survived.\n");
105}
106
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100107static void pseries_mach_cpu_die(void)
Michael Ellerman04da6af2006-12-05 17:52:37 +1100108{
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000109 unsigned int cpu = smp_processor_id();
110 unsigned int hwcpu = hard_smp_processor_id();
111 u8 cede_latency_hint = 0;
112
Michael Ellerman04da6af2006-12-05 17:52:37 +1100113 local_irq_disable();
114 idle_task_exit();
Nathan Fontenotc3e85062008-02-07 07:37:31 +1100115 xics_teardown_cpu();
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000116
117 if (get_preferred_offline_state(cpu) == CPU_STATE_INACTIVE) {
118 set_cpu_current_state(cpu, CPU_STATE_INACTIVE);
119 cede_latency_hint = 2;
120
121 get_lppaca()->idle = 1;
122 if (!get_lppaca()->shared_proc)
123 get_lppaca()->donate_dedicated_cpu = 1;
124
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000125 while (get_preferred_offline_state(cpu) == CPU_STATE_INACTIVE) {
126 extended_cede_processor(cede_latency_hint);
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000127 }
128
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000129 if (!get_lppaca()->shared_proc)
130 get_lppaca()->donate_dedicated_cpu = 0;
131 get_lppaca()->idle = 0;
Vaidyanathan Srinivasan0212f262010-03-01 02:58:16 +0000132
133 if (get_preferred_offline_state(cpu) == CPU_STATE_ONLINE) {
134 unregister_slb_shadow(hwcpu, __pa(get_slb_shadow()));
135
136 /*
137 * Call to start_secondary_resume() will not return.
138 * Kernel stack will be reset and start_secondary()
139 * will be called to continue the online operation.
140 */
141 start_secondary_resume();
142 }
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000143 }
144
Vaidyanathan Srinivasan0212f262010-03-01 02:58:16 +0000145 /* Requested state is CPU_STATE_OFFLINE at this point */
146 WARN_ON(get_preferred_offline_state(cpu) != CPU_STATE_OFFLINE);
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000147
Vaidyanathan Srinivasan0212f262010-03-01 02:58:16 +0000148 set_cpu_current_state(cpu, CPU_STATE_OFFLINE);
149 unregister_slb_shadow(hwcpu, __pa(get_slb_shadow()));
150 rtas_stop_self();
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000151
Michael Ellerman04da6af2006-12-05 17:52:37 +1100152 /* Should never get here... */
153 BUG();
154 for(;;);
155}
156
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100157static int pseries_cpu_disable(void)
Michael Ellerman413f7c42006-12-05 17:52:38 +1100158{
159 int cpu = smp_processor_id();
160
Rusty Russellea0f1ca2009-09-24 09:34:48 -0600161 set_cpu_online(cpu, false);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100162 vdso_data->processorCount--;
163
164 /*fix boot_cpuid here*/
165 if (cpu == boot_cpuid)
166 boot_cpuid = any_online_cpu(cpu_online_map);
167
168 /* FIXME: abstract this to not be platform specific later on */
169 xics_migrate_irqs_away();
170 return 0;
171}
172
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000173/*
174 * pseries_cpu_die: Wait for the cpu to die.
175 * @cpu: logical processor id of the CPU whose death we're awaiting.
176 *
177 * This function is called from the context of the thread which is performing
178 * the cpu-offline. Here we wait for long enough to allow the cpu in question
179 * to self-destroy so that the cpu-offline thread can send the CPU_DEAD
180 * notifications.
181 *
182 * OTOH, pseries_mach_cpu_die() is called by the @cpu when it wants to
183 * self-destruct.
184 */
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100185static void pseries_cpu_die(unsigned int cpu)
Michael Ellerman413f7c42006-12-05 17:52:38 +1100186{
187 int tries;
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000188 int cpu_status = 1;
Michael Ellerman413f7c42006-12-05 17:52:38 +1100189 unsigned int pcpu = get_hard_smp_processor_id(cpu);
190
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000191 if (get_preferred_offline_state(cpu) == CPU_STATE_INACTIVE) {
192 cpu_status = 1;
193 for (tries = 0; tries < 1000; tries++) {
194 if (get_cpu_current_state(cpu) == CPU_STATE_INACTIVE) {
195 cpu_status = 0;
196 break;
197 }
198 cpu_relax();
199 }
200 } else if (get_preferred_offline_state(cpu) == CPU_STATE_OFFLINE) {
201
202 for (tries = 0; tries < 25; tries++) {
Michael Neulingf8b67692010-04-28 13:39:41 +0000203 cpu_status = smp_query_cpu_stopped(pcpu);
204 if (cpu_status == QCSS_STOPPED ||
205 cpu_status == QCSS_HARDWARE_ERROR)
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000206 break;
207 cpu_relax();
208 }
Michael Ellerman413f7c42006-12-05 17:52:38 +1100209 }
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000210
Michael Ellerman413f7c42006-12-05 17:52:38 +1100211 if (cpu_status != 0) {
212 printk("Querying DEAD? cpu %i (%i) shows %i\n",
213 cpu, pcpu, cpu_status);
214 }
215
216 /* Isolation and deallocation are definatly done by
217 * drslot_chrp_cpu. If they were not they would be
218 * done here. Change isolate state to Isolate and
219 * change allocation-state to Unusable.
220 */
221 paca[cpu].cpu_start = 0;
222}
223
224/*
225 * Update cpu_present_map and paca(s) for a new cpu node. The wrinkle
226 * here is that a cpu device node may represent up to two logical cpus
227 * in the SMT case. We must honor the assumption in other code that
228 * the logical ids for sibling SMT threads x and y are adjacent, such
229 * that x^1 == y and y^1 == x.
230 */
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100231static int pseries_add_processor(struct device_node *np)
Michael Ellerman413f7c42006-12-05 17:52:38 +1100232{
233 unsigned int cpu;
234 cpumask_t candidate_map, tmp = CPU_MASK_NONE;
235 int err = -ENOSPC, len, nthreads, i;
236 const u32 *intserv;
237
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000238 intserv = of_get_property(np, "ibm,ppc-interrupt-server#s", &len);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100239 if (!intserv)
240 return 0;
241
242 nthreads = len / sizeof(u32);
243 for (i = 0; i < nthreads; i++)
244 cpu_set(i, tmp);
245
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100246 cpu_maps_update_begin();
Michael Ellerman413f7c42006-12-05 17:52:38 +1100247
248 BUG_ON(!cpus_subset(cpu_present_map, cpu_possible_map));
249
250 /* Get a bitmap of unoccupied slots. */
251 cpus_xor(candidate_map, cpu_possible_map, cpu_present_map);
252 if (cpus_empty(candidate_map)) {
253 /* If we get here, it most likely means that NR_CPUS is
254 * less than the partition's max processors setting.
255 */
256 printk(KERN_ERR "Cannot add cpu %s; this system configuration"
257 " supports %d logical cpus.\n", np->full_name,
258 cpus_weight(cpu_possible_map));
259 goto out_unlock;
260 }
261
262 while (!cpus_empty(tmp))
263 if (cpus_subset(tmp, candidate_map))
264 /* Found a range where we can insert the new cpu(s) */
265 break;
266 else
267 cpus_shift_left(tmp, tmp, nthreads);
268
269 if (cpus_empty(tmp)) {
270 printk(KERN_ERR "Unable to find space in cpu_present_map for"
271 " processor %s with %d thread(s)\n", np->name,
272 nthreads);
273 goto out_unlock;
274 }
275
276 for_each_cpu_mask(cpu, tmp) {
277 BUG_ON(cpu_isset(cpu, cpu_present_map));
Rusty Russellea0f1ca2009-09-24 09:34:48 -0600278 set_cpu_present(cpu, true);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100279 set_hard_smp_processor_id(cpu, *intserv++);
280 }
281 err = 0;
282out_unlock:
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100283 cpu_maps_update_done();
Michael Ellerman413f7c42006-12-05 17:52:38 +1100284 return err;
285}
286
287/*
288 * Update the present map for a cpu node which is going away, and set
289 * the hard id in the paca(s) to -1 to be consistent with boot time
290 * convention for non-present cpus.
291 */
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100292static void pseries_remove_processor(struct device_node *np)
Michael Ellerman413f7c42006-12-05 17:52:38 +1100293{
294 unsigned int cpu;
295 int len, nthreads, i;
296 const u32 *intserv;
297
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000298 intserv = of_get_property(np, "ibm,ppc-interrupt-server#s", &len);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100299 if (!intserv)
300 return;
301
302 nthreads = len / sizeof(u32);
303
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100304 cpu_maps_update_begin();
Michael Ellerman413f7c42006-12-05 17:52:38 +1100305 for (i = 0; i < nthreads; i++) {
306 for_each_present_cpu(cpu) {
307 if (get_hard_smp_processor_id(cpu) != intserv[i])
308 continue;
309 BUG_ON(cpu_online(cpu));
Rusty Russellea0f1ca2009-09-24 09:34:48 -0600310 set_cpu_present(cpu, false);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100311 set_hard_smp_processor_id(cpu, -1);
312 break;
313 }
314 if (cpu == NR_CPUS)
315 printk(KERN_WARNING "Could not find cpu to remove "
316 "with physical id 0x%x\n", intserv[i]);
317 }
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100318 cpu_maps_update_done();
Michael Ellerman413f7c42006-12-05 17:52:38 +1100319}
320
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100321static int pseries_smp_notifier(struct notifier_block *nb,
322 unsigned long action, void *node)
Michael Ellerman413f7c42006-12-05 17:52:38 +1100323{
324 int err = NOTIFY_OK;
325
326 switch (action) {
327 case PSERIES_RECONFIG_ADD:
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100328 if (pseries_add_processor(node))
Michael Ellerman413f7c42006-12-05 17:52:38 +1100329 err = NOTIFY_BAD;
330 break;
331 case PSERIES_RECONFIG_REMOVE:
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100332 pseries_remove_processor(node);
Michael Ellerman413f7c42006-12-05 17:52:38 +1100333 break;
334 default:
335 err = NOTIFY_DONE;
336 break;
337 }
338 return err;
339}
340
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100341static struct notifier_block pseries_smp_nb = {
342 .notifier_call = pseries_smp_notifier,
Michael Ellerman413f7c42006-12-05 17:52:38 +1100343};
344
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000345#define MAX_CEDE_LATENCY_LEVELS 4
346#define CEDE_LATENCY_PARAM_LENGTH 10
347#define CEDE_LATENCY_PARAM_MAX_LENGTH \
348 (MAX_CEDE_LATENCY_LEVELS * CEDE_LATENCY_PARAM_LENGTH * sizeof(char))
349#define CEDE_LATENCY_TOKEN 45
350
351static char cede_parameters[CEDE_LATENCY_PARAM_MAX_LENGTH];
352
353static int parse_cede_parameters(void)
354{
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000355 memset(cede_parameters, 0, CEDE_LATENCY_PARAM_MAX_LENGTH);
Anton Blanchard20a8ab92010-02-07 13:52:05 +0000356 return rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1,
357 NULL,
358 CEDE_LATENCY_TOKEN,
359 __pa(cede_parameters),
360 CEDE_LATENCY_PARAM_MAX_LENGTH);
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000361}
362
Michael Ellerman0332c2d2006-12-05 17:52:36 +1100363static int __init pseries_cpu_hotplug_init(void)
364{
Olof Johansson64f27582007-10-10 10:38:24 +1000365 struct device_node *np;
366 const char *typep;
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000367 int cpu;
Michael Neulingf8b67692010-04-28 13:39:41 +0000368 int qcss_tok;
Olof Johansson64f27582007-10-10 10:38:24 +1000369
370 for_each_node_by_name(np, "interrupt-controller") {
371 typep = of_get_property(np, "compatible", NULL);
372 if (strstr(typep, "open-pic")) {
373 of_node_put(np);
374
375 printk(KERN_INFO "CPU Hotplug not supported on "
376 "systems using MPIC\n");
377 return 0;
378 }
379 }
380
Michael Ellerman0332c2d2006-12-05 17:52:36 +1100381 rtas_stop_self_args.token = rtas_token("stop-self");
Michael Ellerman674fa672006-12-05 17:52:38 +1100382 qcss_tok = rtas_token("query-cpu-stopped-state");
383
384 if (rtas_stop_self_args.token == RTAS_UNKNOWN_SERVICE ||
385 qcss_tok == RTAS_UNKNOWN_SERVICE) {
386 printk(KERN_INFO "CPU Hotplug not supported by firmware "
387 "- disabling.\n");
388 return 0;
389 }
Michael Ellerman0332c2d2006-12-05 17:52:36 +1100390
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100391 ppc_md.cpu_die = pseries_mach_cpu_die;
392 smp_ops->cpu_disable = pseries_cpu_disable;
393 smp_ops->cpu_die = pseries_cpu_die;
Michael Ellerman413f7c42006-12-05 17:52:38 +1100394
395 /* Processors can be added/removed only on LPAR */
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000396 if (firmware_has_feature(FW_FEATURE_LPAR)) {
Michael Ellerman06ba30b2006-12-05 17:52:39 +1100397 pSeries_reconfig_notifier_register(&pseries_smp_nb);
Gautham R Shenoy3aa565f2009-10-29 19:22:53 +0000398 cpu_maps_update_begin();
399 if (cede_offline_enabled && parse_cede_parameters() == 0) {
400 default_offline_state = CPU_STATE_INACTIVE;
401 for_each_online_cpu(cpu)
402 set_default_offline_state(cpu);
403 }
404 cpu_maps_update_done();
405 }
Michael Ellerman413f7c42006-12-05 17:52:38 +1100406
Michael Ellerman0332c2d2006-12-05 17:52:36 +1100407 return 0;
408}
409arch_initcall(pseries_cpu_hotplug_init);