Michael Ellerman | dce623e | 2007-02-08 18:33:55 +1100 | [diff] [blame] | 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 | |
Benjamin Herrenschmidt | 0b05ac6 | 2011-04-04 13:46:58 +1000 | [diff] [blame] | 10 | #include <linux/kernel.h> |
| 11 | #include <linux/interrupt.h> |
| 12 | |
Michael Ellerman | dce623e | 2007-02-08 18:33:55 +1100 | [diff] [blame] | 13 | #include <asm/machdep.h> |
| 14 | #include <asm/page.h> |
| 15 | #include <asm/firmware.h> |
| 16 | #include <asm/kexec.h> |
| 17 | #include <asm/mpic.h> |
Benjamin Herrenschmidt | 0b05ac6 | 2011-04-04 13:46:58 +1000 | [diff] [blame] | 18 | #include <asm/xics.h> |
Paul Mackerras | f640712 | 2007-05-10 22:17:18 +1000 | [diff] [blame] | 19 | #include <asm/smp.h> |
Deepthi Dharwar | 212bebb | 2013-08-22 15:23:52 +0530 | [diff] [blame] | 20 | #include <asm/plpar_wrappers.h> |
Michael Ellerman | dce623e | 2007-02-08 18:33:55 +1100 | [diff] [blame] | 21 | |
| 22 | #include "pseries.h" |
Michael Ellerman | dce623e | 2007-02-08 18:33:55 +1100 | [diff] [blame] | 23 | |
| 24 | static void pseries_kexec_cpu_down(int crash_shutdown, int secondary) |
| 25 | { |
| 26 | /* Don't risk a hypervisor call if we're crashing */ |
| 27 | if (firmware_has_feature(FW_FEATURE_SPLPAR) && !crash_shutdown) { |
Anton Blanchard | b130179 | 2011-07-25 01:46:32 +0000 | [diff] [blame] | 28 | int ret; |
Anton Blanchard | 598c823 | 2011-07-25 01:46:34 +0000 | [diff] [blame] | 29 | int cpu = smp_processor_id(); |
| 30 | int hwcpu = hard_smp_processor_id(); |
Anton Blanchard | b130179 | 2011-07-25 01:46:32 +0000 | [diff] [blame] | 31 | |
| 32 | if (get_lppaca()->dtl_enable_mask) { |
Anton Blanchard | 598c823 | 2011-07-25 01:46:34 +0000 | [diff] [blame] | 33 | ret = unregister_dtl(hwcpu); |
Anton Blanchard | b130179 | 2011-07-25 01:46:32 +0000 | [diff] [blame] | 34 | if (ret) { |
| 35 | pr_err("WARNING: DTL deregistration for cpu " |
| 36 | "%d (hw %d) failed with %d\n", |
Anton Blanchard | 598c823 | 2011-07-25 01:46:34 +0000 | [diff] [blame] | 37 | cpu, hwcpu, ret); |
Anton Blanchard | b130179 | 2011-07-25 01:46:32 +0000 | [diff] [blame] | 38 | } |
| 39 | } |
Michael Ellerman | dce623e | 2007-02-08 18:33:55 +1100 | [diff] [blame] | 40 | |
Anton Blanchard | 598c823 | 2011-07-25 01:46:34 +0000 | [diff] [blame] | 41 | ret = unregister_slb_shadow(hwcpu); |
Anton Blanchard | 711ef84 | 2011-07-25 01:46:33 +0000 | [diff] [blame] | 42 | if (ret) { |
| 43 | pr_err("WARNING: SLB shadow buffer deregistration " |
| 44 | "for cpu %d (hw %d) failed with %d\n", |
Anton Blanchard | 598c823 | 2011-07-25 01:46:34 +0000 | [diff] [blame] | 45 | cpu, hwcpu, ret); |
Anton Blanchard | 711ef84 | 2011-07-25 01:46:33 +0000 | [diff] [blame] | 46 | } |
Michael Ellerman | dce623e | 2007-02-08 18:33:55 +1100 | [diff] [blame] | 47 | |
Anton Blanchard | 598c823 | 2011-07-25 01:46:34 +0000 | [diff] [blame] | 48 | ret = unregister_vpa(hwcpu); |
Anton Blanchard | 711ef84 | 2011-07-25 01:46:33 +0000 | [diff] [blame] | 49 | if (ret) { |
| 50 | pr_err("WARNING: VPA deregistration for cpu %d " |
Anton Blanchard | 598c823 | 2011-07-25 01:46:34 +0000 | [diff] [blame] | 51 | "(hw %d) failed with %d\n", cpu, hwcpu, ret); |
Michael Ellerman | dce623e | 2007-02-08 18:33:55 +1100 | [diff] [blame] | 52 | } |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | static void pseries_kexec_cpu_down_mpic(int crash_shutdown, int secondary) |
| 57 | { |
| 58 | pseries_kexec_cpu_down(crash_shutdown, secondary); |
| 59 | mpic_teardown_this_cpu(secondary); |
| 60 | } |
| 61 | |
| 62 | void __init setup_kexec_cpu_down_mpic(void) |
| 63 | { |
| 64 | ppc_md.kexec_cpu_down = pseries_kexec_cpu_down_mpic; |
| 65 | } |
| 66 | |
| 67 | static void pseries_kexec_cpu_down_xics(int crash_shutdown, int secondary) |
| 68 | { |
| 69 | pseries_kexec_cpu_down(crash_shutdown, secondary); |
Nathan Fontenot | c3e8506 | 2008-02-07 07:37:31 +1100 | [diff] [blame] | 70 | xics_kexec_teardown_cpu(secondary); |
Michael Ellerman | dce623e | 2007-02-08 18:33:55 +1100 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | void __init setup_kexec_cpu_down_xics(void) |
| 74 | { |
| 75 | ppc_md.kexec_cpu_down = pseries_kexec_cpu_down_xics; |
| 76 | } |