Path: blob/master/arch/powerpc/platforms/pseries/hotplug-cpu.c
10818 views
/*1* pseries CPU Hotplug infrastructure.2*3* Split out from arch/powerpc/platforms/pseries/setup.c4* arch/powerpc/kernel/rtas.c, and arch/powerpc/platforms/pseries/smp.c5*6* Peter Bergner, IBM March 2001.7* Copyright (C) 2001 IBM.8* Dave Engebretsen, Peter Bergner, and9* Mike Corrigan {engebret|bergner|mikec}@us.ibm.com10* Plus various changes from other IBM teams...11*12* Copyright (C) 2006 Michael Ellerman, IBM Corporation13*14* This program is free software; you can redistribute it and/or15* modify it under the terms of the GNU General Public License16* as published by the Free Software Foundation; either version17* 2 of the License, or (at your option) any later version.18*/1920#include <linux/kernel.h>21#include <linux/interrupt.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 <asm/xics.h>32#include "plpar_wrappers.h"33#include "offline_states.h"3435/* 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};4243static DEFINE_PER_CPU(enum cpu_state_vals, preferred_offline_state) =44CPU_STATE_OFFLINE;45static DEFINE_PER_CPU(enum cpu_state_vals, current_state) = CPU_STATE_OFFLINE;4647static enum cpu_state_vals default_offline_state = CPU_STATE_OFFLINE;4849static int cede_offline_enabled __read_mostly = 1;5051/*52* Enable/disable cede_offline when available.53*/54static int __init setup_cede_offline(char *str)55{56if (!strcmp(str, "off"))57cede_offline_enabled = 0;58else if (!strcmp(str, "on"))59cede_offline_enabled = 1;60else61return 0;62return 1;63}6465__setup("cede_offline=", setup_cede_offline);6667enum cpu_state_vals get_cpu_current_state(int cpu)68{69return per_cpu(current_state, cpu);70}7172void set_cpu_current_state(int cpu, enum cpu_state_vals state)73{74per_cpu(current_state, cpu) = state;75}7677enum cpu_state_vals get_preferred_offline_state(int cpu)78{79return per_cpu(preferred_offline_state, cpu);80}8182void set_preferred_offline_state(int cpu, enum cpu_state_vals state)83{84per_cpu(preferred_offline_state, cpu) = state;85}8687void set_default_offline_state(int cpu)88{89per_cpu(preferred_offline_state, cpu) = default_offline_state;90}9192static void rtas_stop_self(void)93{94struct rtas_args *args = &rtas_stop_self_args;9596local_irq_disable();9798BUG_ON(args->token == RTAS_UNKNOWN_SERVICE);99100printk("cpu %u (hwid %u) Ready to die...\n",101smp_processor_id(), hard_smp_processor_id());102enter_rtas(__pa(args));103104panic("Alas, I survived.\n");105}106107static void pseries_mach_cpu_die(void)108{109unsigned int cpu = smp_processor_id();110unsigned int hwcpu = hard_smp_processor_id();111u8 cede_latency_hint = 0;112113local_irq_disable();114idle_task_exit();115xics_teardown_cpu();116117if (get_preferred_offline_state(cpu) == CPU_STATE_INACTIVE) {118set_cpu_current_state(cpu, CPU_STATE_INACTIVE);119if (ppc_md.suspend_disable_cpu)120ppc_md.suspend_disable_cpu();121122cede_latency_hint = 2;123124get_lppaca()->idle = 1;125if (!get_lppaca()->shared_proc)126get_lppaca()->donate_dedicated_cpu = 1;127128while (get_preferred_offline_state(cpu) == CPU_STATE_INACTIVE) {129extended_cede_processor(cede_latency_hint);130}131132if (!get_lppaca()->shared_proc)133get_lppaca()->donate_dedicated_cpu = 0;134get_lppaca()->idle = 0;135136if (get_preferred_offline_state(cpu) == CPU_STATE_ONLINE) {137unregister_slb_shadow(hwcpu, __pa(get_slb_shadow()));138139/*140* Call to start_secondary_resume() will not return.141* Kernel stack will be reset and start_secondary()142* will be called to continue the online operation.143*/144start_secondary_resume();145}146}147148/* Requested state is CPU_STATE_OFFLINE at this point */149WARN_ON(get_preferred_offline_state(cpu) != CPU_STATE_OFFLINE);150151set_cpu_current_state(cpu, CPU_STATE_OFFLINE);152unregister_slb_shadow(hwcpu, __pa(get_slb_shadow()));153rtas_stop_self();154155/* Should never get here... */156BUG();157for(;;);158}159160static int pseries_cpu_disable(void)161{162int cpu = smp_processor_id();163164set_cpu_online(cpu, false);165vdso_data->processorCount--;166167/*fix boot_cpuid here*/168if (cpu == boot_cpuid)169boot_cpuid = cpumask_any(cpu_online_mask);170171/* FIXME: abstract this to not be platform specific later on */172xics_migrate_irqs_away();173return 0;174}175176/*177* pseries_cpu_die: Wait for the cpu to die.178* @cpu: logical processor id of the CPU whose death we're awaiting.179*180* This function is called from the context of the thread which is performing181* the cpu-offline. Here we wait for long enough to allow the cpu in question182* to self-destroy so that the cpu-offline thread can send the CPU_DEAD183* notifications.184*185* OTOH, pseries_mach_cpu_die() is called by the @cpu when it wants to186* self-destruct.187*/188static void pseries_cpu_die(unsigned int cpu)189{190int tries;191int cpu_status = 1;192unsigned int pcpu = get_hard_smp_processor_id(cpu);193194if (get_preferred_offline_state(cpu) == CPU_STATE_INACTIVE) {195cpu_status = 1;196for (tries = 0; tries < 5000; tries++) {197if (get_cpu_current_state(cpu) == CPU_STATE_INACTIVE) {198cpu_status = 0;199break;200}201msleep(1);202}203} else if (get_preferred_offline_state(cpu) == CPU_STATE_OFFLINE) {204205for (tries = 0; tries < 25; tries++) {206cpu_status = smp_query_cpu_stopped(pcpu);207if (cpu_status == QCSS_STOPPED ||208cpu_status == QCSS_HARDWARE_ERROR)209break;210cpu_relax();211}212}213214if (cpu_status != 0) {215printk("Querying DEAD? cpu %i (%i) shows %i\n",216cpu, pcpu, cpu_status);217}218219/* Isolation and deallocation are definitely done by220* drslot_chrp_cpu. If they were not they would be221* done here. Change isolate state to Isolate and222* change allocation-state to Unusable.223*/224paca[cpu].cpu_start = 0;225}226227/*228* Update cpu_present_mask and paca(s) for a new cpu node. The wrinkle229* here is that a cpu device node may represent up to two logical cpus230* in the SMT case. We must honor the assumption in other code that231* the logical ids for sibling SMT threads x and y are adjacent, such232* that x^1 == y and y^1 == x.233*/234static int pseries_add_processor(struct device_node *np)235{236unsigned int cpu;237cpumask_var_t candidate_mask, tmp;238int err = -ENOSPC, len, nthreads, i;239const u32 *intserv;240241intserv = of_get_property(np, "ibm,ppc-interrupt-server#s", &len);242if (!intserv)243return 0;244245zalloc_cpumask_var(&candidate_mask, GFP_KERNEL);246zalloc_cpumask_var(&tmp, GFP_KERNEL);247248nthreads = len / sizeof(u32);249for (i = 0; i < nthreads; i++)250cpumask_set_cpu(i, tmp);251252cpu_maps_update_begin();253254BUG_ON(!cpumask_subset(cpu_present_mask, cpu_possible_mask));255256/* Get a bitmap of unoccupied slots. */257cpumask_xor(candidate_mask, cpu_possible_mask, cpu_present_mask);258if (cpumask_empty(candidate_mask)) {259/* If we get here, it most likely means that NR_CPUS is260* less than the partition's max processors setting.261*/262printk(KERN_ERR "Cannot add cpu %s; this system configuration"263" supports %d logical cpus.\n", np->full_name,264cpumask_weight(cpu_possible_mask));265goto out_unlock;266}267268while (!cpumask_empty(tmp))269if (cpumask_subset(tmp, candidate_mask))270/* Found a range where we can insert the new cpu(s) */271break;272else273cpumask_shift_left(tmp, tmp, nthreads);274275if (cpumask_empty(tmp)) {276printk(KERN_ERR "Unable to find space in cpu_present_mask for"277" processor %s with %d thread(s)\n", np->name,278nthreads);279goto out_unlock;280}281282for_each_cpu(cpu, tmp) {283BUG_ON(cpu_present(cpu));284set_cpu_present(cpu, true);285set_hard_smp_processor_id(cpu, *intserv++);286}287err = 0;288out_unlock:289cpu_maps_update_done();290free_cpumask_var(candidate_mask);291free_cpumask_var(tmp);292return err;293}294295/*296* Update the present map for a cpu node which is going away, and set297* the hard id in the paca(s) to -1 to be consistent with boot time298* convention for non-present cpus.299*/300static void pseries_remove_processor(struct device_node *np)301{302unsigned int cpu;303int len, nthreads, i;304const u32 *intserv;305306intserv = of_get_property(np, "ibm,ppc-interrupt-server#s", &len);307if (!intserv)308return;309310nthreads = len / sizeof(u32);311312cpu_maps_update_begin();313for (i = 0; i < nthreads; i++) {314for_each_present_cpu(cpu) {315if (get_hard_smp_processor_id(cpu) != intserv[i])316continue;317BUG_ON(cpu_online(cpu));318set_cpu_present(cpu, false);319set_hard_smp_processor_id(cpu, -1);320break;321}322if (cpu >= nr_cpu_ids)323printk(KERN_WARNING "Could not find cpu to remove "324"with physical id 0x%x\n", intserv[i]);325}326cpu_maps_update_done();327}328329static int pseries_smp_notifier(struct notifier_block *nb,330unsigned long action, void *node)331{332int err = NOTIFY_OK;333334switch (action) {335case PSERIES_RECONFIG_ADD:336if (pseries_add_processor(node))337err = NOTIFY_BAD;338break;339case PSERIES_RECONFIG_REMOVE:340pseries_remove_processor(node);341break;342default:343err = NOTIFY_DONE;344break;345}346return err;347}348349static struct notifier_block pseries_smp_nb = {350.notifier_call = pseries_smp_notifier,351};352353#define MAX_CEDE_LATENCY_LEVELS 4354#define CEDE_LATENCY_PARAM_LENGTH 10355#define CEDE_LATENCY_PARAM_MAX_LENGTH \356(MAX_CEDE_LATENCY_LEVELS * CEDE_LATENCY_PARAM_LENGTH * sizeof(char))357#define CEDE_LATENCY_TOKEN 45358359static char cede_parameters[CEDE_LATENCY_PARAM_MAX_LENGTH];360361static int parse_cede_parameters(void)362{363memset(cede_parameters, 0, CEDE_LATENCY_PARAM_MAX_LENGTH);364return rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1,365NULL,366CEDE_LATENCY_TOKEN,367__pa(cede_parameters),368CEDE_LATENCY_PARAM_MAX_LENGTH);369}370371static int __init pseries_cpu_hotplug_init(void)372{373struct device_node *np;374const char *typep;375int cpu;376int qcss_tok;377378for_each_node_by_name(np, "interrupt-controller") {379typep = of_get_property(np, "compatible", NULL);380if (strstr(typep, "open-pic")) {381of_node_put(np);382383printk(KERN_INFO "CPU Hotplug not supported on "384"systems using MPIC\n");385return 0;386}387}388389rtas_stop_self_args.token = rtas_token("stop-self");390qcss_tok = rtas_token("query-cpu-stopped-state");391392if (rtas_stop_self_args.token == RTAS_UNKNOWN_SERVICE ||393qcss_tok == RTAS_UNKNOWN_SERVICE) {394printk(KERN_INFO "CPU Hotplug not supported by firmware "395"- disabling.\n");396return 0;397}398399ppc_md.cpu_die = pseries_mach_cpu_die;400smp_ops->cpu_disable = pseries_cpu_disable;401smp_ops->cpu_die = pseries_cpu_die;402403/* Processors can be added/removed only on LPAR */404if (firmware_has_feature(FW_FEATURE_LPAR)) {405pSeries_reconfig_notifier_register(&pseries_smp_nb);406cpu_maps_update_begin();407if (cede_offline_enabled && parse_cede_parameters() == 0) {408default_offline_state = CPU_STATE_INACTIVE;409for_each_online_cpu(cpu)410set_default_offline_state(cpu);411}412cpu_maps_update_done();413}414415return 0;416}417arch_initcall(pseries_cpu_hotplug_init);418419420