~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/powerpc/platforms/pseries/kexec.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-or-later
  2 /*
  3  *  Copyright 2006 Michael Ellerman, IBM Corporation
  4  */
  5 
  6 #include <linux/kernel.h>
  7 #include <linux/interrupt.h>
  8 
  9 #include <asm/setup.h>
 10 #include <asm/page.h>
 11 #include <asm/firmware.h>
 12 #include <asm/kexec.h>
 13 #include <asm/xics.h>
 14 #include <asm/xive.h>
 15 #include <asm/smp.h>
 16 #include <asm/plpar_wrappers.h>
 17 
 18 #include "pseries.h"
 19 
 20 void pseries_kexec_cpu_down(int crash_shutdown, int secondary)
 21 {
 22         /*
 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
 26          * on our memory.
 27          */
 28         if (firmware_has_feature(FW_FEATURE_SPLPAR) && !crash_shutdown) {
 29                 int ret;
 30                 int cpu = smp_processor_id();
 31                 int hwcpu = hard_smp_processor_id();
 32 
 33                 if (get_lppaca()->dtl_enable_mask) {
 34                         ret = unregister_dtl(hwcpu);
 35                         if (ret) {
 36                                 pr_err("WARNING: DTL deregistration for cpu "
 37                                        "%d (hw %d) failed with %d\n",
 38                                        cpu, hwcpu, ret);
 39                         }
 40                 }
 41 
 42                 ret = unregister_slb_shadow(hwcpu);
 43                 if (ret) {
 44                         pr_err("WARNING: SLB shadow buffer deregistration "
 45                                "for cpu %d (hw %d) failed with %d\n",
 46                                cpu, hwcpu, ret);
 47                 }
 48 
 49                 ret = unregister_vpa(hwcpu);
 50                 if (ret) {
 51                         pr_err("WARNING: VPA deregistration for cpu %d "
 52                                "(hw %d) failed with %d\n", cpu, hwcpu, ret);
 53                 }
 54         }
 55 
 56         if (xive_enabled()) {
 57                 xive_teardown_cpu();
 58 
 59                 if (!secondary)
 60                         xive_shutdown();
 61         } else
 62                 xics_kexec_teardown_cpu(secondary);
 63 }
 64 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php