kexec.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright 2006 Michael Ellerman, IBM Corporation
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version
  7. * 2 of the License, or (at your option) any later version.
  8. */
  9. #include <linux/kernel.h>
  10. #include <linux/interrupt.h>
  11. #include <asm/machdep.h>
  12. #include <asm/page.h>
  13. #include <asm/firmware.h>
  14. #include <asm/kexec.h>
  15. #include <asm/xics.h>
  16. #include <asm/xive.h>
  17. #include <asm/smp.h>
  18. #include <asm/plpar_wrappers.h>
  19. #include "pseries.h"
  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. if (get_lppaca()->dtl_enable_mask) {
  33. ret = unregister_dtl(hwcpu);
  34. if (ret) {
  35. pr_err("WARNING: DTL deregistration for cpu "
  36. "%d (hw %d) failed with %d\n",
  37. cpu, hwcpu, ret);
  38. }
  39. }
  40. ret = unregister_slb_shadow(hwcpu);
  41. if (ret) {
  42. pr_err("WARNING: SLB shadow buffer deregistration "
  43. "for cpu %d (hw %d) failed with %d\n",
  44. cpu, hwcpu, ret);
  45. }
  46. ret = unregister_vpa(hwcpu);
  47. if (ret) {
  48. pr_err("WARNING: VPA deregistration for cpu %d "
  49. "(hw %d) failed with %d\n", cpu, hwcpu, ret);
  50. }
  51. }
  52. if (xive_enabled()) {
  53. xive_teardown_cpu();
  54. if (!secondary)
  55. xive_shutdown();
  56. } else
  57. xics_kexec_teardown_cpu(secondary);
  58. }