2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15 * Copyright SUSE Linux Products GmbH 2009
17 * Authors: Alexander Graf <agraf@suse.de>
20 #include <asm/ppc_asm.h>
21 #include <asm/kvm_asm.h>
25 #include <asm/asm-offsets.h>
27 #ifdef CONFIG_PPC_BOOK3S_64
28 #include <asm/exception-64s.h>
31 /*****************************************************************************
33 * Real Mode handlers that need to be in low physical memory *
35 ****************************************************************************/
37 #if defined(CONFIG_PPC_BOOK3S_64)
39 #ifdef PPC64_ELF_ABI_v2
40 #define FUNC(name) name
42 #define FUNC(name) GLUE(.,name)
45 #elif defined(CONFIG_PPC_BOOK3S_32)
47 #define FUNC(name) name
49 #define RFI_TO_KERNEL RFI
50 #define RFI_TO_GUEST RFI
52 .macro INTERRUPT_TRAMPOLINE intno
54 .global kvmppc_trampoline_\intno
55 kvmppc_trampoline_\intno:
57 mtspr SPRN_SPRG_SCRATCH0, r13 /* Save r13 */
60 * First thing to do is to find out if we're coming
61 * from a KVM guest or a Linux process.
63 * To distinguish, we check a magic byte in the PACA/current
65 mfspr r13, SPRN_SPRG_THREAD
66 lwz r13, THREAD_KVM_SVCPU(r13)
67 /* PPC32 can have a NULL pointer - let's check for that */
68 mtspr SPRN_SPRG_SCRATCH1, r12 /* Save r12 */
73 mfspr r12, SPRN_SPRG_SCRATCH1
74 mfspr r13, SPRN_SPRG_SCRATCH0 /* r13 = original r13 */
75 b kvmppc_resume_\intno /* Get back original handler */
78 stw r12, HSTATE_SCRATCH1(r13)
79 mfspr r12, SPRN_SPRG_SCRATCH1
80 stw r12, HSTATE_SCRATCH0(r13)
81 lbz r12, HSTATE_IN_GUEST(r13)
82 cmpwi r12, KVM_GUEST_MODE_NONE
83 bne ..kvmppc_handler_hasmagic_\intno
84 /* No KVM guest? Then jump back to the Linux handler! */
85 lwz r12, HSTATE_SCRATCH1(r13)
88 /* Now we know we're handling a KVM guest */
89 ..kvmppc_handler_hasmagic_\intno:
91 /* Should we just skip the faulting instruction? */
92 cmpwi r12, KVM_GUEST_MODE_SKIP
93 beq kvmppc_handler_skip_ins
95 /* Let's store which interrupt we're handling */
98 /* Jump into the SLB exit code that goes to the highmem handler */
99 b kvmppc_handler_trampoline_exit
103 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_SYSTEM_RESET
104 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_MACHINE_CHECK
105 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_DATA_STORAGE
106 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_INST_STORAGE
107 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_EXTERNAL
108 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_ALIGNMENT
109 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_PROGRAM
110 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_FP_UNAVAIL
111 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_DECREMENTER
112 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_SYSCALL
113 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_TRACE
114 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_PERFMON
115 INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_ALTIVEC
118 * Bring us back to the faulting code, but skip the
119 * faulting instruction.
121 * This is a generic exit path from the interrupt
127 * R13 = Shadow VCPU (PACA)
128 * HSTATE.SCRATCH0 = guest R12
129 * HSTATE.SCRATCH1 = guest CR
130 * SPRG_SCRATCH0 = guest R13
133 kvmppc_handler_skip_ins:
135 /* Patch the IP to the next instruction */
140 /* Clean up all state */
141 lwz r12, HSTATE_SCRATCH1(r13)
143 PPC_LL r12, HSTATE_SCRATCH0(r13)
146 /* And get back into the code */
151 * Call kvmppc_handler_trampoline_enter in real mode
153 * On entry, r4 contains the guest shadow MSR
154 * MSR.EE has to be 0 when calling this function
156 _GLOBAL_TOC(kvmppc_entry_trampoline)
158 LOAD_REG_ADDR(r7, kvmppc_handler_trampoline_enter)
161 li r6, MSR_IR | MSR_DR
162 andc r6, r5, r6 /* Clear DR and IR in MSR value */
164 * Set EE in HOST_MSR so that it's enabled when we get into our
165 * C exit handler function.
172 #include "book3s_segment.S"