kexec.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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/mpic.h>
  16. #include <asm/xics.h>
  17. #include <asm/smp.h>
  18. #include "pseries.h"
  19. #include "plpar_wrappers.h"
  20. static void pseries_kexec_cpu_down(int crash_shutdown, int secondary)
  21. {
  22. /* Don't risk a hypervisor call if we're crashing */
  23. if (firmware_has_feature(FW_FEATURE_SPLPAR) && !crash_shutdown) {
  24. int ret;
  25. int cpu = smp_processor_id();
  26. int hwcpu = hard_smp_processor_id();
  27. if (get_lppaca()->dtl_enable_mask) {
  28. ret = unregister_dtl(hwcpu);
  29. if (ret) {
  30. pr_err("WARNING: DTL deregistration for cpu "
  31. "%d (hw %d) failed with %d\n",
  32. cpu, hwcpu, ret);
  33. }
  34. }
  35. ret = unregister_slb_shadow(hwcpu);
  36. if (ret) {
  37. pr_err("WARNING: SLB shadow buffer deregistration "
  38. "for cpu %d (hw %d) failed with %d\n",
  39. cpu, hwcpu, ret);
  40. }
  41. ret = unregister_vpa(hwcpu);
  42. if (ret) {
  43. pr_err("WARNING: VPA deregistration for cpu %d "
  44. "(hw %d) failed with %d\n", cpu, hwcpu, ret);
  45. }
  46. }
  47. }
  48. static void pseries_kexec_cpu_down_mpic(int crash_shutdown, int secondary)
  49. {
  50. pseries_kexec_cpu_down(crash_shutdown, secondary);
  51. mpic_teardown_this_cpu(secondary);
  52. }
  53. void __init setup_kexec_cpu_down_mpic(void)
  54. {
  55. ppc_md.kexec_cpu_down = pseries_kexec_cpu_down_mpic;
  56. }
  57. static void pseries_kexec_cpu_down_xics(int crash_shutdown, int secondary)
  58. {
  59. pseries_kexec_cpu_down(crash_shutdown, secondary);
  60. xics_kexec_teardown_cpu(secondary);
  61. }
  62. void __init setup_kexec_cpu_down_xics(void)
  63. {
  64. ppc_md.kexec_cpu_down = pseries_kexec_cpu_down_xics;
  65. }