1d9fbd03dSHollis Blanchard /* 2d9fbd03dSHollis Blanchard * This program is free software; you can redistribute it and/or modify 3d9fbd03dSHollis Blanchard * it under the terms of the GNU General Public License, version 2, as 4d9fbd03dSHollis Blanchard * published by the Free Software Foundation. 5d9fbd03dSHollis Blanchard * 6d9fbd03dSHollis Blanchard * This program is distributed in the hope that it will be useful, 7d9fbd03dSHollis Blanchard * but WITHOUT ANY WARRANTY; without even the implied warranty of 8d9fbd03dSHollis Blanchard * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 9d9fbd03dSHollis Blanchard * GNU General Public License for more details. 10d9fbd03dSHollis Blanchard * 11d9fbd03dSHollis Blanchard * You should have received a copy of the GNU General Public License 12d9fbd03dSHollis Blanchard * along with this program; if not, write to the Free Software 13d9fbd03dSHollis Blanchard * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 14d9fbd03dSHollis Blanchard * 15d9fbd03dSHollis Blanchard * Copyright IBM Corp. 2007 164cd35f67SScott Wood * Copyright 2010-2011 Freescale Semiconductor, Inc. 17d9fbd03dSHollis Blanchard * 18d9fbd03dSHollis Blanchard * Authors: Hollis Blanchard <hollisb@us.ibm.com> 19d9fbd03dSHollis Blanchard * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com> 20d30f6e48SScott Wood * Scott Wood <scottwood@freescale.com> 21d30f6e48SScott Wood * Varun Sethi <varun.sethi@freescale.com> 22d9fbd03dSHollis Blanchard */ 23d9fbd03dSHollis Blanchard 24d9fbd03dSHollis Blanchard #include <linux/errno.h> 25d9fbd03dSHollis Blanchard #include <linux/err.h> 26d9fbd03dSHollis Blanchard #include <linux/kvm_host.h> 275a0e3ad6STejun Heo #include <linux/gfp.h> 28d9fbd03dSHollis Blanchard #include <linux/module.h> 29d9fbd03dSHollis Blanchard #include <linux/vmalloc.h> 30d9fbd03dSHollis Blanchard #include <linux/fs.h> 317924bd41SHollis Blanchard 32d9fbd03dSHollis Blanchard #include <asm/cputable.h> 33d9fbd03dSHollis Blanchard #include <asm/uaccess.h> 34d9fbd03dSHollis Blanchard #include <asm/kvm_ppc.h> 35d9fbd03dSHollis Blanchard #include <asm/cacheflush.h> 36d30f6e48SScott Wood #include <asm/dbell.h> 37d30f6e48SScott Wood #include <asm/hw_irq.h> 38d30f6e48SScott Wood #include <asm/irq.h> 39d9fbd03dSHollis Blanchard 40d30f6e48SScott Wood #include "timing.h" 4175f74f0dSHollis Blanchard #include "booke.h" 4297c95059SAlexander Graf #include "trace.h" 43d9fbd03dSHollis Blanchard 44d9fbd03dSHollis Blanchard unsigned long kvmppc_booke_handlers; 45d9fbd03dSHollis Blanchard 46d9fbd03dSHollis Blanchard #define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM 47d9fbd03dSHollis Blanchard #define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU 48d9fbd03dSHollis Blanchard 49d9fbd03dSHollis Blanchard struct kvm_stats_debugfs_item debugfs_entries[] = { 50d9fbd03dSHollis Blanchard { "mmio", VCPU_STAT(mmio_exits) }, 51d9fbd03dSHollis Blanchard { "dcr", VCPU_STAT(dcr_exits) }, 52d9fbd03dSHollis Blanchard { "sig", VCPU_STAT(signal_exits) }, 53d9fbd03dSHollis Blanchard { "itlb_r", VCPU_STAT(itlb_real_miss_exits) }, 54d9fbd03dSHollis Blanchard { "itlb_v", VCPU_STAT(itlb_virt_miss_exits) }, 55d9fbd03dSHollis Blanchard { "dtlb_r", VCPU_STAT(dtlb_real_miss_exits) }, 56d9fbd03dSHollis Blanchard { "dtlb_v", VCPU_STAT(dtlb_virt_miss_exits) }, 57d9fbd03dSHollis Blanchard { "sysc", VCPU_STAT(syscall_exits) }, 58d9fbd03dSHollis Blanchard { "isi", VCPU_STAT(isi_exits) }, 59d9fbd03dSHollis Blanchard { "dsi", VCPU_STAT(dsi_exits) }, 60d9fbd03dSHollis Blanchard { "inst_emu", VCPU_STAT(emulated_inst_exits) }, 61d9fbd03dSHollis Blanchard { "dec", VCPU_STAT(dec_exits) }, 62d9fbd03dSHollis Blanchard { "ext_intr", VCPU_STAT(ext_intr_exits) }, 63d9fbd03dSHollis Blanchard { "halt_wakeup", VCPU_STAT(halt_wakeup) }, 64d30f6e48SScott Wood { "doorbell", VCPU_STAT(dbell_exits) }, 65d30f6e48SScott Wood { "guest doorbell", VCPU_STAT(gdbell_exits) }, 66cf1c5ca4SAlexander Graf { "remote_tlb_flush", VM_STAT(remote_tlb_flush) }, 67d9fbd03dSHollis Blanchard { NULL } 68d9fbd03dSHollis Blanchard }; 69d9fbd03dSHollis Blanchard 70d9fbd03dSHollis Blanchard /* TODO: use vcpu_printf() */ 71d9fbd03dSHollis Blanchard void kvmppc_dump_vcpu(struct kvm_vcpu *vcpu) 72d9fbd03dSHollis Blanchard { 73d9fbd03dSHollis Blanchard int i; 74d9fbd03dSHollis Blanchard 75666e7252SAlexander Graf printk("pc: %08lx msr: %08llx\n", vcpu->arch.pc, vcpu->arch.shared->msr); 765cf8ca22SHollis Blanchard printk("lr: %08lx ctr: %08lx\n", vcpu->arch.lr, vcpu->arch.ctr); 77de7906c3SAlexander Graf printk("srr0: %08llx srr1: %08llx\n", vcpu->arch.shared->srr0, 78de7906c3SAlexander Graf vcpu->arch.shared->srr1); 79d9fbd03dSHollis Blanchard 80d9fbd03dSHollis Blanchard printk("exceptions: %08lx\n", vcpu->arch.pending_exceptions); 81d9fbd03dSHollis Blanchard 82d9fbd03dSHollis Blanchard for (i = 0; i < 32; i += 4) { 835cf8ca22SHollis Blanchard printk("gpr%02d: %08lx %08lx %08lx %08lx\n", i, 848e5b26b5SAlexander Graf kvmppc_get_gpr(vcpu, i), 858e5b26b5SAlexander Graf kvmppc_get_gpr(vcpu, i+1), 868e5b26b5SAlexander Graf kvmppc_get_gpr(vcpu, i+2), 878e5b26b5SAlexander Graf kvmppc_get_gpr(vcpu, i+3)); 88d9fbd03dSHollis Blanchard } 89d9fbd03dSHollis Blanchard } 90d9fbd03dSHollis Blanchard 914cd35f67SScott Wood #ifdef CONFIG_SPE 924cd35f67SScott Wood void kvmppc_vcpu_disable_spe(struct kvm_vcpu *vcpu) 934cd35f67SScott Wood { 944cd35f67SScott Wood preempt_disable(); 954cd35f67SScott Wood enable_kernel_spe(); 964cd35f67SScott Wood kvmppc_save_guest_spe(vcpu); 974cd35f67SScott Wood vcpu->arch.shadow_msr &= ~MSR_SPE; 984cd35f67SScott Wood preempt_enable(); 994cd35f67SScott Wood } 1004cd35f67SScott Wood 1014cd35f67SScott Wood static void kvmppc_vcpu_enable_spe(struct kvm_vcpu *vcpu) 1024cd35f67SScott Wood { 1034cd35f67SScott Wood preempt_disable(); 1044cd35f67SScott Wood enable_kernel_spe(); 1054cd35f67SScott Wood kvmppc_load_guest_spe(vcpu); 1064cd35f67SScott Wood vcpu->arch.shadow_msr |= MSR_SPE; 1074cd35f67SScott Wood preempt_enable(); 1084cd35f67SScott Wood } 1094cd35f67SScott Wood 1104cd35f67SScott Wood static void kvmppc_vcpu_sync_spe(struct kvm_vcpu *vcpu) 1114cd35f67SScott Wood { 1124cd35f67SScott Wood if (vcpu->arch.shared->msr & MSR_SPE) { 1134cd35f67SScott Wood if (!(vcpu->arch.shadow_msr & MSR_SPE)) 1144cd35f67SScott Wood kvmppc_vcpu_enable_spe(vcpu); 1154cd35f67SScott Wood } else if (vcpu->arch.shadow_msr & MSR_SPE) { 1164cd35f67SScott Wood kvmppc_vcpu_disable_spe(vcpu); 1174cd35f67SScott Wood } 1184cd35f67SScott Wood } 1194cd35f67SScott Wood #else 1204cd35f67SScott Wood static void kvmppc_vcpu_sync_spe(struct kvm_vcpu *vcpu) 1214cd35f67SScott Wood { 1224cd35f67SScott Wood } 1234cd35f67SScott Wood #endif 1244cd35f67SScott Wood 125dd9ebf1fSLiu Yu /* 126dd9ebf1fSLiu Yu * Helper function for "full" MSR writes. No need to call this if only 127dd9ebf1fSLiu Yu * EE/CE/ME/DE/RI are changing. 128dd9ebf1fSLiu Yu */ 1294cd35f67SScott Wood void kvmppc_set_msr(struct kvm_vcpu *vcpu, u32 new_msr) 1304cd35f67SScott Wood { 131dd9ebf1fSLiu Yu u32 old_msr = vcpu->arch.shared->msr; 1324cd35f67SScott Wood 133d30f6e48SScott Wood #ifdef CONFIG_KVM_BOOKE_HV 134d30f6e48SScott Wood new_msr |= MSR_GS; 135d30f6e48SScott Wood #endif 136d30f6e48SScott Wood 1374cd35f67SScott Wood vcpu->arch.shared->msr = new_msr; 1384cd35f67SScott Wood 139dd9ebf1fSLiu Yu kvmppc_mmu_msr_notify(vcpu, old_msr); 1404cd35f67SScott Wood kvmppc_vcpu_sync_spe(vcpu); 1414cd35f67SScott Wood } 1424cd35f67SScott Wood 143d4cf3892SHollis Blanchard static void kvmppc_booke_queue_irqprio(struct kvm_vcpu *vcpu, 144d4cf3892SHollis Blanchard unsigned int priority) 1459dd921cfSHollis Blanchard { 1469dd921cfSHollis Blanchard set_bit(priority, &vcpu->arch.pending_exceptions); 1479dd921cfSHollis Blanchard } 1489dd921cfSHollis Blanchard 149daf5e271SLiu Yu static void kvmppc_core_queue_dtlb_miss(struct kvm_vcpu *vcpu, 150daf5e271SLiu Yu ulong dear_flags, ulong esr_flags) 1519dd921cfSHollis Blanchard { 152daf5e271SLiu Yu vcpu->arch.queued_dear = dear_flags; 153daf5e271SLiu Yu vcpu->arch.queued_esr = esr_flags; 154daf5e271SLiu Yu kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DTLB_MISS); 155daf5e271SLiu Yu } 156daf5e271SLiu Yu 157daf5e271SLiu Yu static void kvmppc_core_queue_data_storage(struct kvm_vcpu *vcpu, 158daf5e271SLiu Yu ulong dear_flags, ulong esr_flags) 159daf5e271SLiu Yu { 160daf5e271SLiu Yu vcpu->arch.queued_dear = dear_flags; 161daf5e271SLiu Yu vcpu->arch.queued_esr = esr_flags; 162daf5e271SLiu Yu kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DATA_STORAGE); 163daf5e271SLiu Yu } 164daf5e271SLiu Yu 165daf5e271SLiu Yu static void kvmppc_core_queue_inst_storage(struct kvm_vcpu *vcpu, 166daf5e271SLiu Yu ulong esr_flags) 167daf5e271SLiu Yu { 168daf5e271SLiu Yu vcpu->arch.queued_esr = esr_flags; 169daf5e271SLiu Yu kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_INST_STORAGE); 170daf5e271SLiu Yu } 171daf5e271SLiu Yu 172daf5e271SLiu Yu void kvmppc_core_queue_program(struct kvm_vcpu *vcpu, ulong esr_flags) 173daf5e271SLiu Yu { 174daf5e271SLiu Yu vcpu->arch.queued_esr = esr_flags; 175d4cf3892SHollis Blanchard kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_PROGRAM); 1769dd921cfSHollis Blanchard } 1779dd921cfSHollis Blanchard 1789dd921cfSHollis Blanchard void kvmppc_core_queue_dec(struct kvm_vcpu *vcpu) 1799dd921cfSHollis Blanchard { 180d4cf3892SHollis Blanchard kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DECREMENTER); 1819dd921cfSHollis Blanchard } 1829dd921cfSHollis Blanchard 1839dd921cfSHollis Blanchard int kvmppc_core_pending_dec(struct kvm_vcpu *vcpu) 1849dd921cfSHollis Blanchard { 185d4cf3892SHollis Blanchard return test_bit(BOOKE_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions); 1869dd921cfSHollis Blanchard } 1879dd921cfSHollis Blanchard 1887706664dSAlexander Graf void kvmppc_core_dequeue_dec(struct kvm_vcpu *vcpu) 1897706664dSAlexander Graf { 1907706664dSAlexander Graf clear_bit(BOOKE_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions); 1917706664dSAlexander Graf } 1927706664dSAlexander Graf 1939dd921cfSHollis Blanchard void kvmppc_core_queue_external(struct kvm_vcpu *vcpu, 1949dd921cfSHollis Blanchard struct kvm_interrupt *irq) 1959dd921cfSHollis Blanchard { 196c5335f17SAlexander Graf unsigned int prio = BOOKE_IRQPRIO_EXTERNAL; 197c5335f17SAlexander Graf 198c5335f17SAlexander Graf if (irq->irq == KVM_INTERRUPT_SET_LEVEL) 199c5335f17SAlexander Graf prio = BOOKE_IRQPRIO_EXTERNAL_LEVEL; 200c5335f17SAlexander Graf 201c5335f17SAlexander Graf kvmppc_booke_queue_irqprio(vcpu, prio); 2029dd921cfSHollis Blanchard } 2039dd921cfSHollis Blanchard 2044496f974SAlexander Graf void kvmppc_core_dequeue_external(struct kvm_vcpu *vcpu, 2054496f974SAlexander Graf struct kvm_interrupt *irq) 2064496f974SAlexander Graf { 2074496f974SAlexander Graf clear_bit(BOOKE_IRQPRIO_EXTERNAL, &vcpu->arch.pending_exceptions); 208c5335f17SAlexander Graf clear_bit(BOOKE_IRQPRIO_EXTERNAL_LEVEL, &vcpu->arch.pending_exceptions); 2094496f974SAlexander Graf } 2104496f974SAlexander Graf 211d30f6e48SScott Wood static void set_guest_srr(struct kvm_vcpu *vcpu, unsigned long srr0, u32 srr1) 212d30f6e48SScott Wood { 213d30f6e48SScott Wood #ifdef CONFIG_KVM_BOOKE_HV 214d30f6e48SScott Wood mtspr(SPRN_GSRR0, srr0); 215d30f6e48SScott Wood mtspr(SPRN_GSRR1, srr1); 216d30f6e48SScott Wood #else 217d30f6e48SScott Wood vcpu->arch.shared->srr0 = srr0; 218d30f6e48SScott Wood vcpu->arch.shared->srr1 = srr1; 219d30f6e48SScott Wood #endif 220d30f6e48SScott Wood } 221d30f6e48SScott Wood 222d30f6e48SScott Wood static void set_guest_csrr(struct kvm_vcpu *vcpu, unsigned long srr0, u32 srr1) 223d30f6e48SScott Wood { 224d30f6e48SScott Wood vcpu->arch.csrr0 = srr0; 225d30f6e48SScott Wood vcpu->arch.csrr1 = srr1; 226d30f6e48SScott Wood } 227d30f6e48SScott Wood 228d30f6e48SScott Wood static void set_guest_dsrr(struct kvm_vcpu *vcpu, unsigned long srr0, u32 srr1) 229d30f6e48SScott Wood { 230d30f6e48SScott Wood if (cpu_has_feature(CPU_FTR_DEBUG_LVL_EXC)) { 231d30f6e48SScott Wood vcpu->arch.dsrr0 = srr0; 232d30f6e48SScott Wood vcpu->arch.dsrr1 = srr1; 233d30f6e48SScott Wood } else { 234d30f6e48SScott Wood set_guest_csrr(vcpu, srr0, srr1); 235d30f6e48SScott Wood } 236d30f6e48SScott Wood } 237d30f6e48SScott Wood 238d30f6e48SScott Wood static void set_guest_mcsrr(struct kvm_vcpu *vcpu, unsigned long srr0, u32 srr1) 239d30f6e48SScott Wood { 240d30f6e48SScott Wood vcpu->arch.mcsrr0 = srr0; 241d30f6e48SScott Wood vcpu->arch.mcsrr1 = srr1; 242d30f6e48SScott Wood } 243d30f6e48SScott Wood 244d30f6e48SScott Wood static unsigned long get_guest_dear(struct kvm_vcpu *vcpu) 245d30f6e48SScott Wood { 246d30f6e48SScott Wood #ifdef CONFIG_KVM_BOOKE_HV 247d30f6e48SScott Wood return mfspr(SPRN_GDEAR); 248d30f6e48SScott Wood #else 249d30f6e48SScott Wood return vcpu->arch.shared->dar; 250d30f6e48SScott Wood #endif 251d30f6e48SScott Wood } 252d30f6e48SScott Wood 253d30f6e48SScott Wood static void set_guest_dear(struct kvm_vcpu *vcpu, unsigned long dear) 254d30f6e48SScott Wood { 255d30f6e48SScott Wood #ifdef CONFIG_KVM_BOOKE_HV 256d30f6e48SScott Wood mtspr(SPRN_GDEAR, dear); 257d30f6e48SScott Wood #else 258d30f6e48SScott Wood vcpu->arch.shared->dar = dear; 259d30f6e48SScott Wood #endif 260d30f6e48SScott Wood } 261d30f6e48SScott Wood 262d30f6e48SScott Wood static unsigned long get_guest_esr(struct kvm_vcpu *vcpu) 263d30f6e48SScott Wood { 264d30f6e48SScott Wood #ifdef CONFIG_KVM_BOOKE_HV 265d30f6e48SScott Wood return mfspr(SPRN_GESR); 266d30f6e48SScott Wood #else 267d30f6e48SScott Wood return vcpu->arch.shared->esr; 268d30f6e48SScott Wood #endif 269d30f6e48SScott Wood } 270d30f6e48SScott Wood 271d30f6e48SScott Wood static void set_guest_esr(struct kvm_vcpu *vcpu, u32 esr) 272d30f6e48SScott Wood { 273d30f6e48SScott Wood #ifdef CONFIG_KVM_BOOKE_HV 274d30f6e48SScott Wood mtspr(SPRN_GESR, esr); 275d30f6e48SScott Wood #else 276d30f6e48SScott Wood vcpu->arch.shared->esr = esr; 277d30f6e48SScott Wood #endif 278d30f6e48SScott Wood } 279d30f6e48SScott Wood 280d4cf3892SHollis Blanchard /* Deliver the interrupt of the corresponding priority, if possible. */ 281d4cf3892SHollis Blanchard static int kvmppc_booke_irqprio_deliver(struct kvm_vcpu *vcpu, 282d4cf3892SHollis Blanchard unsigned int priority) 283d9fbd03dSHollis Blanchard { 284d4cf3892SHollis Blanchard int allowed = 0; 28579300f8cSAlexander Graf ulong msr_mask = 0; 286daf5e271SLiu Yu bool update_esr = false, update_dear = false; 2875c6cedf4SAlexander Graf ulong crit_raw = vcpu->arch.shared->critical; 2885c6cedf4SAlexander Graf ulong crit_r1 = kvmppc_get_gpr(vcpu, 1); 2895c6cedf4SAlexander Graf bool crit; 290c5335f17SAlexander Graf bool keep_irq = false; 291d30f6e48SScott Wood enum int_class int_class; 2925c6cedf4SAlexander Graf 2935c6cedf4SAlexander Graf /* Truncate crit indicators in 32 bit mode */ 2945c6cedf4SAlexander Graf if (!(vcpu->arch.shared->msr & MSR_SF)) { 2955c6cedf4SAlexander Graf crit_raw &= 0xffffffff; 2965c6cedf4SAlexander Graf crit_r1 &= 0xffffffff; 2975c6cedf4SAlexander Graf } 2985c6cedf4SAlexander Graf 2995c6cedf4SAlexander Graf /* Critical section when crit == r1 */ 3005c6cedf4SAlexander Graf crit = (crit_raw == crit_r1); 3015c6cedf4SAlexander Graf /* ... and we're in supervisor mode */ 3025c6cedf4SAlexander Graf crit = crit && !(vcpu->arch.shared->msr & MSR_PR); 303d9fbd03dSHollis Blanchard 304c5335f17SAlexander Graf if (priority == BOOKE_IRQPRIO_EXTERNAL_LEVEL) { 305c5335f17SAlexander Graf priority = BOOKE_IRQPRIO_EXTERNAL; 306c5335f17SAlexander Graf keep_irq = true; 307c5335f17SAlexander Graf } 308c5335f17SAlexander Graf 309d4cf3892SHollis Blanchard switch (priority) { 310d4cf3892SHollis Blanchard case BOOKE_IRQPRIO_DTLB_MISS: 311daf5e271SLiu Yu case BOOKE_IRQPRIO_DATA_STORAGE: 312daf5e271SLiu Yu update_dear = true; 313daf5e271SLiu Yu /* fall through */ 314daf5e271SLiu Yu case BOOKE_IRQPRIO_INST_STORAGE: 315daf5e271SLiu Yu case BOOKE_IRQPRIO_PROGRAM: 316daf5e271SLiu Yu update_esr = true; 317daf5e271SLiu Yu /* fall through */ 318d4cf3892SHollis Blanchard case BOOKE_IRQPRIO_ITLB_MISS: 319d4cf3892SHollis Blanchard case BOOKE_IRQPRIO_SYSCALL: 320d4cf3892SHollis Blanchard case BOOKE_IRQPRIO_FP_UNAVAIL: 321bb3a8a17SHollis Blanchard case BOOKE_IRQPRIO_SPE_UNAVAIL: 322bb3a8a17SHollis Blanchard case BOOKE_IRQPRIO_SPE_FP_DATA: 323bb3a8a17SHollis Blanchard case BOOKE_IRQPRIO_SPE_FP_ROUND: 324d4cf3892SHollis Blanchard case BOOKE_IRQPRIO_AP_UNAVAIL: 325d4cf3892SHollis Blanchard case BOOKE_IRQPRIO_ALIGNMENT: 326d4cf3892SHollis Blanchard allowed = 1; 32779300f8cSAlexander Graf msr_mask = MSR_CE | MSR_ME | MSR_DE; 328d30f6e48SScott Wood int_class = INT_CLASS_NONCRIT; 329d9fbd03dSHollis Blanchard break; 330d4cf3892SHollis Blanchard case BOOKE_IRQPRIO_CRITICAL: 3314ab96919SAlexander Graf case BOOKE_IRQPRIO_DBELL_CRIT: 332666e7252SAlexander Graf allowed = vcpu->arch.shared->msr & MSR_CE; 333d30f6e48SScott Wood allowed = allowed && !crit; 33479300f8cSAlexander Graf msr_mask = MSR_ME; 335d30f6e48SScott Wood int_class = INT_CLASS_CRIT; 336d9fbd03dSHollis Blanchard break; 337d4cf3892SHollis Blanchard case BOOKE_IRQPRIO_MACHINE_CHECK: 338666e7252SAlexander Graf allowed = vcpu->arch.shared->msr & MSR_ME; 339d30f6e48SScott Wood allowed = allowed && !crit; 340d30f6e48SScott Wood int_class = INT_CLASS_MC; 341d9fbd03dSHollis Blanchard break; 342d4cf3892SHollis Blanchard case BOOKE_IRQPRIO_DECREMENTER: 343d4cf3892SHollis Blanchard case BOOKE_IRQPRIO_FIT: 344dfd4d47eSScott Wood keep_irq = true; 345dfd4d47eSScott Wood /* fall through */ 346dfd4d47eSScott Wood case BOOKE_IRQPRIO_EXTERNAL: 3474ab96919SAlexander Graf case BOOKE_IRQPRIO_DBELL: 348666e7252SAlexander Graf allowed = vcpu->arch.shared->msr & MSR_EE; 3495c6cedf4SAlexander Graf allowed = allowed && !crit; 35079300f8cSAlexander Graf msr_mask = MSR_CE | MSR_ME | MSR_DE; 351d30f6e48SScott Wood int_class = INT_CLASS_NONCRIT; 352d9fbd03dSHollis Blanchard break; 353d4cf3892SHollis Blanchard case BOOKE_IRQPRIO_DEBUG: 354666e7252SAlexander Graf allowed = vcpu->arch.shared->msr & MSR_DE; 355d30f6e48SScott Wood allowed = allowed && !crit; 35679300f8cSAlexander Graf msr_mask = MSR_ME; 357d30f6e48SScott Wood int_class = INT_CLASS_CRIT; 358d9fbd03dSHollis Blanchard break; 359d9fbd03dSHollis Blanchard } 360d9fbd03dSHollis Blanchard 361d4cf3892SHollis Blanchard if (allowed) { 362d30f6e48SScott Wood switch (int_class) { 363d30f6e48SScott Wood case INT_CLASS_NONCRIT: 364d30f6e48SScott Wood set_guest_srr(vcpu, vcpu->arch.pc, 365d30f6e48SScott Wood vcpu->arch.shared->msr); 366d30f6e48SScott Wood break; 367d30f6e48SScott Wood case INT_CLASS_CRIT: 368d30f6e48SScott Wood set_guest_csrr(vcpu, vcpu->arch.pc, 369d30f6e48SScott Wood vcpu->arch.shared->msr); 370d30f6e48SScott Wood break; 371d30f6e48SScott Wood case INT_CLASS_DBG: 372d30f6e48SScott Wood set_guest_dsrr(vcpu, vcpu->arch.pc, 373d30f6e48SScott Wood vcpu->arch.shared->msr); 374d30f6e48SScott Wood break; 375d30f6e48SScott Wood case INT_CLASS_MC: 376d30f6e48SScott Wood set_guest_mcsrr(vcpu, vcpu->arch.pc, 377d30f6e48SScott Wood vcpu->arch.shared->msr); 378d30f6e48SScott Wood break; 379d30f6e48SScott Wood } 380d30f6e48SScott Wood 381d4cf3892SHollis Blanchard vcpu->arch.pc = vcpu->arch.ivpr | vcpu->arch.ivor[priority]; 382daf5e271SLiu Yu if (update_esr == true) 383d30f6e48SScott Wood set_guest_esr(vcpu, vcpu->arch.queued_esr); 384daf5e271SLiu Yu if (update_dear == true) 385d30f6e48SScott Wood set_guest_dear(vcpu, vcpu->arch.queued_dear); 386666e7252SAlexander Graf kvmppc_set_msr(vcpu, vcpu->arch.shared->msr & msr_mask); 387d4cf3892SHollis Blanchard 388c5335f17SAlexander Graf if (!keep_irq) 389d4cf3892SHollis Blanchard clear_bit(priority, &vcpu->arch.pending_exceptions); 390d4cf3892SHollis Blanchard } 391d4cf3892SHollis Blanchard 392d30f6e48SScott Wood #ifdef CONFIG_KVM_BOOKE_HV 393d30f6e48SScott Wood /* 394d30f6e48SScott Wood * If an interrupt is pending but masked, raise a guest doorbell 395d30f6e48SScott Wood * so that we are notified when the guest enables the relevant 396d30f6e48SScott Wood * MSR bit. 397d30f6e48SScott Wood */ 398d30f6e48SScott Wood if (vcpu->arch.pending_exceptions & BOOKE_IRQMASK_EE) 399d30f6e48SScott Wood kvmppc_set_pending_interrupt(vcpu, INT_CLASS_NONCRIT); 400d30f6e48SScott Wood if (vcpu->arch.pending_exceptions & BOOKE_IRQMASK_CE) 401d30f6e48SScott Wood kvmppc_set_pending_interrupt(vcpu, INT_CLASS_CRIT); 402d30f6e48SScott Wood if (vcpu->arch.pending_exceptions & BOOKE_IRQPRIO_MACHINE_CHECK) 403d30f6e48SScott Wood kvmppc_set_pending_interrupt(vcpu, INT_CLASS_MC); 404d30f6e48SScott Wood #endif 405d30f6e48SScott Wood 406d4cf3892SHollis Blanchard return allowed; 407d9fbd03dSHollis Blanchard } 408d9fbd03dSHollis Blanchard 409dfd4d47eSScott Wood static void update_timer_ints(struct kvm_vcpu *vcpu) 410dfd4d47eSScott Wood { 411dfd4d47eSScott Wood if ((vcpu->arch.tcr & TCR_DIE) && (vcpu->arch.tsr & TSR_DIS)) 412dfd4d47eSScott Wood kvmppc_core_queue_dec(vcpu); 413dfd4d47eSScott Wood else 414dfd4d47eSScott Wood kvmppc_core_dequeue_dec(vcpu); 415dfd4d47eSScott Wood } 416dfd4d47eSScott Wood 417c59a6a3eSScott Wood static void kvmppc_core_check_exceptions(struct kvm_vcpu *vcpu) 418d9fbd03dSHollis Blanchard { 419d9fbd03dSHollis Blanchard unsigned long *pending = &vcpu->arch.pending_exceptions; 420d9fbd03dSHollis Blanchard unsigned int priority; 421d9fbd03dSHollis Blanchard 4229ab80843SHollis Blanchard priority = __ffs(*pending); 4238b3a00fcSAlexander Graf while (priority < BOOKE_IRQPRIO_MAX) { 424d4cf3892SHollis Blanchard if (kvmppc_booke_irqprio_deliver(vcpu, priority)) 425d9fbd03dSHollis Blanchard break; 426d9fbd03dSHollis Blanchard 427d9fbd03dSHollis Blanchard priority = find_next_bit(pending, 428d9fbd03dSHollis Blanchard BITS_PER_BYTE * sizeof(*pending), 429d9fbd03dSHollis Blanchard priority + 1); 430d9fbd03dSHollis Blanchard } 43190bba358SAlexander Graf 43290bba358SAlexander Graf /* Tell the guest about our interrupt status */ 43329ac26efSScott Wood vcpu->arch.shared->int_pending = !!*pending; 434d9fbd03dSHollis Blanchard } 435d9fbd03dSHollis Blanchard 436c59a6a3eSScott Wood /* Check pending exceptions and deliver one, if possible. */ 437a8e4ef84SAlexander Graf int kvmppc_core_prepare_to_enter(struct kvm_vcpu *vcpu) 438c59a6a3eSScott Wood { 439a8e4ef84SAlexander Graf int r = 0; 440c59a6a3eSScott Wood WARN_ON_ONCE(!irqs_disabled()); 441c59a6a3eSScott Wood 442c59a6a3eSScott Wood kvmppc_core_check_exceptions(vcpu); 443c59a6a3eSScott Wood 444c59a6a3eSScott Wood if (vcpu->arch.shared->msr & MSR_WE) { 445c59a6a3eSScott Wood local_irq_enable(); 446c59a6a3eSScott Wood kvm_vcpu_block(vcpu); 447966cd0f3SAlexander Graf clear_bit(KVM_REQ_UNHALT, &vcpu->requests); 448c59a6a3eSScott Wood local_irq_disable(); 449c59a6a3eSScott Wood 450c59a6a3eSScott Wood kvmppc_set_exit_type(vcpu, EMULATED_MTMSRWE_EXITS); 451a8e4ef84SAlexander Graf r = 1; 452c59a6a3eSScott Wood }; 453a8e4ef84SAlexander Graf 454a8e4ef84SAlexander Graf return r; 455a8e4ef84SAlexander Graf } 456a8e4ef84SAlexander Graf 4574ffc6356SAlexander Graf static void kvmppc_check_requests(struct kvm_vcpu *vcpu) 4584ffc6356SAlexander Graf { 4594ffc6356SAlexander Graf if (vcpu->requests) { 4604ffc6356SAlexander Graf if (kvm_check_request(KVM_REQ_PENDING_TIMER, vcpu)) 4614ffc6356SAlexander Graf update_timer_ints(vcpu); 4624ffc6356SAlexander Graf } 4634ffc6356SAlexander Graf } 4644ffc6356SAlexander Graf 465a8e4ef84SAlexander Graf /* 466a8e4ef84SAlexander Graf * Common checks before entering the guest world. Call with interrupts 467a8e4ef84SAlexander Graf * disabled. 468a8e4ef84SAlexander Graf * 469a8e4ef84SAlexander Graf * returns !0 if a signal is pending and check_signal is true 470a8e4ef84SAlexander Graf */ 47103660ba2SAlexander Graf static int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu) 472a8e4ef84SAlexander Graf { 473a8e4ef84SAlexander Graf int r = 0; 474a8e4ef84SAlexander Graf 475a8e4ef84SAlexander Graf WARN_ON_ONCE(!irqs_disabled()); 476a8e4ef84SAlexander Graf while (true) { 477a8e4ef84SAlexander Graf if (need_resched()) { 478a8e4ef84SAlexander Graf local_irq_enable(); 479a8e4ef84SAlexander Graf cond_resched(); 480a8e4ef84SAlexander Graf local_irq_disable(); 481a8e4ef84SAlexander Graf continue; 482a8e4ef84SAlexander Graf } 483a8e4ef84SAlexander Graf 48403660ba2SAlexander Graf if (signal_pending(current)) { 485a8e4ef84SAlexander Graf r = 1; 486a8e4ef84SAlexander Graf break; 487a8e4ef84SAlexander Graf } 488a8e4ef84SAlexander Graf 4894ffc6356SAlexander Graf smp_mb(); 4904ffc6356SAlexander Graf if (vcpu->requests) { 4914ffc6356SAlexander Graf /* Make sure we process requests preemptable */ 4924ffc6356SAlexander Graf local_irq_enable(); 4934ffc6356SAlexander Graf kvmppc_check_requests(vcpu); 4944ffc6356SAlexander Graf local_irq_disable(); 4954ffc6356SAlexander Graf continue; 4964ffc6356SAlexander Graf } 4974ffc6356SAlexander Graf 498a8e4ef84SAlexander Graf if (kvmppc_core_prepare_to_enter(vcpu)) { 499a8e4ef84SAlexander Graf /* interrupts got enabled in between, so we 500a8e4ef84SAlexander Graf are back at square 1 */ 501a8e4ef84SAlexander Graf continue; 502a8e4ef84SAlexander Graf } 503a8e4ef84SAlexander Graf 504*d69c6436SAlexander Graf if (vcpu->mode == EXITING_GUEST_MODE) { 505*d69c6436SAlexander Graf r = 1; 506*d69c6436SAlexander Graf break; 507*d69c6436SAlexander Graf } 508*d69c6436SAlexander Graf 509*d69c6436SAlexander Graf /* Going into guest context! Yay! */ 510*d69c6436SAlexander Graf vcpu->mode = IN_GUEST_MODE; 511*d69c6436SAlexander Graf smp_wmb(); 512*d69c6436SAlexander Graf 513a8e4ef84SAlexander Graf break; 514a8e4ef84SAlexander Graf } 515a8e4ef84SAlexander Graf 516a8e4ef84SAlexander Graf return r; 517c59a6a3eSScott Wood } 518c59a6a3eSScott Wood 519df6909e5SPaul Mackerras int kvmppc_vcpu_run(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu) 520df6909e5SPaul Mackerras { 521df6909e5SPaul Mackerras int ret; 5228fae845fSScott Wood #ifdef CONFIG_PPC_FPU 5238fae845fSScott Wood unsigned int fpscr; 5248fae845fSScott Wood int fpexc_mode; 5258fae845fSScott Wood u64 fpr[32]; 5268fae845fSScott Wood #endif 527df6909e5SPaul Mackerras 528af8f38b3SAlexander Graf if (!vcpu->arch.sane) { 529af8f38b3SAlexander Graf kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR; 530af8f38b3SAlexander Graf return -EINVAL; 531af8f38b3SAlexander Graf } 532af8f38b3SAlexander Graf 533df6909e5SPaul Mackerras local_irq_disable(); 53403660ba2SAlexander Graf if (kvmppc_prepare_to_enter(vcpu)) { 5351d1ef222SScott Wood kvm_run->exit_reason = KVM_EXIT_INTR; 5361d1ef222SScott Wood ret = -EINTR; 5371d1ef222SScott Wood goto out; 5381d1ef222SScott Wood } 5391d1ef222SScott Wood 540df6909e5SPaul Mackerras kvm_guest_enter(); 5418fae845fSScott Wood 5428fae845fSScott Wood #ifdef CONFIG_PPC_FPU 5438fae845fSScott Wood /* Save userspace FPU state in stack */ 5448fae845fSScott Wood enable_kernel_fp(); 5458fae845fSScott Wood memcpy(fpr, current->thread.fpr, sizeof(current->thread.fpr)); 5468fae845fSScott Wood fpscr = current->thread.fpscr.val; 5478fae845fSScott Wood fpexc_mode = current->thread.fpexc_mode; 5488fae845fSScott Wood 5498fae845fSScott Wood /* Restore guest FPU state to thread */ 5508fae845fSScott Wood memcpy(current->thread.fpr, vcpu->arch.fpr, sizeof(vcpu->arch.fpr)); 5518fae845fSScott Wood current->thread.fpscr.val = vcpu->arch.fpscr; 5528fae845fSScott Wood 5538fae845fSScott Wood /* 5548fae845fSScott Wood * Since we can't trap on MSR_FP in GS-mode, we consider the guest 5558fae845fSScott Wood * as always using the FPU. Kernel usage of FP (via 5568fae845fSScott Wood * enable_kernel_fp()) in this thread must not occur while 5578fae845fSScott Wood * vcpu->fpu_active is set. 5588fae845fSScott Wood */ 5598fae845fSScott Wood vcpu->fpu_active = 1; 5608fae845fSScott Wood 5618fae845fSScott Wood kvmppc_load_guest_fp(vcpu); 5628fae845fSScott Wood #endif 5638fae845fSScott Wood 564df6909e5SPaul Mackerras ret = __kvmppc_vcpu_run(kvm_run, vcpu); 5658fae845fSScott Wood 5668fae845fSScott Wood #ifdef CONFIG_PPC_FPU 5678fae845fSScott Wood kvmppc_save_guest_fp(vcpu); 5688fae845fSScott Wood 5698fae845fSScott Wood vcpu->fpu_active = 0; 5708fae845fSScott Wood 5718fae845fSScott Wood /* Save guest FPU state from thread */ 5728fae845fSScott Wood memcpy(vcpu->arch.fpr, current->thread.fpr, sizeof(vcpu->arch.fpr)); 5738fae845fSScott Wood vcpu->arch.fpscr = current->thread.fpscr.val; 5748fae845fSScott Wood 5758fae845fSScott Wood /* Restore userspace FPU state from stack */ 5768fae845fSScott Wood memcpy(current->thread.fpr, fpr, sizeof(current->thread.fpr)); 5778fae845fSScott Wood current->thread.fpscr.val = fpscr; 5788fae845fSScott Wood current->thread.fpexc_mode = fpexc_mode; 5798fae845fSScott Wood #endif 5808fae845fSScott Wood 581df6909e5SPaul Mackerras kvm_guest_exit(); 582df6909e5SPaul Mackerras 5831d1ef222SScott Wood out: 584*d69c6436SAlexander Graf vcpu->mode = OUTSIDE_GUEST_MODE; 585*d69c6436SAlexander Graf smp_wmb(); 5861d1ef222SScott Wood local_irq_enable(); 587df6909e5SPaul Mackerras return ret; 588df6909e5SPaul Mackerras } 589df6909e5SPaul Mackerras 590d30f6e48SScott Wood static int emulation_exit(struct kvm_run *run, struct kvm_vcpu *vcpu) 591d9fbd03dSHollis Blanchard { 592d9fbd03dSHollis Blanchard enum emulation_result er; 593d9fbd03dSHollis Blanchard 594d9fbd03dSHollis Blanchard er = kvmppc_emulate_instruction(run, vcpu); 595d9fbd03dSHollis Blanchard switch (er) { 596d9fbd03dSHollis Blanchard case EMULATE_DONE: 59773e75b41SHollis Blanchard /* don't overwrite subtypes, just account kvm_stats */ 5987b701591SHollis Blanchard kvmppc_account_exit_stat(vcpu, EMULATED_INST_EXITS); 599d9fbd03dSHollis Blanchard /* Future optimization: only reload non-volatiles if 600d9fbd03dSHollis Blanchard * they were actually modified by emulation. */ 601d30f6e48SScott Wood return RESUME_GUEST_NV; 602d30f6e48SScott Wood 603d9fbd03dSHollis Blanchard case EMULATE_DO_DCR: 604d9fbd03dSHollis Blanchard run->exit_reason = KVM_EXIT_DCR; 605d30f6e48SScott Wood return RESUME_HOST; 606d30f6e48SScott Wood 607d9fbd03dSHollis Blanchard case EMULATE_FAIL: 6085cf8ca22SHollis Blanchard printk(KERN_CRIT "%s: emulation at %lx failed (%08x)\n", 609d9fbd03dSHollis Blanchard __func__, vcpu->arch.pc, vcpu->arch.last_inst); 610d9fbd03dSHollis Blanchard /* For debugging, encode the failing instruction and 611d9fbd03dSHollis Blanchard * report it to userspace. */ 612d9fbd03dSHollis Blanchard run->hw.hardware_exit_reason = ~0ULL << 32; 613d9fbd03dSHollis Blanchard run->hw.hardware_exit_reason |= vcpu->arch.last_inst; 614d1ff5499SAlexander Graf kvmppc_core_queue_program(vcpu, ESR_PIL); 615d30f6e48SScott Wood return RESUME_HOST; 616d30f6e48SScott Wood 617d9fbd03dSHollis Blanchard default: 618d9fbd03dSHollis Blanchard BUG(); 619d9fbd03dSHollis Blanchard } 620d30f6e48SScott Wood } 621d30f6e48SScott Wood 6224e642ccbSAlexander Graf static void kvmppc_fill_pt_regs(struct pt_regs *regs) 6234e642ccbSAlexander Graf { 6244e642ccbSAlexander Graf ulong r1, ip, msr, lr; 6254e642ccbSAlexander Graf 6264e642ccbSAlexander Graf asm("mr %0, 1" : "=r"(r1)); 6274e642ccbSAlexander Graf asm("mflr %0" : "=r"(lr)); 6284e642ccbSAlexander Graf asm("mfmsr %0" : "=r"(msr)); 6294e642ccbSAlexander Graf asm("bl 1f; 1: mflr %0" : "=r"(ip)); 6304e642ccbSAlexander Graf 6314e642ccbSAlexander Graf memset(regs, 0, sizeof(*regs)); 6324e642ccbSAlexander Graf regs->gpr[1] = r1; 6334e642ccbSAlexander Graf regs->nip = ip; 6344e642ccbSAlexander Graf regs->msr = msr; 6354e642ccbSAlexander Graf regs->link = lr; 6364e642ccbSAlexander Graf } 6374e642ccbSAlexander Graf 6386328e593SBharat Bhushan /* 6396328e593SBharat Bhushan * For interrupts needed to be handled by host interrupt handlers, 6406328e593SBharat Bhushan * corresponding host handler are called from here in similar way 6416328e593SBharat Bhushan * (but not exact) as they are called from low level handler 6426328e593SBharat Bhushan * (such as from arch/powerpc/kernel/head_fsl_booke.S). 6436328e593SBharat Bhushan */ 6444e642ccbSAlexander Graf static void kvmppc_restart_interrupt(struct kvm_vcpu *vcpu, 6454e642ccbSAlexander Graf unsigned int exit_nr) 6464e642ccbSAlexander Graf { 6474e642ccbSAlexander Graf struct pt_regs regs; 6484e642ccbSAlexander Graf 6494e642ccbSAlexander Graf switch (exit_nr) { 6504e642ccbSAlexander Graf case BOOKE_INTERRUPT_EXTERNAL: 6514e642ccbSAlexander Graf kvmppc_fill_pt_regs(®s); 6524e642ccbSAlexander Graf do_IRQ(®s); 6534e642ccbSAlexander Graf break; 6544e642ccbSAlexander Graf case BOOKE_INTERRUPT_DECREMENTER: 6554e642ccbSAlexander Graf kvmppc_fill_pt_regs(®s); 6564e642ccbSAlexander Graf timer_interrupt(®s); 6574e642ccbSAlexander Graf break; 6584e642ccbSAlexander Graf #if defined(CONFIG_PPC_FSL_BOOK3E) || defined(CONFIG_PPC_BOOK3E_64) 6594e642ccbSAlexander Graf case BOOKE_INTERRUPT_DOORBELL: 6604e642ccbSAlexander Graf kvmppc_fill_pt_regs(®s); 6614e642ccbSAlexander Graf doorbell_exception(®s); 6624e642ccbSAlexander Graf break; 6634e642ccbSAlexander Graf #endif 6644e642ccbSAlexander Graf case BOOKE_INTERRUPT_MACHINE_CHECK: 6654e642ccbSAlexander Graf /* FIXME */ 6664e642ccbSAlexander Graf break; 6677cc1e8eeSAlexander Graf case BOOKE_INTERRUPT_PERFORMANCE_MONITOR: 6687cc1e8eeSAlexander Graf kvmppc_fill_pt_regs(®s); 6697cc1e8eeSAlexander Graf performance_monitor_exception(®s); 6707cc1e8eeSAlexander Graf break; 6716328e593SBharat Bhushan case BOOKE_INTERRUPT_WATCHDOG: 6726328e593SBharat Bhushan kvmppc_fill_pt_regs(®s); 6736328e593SBharat Bhushan #ifdef CONFIG_BOOKE_WDT 6746328e593SBharat Bhushan WatchdogException(®s); 6756328e593SBharat Bhushan #else 6766328e593SBharat Bhushan unknown_exception(®s); 6776328e593SBharat Bhushan #endif 6786328e593SBharat Bhushan break; 6796328e593SBharat Bhushan case BOOKE_INTERRUPT_CRITICAL: 6806328e593SBharat Bhushan unknown_exception(®s); 6816328e593SBharat Bhushan break; 6824e642ccbSAlexander Graf } 6834e642ccbSAlexander Graf } 6844e642ccbSAlexander Graf 685d30f6e48SScott Wood /** 686d30f6e48SScott Wood * kvmppc_handle_exit 687d30f6e48SScott Wood * 688d30f6e48SScott Wood * Return value is in the form (errcode<<2 | RESUME_FLAG_HOST | RESUME_FLAG_NV) 689d30f6e48SScott Wood */ 690d30f6e48SScott Wood int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu, 691d30f6e48SScott Wood unsigned int exit_nr) 692d30f6e48SScott Wood { 693d30f6e48SScott Wood int r = RESUME_HOST; 694d30f6e48SScott Wood 695d30f6e48SScott Wood /* update before a new last_exit_type is rewritten */ 696d30f6e48SScott Wood kvmppc_update_timing_stats(vcpu); 697d30f6e48SScott Wood 6984e642ccbSAlexander Graf /* restart interrupts if they were meant for the host */ 6994e642ccbSAlexander Graf kvmppc_restart_interrupt(vcpu, exit_nr); 700d30f6e48SScott Wood 701d30f6e48SScott Wood local_irq_enable(); 702d30f6e48SScott Wood 70397c95059SAlexander Graf trace_kvm_exit(exit_nr, vcpu); 70497c95059SAlexander Graf 705d30f6e48SScott Wood run->exit_reason = KVM_EXIT_UNKNOWN; 706d30f6e48SScott Wood run->ready_for_interrupt_injection = 1; 707d30f6e48SScott Wood 708d30f6e48SScott Wood switch (exit_nr) { 709d30f6e48SScott Wood case BOOKE_INTERRUPT_MACHINE_CHECK: 710c35c9d84SAlexander Graf printk("MACHINE CHECK: %lx\n", mfspr(SPRN_MCSR)); 711c35c9d84SAlexander Graf kvmppc_dump_vcpu(vcpu); 712c35c9d84SAlexander Graf /* For debugging, send invalid exit reason to user space */ 713c35c9d84SAlexander Graf run->hw.hardware_exit_reason = ~1ULL << 32; 714c35c9d84SAlexander Graf run->hw.hardware_exit_reason |= mfspr(SPRN_MCSR); 715c35c9d84SAlexander Graf r = RESUME_HOST; 716d30f6e48SScott Wood break; 717d30f6e48SScott Wood 718d30f6e48SScott Wood case BOOKE_INTERRUPT_EXTERNAL: 719d30f6e48SScott Wood kvmppc_account_exit(vcpu, EXT_INTR_EXITS); 720d30f6e48SScott Wood r = RESUME_GUEST; 721d30f6e48SScott Wood break; 722d30f6e48SScott Wood 723d30f6e48SScott Wood case BOOKE_INTERRUPT_DECREMENTER: 724d30f6e48SScott Wood kvmppc_account_exit(vcpu, DEC_EXITS); 725d30f6e48SScott Wood r = RESUME_GUEST; 726d30f6e48SScott Wood break; 727d30f6e48SScott Wood 7286328e593SBharat Bhushan case BOOKE_INTERRUPT_WATCHDOG: 7296328e593SBharat Bhushan r = RESUME_GUEST; 7306328e593SBharat Bhushan break; 7316328e593SBharat Bhushan 732d30f6e48SScott Wood case BOOKE_INTERRUPT_DOORBELL: 733d30f6e48SScott Wood kvmppc_account_exit(vcpu, DBELL_EXITS); 734d30f6e48SScott Wood r = RESUME_GUEST; 735d30f6e48SScott Wood break; 736d30f6e48SScott Wood 737d30f6e48SScott Wood case BOOKE_INTERRUPT_GUEST_DBELL_CRIT: 738d30f6e48SScott Wood kvmppc_account_exit(vcpu, GDBELL_EXITS); 739d30f6e48SScott Wood 740d30f6e48SScott Wood /* 741d30f6e48SScott Wood * We are here because there is a pending guest interrupt 742d30f6e48SScott Wood * which could not be delivered as MSR_CE or MSR_ME was not 743d30f6e48SScott Wood * set. Once we break from here we will retry delivery. 744d30f6e48SScott Wood */ 745d30f6e48SScott Wood r = RESUME_GUEST; 746d30f6e48SScott Wood break; 747d30f6e48SScott Wood 748d30f6e48SScott Wood case BOOKE_INTERRUPT_GUEST_DBELL: 749d30f6e48SScott Wood kvmppc_account_exit(vcpu, GDBELL_EXITS); 750d30f6e48SScott Wood 751d30f6e48SScott Wood /* 752d30f6e48SScott Wood * We are here because there is a pending guest interrupt 753d30f6e48SScott Wood * which could not be delivered as MSR_EE was not set. Once 754d30f6e48SScott Wood * we break from here we will retry delivery. 755d30f6e48SScott Wood */ 756d30f6e48SScott Wood r = RESUME_GUEST; 757d30f6e48SScott Wood break; 758d30f6e48SScott Wood 75995f2e921SAlexander Graf case BOOKE_INTERRUPT_PERFORMANCE_MONITOR: 76095f2e921SAlexander Graf r = RESUME_GUEST; 76195f2e921SAlexander Graf break; 76295f2e921SAlexander Graf 763d30f6e48SScott Wood case BOOKE_INTERRUPT_HV_PRIV: 764d30f6e48SScott Wood r = emulation_exit(run, vcpu); 765d30f6e48SScott Wood break; 766d30f6e48SScott Wood 767d30f6e48SScott Wood case BOOKE_INTERRUPT_PROGRAM: 768d30f6e48SScott Wood if (vcpu->arch.shared->msr & (MSR_PR | MSR_GS)) { 7690268597cSAlexander Graf /* 7700268597cSAlexander Graf * Program traps generated by user-level software must 7710268597cSAlexander Graf * be handled by the guest kernel. 7720268597cSAlexander Graf * 7730268597cSAlexander Graf * In GS mode, hypervisor privileged instructions trap 7740268597cSAlexander Graf * on BOOKE_INTERRUPT_HV_PRIV, not here, so these are 7750268597cSAlexander Graf * actual program interrupts, handled by the guest. 7760268597cSAlexander Graf */ 777d30f6e48SScott Wood kvmppc_core_queue_program(vcpu, vcpu->arch.fault_esr); 778d30f6e48SScott Wood r = RESUME_GUEST; 779d30f6e48SScott Wood kvmppc_account_exit(vcpu, USR_PR_INST); 780d30f6e48SScott Wood break; 781d30f6e48SScott Wood } 782d30f6e48SScott Wood 783d30f6e48SScott Wood r = emulation_exit(run, vcpu); 784d9fbd03dSHollis Blanchard break; 785d9fbd03dSHollis Blanchard 786d9fbd03dSHollis Blanchard case BOOKE_INTERRUPT_FP_UNAVAIL: 787d4cf3892SHollis Blanchard kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_FP_UNAVAIL); 7887b701591SHollis Blanchard kvmppc_account_exit(vcpu, FP_UNAVAIL); 789d9fbd03dSHollis Blanchard r = RESUME_GUEST; 790d9fbd03dSHollis Blanchard break; 791d9fbd03dSHollis Blanchard 7924cd35f67SScott Wood #ifdef CONFIG_SPE 7934cd35f67SScott Wood case BOOKE_INTERRUPT_SPE_UNAVAIL: { 7944cd35f67SScott Wood if (vcpu->arch.shared->msr & MSR_SPE) 7954cd35f67SScott Wood kvmppc_vcpu_enable_spe(vcpu); 7964cd35f67SScott Wood else 7974cd35f67SScott Wood kvmppc_booke_queue_irqprio(vcpu, 7984cd35f67SScott Wood BOOKE_IRQPRIO_SPE_UNAVAIL); 799bb3a8a17SHollis Blanchard r = RESUME_GUEST; 800bb3a8a17SHollis Blanchard break; 8014cd35f67SScott Wood } 802bb3a8a17SHollis Blanchard 803bb3a8a17SHollis Blanchard case BOOKE_INTERRUPT_SPE_FP_DATA: 804bb3a8a17SHollis Blanchard kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SPE_FP_DATA); 805bb3a8a17SHollis Blanchard r = RESUME_GUEST; 806bb3a8a17SHollis Blanchard break; 807bb3a8a17SHollis Blanchard 808bb3a8a17SHollis Blanchard case BOOKE_INTERRUPT_SPE_FP_ROUND: 809bb3a8a17SHollis Blanchard kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SPE_FP_ROUND); 810bb3a8a17SHollis Blanchard r = RESUME_GUEST; 811bb3a8a17SHollis Blanchard break; 8124cd35f67SScott Wood #else 8134cd35f67SScott Wood case BOOKE_INTERRUPT_SPE_UNAVAIL: 8144cd35f67SScott Wood /* 8154cd35f67SScott Wood * Guest wants SPE, but host kernel doesn't support it. Send 8164cd35f67SScott Wood * an "unimplemented operation" program check to the guest. 8174cd35f67SScott Wood */ 8184cd35f67SScott Wood kvmppc_core_queue_program(vcpu, ESR_PUO | ESR_SPV); 8194cd35f67SScott Wood r = RESUME_GUEST; 8204cd35f67SScott Wood break; 8214cd35f67SScott Wood 8224cd35f67SScott Wood /* 8234cd35f67SScott Wood * These really should never happen without CONFIG_SPE, 8244cd35f67SScott Wood * as we should never enable the real MSR[SPE] in the guest. 8254cd35f67SScott Wood */ 8264cd35f67SScott Wood case BOOKE_INTERRUPT_SPE_FP_DATA: 8274cd35f67SScott Wood case BOOKE_INTERRUPT_SPE_FP_ROUND: 8284cd35f67SScott Wood printk(KERN_CRIT "%s: unexpected SPE interrupt %u at %08lx\n", 8294cd35f67SScott Wood __func__, exit_nr, vcpu->arch.pc); 8304cd35f67SScott Wood run->hw.hardware_exit_reason = exit_nr; 8314cd35f67SScott Wood r = RESUME_HOST; 8324cd35f67SScott Wood break; 8334cd35f67SScott Wood #endif 834bb3a8a17SHollis Blanchard 835d9fbd03dSHollis Blanchard case BOOKE_INTERRUPT_DATA_STORAGE: 836daf5e271SLiu Yu kvmppc_core_queue_data_storage(vcpu, vcpu->arch.fault_dear, 837daf5e271SLiu Yu vcpu->arch.fault_esr); 8387b701591SHollis Blanchard kvmppc_account_exit(vcpu, DSI_EXITS); 839d9fbd03dSHollis Blanchard r = RESUME_GUEST; 840d9fbd03dSHollis Blanchard break; 841d9fbd03dSHollis Blanchard 842d9fbd03dSHollis Blanchard case BOOKE_INTERRUPT_INST_STORAGE: 843daf5e271SLiu Yu kvmppc_core_queue_inst_storage(vcpu, vcpu->arch.fault_esr); 8447b701591SHollis Blanchard kvmppc_account_exit(vcpu, ISI_EXITS); 845d9fbd03dSHollis Blanchard r = RESUME_GUEST; 846d9fbd03dSHollis Blanchard break; 847d9fbd03dSHollis Blanchard 848d30f6e48SScott Wood #ifdef CONFIG_KVM_BOOKE_HV 849d30f6e48SScott Wood case BOOKE_INTERRUPT_HV_SYSCALL: 850d30f6e48SScott Wood if (!(vcpu->arch.shared->msr & MSR_PR)) { 851d30f6e48SScott Wood kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu)); 852d30f6e48SScott Wood } else { 853d30f6e48SScott Wood /* 854d30f6e48SScott Wood * hcall from guest userspace -- send privileged 855d30f6e48SScott Wood * instruction program check. 856d30f6e48SScott Wood */ 857d30f6e48SScott Wood kvmppc_core_queue_program(vcpu, ESR_PPR); 858d30f6e48SScott Wood } 859d30f6e48SScott Wood 860d30f6e48SScott Wood r = RESUME_GUEST; 861d30f6e48SScott Wood break; 862d30f6e48SScott Wood #else 863d9fbd03dSHollis Blanchard case BOOKE_INTERRUPT_SYSCALL: 8642a342ed5SAlexander Graf if (!(vcpu->arch.shared->msr & MSR_PR) && 8652a342ed5SAlexander Graf (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) { 8662a342ed5SAlexander Graf /* KVM PV hypercalls */ 8672a342ed5SAlexander Graf kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu)); 8682a342ed5SAlexander Graf r = RESUME_GUEST; 8692a342ed5SAlexander Graf } else { 8702a342ed5SAlexander Graf /* Guest syscalls */ 871d4cf3892SHollis Blanchard kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SYSCALL); 8722a342ed5SAlexander Graf } 8737b701591SHollis Blanchard kvmppc_account_exit(vcpu, SYSCALL_EXITS); 874d9fbd03dSHollis Blanchard r = RESUME_GUEST; 875d9fbd03dSHollis Blanchard break; 876d30f6e48SScott Wood #endif 877d9fbd03dSHollis Blanchard 878d9fbd03dSHollis Blanchard case BOOKE_INTERRUPT_DTLB_MISS: { 879d9fbd03dSHollis Blanchard unsigned long eaddr = vcpu->arch.fault_dear; 8807924bd41SHollis Blanchard int gtlb_index; 881475e7cddSHollis Blanchard gpa_t gpaddr; 882d9fbd03dSHollis Blanchard gfn_t gfn; 883d9fbd03dSHollis Blanchard 884bf7ca4bdSAlexander Graf #ifdef CONFIG_KVM_E500V2 885a4cd8b23SScott Wood if (!(vcpu->arch.shared->msr & MSR_PR) && 886a4cd8b23SScott Wood (eaddr & PAGE_MASK) == vcpu->arch.magic_page_ea) { 887a4cd8b23SScott Wood kvmppc_map_magic(vcpu); 888a4cd8b23SScott Wood kvmppc_account_exit(vcpu, DTLB_VIRT_MISS_EXITS); 889a4cd8b23SScott Wood r = RESUME_GUEST; 890a4cd8b23SScott Wood 891a4cd8b23SScott Wood break; 892a4cd8b23SScott Wood } 893a4cd8b23SScott Wood #endif 894a4cd8b23SScott Wood 895d9fbd03dSHollis Blanchard /* Check the guest TLB. */ 896fa86b8ddSHollis Blanchard gtlb_index = kvmppc_mmu_dtlb_index(vcpu, eaddr); 8977924bd41SHollis Blanchard if (gtlb_index < 0) { 898d9fbd03dSHollis Blanchard /* The guest didn't have a mapping for it. */ 899daf5e271SLiu Yu kvmppc_core_queue_dtlb_miss(vcpu, 900daf5e271SLiu Yu vcpu->arch.fault_dear, 901daf5e271SLiu Yu vcpu->arch.fault_esr); 902b52a638cSHollis Blanchard kvmppc_mmu_dtlb_miss(vcpu); 9037b701591SHollis Blanchard kvmppc_account_exit(vcpu, DTLB_REAL_MISS_EXITS); 904d9fbd03dSHollis Blanchard r = RESUME_GUEST; 905d9fbd03dSHollis Blanchard break; 906d9fbd03dSHollis Blanchard } 907d9fbd03dSHollis Blanchard 908be8d1caeSHollis Blanchard gpaddr = kvmppc_mmu_xlate(vcpu, gtlb_index, eaddr); 909475e7cddSHollis Blanchard gfn = gpaddr >> PAGE_SHIFT; 910d9fbd03dSHollis Blanchard 911d9fbd03dSHollis Blanchard if (kvm_is_visible_gfn(vcpu->kvm, gfn)) { 912d9fbd03dSHollis Blanchard /* The guest TLB had a mapping, but the shadow TLB 913d9fbd03dSHollis Blanchard * didn't, and it is RAM. This could be because: 914d9fbd03dSHollis Blanchard * a) the entry is mapping the host kernel, or 915d9fbd03dSHollis Blanchard * b) the guest used a large mapping which we're faking 916d9fbd03dSHollis Blanchard * Either way, we need to satisfy the fault without 917d9fbd03dSHollis Blanchard * invoking the guest. */ 91858a96214SHollis Blanchard kvmppc_mmu_map(vcpu, eaddr, gpaddr, gtlb_index); 9197b701591SHollis Blanchard kvmppc_account_exit(vcpu, DTLB_VIRT_MISS_EXITS); 920d9fbd03dSHollis Blanchard r = RESUME_GUEST; 921d9fbd03dSHollis Blanchard } else { 922d9fbd03dSHollis Blanchard /* Guest has mapped and accessed a page which is not 923d9fbd03dSHollis Blanchard * actually RAM. */ 924475e7cddSHollis Blanchard vcpu->arch.paddr_accessed = gpaddr; 9256020c0f6SAlexander Graf vcpu->arch.vaddr_accessed = eaddr; 926d9fbd03dSHollis Blanchard r = kvmppc_emulate_mmio(run, vcpu); 9277b701591SHollis Blanchard kvmppc_account_exit(vcpu, MMIO_EXITS); 928d9fbd03dSHollis Blanchard } 929d9fbd03dSHollis Blanchard 930d9fbd03dSHollis Blanchard break; 931d9fbd03dSHollis Blanchard } 932d9fbd03dSHollis Blanchard 933d9fbd03dSHollis Blanchard case BOOKE_INTERRUPT_ITLB_MISS: { 934d9fbd03dSHollis Blanchard unsigned long eaddr = vcpu->arch.pc; 93589168618SHollis Blanchard gpa_t gpaddr; 936d9fbd03dSHollis Blanchard gfn_t gfn; 9377924bd41SHollis Blanchard int gtlb_index; 938d9fbd03dSHollis Blanchard 939d9fbd03dSHollis Blanchard r = RESUME_GUEST; 940d9fbd03dSHollis Blanchard 941d9fbd03dSHollis Blanchard /* Check the guest TLB. */ 942fa86b8ddSHollis Blanchard gtlb_index = kvmppc_mmu_itlb_index(vcpu, eaddr); 9437924bd41SHollis Blanchard if (gtlb_index < 0) { 944d9fbd03dSHollis Blanchard /* The guest didn't have a mapping for it. */ 945d4cf3892SHollis Blanchard kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_ITLB_MISS); 946b52a638cSHollis Blanchard kvmppc_mmu_itlb_miss(vcpu); 9477b701591SHollis Blanchard kvmppc_account_exit(vcpu, ITLB_REAL_MISS_EXITS); 948d9fbd03dSHollis Blanchard break; 949d9fbd03dSHollis Blanchard } 950d9fbd03dSHollis Blanchard 9517b701591SHollis Blanchard kvmppc_account_exit(vcpu, ITLB_VIRT_MISS_EXITS); 952d9fbd03dSHollis Blanchard 953be8d1caeSHollis Blanchard gpaddr = kvmppc_mmu_xlate(vcpu, gtlb_index, eaddr); 95489168618SHollis Blanchard gfn = gpaddr >> PAGE_SHIFT; 955d9fbd03dSHollis Blanchard 956d9fbd03dSHollis Blanchard if (kvm_is_visible_gfn(vcpu->kvm, gfn)) { 957d9fbd03dSHollis Blanchard /* The guest TLB had a mapping, but the shadow TLB 958d9fbd03dSHollis Blanchard * didn't. This could be because: 959d9fbd03dSHollis Blanchard * a) the entry is mapping the host kernel, or 960d9fbd03dSHollis Blanchard * b) the guest used a large mapping which we're faking 961d9fbd03dSHollis Blanchard * Either way, we need to satisfy the fault without 962d9fbd03dSHollis Blanchard * invoking the guest. */ 96358a96214SHollis Blanchard kvmppc_mmu_map(vcpu, eaddr, gpaddr, gtlb_index); 964d9fbd03dSHollis Blanchard } else { 965d9fbd03dSHollis Blanchard /* Guest mapped and leaped at non-RAM! */ 966d4cf3892SHollis Blanchard kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_MACHINE_CHECK); 967d9fbd03dSHollis Blanchard } 968d9fbd03dSHollis Blanchard 969d9fbd03dSHollis Blanchard break; 970d9fbd03dSHollis Blanchard } 971d9fbd03dSHollis Blanchard 972d9fbd03dSHollis Blanchard case BOOKE_INTERRUPT_DEBUG: { 973d9fbd03dSHollis Blanchard u32 dbsr; 974d9fbd03dSHollis Blanchard 975d9fbd03dSHollis Blanchard vcpu->arch.pc = mfspr(SPRN_CSRR0); 976d9fbd03dSHollis Blanchard 977d9fbd03dSHollis Blanchard /* clear IAC events in DBSR register */ 978d9fbd03dSHollis Blanchard dbsr = mfspr(SPRN_DBSR); 979d9fbd03dSHollis Blanchard dbsr &= DBSR_IAC1 | DBSR_IAC2 | DBSR_IAC3 | DBSR_IAC4; 980d9fbd03dSHollis Blanchard mtspr(SPRN_DBSR, dbsr); 981d9fbd03dSHollis Blanchard 982d9fbd03dSHollis Blanchard run->exit_reason = KVM_EXIT_DEBUG; 9837b701591SHollis Blanchard kvmppc_account_exit(vcpu, DEBUG_EXITS); 984d9fbd03dSHollis Blanchard r = RESUME_HOST; 985d9fbd03dSHollis Blanchard break; 986d9fbd03dSHollis Blanchard } 987d9fbd03dSHollis Blanchard 988d9fbd03dSHollis Blanchard default: 989d9fbd03dSHollis Blanchard printk(KERN_EMERG "exit_nr %d\n", exit_nr); 990d9fbd03dSHollis Blanchard BUG(); 991d9fbd03dSHollis Blanchard } 992d9fbd03dSHollis Blanchard 993a8e4ef84SAlexander Graf /* 994a8e4ef84SAlexander Graf * To avoid clobbering exit_reason, only check for signals if we 995a8e4ef84SAlexander Graf * aren't already exiting to userspace for some other reason. 996a8e4ef84SAlexander Graf */ 99703660ba2SAlexander Graf if (!(r & RESUME_HOST)) { 998d9fbd03dSHollis Blanchard local_irq_disable(); 99903660ba2SAlexander Graf if (kvmppc_prepare_to_enter(vcpu)) { 1000d9fbd03dSHollis Blanchard run->exit_reason = KVM_EXIT_INTR; 1001d9fbd03dSHollis Blanchard r = (-EINTR << 2) | RESUME_HOST | (r & RESUME_FLAG_NV); 10027b701591SHollis Blanchard kvmppc_account_exit(vcpu, SIGNAL_EXITS); 1003d9fbd03dSHollis Blanchard } 100403660ba2SAlexander Graf } 1005d9fbd03dSHollis Blanchard 1006d9fbd03dSHollis Blanchard return r; 1007d9fbd03dSHollis Blanchard } 1008d9fbd03dSHollis Blanchard 1009d9fbd03dSHollis Blanchard /* Initial guest state: 16MB mapping 0 -> 0, PC = 0, MSR = 0, R1 = 16MB */ 1010d9fbd03dSHollis Blanchard int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu) 1011d9fbd03dSHollis Blanchard { 1012082decf2SHollis Blanchard int i; 1013af8f38b3SAlexander Graf int r; 1014082decf2SHollis Blanchard 1015d9fbd03dSHollis Blanchard vcpu->arch.pc = 0; 1016b5904972SScott Wood vcpu->arch.shared->pir = vcpu->vcpu_id; 10178e5b26b5SAlexander Graf kvmppc_set_gpr(vcpu, 1, (16<<20) - 8); /* -8 for the callee-save LR slot */ 1018d30f6e48SScott Wood kvmppc_set_msr(vcpu, 0); 1019d9fbd03dSHollis Blanchard 1020d30f6e48SScott Wood #ifndef CONFIG_KVM_BOOKE_HV 1021d30f6e48SScott Wood vcpu->arch.shadow_msr = MSR_USER | MSR_DE | MSR_IS | MSR_DS; 1022d9fbd03dSHollis Blanchard vcpu->arch.shadow_pid = 1; 1023d30f6e48SScott Wood vcpu->arch.shared->msr = 0; 1024d30f6e48SScott Wood #endif 1025d9fbd03dSHollis Blanchard 1026082decf2SHollis Blanchard /* Eye-catching numbers so we know if the guest takes an interrupt 1027082decf2SHollis Blanchard * before it's programmed its own IVPR/IVORs. */ 1028d9fbd03dSHollis Blanchard vcpu->arch.ivpr = 0x55550000; 1029082decf2SHollis Blanchard for (i = 0; i < BOOKE_IRQPRIO_MAX; i++) 1030082decf2SHollis Blanchard vcpu->arch.ivor[i] = 0x7700 | i * 4; 1031d9fbd03dSHollis Blanchard 103273e75b41SHollis Blanchard kvmppc_init_timing_stats(vcpu); 103373e75b41SHollis Blanchard 1034af8f38b3SAlexander Graf r = kvmppc_core_vcpu_setup(vcpu); 1035af8f38b3SAlexander Graf kvmppc_sanity_check(vcpu); 1036af8f38b3SAlexander Graf return r; 1037d9fbd03dSHollis Blanchard } 1038d9fbd03dSHollis Blanchard 1039d9fbd03dSHollis Blanchard int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) 1040d9fbd03dSHollis Blanchard { 1041d9fbd03dSHollis Blanchard int i; 1042d9fbd03dSHollis Blanchard 1043d9fbd03dSHollis Blanchard regs->pc = vcpu->arch.pc; 1044992b5b29SAlexander Graf regs->cr = kvmppc_get_cr(vcpu); 1045d9fbd03dSHollis Blanchard regs->ctr = vcpu->arch.ctr; 1046d9fbd03dSHollis Blanchard regs->lr = vcpu->arch.lr; 1047992b5b29SAlexander Graf regs->xer = kvmppc_get_xer(vcpu); 1048666e7252SAlexander Graf regs->msr = vcpu->arch.shared->msr; 1049de7906c3SAlexander Graf regs->srr0 = vcpu->arch.shared->srr0; 1050de7906c3SAlexander Graf regs->srr1 = vcpu->arch.shared->srr1; 1051d9fbd03dSHollis Blanchard regs->pid = vcpu->arch.pid; 1052a73a9599SAlexander Graf regs->sprg0 = vcpu->arch.shared->sprg0; 1053a73a9599SAlexander Graf regs->sprg1 = vcpu->arch.shared->sprg1; 1054a73a9599SAlexander Graf regs->sprg2 = vcpu->arch.shared->sprg2; 1055a73a9599SAlexander Graf regs->sprg3 = vcpu->arch.shared->sprg3; 1056b5904972SScott Wood regs->sprg4 = vcpu->arch.shared->sprg4; 1057b5904972SScott Wood regs->sprg5 = vcpu->arch.shared->sprg5; 1058b5904972SScott Wood regs->sprg6 = vcpu->arch.shared->sprg6; 1059b5904972SScott Wood regs->sprg7 = vcpu->arch.shared->sprg7; 1060d9fbd03dSHollis Blanchard 1061d9fbd03dSHollis Blanchard for (i = 0; i < ARRAY_SIZE(regs->gpr); i++) 10628e5b26b5SAlexander Graf regs->gpr[i] = kvmppc_get_gpr(vcpu, i); 1063d9fbd03dSHollis Blanchard 1064d9fbd03dSHollis Blanchard return 0; 1065d9fbd03dSHollis Blanchard } 1066d9fbd03dSHollis Blanchard 1067d9fbd03dSHollis Blanchard int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) 1068d9fbd03dSHollis Blanchard { 1069d9fbd03dSHollis Blanchard int i; 1070d9fbd03dSHollis Blanchard 1071d9fbd03dSHollis Blanchard vcpu->arch.pc = regs->pc; 1072992b5b29SAlexander Graf kvmppc_set_cr(vcpu, regs->cr); 1073d9fbd03dSHollis Blanchard vcpu->arch.ctr = regs->ctr; 1074d9fbd03dSHollis Blanchard vcpu->arch.lr = regs->lr; 1075992b5b29SAlexander Graf kvmppc_set_xer(vcpu, regs->xer); 1076b8fd68acSHollis Blanchard kvmppc_set_msr(vcpu, regs->msr); 1077de7906c3SAlexander Graf vcpu->arch.shared->srr0 = regs->srr0; 1078de7906c3SAlexander Graf vcpu->arch.shared->srr1 = regs->srr1; 10795ce941eeSScott Wood kvmppc_set_pid(vcpu, regs->pid); 1080a73a9599SAlexander Graf vcpu->arch.shared->sprg0 = regs->sprg0; 1081a73a9599SAlexander Graf vcpu->arch.shared->sprg1 = regs->sprg1; 1082a73a9599SAlexander Graf vcpu->arch.shared->sprg2 = regs->sprg2; 1083a73a9599SAlexander Graf vcpu->arch.shared->sprg3 = regs->sprg3; 1084b5904972SScott Wood vcpu->arch.shared->sprg4 = regs->sprg4; 1085b5904972SScott Wood vcpu->arch.shared->sprg5 = regs->sprg5; 1086b5904972SScott Wood vcpu->arch.shared->sprg6 = regs->sprg6; 1087b5904972SScott Wood vcpu->arch.shared->sprg7 = regs->sprg7; 1088d9fbd03dSHollis Blanchard 10898e5b26b5SAlexander Graf for (i = 0; i < ARRAY_SIZE(regs->gpr); i++) 10908e5b26b5SAlexander Graf kvmppc_set_gpr(vcpu, i, regs->gpr[i]); 1091d9fbd03dSHollis Blanchard 1092d9fbd03dSHollis Blanchard return 0; 1093d9fbd03dSHollis Blanchard } 1094d9fbd03dSHollis Blanchard 10955ce941eeSScott Wood static void get_sregs_base(struct kvm_vcpu *vcpu, 10965ce941eeSScott Wood struct kvm_sregs *sregs) 10975ce941eeSScott Wood { 10985ce941eeSScott Wood u64 tb = get_tb(); 10995ce941eeSScott Wood 11005ce941eeSScott Wood sregs->u.e.features |= KVM_SREGS_E_BASE; 11015ce941eeSScott Wood 11025ce941eeSScott Wood sregs->u.e.csrr0 = vcpu->arch.csrr0; 11035ce941eeSScott Wood sregs->u.e.csrr1 = vcpu->arch.csrr1; 11045ce941eeSScott Wood sregs->u.e.mcsr = vcpu->arch.mcsr; 1105d30f6e48SScott Wood sregs->u.e.esr = get_guest_esr(vcpu); 1106d30f6e48SScott Wood sregs->u.e.dear = get_guest_dear(vcpu); 11075ce941eeSScott Wood sregs->u.e.tsr = vcpu->arch.tsr; 11085ce941eeSScott Wood sregs->u.e.tcr = vcpu->arch.tcr; 11095ce941eeSScott Wood sregs->u.e.dec = kvmppc_get_dec(vcpu, tb); 11105ce941eeSScott Wood sregs->u.e.tb = tb; 11115ce941eeSScott Wood sregs->u.e.vrsave = vcpu->arch.vrsave; 11125ce941eeSScott Wood } 11135ce941eeSScott Wood 11145ce941eeSScott Wood static int set_sregs_base(struct kvm_vcpu *vcpu, 11155ce941eeSScott Wood struct kvm_sregs *sregs) 11165ce941eeSScott Wood { 11175ce941eeSScott Wood if (!(sregs->u.e.features & KVM_SREGS_E_BASE)) 11185ce941eeSScott Wood return 0; 11195ce941eeSScott Wood 11205ce941eeSScott Wood vcpu->arch.csrr0 = sregs->u.e.csrr0; 11215ce941eeSScott Wood vcpu->arch.csrr1 = sregs->u.e.csrr1; 11225ce941eeSScott Wood vcpu->arch.mcsr = sregs->u.e.mcsr; 1123d30f6e48SScott Wood set_guest_esr(vcpu, sregs->u.e.esr); 1124d30f6e48SScott Wood set_guest_dear(vcpu, sregs->u.e.dear); 11255ce941eeSScott Wood vcpu->arch.vrsave = sregs->u.e.vrsave; 1126dfd4d47eSScott Wood kvmppc_set_tcr(vcpu, sregs->u.e.tcr); 11275ce941eeSScott Wood 1128dfd4d47eSScott Wood if (sregs->u.e.update_special & KVM_SREGS_E_UPDATE_DEC) { 11295ce941eeSScott Wood vcpu->arch.dec = sregs->u.e.dec; 11305ce941eeSScott Wood kvmppc_emulate_dec(vcpu); 1131dfd4d47eSScott Wood } 11325ce941eeSScott Wood 11335ce941eeSScott Wood if (sregs->u.e.update_special & KVM_SREGS_E_UPDATE_TSR) { 1134dfd4d47eSScott Wood vcpu->arch.tsr = sregs->u.e.tsr; 1135dfd4d47eSScott Wood update_timer_ints(vcpu); 11365ce941eeSScott Wood } 11375ce941eeSScott Wood 11385ce941eeSScott Wood return 0; 11395ce941eeSScott Wood } 11405ce941eeSScott Wood 11415ce941eeSScott Wood static void get_sregs_arch206(struct kvm_vcpu *vcpu, 11425ce941eeSScott Wood struct kvm_sregs *sregs) 11435ce941eeSScott Wood { 11445ce941eeSScott Wood sregs->u.e.features |= KVM_SREGS_E_ARCH206; 11455ce941eeSScott Wood 1146841741f2SScott Wood sregs->u.e.pir = vcpu->vcpu_id; 11475ce941eeSScott Wood sregs->u.e.mcsrr0 = vcpu->arch.mcsrr0; 11485ce941eeSScott Wood sregs->u.e.mcsrr1 = vcpu->arch.mcsrr1; 11495ce941eeSScott Wood sregs->u.e.decar = vcpu->arch.decar; 11505ce941eeSScott Wood sregs->u.e.ivpr = vcpu->arch.ivpr; 11515ce941eeSScott Wood } 11525ce941eeSScott Wood 11535ce941eeSScott Wood static int set_sregs_arch206(struct kvm_vcpu *vcpu, 11545ce941eeSScott Wood struct kvm_sregs *sregs) 11555ce941eeSScott Wood { 11565ce941eeSScott Wood if (!(sregs->u.e.features & KVM_SREGS_E_ARCH206)) 11575ce941eeSScott Wood return 0; 11585ce941eeSScott Wood 1159841741f2SScott Wood if (sregs->u.e.pir != vcpu->vcpu_id) 11605ce941eeSScott Wood return -EINVAL; 11615ce941eeSScott Wood 11625ce941eeSScott Wood vcpu->arch.mcsrr0 = sregs->u.e.mcsrr0; 11635ce941eeSScott Wood vcpu->arch.mcsrr1 = sregs->u.e.mcsrr1; 11645ce941eeSScott Wood vcpu->arch.decar = sregs->u.e.decar; 11655ce941eeSScott Wood vcpu->arch.ivpr = sregs->u.e.ivpr; 11665ce941eeSScott Wood 11675ce941eeSScott Wood return 0; 11685ce941eeSScott Wood } 11695ce941eeSScott Wood 11705ce941eeSScott Wood void kvmppc_get_sregs_ivor(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs) 11715ce941eeSScott Wood { 11725ce941eeSScott Wood sregs->u.e.features |= KVM_SREGS_E_IVOR; 11735ce941eeSScott Wood 11745ce941eeSScott Wood sregs->u.e.ivor_low[0] = vcpu->arch.ivor[BOOKE_IRQPRIO_CRITICAL]; 11755ce941eeSScott Wood sregs->u.e.ivor_low[1] = vcpu->arch.ivor[BOOKE_IRQPRIO_MACHINE_CHECK]; 11765ce941eeSScott Wood sregs->u.e.ivor_low[2] = vcpu->arch.ivor[BOOKE_IRQPRIO_DATA_STORAGE]; 11775ce941eeSScott Wood sregs->u.e.ivor_low[3] = vcpu->arch.ivor[BOOKE_IRQPRIO_INST_STORAGE]; 11785ce941eeSScott Wood sregs->u.e.ivor_low[4] = vcpu->arch.ivor[BOOKE_IRQPRIO_EXTERNAL]; 11795ce941eeSScott Wood sregs->u.e.ivor_low[5] = vcpu->arch.ivor[BOOKE_IRQPRIO_ALIGNMENT]; 11805ce941eeSScott Wood sregs->u.e.ivor_low[6] = vcpu->arch.ivor[BOOKE_IRQPRIO_PROGRAM]; 11815ce941eeSScott Wood sregs->u.e.ivor_low[7] = vcpu->arch.ivor[BOOKE_IRQPRIO_FP_UNAVAIL]; 11825ce941eeSScott Wood sregs->u.e.ivor_low[8] = vcpu->arch.ivor[BOOKE_IRQPRIO_SYSCALL]; 11835ce941eeSScott Wood sregs->u.e.ivor_low[9] = vcpu->arch.ivor[BOOKE_IRQPRIO_AP_UNAVAIL]; 11845ce941eeSScott Wood sregs->u.e.ivor_low[10] = vcpu->arch.ivor[BOOKE_IRQPRIO_DECREMENTER]; 11855ce941eeSScott Wood sregs->u.e.ivor_low[11] = vcpu->arch.ivor[BOOKE_IRQPRIO_FIT]; 11865ce941eeSScott Wood sregs->u.e.ivor_low[12] = vcpu->arch.ivor[BOOKE_IRQPRIO_WATCHDOG]; 11875ce941eeSScott Wood sregs->u.e.ivor_low[13] = vcpu->arch.ivor[BOOKE_IRQPRIO_DTLB_MISS]; 11885ce941eeSScott Wood sregs->u.e.ivor_low[14] = vcpu->arch.ivor[BOOKE_IRQPRIO_ITLB_MISS]; 11895ce941eeSScott Wood sregs->u.e.ivor_low[15] = vcpu->arch.ivor[BOOKE_IRQPRIO_DEBUG]; 11905ce941eeSScott Wood } 11915ce941eeSScott Wood 11925ce941eeSScott Wood int kvmppc_set_sregs_ivor(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs) 11935ce941eeSScott Wood { 11945ce941eeSScott Wood if (!(sregs->u.e.features & KVM_SREGS_E_IVOR)) 11955ce941eeSScott Wood return 0; 11965ce941eeSScott Wood 11975ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_CRITICAL] = sregs->u.e.ivor_low[0]; 11985ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_MACHINE_CHECK] = sregs->u.e.ivor_low[1]; 11995ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_DATA_STORAGE] = sregs->u.e.ivor_low[2]; 12005ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_INST_STORAGE] = sregs->u.e.ivor_low[3]; 12015ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_EXTERNAL] = sregs->u.e.ivor_low[4]; 12025ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_ALIGNMENT] = sregs->u.e.ivor_low[5]; 12035ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_PROGRAM] = sregs->u.e.ivor_low[6]; 12045ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_FP_UNAVAIL] = sregs->u.e.ivor_low[7]; 12055ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_SYSCALL] = sregs->u.e.ivor_low[8]; 12065ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_AP_UNAVAIL] = sregs->u.e.ivor_low[9]; 12075ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_DECREMENTER] = sregs->u.e.ivor_low[10]; 12085ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_FIT] = sregs->u.e.ivor_low[11]; 12095ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_WATCHDOG] = sregs->u.e.ivor_low[12]; 12105ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_DTLB_MISS] = sregs->u.e.ivor_low[13]; 12115ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_ITLB_MISS] = sregs->u.e.ivor_low[14]; 12125ce941eeSScott Wood vcpu->arch.ivor[BOOKE_IRQPRIO_DEBUG] = sregs->u.e.ivor_low[15]; 12135ce941eeSScott Wood 12145ce941eeSScott Wood return 0; 12155ce941eeSScott Wood } 12165ce941eeSScott Wood 1217d9fbd03dSHollis Blanchard int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu, 1218d9fbd03dSHollis Blanchard struct kvm_sregs *sregs) 1219d9fbd03dSHollis Blanchard { 12205ce941eeSScott Wood sregs->pvr = vcpu->arch.pvr; 12215ce941eeSScott Wood 12225ce941eeSScott Wood get_sregs_base(vcpu, sregs); 12235ce941eeSScott Wood get_sregs_arch206(vcpu, sregs); 12245ce941eeSScott Wood kvmppc_core_get_sregs(vcpu, sregs); 12255ce941eeSScott Wood return 0; 1226d9fbd03dSHollis Blanchard } 1227d9fbd03dSHollis Blanchard 1228d9fbd03dSHollis Blanchard int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu, 1229d9fbd03dSHollis Blanchard struct kvm_sregs *sregs) 1230d9fbd03dSHollis Blanchard { 12315ce941eeSScott Wood int ret; 12325ce941eeSScott Wood 12335ce941eeSScott Wood if (vcpu->arch.pvr != sregs->pvr) 12345ce941eeSScott Wood return -EINVAL; 12355ce941eeSScott Wood 12365ce941eeSScott Wood ret = set_sregs_base(vcpu, sregs); 12375ce941eeSScott Wood if (ret < 0) 12385ce941eeSScott Wood return ret; 12395ce941eeSScott Wood 12405ce941eeSScott Wood ret = set_sregs_arch206(vcpu, sregs); 12415ce941eeSScott Wood if (ret < 0) 12425ce941eeSScott Wood return ret; 12435ce941eeSScott Wood 12445ce941eeSScott Wood return kvmppc_core_set_sregs(vcpu, sregs); 1245d9fbd03dSHollis Blanchard } 1246d9fbd03dSHollis Blanchard 124731f3438eSPaul Mackerras int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg) 124831f3438eSPaul Mackerras { 124931f3438eSPaul Mackerras return -EINVAL; 125031f3438eSPaul Mackerras } 125131f3438eSPaul Mackerras 125231f3438eSPaul Mackerras int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg) 125331f3438eSPaul Mackerras { 125431f3438eSPaul Mackerras return -EINVAL; 125531f3438eSPaul Mackerras } 125631f3438eSPaul Mackerras 1257d9fbd03dSHollis Blanchard int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu) 1258d9fbd03dSHollis Blanchard { 1259d9fbd03dSHollis Blanchard return -ENOTSUPP; 1260d9fbd03dSHollis Blanchard } 1261d9fbd03dSHollis Blanchard 1262d9fbd03dSHollis Blanchard int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu) 1263d9fbd03dSHollis Blanchard { 1264d9fbd03dSHollis Blanchard return -ENOTSUPP; 1265d9fbd03dSHollis Blanchard } 1266d9fbd03dSHollis Blanchard 1267d9fbd03dSHollis Blanchard int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu, 1268d9fbd03dSHollis Blanchard struct kvm_translation *tr) 1269d9fbd03dSHollis Blanchard { 127098001d8dSAvi Kivity int r; 127198001d8dSAvi Kivity 127298001d8dSAvi Kivity r = kvmppc_core_vcpu_translate(vcpu, tr); 127398001d8dSAvi Kivity return r; 1274d9fbd03dSHollis Blanchard } 1275d9fbd03dSHollis Blanchard 12764e755758SAlexander Graf int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log) 12774e755758SAlexander Graf { 12784e755758SAlexander Graf return -ENOTSUPP; 12794e755758SAlexander Graf } 12804e755758SAlexander Graf 1281f9e0554dSPaul Mackerras int kvmppc_core_prepare_memory_region(struct kvm *kvm, 1282f9e0554dSPaul Mackerras struct kvm_userspace_memory_region *mem) 1283f9e0554dSPaul Mackerras { 1284f9e0554dSPaul Mackerras return 0; 1285f9e0554dSPaul Mackerras } 1286f9e0554dSPaul Mackerras 1287f9e0554dSPaul Mackerras void kvmppc_core_commit_memory_region(struct kvm *kvm, 1288f9e0554dSPaul Mackerras struct kvm_userspace_memory_region *mem) 1289f9e0554dSPaul Mackerras { 1290f9e0554dSPaul Mackerras } 1291f9e0554dSPaul Mackerras 1292dfd4d47eSScott Wood void kvmppc_set_tcr(struct kvm_vcpu *vcpu, u32 new_tcr) 1293dfd4d47eSScott Wood { 1294dfd4d47eSScott Wood vcpu->arch.tcr = new_tcr; 1295dfd4d47eSScott Wood update_timer_ints(vcpu); 1296dfd4d47eSScott Wood } 1297dfd4d47eSScott Wood 1298dfd4d47eSScott Wood void kvmppc_set_tsr_bits(struct kvm_vcpu *vcpu, u32 tsr_bits) 1299dfd4d47eSScott Wood { 1300dfd4d47eSScott Wood set_bits(tsr_bits, &vcpu->arch.tsr); 1301dfd4d47eSScott Wood smp_wmb(); 1302dfd4d47eSScott Wood kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu); 1303dfd4d47eSScott Wood kvm_vcpu_kick(vcpu); 1304dfd4d47eSScott Wood } 1305dfd4d47eSScott Wood 1306dfd4d47eSScott Wood void kvmppc_clr_tsr_bits(struct kvm_vcpu *vcpu, u32 tsr_bits) 1307dfd4d47eSScott Wood { 1308dfd4d47eSScott Wood clear_bits(tsr_bits, &vcpu->arch.tsr); 1309dfd4d47eSScott Wood update_timer_ints(vcpu); 1310dfd4d47eSScott Wood } 1311dfd4d47eSScott Wood 1312dfd4d47eSScott Wood void kvmppc_decrementer_func(unsigned long data) 1313dfd4d47eSScott Wood { 1314dfd4d47eSScott Wood struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data; 1315dfd4d47eSScott Wood 131621bd000aSBharat Bhushan if (vcpu->arch.tcr & TCR_ARE) { 131721bd000aSBharat Bhushan vcpu->arch.dec = vcpu->arch.decar; 131821bd000aSBharat Bhushan kvmppc_emulate_dec(vcpu); 131921bd000aSBharat Bhushan } 132021bd000aSBharat Bhushan 1321dfd4d47eSScott Wood kvmppc_set_tsr_bits(vcpu, TSR_DIS); 1322dfd4d47eSScott Wood } 1323dfd4d47eSScott Wood 132494fa9d99SScott Wood void kvmppc_booke_vcpu_load(struct kvm_vcpu *vcpu, int cpu) 132594fa9d99SScott Wood { 1326d30f6e48SScott Wood current->thread.kvm_vcpu = vcpu; 132794fa9d99SScott Wood } 132894fa9d99SScott Wood 132994fa9d99SScott Wood void kvmppc_booke_vcpu_put(struct kvm_vcpu *vcpu) 133094fa9d99SScott Wood { 1331d30f6e48SScott Wood current->thread.kvm_vcpu = NULL; 133294fa9d99SScott Wood } 133394fa9d99SScott Wood 13342986b8c7SStephen Rothwell int __init kvmppc_booke_init(void) 1335d9fbd03dSHollis Blanchard { 1336d30f6e48SScott Wood #ifndef CONFIG_KVM_BOOKE_HV 1337d9fbd03dSHollis Blanchard unsigned long ivor[16]; 1338d9fbd03dSHollis Blanchard unsigned long max_ivor = 0; 1339d9fbd03dSHollis Blanchard int i; 1340d9fbd03dSHollis Blanchard 1341d9fbd03dSHollis Blanchard /* We install our own exception handlers by hijacking IVPR. IVPR must 1342d9fbd03dSHollis Blanchard * be 16-bit aligned, so we need a 64KB allocation. */ 1343d9fbd03dSHollis Blanchard kvmppc_booke_handlers = __get_free_pages(GFP_KERNEL | __GFP_ZERO, 1344d9fbd03dSHollis Blanchard VCPU_SIZE_ORDER); 1345d9fbd03dSHollis Blanchard if (!kvmppc_booke_handlers) 1346d9fbd03dSHollis Blanchard return -ENOMEM; 1347d9fbd03dSHollis Blanchard 1348d9fbd03dSHollis Blanchard /* XXX make sure our handlers are smaller than Linux's */ 1349d9fbd03dSHollis Blanchard 1350d9fbd03dSHollis Blanchard /* Copy our interrupt handlers to match host IVORs. That way we don't 1351d9fbd03dSHollis Blanchard * have to swap the IVORs on every guest/host transition. */ 1352d9fbd03dSHollis Blanchard ivor[0] = mfspr(SPRN_IVOR0); 1353d9fbd03dSHollis Blanchard ivor[1] = mfspr(SPRN_IVOR1); 1354d9fbd03dSHollis Blanchard ivor[2] = mfspr(SPRN_IVOR2); 1355d9fbd03dSHollis Blanchard ivor[3] = mfspr(SPRN_IVOR3); 1356d9fbd03dSHollis Blanchard ivor[4] = mfspr(SPRN_IVOR4); 1357d9fbd03dSHollis Blanchard ivor[5] = mfspr(SPRN_IVOR5); 1358d9fbd03dSHollis Blanchard ivor[6] = mfspr(SPRN_IVOR6); 1359d9fbd03dSHollis Blanchard ivor[7] = mfspr(SPRN_IVOR7); 1360d9fbd03dSHollis Blanchard ivor[8] = mfspr(SPRN_IVOR8); 1361d9fbd03dSHollis Blanchard ivor[9] = mfspr(SPRN_IVOR9); 1362d9fbd03dSHollis Blanchard ivor[10] = mfspr(SPRN_IVOR10); 1363d9fbd03dSHollis Blanchard ivor[11] = mfspr(SPRN_IVOR11); 1364d9fbd03dSHollis Blanchard ivor[12] = mfspr(SPRN_IVOR12); 1365d9fbd03dSHollis Blanchard ivor[13] = mfspr(SPRN_IVOR13); 1366d9fbd03dSHollis Blanchard ivor[14] = mfspr(SPRN_IVOR14); 1367d9fbd03dSHollis Blanchard ivor[15] = mfspr(SPRN_IVOR15); 1368d9fbd03dSHollis Blanchard 1369d9fbd03dSHollis Blanchard for (i = 0; i < 16; i++) { 1370d9fbd03dSHollis Blanchard if (ivor[i] > max_ivor) 1371d9fbd03dSHollis Blanchard max_ivor = ivor[i]; 1372d9fbd03dSHollis Blanchard 1373d9fbd03dSHollis Blanchard memcpy((void *)kvmppc_booke_handlers + ivor[i], 1374d9fbd03dSHollis Blanchard kvmppc_handlers_start + i * kvmppc_handler_len, 1375d9fbd03dSHollis Blanchard kvmppc_handler_len); 1376d9fbd03dSHollis Blanchard } 1377d9fbd03dSHollis Blanchard flush_icache_range(kvmppc_booke_handlers, 1378d9fbd03dSHollis Blanchard kvmppc_booke_handlers + max_ivor + kvmppc_handler_len); 1379d30f6e48SScott Wood #endif /* !BOOKE_HV */ 1380db93f574SHollis Blanchard return 0; 1381d9fbd03dSHollis Blanchard } 1382d9fbd03dSHollis Blanchard 1383db93f574SHollis Blanchard void __exit kvmppc_booke_exit(void) 1384d9fbd03dSHollis Blanchard { 1385d9fbd03dSHollis Blanchard free_pages(kvmppc_booke_handlers, VCPU_SIZE_ORDER); 1386d9fbd03dSHollis Blanchard kvm_exit(); 1387d9fbd03dSHollis Blanchard } 1388