2 * pseries CPU Hotplug infrastructure.
4 * Split out from arch/powerpc/platforms/pseries/setup.c
5 * arch/powerpc/kernel/rtas.c, and arch/powerpc/platforms/pseries/smp.c
7 * Peter Bergner, IBM March 2001.
8 * Copyright (C) 2001 IBM.
9 * Dave Engebretsen, Peter Bergner, and
10 * Mike Corrigan {engebret|bergner|mikec}@us.ibm.com
11 * Plus various changes from other IBM teams...
13 * Copyright (C) 2006 Michael Ellerman, IBM Corporation
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.
21 #define pr_fmt(fmt) "pseries-hotplug-cpu: " fmt
23 #include <linux/kernel.h>
24 #include <linux/interrupt.h>
25 #include <linux/delay.h>
26 #include <linux/sched.h> /* for idle_task_exit */
27 #include <linux/sched/hotplug.h>
28 #include <linux/cpu.h>
30 #include <linux/slab.h>
33 #include <asm/firmware.h>
34 #include <asm/machdep.h>
35 #include <asm/vdso_datapage.h>
38 #include <asm/plpar_wrappers.h>
41 #include "offline_states.h"
43 /* This version can't take the spinlock, because it never returns */
44 static int rtas_stop_self_token
= RTAS_UNKNOWN_SERVICE
;
46 static DEFINE_PER_CPU(enum cpu_state_vals
, preferred_offline_state
) =
48 static DEFINE_PER_CPU(enum cpu_state_vals
, current_state
) = CPU_STATE_OFFLINE
;
50 static enum cpu_state_vals default_offline_state
= CPU_STATE_OFFLINE
;
52 static bool cede_offline_enabled __read_mostly
= true;
55 * Enable/disable cede_offline when available.
57 static int __init
setup_cede_offline(char *str
)
59 return (kstrtobool(str
, &cede_offline_enabled
) == 0);
62 __setup("cede_offline=", setup_cede_offline
);
64 enum cpu_state_vals
get_cpu_current_state(int cpu
)
66 return per_cpu(current_state
, cpu
);
69 void set_cpu_current_state(int cpu
, enum cpu_state_vals state
)
71 per_cpu(current_state
, cpu
) = state
;
74 enum cpu_state_vals
get_preferred_offline_state(int cpu
)
76 return per_cpu(preferred_offline_state
, cpu
);
79 void set_preferred_offline_state(int cpu
, enum cpu_state_vals state
)
81 per_cpu(preferred_offline_state
, cpu
) = state
;
84 void set_default_offline_state(int cpu
)
86 per_cpu(preferred_offline_state
, cpu
) = default_offline_state
;
89 static void rtas_stop_self(void)
91 static struct rtas_args args
;
95 BUG_ON(rtas_stop_self_token
== RTAS_UNKNOWN_SERVICE
);
97 printk("cpu %u (hwid %u) Ready to die...\n",
98 smp_processor_id(), hard_smp_processor_id());
100 rtas_call_unlocked(&args
, rtas_stop_self_token
, 0, 1, NULL
);
102 panic("Alas, I survived.\n");
105 static void pseries_mach_cpu_die(void)
107 unsigned int cpu
= smp_processor_id();
108 unsigned int hwcpu
= hard_smp_processor_id();
109 u8 cede_latency_hint
= 0;
118 if (get_preferred_offline_state(cpu
) == CPU_STATE_INACTIVE
) {
119 set_cpu_current_state(cpu
, CPU_STATE_INACTIVE
);
120 if (ppc_md
.suspend_disable_cpu
)
121 ppc_md
.suspend_disable_cpu();
123 cede_latency_hint
= 2;
125 get_lppaca()->idle
= 1;
126 if (!lppaca_shared_proc(get_lppaca()))
127 get_lppaca()->donate_dedicated_cpu
= 1;
129 while (get_preferred_offline_state(cpu
) == CPU_STATE_INACTIVE
) {
130 while (!prep_irq_for_idle()) {
135 extended_cede_processor(cede_latency_hint
);
140 if (!lppaca_shared_proc(get_lppaca()))
141 get_lppaca()->donate_dedicated_cpu
= 0;
142 get_lppaca()->idle
= 0;
144 if (get_preferred_offline_state(cpu
) == CPU_STATE_ONLINE
) {
145 unregister_slb_shadow(hwcpu
);
149 * Call to start_secondary_resume() will not return.
150 * Kernel stack will be reset and start_secondary()
151 * will be called to continue the online operation.
153 start_secondary_resume();
157 /* Requested state is CPU_STATE_OFFLINE at this point */
158 WARN_ON(get_preferred_offline_state(cpu
) != CPU_STATE_OFFLINE
);
160 set_cpu_current_state(cpu
, CPU_STATE_OFFLINE
);
161 unregister_slb_shadow(hwcpu
);
164 /* Should never get here... */
169 static int pseries_cpu_disable(void)
171 int cpu
= smp_processor_id();
173 set_cpu_online(cpu
, false);
174 vdso_data
->processorCount
--;
176 /*fix boot_cpuid here*/
177 if (cpu
== boot_cpuid
)
178 boot_cpuid
= cpumask_any(cpu_online_mask
);
180 /* FIXME: abstract this to not be platform specific later on */
182 xive_smp_disable_cpu();
184 xics_migrate_irqs_away();
189 * pseries_cpu_die: Wait for the cpu to die.
190 * @cpu: logical processor id of the CPU whose death we're awaiting.
192 * This function is called from the context of the thread which is performing
193 * the cpu-offline. Here we wait for long enough to allow the cpu in question
194 * to self-destroy so that the cpu-offline thread can send the CPU_DEAD
197 * OTOH, pseries_mach_cpu_die() is called by the @cpu when it wants to
200 static void pseries_cpu_die(unsigned int cpu
)
204 unsigned int pcpu
= get_hard_smp_processor_id(cpu
);
206 if (get_preferred_offline_state(cpu
) == CPU_STATE_INACTIVE
) {
208 for (tries
= 0; tries
< 5000; tries
++) {
209 if (get_cpu_current_state(cpu
) == CPU_STATE_INACTIVE
) {
215 } else if (get_preferred_offline_state(cpu
) == CPU_STATE_OFFLINE
) {
217 for (tries
= 0; tries
< 25; tries
++) {
218 cpu_status
= smp_query_cpu_stopped(pcpu
);
219 if (cpu_status
== QCSS_STOPPED
||
220 cpu_status
== QCSS_HARDWARE_ERROR
)
226 if (cpu_status
!= 0) {
227 printk("Querying DEAD? cpu %i (%i) shows %i\n",
228 cpu
, pcpu
, cpu_status
);
231 /* Isolation and deallocation are definitely done by
232 * drslot_chrp_cpu. If they were not they would be
233 * done here. Change isolate state to Isolate and
234 * change allocation-state to Unusable.
236 paca
[cpu
].cpu_start
= 0;
240 * Update cpu_present_mask and paca(s) for a new cpu node. The wrinkle
241 * here is that a cpu device node may represent up to two logical cpus
242 * in the SMT case. We must honor the assumption in other code that
243 * the logical ids for sibling SMT threads x and y are adjacent, such
244 * that x^1 == y and y^1 == x.
246 static int pseries_add_processor(struct device_node
*np
)
249 cpumask_var_t candidate_mask
, tmp
;
250 int err
= -ENOSPC
, len
, nthreads
, i
;
251 const __be32
*intserv
;
253 intserv
= of_get_property(np
, "ibm,ppc-interrupt-server#s", &len
);
257 zalloc_cpumask_var(&candidate_mask
, GFP_KERNEL
);
258 zalloc_cpumask_var(&tmp
, GFP_KERNEL
);
260 nthreads
= len
/ sizeof(u32
);
261 for (i
= 0; i
< nthreads
; i
++)
262 cpumask_set_cpu(i
, tmp
);
264 cpu_maps_update_begin();
266 BUG_ON(!cpumask_subset(cpu_present_mask
, cpu_possible_mask
));
268 /* Get a bitmap of unoccupied slots. */
269 cpumask_xor(candidate_mask
, cpu_possible_mask
, cpu_present_mask
);
270 if (cpumask_empty(candidate_mask
)) {
271 /* If we get here, it most likely means that NR_CPUS is
272 * less than the partition's max processors setting.
274 printk(KERN_ERR
"Cannot add cpu %pOF; this system configuration"
275 " supports %d logical cpus.\n", np
,
276 num_possible_cpus());
280 while (!cpumask_empty(tmp
))
281 if (cpumask_subset(tmp
, candidate_mask
))
282 /* Found a range where we can insert the new cpu(s) */
285 cpumask_shift_left(tmp
, tmp
, nthreads
);
287 if (cpumask_empty(tmp
)) {
288 printk(KERN_ERR
"Unable to find space in cpu_present_mask for"
289 " processor %s with %d thread(s)\n", np
->name
,
294 for_each_cpu(cpu
, tmp
) {
295 BUG_ON(cpu_present(cpu
));
296 set_cpu_present(cpu
, true);
297 set_hard_smp_processor_id(cpu
, be32_to_cpu(*intserv
++));
301 cpu_maps_update_done();
302 free_cpumask_var(candidate_mask
);
303 free_cpumask_var(tmp
);
308 * Update the present map for a cpu node which is going away, and set
309 * the hard id in the paca(s) to -1 to be consistent with boot time
310 * convention for non-present cpus.
312 static void pseries_remove_processor(struct device_node
*np
)
315 int len
, nthreads
, i
;
316 const __be32
*intserv
;
319 intserv
= of_get_property(np
, "ibm,ppc-interrupt-server#s", &len
);
323 nthreads
= len
/ sizeof(u32
);
325 cpu_maps_update_begin();
326 for (i
= 0; i
< nthreads
; i
++) {
327 thread
= be32_to_cpu(intserv
[i
]);
328 for_each_present_cpu(cpu
) {
329 if (get_hard_smp_processor_id(cpu
) != thread
)
331 BUG_ON(cpu_online(cpu
));
332 set_cpu_present(cpu
, false);
333 set_hard_smp_processor_id(cpu
, -1);
336 if (cpu
>= nr_cpu_ids
)
337 printk(KERN_WARNING
"Could not find cpu to remove "
338 "with physical id 0x%x\n", thread
);
340 cpu_maps_update_done();
343 static int dlpar_online_cpu(struct device_node
*dn
)
347 int len
, nthreads
, i
;
348 const __be32
*intserv
;
351 intserv
= of_get_property(dn
, "ibm,ppc-interrupt-server#s", &len
);
355 nthreads
= len
/ sizeof(u32
);
357 cpu_maps_update_begin();
358 for (i
= 0; i
< nthreads
; i
++) {
359 thread
= be32_to_cpu(intserv
[i
]);
360 for_each_present_cpu(cpu
) {
361 if (get_hard_smp_processor_id(cpu
) != thread
)
363 BUG_ON(get_cpu_current_state(cpu
)
364 != CPU_STATE_OFFLINE
);
365 cpu_maps_update_done();
366 rc
= device_online(get_cpu_device(cpu
));
369 cpu_maps_update_begin();
373 if (cpu
== num_possible_cpus())
374 printk(KERN_WARNING
"Could not find cpu to online "
375 "with physical id 0x%x\n", thread
);
377 cpu_maps_update_done();
384 static bool dlpar_cpu_exists(struct device_node
*parent
, u32 drc_index
)
386 struct device_node
*child
= NULL
;
391 /* Assume cpu doesn't exist */
394 for_each_child_of_node(parent
, child
) {
395 rc
= of_property_read_u32(child
, "ibm,my-drc-index",
400 if (my_drc_index
== drc_index
) {
410 static bool valid_cpu_drc_index(struct device_node
*parent
, u32 drc_index
)
419 rc
= of_property_read_u32_index(parent
, "ibm,drc-indexes",
424 if (drc
== drc_index
)
431 static ssize_t
dlpar_cpu_add(u32 drc_index
)
433 struct device_node
*dn
, *parent
;
436 pr_debug("Attempting to add CPU, drc index: %x\n", drc_index
);
438 parent
= of_find_node_by_path("/cpus");
440 pr_warn("Failed to find CPU root node \"/cpus\"\n");
444 if (dlpar_cpu_exists(parent
, drc_index
)) {
446 pr_warn("CPU with drc index %x already exists\n", drc_index
);
450 if (!valid_cpu_drc_index(parent
, drc_index
)) {
452 pr_warn("Cannot find CPU (drc index %x) to add.\n", drc_index
);
456 rc
= dlpar_acquire_drc(drc_index
);
458 pr_warn("Failed to acquire DRC, rc: %d, drc index: %x\n",
464 dn
= dlpar_configure_connector(cpu_to_be32(drc_index
), parent
);
466 pr_warn("Failed call to configure-connector, drc index: %x\n",
468 dlpar_release_drc(drc_index
);
473 rc
= dlpar_attach_node(dn
, parent
);
475 /* Regardless we are done with parent now */
480 pr_warn("Failed to attach node %s, rc: %d, drc index: %x\n",
481 dn
->name
, rc
, drc_index
);
483 rc
= dlpar_release_drc(drc_index
);
485 dlpar_free_cc_nodes(dn
);
490 rc
= dlpar_online_cpu(dn
);
493 pr_warn("Failed to online cpu %s, rc: %d, drc index: %x\n",
494 dn
->name
, rc
, drc_index
);
496 rc
= dlpar_detach_node(dn
);
498 dlpar_release_drc(drc_index
);
503 pr_debug("Successfully added CPU %s, drc index: %x\n", dn
->name
,
508 static int dlpar_offline_cpu(struct device_node
*dn
)
512 int len
, nthreads
, i
;
513 const __be32
*intserv
;
516 intserv
= of_get_property(dn
, "ibm,ppc-interrupt-server#s", &len
);
520 nthreads
= len
/ sizeof(u32
);
522 cpu_maps_update_begin();
523 for (i
= 0; i
< nthreads
; i
++) {
524 thread
= be32_to_cpu(intserv
[i
]);
525 for_each_present_cpu(cpu
) {
526 if (get_hard_smp_processor_id(cpu
) != thread
)
529 if (get_cpu_current_state(cpu
) == CPU_STATE_OFFLINE
)
532 if (get_cpu_current_state(cpu
) == CPU_STATE_ONLINE
) {
533 set_preferred_offline_state(cpu
,
535 cpu_maps_update_done();
536 rc
= device_offline(get_cpu_device(cpu
));
539 cpu_maps_update_begin();
545 * The cpu is in CPU_STATE_INACTIVE.
546 * Upgrade it's state to CPU_STATE_OFFLINE.
548 set_preferred_offline_state(cpu
, CPU_STATE_OFFLINE
);
549 BUG_ON(plpar_hcall_norets(H_PROD
, thread
)
554 if (cpu
== num_possible_cpus())
555 printk(KERN_WARNING
"Could not find cpu to offline with physical id 0x%x\n", thread
);
557 cpu_maps_update_done();
564 static ssize_t
dlpar_cpu_remove(struct device_node
*dn
, u32 drc_index
)
568 pr_debug("Attempting to remove CPU %s, drc index: %x\n",
569 dn
->name
, drc_index
);
571 rc
= dlpar_offline_cpu(dn
);
573 pr_warn("Failed to offline CPU %s, rc: %d\n", dn
->name
, rc
);
577 rc
= dlpar_release_drc(drc_index
);
579 pr_warn("Failed to release drc (%x) for CPU %s, rc: %d\n",
580 drc_index
, dn
->name
, rc
);
581 dlpar_online_cpu(dn
);
585 rc
= dlpar_detach_node(dn
);
589 pr_warn("Failed to detach CPU %s, rc: %d", dn
->name
, rc
);
591 rc
= dlpar_acquire_drc(drc_index
);
593 dlpar_online_cpu(dn
);
598 pr_debug("Successfully removed CPU, drc index: %x\n", drc_index
);
602 static struct device_node
*cpu_drc_index_to_dn(u32 drc_index
)
604 struct device_node
*dn
;
608 for_each_node_by_type(dn
, "cpu") {
609 rc
= of_property_read_u32(dn
, "ibm,my-drc-index", &my_index
);
613 if (my_index
== drc_index
)
620 static int dlpar_cpu_remove_by_index(u32 drc_index
)
622 struct device_node
*dn
;
625 dn
= cpu_drc_index_to_dn(drc_index
);
627 pr_warn("Cannot find CPU (drc index %x) to remove\n",
632 rc
= dlpar_cpu_remove(dn
, drc_index
);
637 static int find_dlpar_cpus_to_remove(u32
*cpu_drcs
, int cpus_to_remove
)
639 struct device_node
*dn
;
643 /* We want to find cpus_to_remove + 1 CPUs to ensure we do not
644 * remove the last CPU.
646 for_each_node_by_type(dn
, "cpu") {
649 if (cpus_found
> cpus_to_remove
) {
654 /* Note that cpus_found is always 1 ahead of the index
655 * into the cpu_drcs array, so we use cpus_found - 1
657 rc
= of_property_read_u32(dn
, "ibm,my-drc-index",
658 &cpu_drcs
[cpus_found
- 1]);
660 pr_warn("Error occurred getting drc-index for %s\n",
667 if (cpus_found
< cpus_to_remove
) {
668 pr_warn("Failed to find enough CPUs (%d of %d) to remove\n",
669 cpus_found
, cpus_to_remove
);
670 } else if (cpus_found
== cpus_to_remove
) {
671 pr_warn("Cannot remove all CPUs\n");
677 static int dlpar_cpu_remove_by_count(u32 cpus_to_remove
)
681 int cpus_removed
= 0;
684 pr_debug("Attempting to hot-remove %d CPUs\n", cpus_to_remove
);
686 cpu_drcs
= kcalloc(cpus_to_remove
, sizeof(*cpu_drcs
), GFP_KERNEL
);
690 cpus_found
= find_dlpar_cpus_to_remove(cpu_drcs
, cpus_to_remove
);
691 if (cpus_found
<= cpus_to_remove
) {
696 for (i
= 0; i
< cpus_to_remove
; i
++) {
697 rc
= dlpar_cpu_remove_by_index(cpu_drcs
[i
]);
704 if (cpus_removed
!= cpus_to_remove
) {
705 pr_warn("CPU hot-remove failed, adding back removed CPUs\n");
707 for (i
= 0; i
< cpus_removed
; i
++)
708 dlpar_cpu_add(cpu_drcs
[i
]);
719 static int find_dlpar_cpus_to_add(u32
*cpu_drcs
, u32 cpus_to_add
)
721 struct device_node
*parent
;
725 parent
= of_find_node_by_path("/cpus");
727 pr_warn("Could not find CPU root node in device tree\n");
732 /* Search the ibm,drc-indexes array for possible CPU drcs to
733 * add. Note that the format of the ibm,drc-indexes array is
734 * the number of entries in the array followed by the array
735 * of drc values so we start looking at index = 1.
738 while (cpus_found
< cpus_to_add
) {
741 rc
= of_property_read_u32_index(parent
, "ibm,drc-indexes",
746 if (dlpar_cpu_exists(parent
, drc
))
749 cpu_drcs
[cpus_found
++] = drc
;
756 static int dlpar_cpu_add_by_count(u32 cpus_to_add
)
763 pr_debug("Attempting to hot-add %d CPUs\n", cpus_to_add
);
765 cpu_drcs
= kcalloc(cpus_to_add
, sizeof(*cpu_drcs
), GFP_KERNEL
);
769 cpus_found
= find_dlpar_cpus_to_add(cpu_drcs
, cpus_to_add
);
770 if (cpus_found
< cpus_to_add
) {
771 pr_warn("Failed to find enough CPUs (%d of %d) to add\n",
772 cpus_found
, cpus_to_add
);
777 for (i
= 0; i
< cpus_to_add
; i
++) {
778 rc
= dlpar_cpu_add(cpu_drcs
[i
]);
785 if (cpus_added
< cpus_to_add
) {
786 pr_warn("CPU hot-add failed, removing any added CPUs\n");
788 for (i
= 0; i
< cpus_added
; i
++)
789 dlpar_cpu_remove_by_index(cpu_drcs
[i
]);
800 int dlpar_cpu(struct pseries_hp_errorlog
*hp_elog
)
802 u32 count
, drc_index
;
805 count
= hp_elog
->_drc_u
.drc_count
;
806 drc_index
= hp_elog
->_drc_u
.drc_index
;
808 lock_device_hotplug();
810 switch (hp_elog
->action
) {
811 case PSERIES_HP_ELOG_ACTION_REMOVE
:
812 if (hp_elog
->id_type
== PSERIES_HP_ELOG_ID_DRC_COUNT
)
813 rc
= dlpar_cpu_remove_by_count(count
);
814 else if (hp_elog
->id_type
== PSERIES_HP_ELOG_ID_DRC_INDEX
)
815 rc
= dlpar_cpu_remove_by_index(drc_index
);
819 case PSERIES_HP_ELOG_ACTION_ADD
:
820 if (hp_elog
->id_type
== PSERIES_HP_ELOG_ID_DRC_COUNT
)
821 rc
= dlpar_cpu_add_by_count(count
);
822 else if (hp_elog
->id_type
== PSERIES_HP_ELOG_ID_DRC_INDEX
)
823 rc
= dlpar_cpu_add(drc_index
);
828 pr_err("Invalid action (%d) specified\n", hp_elog
->action
);
833 unlock_device_hotplug();
837 #ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
839 static ssize_t
dlpar_cpu_probe(const char *buf
, size_t count
)
844 rc
= kstrtou32(buf
, 0, &drc_index
);
848 rc
= dlpar_cpu_add(drc_index
);
850 return rc
? rc
: count
;
853 static ssize_t
dlpar_cpu_release(const char *buf
, size_t count
)
855 struct device_node
*dn
;
859 dn
= of_find_node_by_path(buf
);
863 rc
= of_property_read_u32(dn
, "ibm,my-drc-index", &drc_index
);
869 rc
= dlpar_cpu_remove(dn
, drc_index
);
872 return rc
? rc
: count
;
875 #endif /* CONFIG_ARCH_CPU_PROBE_RELEASE */
877 static int pseries_smp_notifier(struct notifier_block
*nb
,
878 unsigned long action
, void *data
)
880 struct of_reconfig_data
*rd
= data
;
884 case OF_RECONFIG_ATTACH_NODE
:
885 err
= pseries_add_processor(rd
->dn
);
887 case OF_RECONFIG_DETACH_NODE
:
888 pseries_remove_processor(rd
->dn
);
891 return notifier_from_errno(err
);
894 static struct notifier_block pseries_smp_nb
= {
895 .notifier_call
= pseries_smp_notifier
,
898 #define MAX_CEDE_LATENCY_LEVELS 4
899 #define CEDE_LATENCY_PARAM_LENGTH 10
900 #define CEDE_LATENCY_PARAM_MAX_LENGTH \
901 (MAX_CEDE_LATENCY_LEVELS * CEDE_LATENCY_PARAM_LENGTH * sizeof(char))
902 #define CEDE_LATENCY_TOKEN 45
904 static char cede_parameters
[CEDE_LATENCY_PARAM_MAX_LENGTH
];
906 static int parse_cede_parameters(void)
908 memset(cede_parameters
, 0, CEDE_LATENCY_PARAM_MAX_LENGTH
);
909 return rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1,
912 __pa(cede_parameters
),
913 CEDE_LATENCY_PARAM_MAX_LENGTH
);
916 static int __init
pseries_cpu_hotplug_init(void)
921 #ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
922 ppc_md
.cpu_probe
= dlpar_cpu_probe
;
923 ppc_md
.cpu_release
= dlpar_cpu_release
;
924 #endif /* CONFIG_ARCH_CPU_PROBE_RELEASE */
926 rtas_stop_self_token
= rtas_token("stop-self");
927 qcss_tok
= rtas_token("query-cpu-stopped-state");
929 if (rtas_stop_self_token
== RTAS_UNKNOWN_SERVICE
||
930 qcss_tok
== RTAS_UNKNOWN_SERVICE
) {
931 printk(KERN_INFO
"CPU Hotplug not supported by firmware "
936 ppc_md
.cpu_die
= pseries_mach_cpu_die
;
937 smp_ops
->cpu_disable
= pseries_cpu_disable
;
938 smp_ops
->cpu_die
= pseries_cpu_die
;
940 /* Processors can be added/removed only on LPAR */
941 if (firmware_has_feature(FW_FEATURE_LPAR
)) {
942 of_reconfig_notifier_register(&pseries_smp_nb
);
943 cpu_maps_update_begin();
944 if (cede_offline_enabled
&& parse_cede_parameters() == 0) {
945 default_offline_state
= CPU_STATE_INACTIVE
;
946 for_each_online_cpu(cpu
)
947 set_default_offline_state(cpu
);
949 cpu_maps_update_done();
954 machine_arch_initcall(pseries
, pseries_cpu_hotplug_init
);