Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 1 | /* |
| 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. |
| 5 | * |
| 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. |
| 10 | * |
| 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. |
| 14 | * |
| 15 | * Copyright SUSE Linux Products GmbH 2009 |
| 16 | * |
| 17 | * Authors: Alexander Graf <agraf@suse.de> |
| 18 | */ |
| 19 | |
| 20 | #include <asm/ppc_asm.h> |
| 21 | #include <asm/kvm_asm.h> |
| 22 | #include <asm/reg.h> |
Paul Mackerras | 177339d | 2011-07-23 17:41:11 +1000 | [diff] [blame] | 23 | #include <asm/mmu.h> |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 24 | #include <asm/page.h> |
| 25 | #include <asm/asm-offsets.h> |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 26 | |
| 27 | #ifdef CONFIG_PPC_BOOK3S_64 |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 28 | #include <asm/exception-64s.h> |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 29 | #endif |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 30 | |
| 31 | /***************************************************************************** |
| 32 | * * |
| 33 | * Real Mode handlers that need to be in low physical memory * |
| 34 | * * |
| 35 | ****************************************************************************/ |
| 36 | |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 37 | #if defined(CONFIG_PPC_BOOK3S_64) |
| 38 | |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 39 | #define FUNC(name) GLUE(.,name) |
| 40 | |
Paul Mackerras | 177339d | 2011-07-23 17:41:11 +1000 | [diff] [blame] | 41 | .globl kvmppc_skip_interrupt |
Paul Mackerras | b01c8b5 | 2011-06-29 00:18:26 +0000 | [diff] [blame] | 42 | kvmppc_skip_interrupt: |
| 43 | /* |
| 44 | * Here all GPRs are unchanged from when the interrupt happened |
| 45 | * except for r13, which is saved in SPRG_SCRATCH0. |
| 46 | */ |
| 47 | mfspr r13, SPRN_SRR0 |
| 48 | addi r13, r13, 4 |
| 49 | mtspr SPRN_SRR0, r13 |
| 50 | GET_SCRATCH0(r13) |
| 51 | rfid |
| 52 | b . |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 53 | |
Paul Mackerras | 177339d | 2011-07-23 17:41:11 +1000 | [diff] [blame] | 54 | .globl kvmppc_skip_Hinterrupt |
Paul Mackerras | b01c8b5 | 2011-06-29 00:18:26 +0000 | [diff] [blame] | 55 | kvmppc_skip_Hinterrupt: |
| 56 | /* |
| 57 | * Here all GPRs are unchanged from when the interrupt happened |
| 58 | * except for r13, which is saved in SPRG_SCRATCH0. |
| 59 | */ |
| 60 | mfspr r13, SPRN_HSRR0 |
| 61 | addi r13, r13, 4 |
| 62 | mtspr SPRN_HSRR0, r13 |
| 63 | GET_SCRATCH0(r13) |
| 64 | hrfid |
| 65 | b . |
| 66 | |
| 67 | #elif defined(CONFIG_PPC_BOOK3S_32) |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 68 | |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 69 | #define FUNC(name) name |
| 70 | |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 71 | .macro INTERRUPT_TRAMPOLINE intno |
| 72 | |
| 73 | .global kvmppc_trampoline_\intno |
| 74 | kvmppc_trampoline_\intno: |
| 75 | |
Paul Mackerras | b01c8b5 | 2011-06-29 00:18:26 +0000 | [diff] [blame] | 76 | mtspr SPRN_SPRG_SCRATCH0, r13 /* Save r13 */ |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 77 | |
| 78 | /* |
| 79 | * First thing to do is to find out if we're coming |
| 80 | * from a KVM guest or a Linux process. |
| 81 | * |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 82 | * To distinguish, we check a magic byte in the PACA/current |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 83 | */ |
Paul Mackerras | b01c8b5 | 2011-06-29 00:18:26 +0000 | [diff] [blame] | 84 | mfspr r13, SPRN_SPRG_THREAD |
| 85 | lwz r13, THREAD_KVM_SVCPU(r13) |
| 86 | /* PPC32 can have a NULL pointer - let's check for that */ |
| 87 | mtspr SPRN_SPRG_SCRATCH1, r12 /* Save r12 */ |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 88 | mfcr r12 |
Paul Mackerras | b01c8b5 | 2011-06-29 00:18:26 +0000 | [diff] [blame] | 89 | cmpwi r13, 0 |
| 90 | bne 1f |
| 91 | 2: mtcr r12 |
| 92 | mfspr r12, SPRN_SPRG_SCRATCH1 |
| 93 | mfspr r13, SPRN_SPRG_SCRATCH0 /* r13 = original r13 */ |
| 94 | b kvmppc_resume_\intno /* Get back original handler */ |
| 95 | |
| 96 | 1: tophys(r13, r13) |
Paul Mackerras | 3c42bf8 | 2011-06-29 00:20:58 +0000 | [diff] [blame] | 97 | stw r12, HSTATE_SCRATCH1(r13) |
Paul Mackerras | b01c8b5 | 2011-06-29 00:18:26 +0000 | [diff] [blame] | 98 | mfspr r12, SPRN_SPRG_SCRATCH1 |
Paul Mackerras | 3c42bf8 | 2011-06-29 00:20:58 +0000 | [diff] [blame] | 99 | stw r12, HSTATE_SCRATCH0(r13) |
| 100 | lbz r12, HSTATE_IN_GUEST(r13) |
Alexander Graf | b4433a7 | 2010-01-08 02:58:04 +0100 | [diff] [blame] | 101 | cmpwi r12, KVM_GUEST_MODE_NONE |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 102 | bne ..kvmppc_handler_hasmagic_\intno |
| 103 | /* No KVM guest? Then jump back to the Linux handler! */ |
Paul Mackerras | 3c42bf8 | 2011-06-29 00:20:58 +0000 | [diff] [blame] | 104 | lwz r12, HSTATE_SCRATCH1(r13) |
Paul Mackerras | b01c8b5 | 2011-06-29 00:18:26 +0000 | [diff] [blame] | 105 | b 2b |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 106 | |
| 107 | /* Now we know we're handling a KVM guest */ |
| 108 | ..kvmppc_handler_hasmagic_\intno: |
Alexander Graf | b4433a7 | 2010-01-08 02:58:04 +0100 | [diff] [blame] | 109 | |
| 110 | /* Should we just skip the faulting instruction? */ |
| 111 | cmpwi r12, KVM_GUEST_MODE_SKIP |
| 112 | beq kvmppc_handler_skip_ins |
| 113 | |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 114 | /* Let's store which interrupt we're handling */ |
| 115 | li r12, \intno |
| 116 | |
| 117 | /* Jump into the SLB exit code that goes to the highmem handler */ |
| 118 | b kvmppc_handler_trampoline_exit |
| 119 | |
| 120 | .endm |
| 121 | |
| 122 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_SYSTEM_RESET |
| 123 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_MACHINE_CHECK |
| 124 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_DATA_STORAGE |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 125 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_INST_STORAGE |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 126 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_EXTERNAL |
| 127 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_ALIGNMENT |
| 128 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_PROGRAM |
| 129 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_FP_UNAVAIL |
| 130 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_DECREMENTER |
| 131 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_SYSCALL |
| 132 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_TRACE |
| 133 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_PERFMON |
| 134 | INTERRUPT_TRAMPOLINE BOOK3S_INTERRUPT_ALTIVEC |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 135 | |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 136 | /* |
Alexander Graf | b4433a7 | 2010-01-08 02:58:04 +0100 | [diff] [blame] | 137 | * Bring us back to the faulting code, but skip the |
| 138 | * faulting instruction. |
| 139 | * |
| 140 | * This is a generic exit path from the interrupt |
| 141 | * trampolines above. |
| 142 | * |
| 143 | * Input Registers: |
| 144 | * |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 145 | * R12 = free |
| 146 | * R13 = Shadow VCPU (PACA) |
Paul Mackerras | 3c42bf8 | 2011-06-29 00:20:58 +0000 | [diff] [blame] | 147 | * HSTATE.SCRATCH0 = guest R12 |
| 148 | * HSTATE.SCRATCH1 = guest CR |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 149 | * SPRG_SCRATCH0 = guest R13 |
Alexander Graf | b4433a7 | 2010-01-08 02:58:04 +0100 | [diff] [blame] | 150 | * |
| 151 | */ |
| 152 | kvmppc_handler_skip_ins: |
| 153 | |
| 154 | /* Patch the IP to the next instruction */ |
| 155 | mfsrr0 r12 |
| 156 | addi r12, r12, 4 |
| 157 | mtsrr0 r12 |
| 158 | |
| 159 | /* Clean up all state */ |
Paul Mackerras | 3c42bf8 | 2011-06-29 00:20:58 +0000 | [diff] [blame] | 160 | lwz r12, HSTATE_SCRATCH1(r13) |
Alexander Graf | b4433a7 | 2010-01-08 02:58:04 +0100 | [diff] [blame] | 161 | mtcr r12 |
Paul Mackerras | 3c42bf8 | 2011-06-29 00:20:58 +0000 | [diff] [blame] | 162 | PPC_LL r12, HSTATE_SCRATCH0(r13) |
Paul Mackerras | 673b189 | 2011-04-05 13:59:58 +1000 | [diff] [blame] | 163 | GET_SCRATCH0(r13) |
Alexander Graf | b4433a7 | 2010-01-08 02:58:04 +0100 | [diff] [blame] | 164 | |
| 165 | /* And get back into the code */ |
| 166 | RFI |
Paul Mackerras | b01c8b5 | 2011-06-29 00:18:26 +0000 | [diff] [blame] | 167 | #endif |
Alexander Graf | b4433a7 | 2010-01-08 02:58:04 +0100 | [diff] [blame] | 168 | |
| 169 | /* |
Paul Mackerras | 0214394 | 2011-07-23 17:41:44 +1000 | [diff] [blame] | 170 | * Call kvmppc_handler_trampoline_enter in real mode |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 171 | * |
Paul Mackerras | 0214394 | 2011-07-23 17:41:44 +1000 | [diff] [blame] | 172 | * On entry, r4 contains the guest shadow MSR |
Alexander Graf | bd2be68 | 2012-08-13 01:04:19 +0200 | [diff] [blame^] | 173 | * MSR.EE has to be 0 when calling this function |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 174 | */ |
Paul Mackerras | 0214394 | 2011-07-23 17:41:44 +1000 | [diff] [blame] | 175 | _GLOBAL(kvmppc_entry_trampoline) |
| 176 | mfmsr r5 |
| 177 | LOAD_REG_ADDR(r7, kvmppc_handler_trampoline_enter) |
| 178 | toreal(r7) |
Alexander Graf | c862125 | 2009-10-30 05:47:09 +0000 | [diff] [blame] | 179 | |
Paul Mackerras | 0214394 | 2011-07-23 17:41:44 +1000 | [diff] [blame] | 180 | li r6, MSR_IR | MSR_DR |
Alexander Graf | bd2be68 | 2012-08-13 01:04:19 +0200 | [diff] [blame^] | 181 | andc r6, r5, r6 /* Clear DR and IR in MSR value */ |
| 182 | /* |
| 183 | * Set EE in HOST_MSR so that it's enabled when we get into our |
| 184 | * C exit handler function |
| 185 | */ |
| 186 | ori r5, r5, MSR_EE |
| 187 | mtsrr0 r7 |
Alexander Graf | 7e57cba | 2010-01-08 02:58:03 +0100 | [diff] [blame] | 188 | mtsrr1 r6 |
Alexander Graf | 021ec9c | 2010-01-08 02:58:06 +0100 | [diff] [blame] | 189 | RFI |
| 190 | |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 191 | #if defined(CONFIG_PPC_BOOK3S_32) |
| 192 | #define STACK_LR INT_FRAME_SIZE+4 |
Alexander Graf | 0e67790 | 2010-07-29 15:04:20 +0200 | [diff] [blame] | 193 | |
| 194 | /* load_up_xxx have to run with MSR_DR=0 on Book3S_32 */ |
| 195 | #define MSR_EXT_START \ |
| 196 | PPC_STL r20, _NIP(r1); \ |
| 197 | mfmsr r20; \ |
| 198 | LOAD_REG_IMMEDIATE(r3, MSR_DR|MSR_EE); \ |
| 199 | andc r3,r20,r3; /* Disable DR,EE */ \ |
| 200 | mtmsr r3; \ |
| 201 | sync |
| 202 | |
| 203 | #define MSR_EXT_END \ |
| 204 | mtmsr r20; /* Enable DR,EE */ \ |
| 205 | sync; \ |
| 206 | PPC_LL r20, _NIP(r1) |
| 207 | |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 208 | #elif defined(CONFIG_PPC_BOOK3S_64) |
| 209 | #define STACK_LR _LINK |
Alexander Graf | 0e67790 | 2010-07-29 15:04:20 +0200 | [diff] [blame] | 210 | #define MSR_EXT_START |
| 211 | #define MSR_EXT_END |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 212 | #endif |
| 213 | |
Alexander Graf | d5e5281 | 2010-01-15 14:49:10 +0100 | [diff] [blame] | 214 | /* |
| 215 | * Activate current's external feature (FPU/Altivec/VSX) |
| 216 | */ |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 217 | #define define_load_up(what) \ |
| 218 | \ |
| 219 | _GLOBAL(kvmppc_load_up_ ## what); \ |
| 220 | PPC_STLU r1, -INT_FRAME_SIZE(r1); \ |
| 221 | mflr r3; \ |
| 222 | PPC_STL r3, STACK_LR(r1); \ |
Alexander Graf | 0e67790 | 2010-07-29 15:04:20 +0200 | [diff] [blame] | 223 | MSR_EXT_START; \ |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 224 | \ |
| 225 | bl FUNC(load_up_ ## what); \ |
| 226 | \ |
Alexander Graf | 0e67790 | 2010-07-29 15:04:20 +0200 | [diff] [blame] | 227 | MSR_EXT_END; \ |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 228 | PPC_LL r3, STACK_LR(r1); \ |
Alexander Graf | 8c3a4e0 | 2010-04-16 00:11:46 +0200 | [diff] [blame] | 229 | mtlr r3; \ |
| 230 | addi r1, r1, INT_FRAME_SIZE; \ |
Alexander Graf | d5e5281 | 2010-01-15 14:49:10 +0100 | [diff] [blame] | 231 | blr |
| 232 | |
| 233 | define_load_up(fpu) |
| 234 | #ifdef CONFIG_ALTIVEC |
| 235 | define_load_up(altivec) |
| 236 | #endif |
| 237 | #ifdef CONFIG_VSX |
| 238 | define_load_up(vsx) |
| 239 | #endif |
| 240 | |
Alexander Graf | 53e5b8b | 2010-04-16 00:11:48 +0200 | [diff] [blame] | 241 | #include "book3s_segment.S" |