1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright 2006 Michael Ellerman, IBM Corporation
6 #include <linux/kernel.h>
7 #include <linux/interrupt.h>
9 #include <asm/machdep.h>
11 #include <asm/firmware.h>
12 #include <asm/kexec.h>
16 #include <asm/plpar_wrappers.h>
20 void pseries_kexec_cpu_down(int crash_shutdown
, int secondary
)
23 * Don't risk a hypervisor call if we're crashing
24 * XXX: Why? The hypervisor is not crashing. It might be better
25 * to at least attempt unregister to avoid the hypervisor stepping
28 if (firmware_has_feature(FW_FEATURE_SPLPAR
) && !crash_shutdown
) {
30 int cpu
= smp_processor_id();
31 int hwcpu
= hard_smp_processor_id();
33 if (get_lppaca()->dtl_enable_mask
) {
34 ret
= unregister_dtl(hwcpu
);
36 pr_err("WARNING: DTL deregistration for cpu "
37 "%d (hw %d) failed with %d\n",
42 ret
= unregister_slb_shadow(hwcpu
);
44 pr_err("WARNING: SLB shadow buffer deregistration "
45 "for cpu %d (hw %d) failed with %d\n",
49 ret
= unregister_vpa(hwcpu
);
51 pr_err("WARNING: VPA deregistration for cpu %d "
52 "(hw %d) failed with %d\n", cpu
, hwcpu
, ret
);
62 xics_kexec_teardown_cpu(secondary
);