Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +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 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com> |
| 16 | * |
| 17 | * Derived from book3s_interrupts.S, which is: |
| 18 | * Copyright SUSE Linux Products GmbH 2009 |
| 19 | * |
| 20 | * Authors: Alexander Graf <agraf@suse.de> |
| 21 | */ |
| 22 | |
| 23 | #include <asm/ppc_asm.h> |
| 24 | #include <asm/kvm_asm.h> |
| 25 | #include <asm/reg.h> |
| 26 | #include <asm/page.h> |
| 27 | #include <asm/asm-offsets.h> |
| 28 | #include <asm/exception-64s.h> |
| 29 | #include <asm/ppc-opcode.h> |
| 30 | |
| 31 | /***************************************************************************** |
| 32 | * * |
| 33 | * Guest entry / exit code that is in kernel module memory (vmalloc) * |
| 34 | * * |
| 35 | ****************************************************************************/ |
| 36 | |
| 37 | /* Registers: |
Paul Mackerras | e0b7ec0 | 2014-01-08 21:25:20 +1100 | [diff] [blame] | 38 | * none |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 39 | */ |
| 40 | _GLOBAL(__kvmppc_vcore_entry) |
| 41 | |
| 42 | /* Write correct stack frame */ |
| 43 | mflr r0 |
| 44 | std r0,PPC_LR_STKOFF(r1) |
| 45 | |
| 46 | /* Save host state to the stack */ |
| 47 | stdu r1, -SWITCH_FRAME_SIZE(r1) |
| 48 | |
Paul Mackerras | a5ddea0 | 2012-02-03 00:53:21 +0000 | [diff] [blame] | 49 | /* Save non-volatile registers (r14 - r31) and CR */ |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 50 | SAVE_NVGPRS(r1) |
Paul Mackerras | a5ddea0 | 2012-02-03 00:53:21 +0000 | [diff] [blame] | 51 | mfcr r3 |
| 52 | std r3, _CCR(r1) |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 53 | |
| 54 | /* Save host DSCR */ |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 55 | BEGIN_FTR_SECTION |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 56 | mfspr r3, SPRN_DSCR |
| 57 | std r3, HSTATE_DSCR(r13) |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 58 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206) |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 59 | |
Michael Neuling | eee7ff9 | 2014-01-08 21:25:19 +1100 | [diff] [blame] | 60 | BEGIN_FTR_SECTION |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 61 | /* Save host DABR */ |
| 62 | mfspr r3, SPRN_DABR |
| 63 | std r3, HSTATE_DABR(r13) |
Michael Neuling | eee7ff9 | 2014-01-08 21:25:19 +1100 | [diff] [blame] | 64 | END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S) |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 65 | |
| 66 | /* Hard-disable interrupts */ |
| 67 | mfmsr r10 |
| 68 | std r10, HSTATE_HOST_MSR(r13) |
| 69 | rldicl r10,r10,48,1 |
| 70 | rotldi r10,r10,16 |
| 71 | mtmsrd r10,1 |
| 72 | |
Paul Mackerras | 8943633 | 2012-03-02 01:38:23 +0000 | [diff] [blame] | 73 | /* Save host PMU registers */ |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 74 | li r3, 1 |
| 75 | sldi r3, r3, 31 /* MMCR0_FC (freeze counters) bit */ |
| 76 | mfspr r7, SPRN_MMCR0 /* save MMCR0 */ |
| 77 | mtspr SPRN_MMCR0, r3 /* freeze all counters, disable interrupts */ |
Paul Mackerras | 8943633 | 2012-03-02 01:38:23 +0000 | [diff] [blame] | 78 | mfspr r6, SPRN_MMCRA |
| 79 | BEGIN_FTR_SECTION |
| 80 | /* On P7, clear MMCRA in order to disable SDAR updates */ |
| 81 | li r5, 0 |
| 82 | mtspr SPRN_MMCRA, r5 |
| 83 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206) |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 84 | isync |
| 85 | ld r3, PACALPPACAPTR(r13) /* is the host using the PMU? */ |
| 86 | lbz r5, LPPACA_PMCINUSE(r3) |
| 87 | cmpwi r5, 0 |
| 88 | beq 31f /* skip if not */ |
| 89 | mfspr r5, SPRN_MMCR1 |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 90 | std r7, HSTATE_MMCR(r13) |
| 91 | std r5, HSTATE_MMCR + 8(r13) |
| 92 | std r6, HSTATE_MMCR + 16(r13) |
| 93 | mfspr r3, SPRN_PMC1 |
| 94 | mfspr r5, SPRN_PMC2 |
| 95 | mfspr r6, SPRN_PMC3 |
| 96 | mfspr r7, SPRN_PMC4 |
| 97 | mfspr r8, SPRN_PMC5 |
| 98 | mfspr r9, SPRN_PMC6 |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 99 | BEGIN_FTR_SECTION |
| 100 | mfspr r10, SPRN_PMC7 |
| 101 | mfspr r11, SPRN_PMC8 |
| 102 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201) |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 103 | stw r3, HSTATE_PMC(r13) |
| 104 | stw r5, HSTATE_PMC + 4(r13) |
| 105 | stw r6, HSTATE_PMC + 8(r13) |
| 106 | stw r7, HSTATE_PMC + 12(r13) |
| 107 | stw r8, HSTATE_PMC + 16(r13) |
| 108 | stw r9, HSTATE_PMC + 20(r13) |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 109 | BEGIN_FTR_SECTION |
| 110 | stw r10, HSTATE_PMC + 24(r13) |
| 111 | stw r11, HSTATE_PMC + 28(r13) |
| 112 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201) |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 113 | 31: |
| 114 | |
| 115 | /* |
| 116 | * Put whatever is in the decrementer into the |
| 117 | * hypervisor decrementer. |
| 118 | */ |
| 119 | mfspr r8,SPRN_DEC |
| 120 | mftb r7 |
| 121 | mtspr SPRN_HDEC,r8 |
| 122 | extsw r8,r8 |
| 123 | add r8,r8,r7 |
| 124 | std r8,HSTATE_DECEXP(r13) |
| 125 | |
Paul Mackerras | 3cc33d5 | 2013-04-15 20:28:01 +0000 | [diff] [blame] | 126 | #ifdef CONFIG_SMP |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 127 | /* |
| 128 | * On PPC970, if the guest vcpu has an external interrupt pending, |
| 129 | * send ourselves an IPI so as to interrupt the guest once it |
| 130 | * enables interrupts. (It must have interrupts disabled, |
| 131 | * otherwise we would already have delivered the interrupt.) |
Paul Mackerras | 3cc33d5 | 2013-04-15 20:28:01 +0000 | [diff] [blame] | 132 | * |
| 133 | * XXX If this is a UP build, smp_send_reschedule is not available, |
| 134 | * so the interrupt will be delayed until the next time the vcpu |
| 135 | * enters the guest with interrupts enabled. |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 136 | */ |
| 137 | BEGIN_FTR_SECTION |
Paul Mackerras | e0b7ec0 | 2014-01-08 21:25:20 +1100 | [diff] [blame] | 138 | ld r4, HSTATE_KVM_VCPU(r13) |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 139 | ld r0, VCPU_PENDING_EXC(r4) |
| 140 | li r7, (1 << BOOK3S_IRQPRIO_EXTERNAL) |
| 141 | oris r7, r7, (1 << BOOK3S_IRQPRIO_EXTERNAL_LEVEL)@h |
| 142 | and. r0, r0, r7 |
| 143 | beq 32f |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 144 | lhz r3, PACAPACAINDEX(r13) |
| 145 | bl smp_send_reschedule |
| 146 | nop |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 147 | 32: |
| 148 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201) |
Paul Mackerras | 3cc33d5 | 2013-04-15 20:28:01 +0000 | [diff] [blame] | 149 | #endif /* CONFIG_SMP */ |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 150 | |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 151 | /* Jump to partition switch code */ |
| 152 | bl .kvmppc_hv_entry_trampoline |
| 153 | nop |
| 154 | |
| 155 | /* |
| 156 | * We return here in virtual mode after the guest exits |
| 157 | * with something that we can't handle in real mode. |
| 158 | * Interrupts are enabled again at this point. |
| 159 | */ |
| 160 | |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 161 | /* |
| 162 | * Register usage at this point: |
| 163 | * |
| 164 | * R1 = host R1 |
| 165 | * R2 = host R2 |
| 166 | * R12 = exit handler id |
| 167 | * R13 = PACA |
| 168 | */ |
| 169 | |
Paul Mackerras | a5ddea0 | 2012-02-03 00:53:21 +0000 | [diff] [blame] | 170 | /* Restore non-volatile host registers (r14 - r31) and CR */ |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 171 | REST_NVGPRS(r1) |
Paul Mackerras | a5ddea0 | 2012-02-03 00:53:21 +0000 | [diff] [blame] | 172 | ld r4, _CCR(r1) |
| 173 | mtcr r4 |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 174 | |
| 175 | addi r1, r1, SWITCH_FRAME_SIZE |
| 176 | ld r0, PPC_LR_STKOFF(r1) |
| 177 | mtlr r0 |
| 178 | blr |