2 * PowerPC implementation of KVM hooks
4 * Copyright IBM Corp. 2007
5 * Copyright (C) 2011 Freescale Semiconductor, Inc.
8 * Jerone Young <jyoung5@us.ibm.com>
9 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
10 * Hollis Blanchard <hollisb@us.ibm.com>
12 * This work is licensed under the terms of the GNU GPL, version 2 or later.
13 * See the COPYING file in the top-level directory.
18 #include <sys/types.h>
19 #include <sys/ioctl.h>
23 #include <linux/kvm.h>
25 #include "qemu-common.h"
26 #include "qemu/timer.h"
27 #include "sysemu/sysemu.h"
28 #include "sysemu/kvm.h"
31 #include "sysemu/cpus.h"
32 #include "sysemu/device_tree.h"
33 #include "mmu-hash64.h"
35 #include "hw/sysbus.h"
36 #include "hw/ppc/spapr.h"
37 #include "hw/ppc/spapr_vio.h"
38 #include "hw/ppc/ppc.h"
39 #include "sysemu/watchdog.h"
41 #include "exec/gdbstub.h"
42 #include "exec/memattrs.h"
43 #include "sysemu/hostmem.h"
48 #define DPRINTF(fmt, ...) \
49 do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
51 #define DPRINTF(fmt, ...) \
55 #define PROC_DEVTREE_CPU "/proc/device-tree/cpus/"
57 const KVMCapabilityInfo kvm_arch_required_capabilities
[] = {
61 static int cap_interrupt_unset
= false;
62 static int cap_interrupt_level
= false;
63 static int cap_segstate
;
64 static int cap_booke_sregs
;
65 static int cap_ppc_smt
;
66 static int cap_ppc_rma
;
67 static int cap_spapr_tce
;
68 static int cap_spapr_multitce
;
69 static int cap_spapr_vfio
;
71 static int cap_one_reg
;
73 static int cap_ppc_watchdog
;
75 static int cap_htab_fd
;
76 static int cap_fixup_hcalls
;
78 static uint32_t debug_inst_opcode
;
80 /* XXX We have a race condition where we actually have a level triggered
81 * interrupt, but the infrastructure can't expose that yet, so the guest
82 * takes but ignores it, goes to sleep and never gets notified that there's
83 * still an interrupt pending.
85 * As a quick workaround, let's just wake up again 20 ms after we injected
86 * an interrupt. That way we can assure that we're always reinjecting
87 * interrupts in case the guest swallowed them.
89 static QEMUTimer
*idle_timer
;
91 static void kvm_kick_cpu(void *opaque
)
93 PowerPCCPU
*cpu
= opaque
;
95 qemu_cpu_kick(CPU(cpu
));
98 static int kvm_ppc_register_host_cpu_type(void);
100 int kvm_arch_init(MachineState
*ms
, KVMState
*s
)
102 cap_interrupt_unset
= kvm_check_extension(s
, KVM_CAP_PPC_UNSET_IRQ
);
103 cap_interrupt_level
= kvm_check_extension(s
, KVM_CAP_PPC_IRQ_LEVEL
);
104 cap_segstate
= kvm_check_extension(s
, KVM_CAP_PPC_SEGSTATE
);
105 cap_booke_sregs
= kvm_check_extension(s
, KVM_CAP_PPC_BOOKE_SREGS
);
106 cap_ppc_smt
= kvm_check_extension(s
, KVM_CAP_PPC_SMT
);
107 cap_ppc_rma
= kvm_check_extension(s
, KVM_CAP_PPC_RMA
);
108 cap_spapr_tce
= kvm_check_extension(s
, KVM_CAP_SPAPR_TCE
);
109 cap_spapr_multitce
= kvm_check_extension(s
, KVM_CAP_SPAPR_MULTITCE
);
110 cap_spapr_vfio
= false;
111 cap_one_reg
= kvm_check_extension(s
, KVM_CAP_ONE_REG
);
112 cap_hior
= kvm_check_extension(s
, KVM_CAP_PPC_HIOR
);
113 cap_epr
= kvm_check_extension(s
, KVM_CAP_PPC_EPR
);
114 cap_ppc_watchdog
= kvm_check_extension(s
, KVM_CAP_PPC_BOOKE_WATCHDOG
);
115 /* Note: we don't set cap_papr here, because this capability is
116 * only activated after this by kvmppc_set_papr() */
117 cap_htab_fd
= kvm_check_extension(s
, KVM_CAP_PPC_HTAB_FD
);
118 cap_fixup_hcalls
= kvm_check_extension(s
, KVM_CAP_PPC_FIXUP_HCALL
);
120 if (!cap_interrupt_level
) {
121 fprintf(stderr
, "KVM: Couldn't find level irq capability. Expect the "
122 "VM to stall at times!\n");
125 kvm_ppc_register_host_cpu_type();
130 static int kvm_arch_sync_sregs(PowerPCCPU
*cpu
)
132 CPUPPCState
*cenv
= &cpu
->env
;
133 CPUState
*cs
= CPU(cpu
);
134 struct kvm_sregs sregs
;
137 if (cenv
->excp_model
== POWERPC_EXCP_BOOKE
) {
138 /* What we're really trying to say is "if we're on BookE, we use
139 the native PVR for now". This is the only sane way to check
140 it though, so we potentially confuse users that they can run
141 BookE guests on BookS. Let's hope nobody dares enough :) */
145 fprintf(stderr
, "kvm error: missing PVR setting capability\n");
150 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_SREGS
, &sregs
);
155 sregs
.pvr
= cenv
->spr
[SPR_PVR
];
156 return kvm_vcpu_ioctl(cs
, KVM_SET_SREGS
, &sregs
);
159 /* Set up a shared TLB array with KVM */
160 static int kvm_booke206_tlb_init(PowerPCCPU
*cpu
)
162 CPUPPCState
*env
= &cpu
->env
;
163 CPUState
*cs
= CPU(cpu
);
164 struct kvm_book3e_206_tlb_params params
= {};
165 struct kvm_config_tlb cfg
= {};
166 unsigned int entries
= 0;
169 if (!kvm_enabled() ||
170 !kvm_check_extension(cs
->kvm_state
, KVM_CAP_SW_TLB
)) {
174 assert(ARRAY_SIZE(params
.tlb_sizes
) == BOOKE206_MAX_TLBN
);
176 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
177 params
.tlb_sizes
[i
] = booke206_tlb_size(env
, i
);
178 params
.tlb_ways
[i
] = booke206_tlb_ways(env
, i
);
179 entries
+= params
.tlb_sizes
[i
];
182 assert(entries
== env
->nb_tlb
);
183 assert(sizeof(struct kvm_book3e_206_tlb_entry
) == sizeof(ppcmas_tlb_t
));
185 env
->tlb_dirty
= true;
187 cfg
.array
= (uintptr_t)env
->tlb
.tlbm
;
188 cfg
.array_len
= sizeof(ppcmas_tlb_t
) * entries
;
189 cfg
.params
= (uintptr_t)¶ms
;
190 cfg
.mmu_type
= KVM_MMU_FSL_BOOKE_NOHV
;
192 ret
= kvm_vcpu_enable_cap(cs
, KVM_CAP_SW_TLB
, 0, (uintptr_t)&cfg
);
194 fprintf(stderr
, "%s: couldn't enable KVM_CAP_SW_TLB: %s\n",
195 __func__
, strerror(-ret
));
199 env
->kvm_sw_tlb
= true;
204 #if defined(TARGET_PPC64)
205 static void kvm_get_fallback_smmu_info(PowerPCCPU
*cpu
,
206 struct kvm_ppc_smmu_info
*info
)
208 CPUPPCState
*env
= &cpu
->env
;
209 CPUState
*cs
= CPU(cpu
);
211 memset(info
, 0, sizeof(*info
));
213 /* We don't have the new KVM_PPC_GET_SMMU_INFO ioctl, so
214 * need to "guess" what the supported page sizes are.
216 * For that to work we make a few assumptions:
218 * - If KVM_CAP_PPC_GET_PVINFO is supported we are running "PR"
219 * KVM which only supports 4K and 16M pages, but supports them
220 * regardless of the backing store characteritics. We also don't
221 * support 1T segments.
223 * This is safe as if HV KVM ever supports that capability or PR
224 * KVM grows supports for more page/segment sizes, those versions
225 * will have implemented KVM_CAP_PPC_GET_SMMU_INFO and thus we
226 * will not hit this fallback
228 * - Else we are running HV KVM. This means we only support page
229 * sizes that fit in the backing store. Additionally we only
230 * advertize 64K pages if the processor is ARCH 2.06 and we assume
231 * P7 encodings for the SLB and hash table. Here too, we assume
232 * support for any newer processor will mean a kernel that
233 * implements KVM_CAP_PPC_GET_SMMU_INFO and thus doesn't hit
236 if (kvm_check_extension(cs
->kvm_state
, KVM_CAP_PPC_GET_PVINFO
)) {
241 /* Standard 4k base page size segment */
242 info
->sps
[0].page_shift
= 12;
243 info
->sps
[0].slb_enc
= 0;
244 info
->sps
[0].enc
[0].page_shift
= 12;
245 info
->sps
[0].enc
[0].pte_enc
= 0;
247 /* Standard 16M large page size segment */
248 info
->sps
[1].page_shift
= 24;
249 info
->sps
[1].slb_enc
= SLB_VSID_L
;
250 info
->sps
[1].enc
[0].page_shift
= 24;
251 info
->sps
[1].enc
[0].pte_enc
= 0;
255 /* HV KVM has backing store size restrictions */
256 info
->flags
= KVM_PPC_PAGE_SIZES_REAL
;
258 if (env
->mmu_model
& POWERPC_MMU_1TSEG
) {
259 info
->flags
|= KVM_PPC_1T_SEGMENTS
;
262 if (env
->mmu_model
== POWERPC_MMU_2_06
||
263 env
->mmu_model
== POWERPC_MMU_2_07
) {
269 /* Standard 4k base page size segment */
270 info
->sps
[i
].page_shift
= 12;
271 info
->sps
[i
].slb_enc
= 0;
272 info
->sps
[i
].enc
[0].page_shift
= 12;
273 info
->sps
[i
].enc
[0].pte_enc
= 0;
276 /* 64K on MMU 2.06 and later */
277 if (env
->mmu_model
== POWERPC_MMU_2_06
||
278 env
->mmu_model
== POWERPC_MMU_2_07
) {
279 info
->sps
[i
].page_shift
= 16;
280 info
->sps
[i
].slb_enc
= 0x110;
281 info
->sps
[i
].enc
[0].page_shift
= 16;
282 info
->sps
[i
].enc
[0].pte_enc
= 1;
286 /* Standard 16M large page size segment */
287 info
->sps
[i
].page_shift
= 24;
288 info
->sps
[i
].slb_enc
= SLB_VSID_L
;
289 info
->sps
[i
].enc
[0].page_shift
= 24;
290 info
->sps
[i
].enc
[0].pte_enc
= 0;
294 static void kvm_get_smmu_info(PowerPCCPU
*cpu
, struct kvm_ppc_smmu_info
*info
)
296 CPUState
*cs
= CPU(cpu
);
299 if (kvm_check_extension(cs
->kvm_state
, KVM_CAP_PPC_GET_SMMU_INFO
)) {
300 ret
= kvm_vm_ioctl(cs
->kvm_state
, KVM_PPC_GET_SMMU_INFO
, info
);
306 kvm_get_fallback_smmu_info(cpu
, info
);
309 static long gethugepagesize(const char *mem_path
)
315 ret
= statfs(mem_path
, &fs
);
316 } while (ret
!= 0 && errno
== EINTR
);
319 fprintf(stderr
, "Couldn't statfs() memory path: %s\n",
324 #define HUGETLBFS_MAGIC 0x958458f6
326 if (fs
.f_type
!= HUGETLBFS_MAGIC
) {
327 /* Explicit mempath, but it's ordinary pages */
328 return getpagesize();
331 /* It's hugepage, return the huge page size */
335 static int find_max_supported_pagesize(Object
*obj
, void *opaque
)
338 long *hpsize_min
= opaque
;
340 if (object_dynamic_cast(obj
, TYPE_MEMORY_BACKEND
)) {
341 mem_path
= object_property_get_str(obj
, "mem-path", NULL
);
343 long hpsize
= gethugepagesize(mem_path
);
344 if (hpsize
< *hpsize_min
) {
345 *hpsize_min
= hpsize
;
348 *hpsize_min
= getpagesize();
355 static long getrampagesize(void)
357 long hpsize
= LONG_MAX
;
361 return gethugepagesize(mem_path
);
364 /* it's possible we have memory-backend objects with
365 * hugepage-backed RAM. these may get mapped into system
366 * address space via -numa parameters or memory hotplug
367 * hooks. we want to take these into account, but we
368 * also want to make sure these supported hugepage
369 * sizes are applicable across the entire range of memory
370 * we may boot from, so we take the min across all
371 * backends, and assume normal pages in cases where a
372 * backend isn't backed by hugepages.
374 memdev_root
= object_resolve_path("/objects", NULL
);
376 return getpagesize();
379 object_child_foreach(memdev_root
, find_max_supported_pagesize
, &hpsize
);
381 return (hpsize
== LONG_MAX
) ? getpagesize() : hpsize
;
384 static bool kvm_valid_page_size(uint32_t flags
, long rampgsize
, uint32_t shift
)
386 if (!(flags
& KVM_PPC_PAGE_SIZES_REAL
)) {
390 return (1ul << shift
) <= rampgsize
;
393 static void kvm_fixup_page_sizes(PowerPCCPU
*cpu
)
395 static struct kvm_ppc_smmu_info smmu_info
;
396 static bool has_smmu_info
;
397 CPUPPCState
*env
= &cpu
->env
;
401 /* We only handle page sizes for 64-bit server guests for now */
402 if (!(env
->mmu_model
& POWERPC_MMU_64
)) {
406 /* Collect MMU info from kernel if not already */
407 if (!has_smmu_info
) {
408 kvm_get_smmu_info(cpu
, &smmu_info
);
409 has_smmu_info
= true;
412 rampagesize
= getrampagesize();
414 /* Convert to QEMU form */
415 memset(&env
->sps
, 0, sizeof(env
->sps
));
417 /* If we have HV KVM, we need to forbid CI large pages if our
418 * host page size is smaller than 64K.
420 if (smmu_info
.flags
& KVM_PPC_PAGE_SIZES_REAL
) {
421 env
->ci_large_pages
= getpagesize() >= 0x10000;
425 * XXX This loop should be an entry wide AND of the capabilities that
426 * the selected CPU has with the capabilities that KVM supports.
428 for (ik
= iq
= 0; ik
< KVM_PPC_PAGE_SIZES_MAX_SZ
; ik
++) {
429 struct ppc_one_seg_page_size
*qsps
= &env
->sps
.sps
[iq
];
430 struct kvm_ppc_one_seg_page_size
*ksps
= &smmu_info
.sps
[ik
];
432 if (!kvm_valid_page_size(smmu_info
.flags
, rampagesize
,
436 qsps
->page_shift
= ksps
->page_shift
;
437 qsps
->slb_enc
= ksps
->slb_enc
;
438 for (jk
= jq
= 0; jk
< KVM_PPC_PAGE_SIZES_MAX_SZ
; jk
++) {
439 if (!kvm_valid_page_size(smmu_info
.flags
, rampagesize
,
440 ksps
->enc
[jk
].page_shift
)) {
443 qsps
->enc
[jq
].page_shift
= ksps
->enc
[jk
].page_shift
;
444 qsps
->enc
[jq
].pte_enc
= ksps
->enc
[jk
].pte_enc
;
445 if (++jq
>= PPC_PAGE_SIZES_MAX_SZ
) {
449 if (++iq
>= PPC_PAGE_SIZES_MAX_SZ
) {
453 env
->slb_nr
= smmu_info
.slb_size
;
454 if (!(smmu_info
.flags
& KVM_PPC_1T_SEGMENTS
)) {
455 env
->mmu_model
&= ~POWERPC_MMU_1TSEG
;
458 #else /* defined (TARGET_PPC64) */
460 static inline void kvm_fixup_page_sizes(PowerPCCPU
*cpu
)
464 #endif /* !defined (TARGET_PPC64) */
466 unsigned long kvm_arch_vcpu_id(CPUState
*cpu
)
468 return ppc_get_vcpu_dt_id(POWERPC_CPU(cpu
));
471 /* e500 supports 2 h/w breakpoint and 2 watchpoint.
472 * book3s supports only 1 watchpoint, so array size
473 * of 4 is sufficient for now.
475 #define MAX_HW_BKPTS 4
477 static struct HWBreakpoint
{
480 } hw_debug_points
[MAX_HW_BKPTS
];
482 static CPUWatchpoint hw_watchpoint
;
484 /* Default there is no breakpoint and watchpoint supported */
485 static int max_hw_breakpoint
;
486 static int max_hw_watchpoint
;
487 static int nb_hw_breakpoint
;
488 static int nb_hw_watchpoint
;
490 static void kvmppc_hw_debug_points_init(CPUPPCState
*cenv
)
492 if (cenv
->excp_model
== POWERPC_EXCP_BOOKE
) {
493 max_hw_breakpoint
= 2;
494 max_hw_watchpoint
= 2;
497 if ((max_hw_breakpoint
+ max_hw_watchpoint
) > MAX_HW_BKPTS
) {
498 fprintf(stderr
, "Error initializing h/w breakpoints\n");
503 int kvm_arch_init_vcpu(CPUState
*cs
)
505 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
506 CPUPPCState
*cenv
= &cpu
->env
;
509 /* Gather server mmu info from KVM and update the CPU state */
510 kvm_fixup_page_sizes(cpu
);
512 /* Synchronize sregs with kvm */
513 ret
= kvm_arch_sync_sregs(cpu
);
518 idle_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, kvm_kick_cpu
, cpu
);
520 /* Some targets support access to KVM's guest TLB. */
521 switch (cenv
->mmu_model
) {
522 case POWERPC_MMU_BOOKE206
:
523 ret
= kvm_booke206_tlb_init(cpu
);
529 kvm_get_one_reg(cs
, KVM_REG_PPC_DEBUG_INST
, &debug_inst_opcode
);
530 kvmppc_hw_debug_points_init(cenv
);
535 static void kvm_sw_tlb_put(PowerPCCPU
*cpu
)
537 CPUPPCState
*env
= &cpu
->env
;
538 CPUState
*cs
= CPU(cpu
);
539 struct kvm_dirty_tlb dirty_tlb
;
540 unsigned char *bitmap
;
543 if (!env
->kvm_sw_tlb
) {
547 bitmap
= g_malloc((env
->nb_tlb
+ 7) / 8);
548 memset(bitmap
, 0xFF, (env
->nb_tlb
+ 7) / 8);
550 dirty_tlb
.bitmap
= (uintptr_t)bitmap
;
551 dirty_tlb
.num_dirty
= env
->nb_tlb
;
553 ret
= kvm_vcpu_ioctl(cs
, KVM_DIRTY_TLB
, &dirty_tlb
);
555 fprintf(stderr
, "%s: KVM_DIRTY_TLB: %s\n",
556 __func__
, strerror(-ret
));
562 static void kvm_get_one_spr(CPUState
*cs
, uint64_t id
, int spr
)
564 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
565 CPUPPCState
*env
= &cpu
->env
;
570 struct kvm_one_reg reg
= {
572 .addr
= (uintptr_t) &val
,
576 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
578 trace_kvm_failed_spr_get(spr
, strerror(errno
));
580 switch (id
& KVM_REG_SIZE_MASK
) {
581 case KVM_REG_SIZE_U32
:
582 env
->spr
[spr
] = val
.u32
;
585 case KVM_REG_SIZE_U64
:
586 env
->spr
[spr
] = val
.u64
;
590 /* Don't handle this size yet */
596 static void kvm_put_one_spr(CPUState
*cs
, uint64_t id
, int spr
)
598 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
599 CPUPPCState
*env
= &cpu
->env
;
604 struct kvm_one_reg reg
= {
606 .addr
= (uintptr_t) &val
,
610 switch (id
& KVM_REG_SIZE_MASK
) {
611 case KVM_REG_SIZE_U32
:
612 val
.u32
= env
->spr
[spr
];
615 case KVM_REG_SIZE_U64
:
616 val
.u64
= env
->spr
[spr
];
620 /* Don't handle this size yet */
624 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
626 trace_kvm_failed_spr_set(spr
, strerror(errno
));
630 static int kvm_put_fp(CPUState
*cs
)
632 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
633 CPUPPCState
*env
= &cpu
->env
;
634 struct kvm_one_reg reg
;
638 if (env
->insns_flags
& PPC_FLOAT
) {
639 uint64_t fpscr
= env
->fpscr
;
640 bool vsx
= !!(env
->insns_flags2
& PPC2_VSX
);
642 reg
.id
= KVM_REG_PPC_FPSCR
;
643 reg
.addr
= (uintptr_t)&fpscr
;
644 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
646 DPRINTF("Unable to set FPSCR to KVM: %s\n", strerror(errno
));
650 for (i
= 0; i
< 32; i
++) {
653 vsr
[0] = float64_val(env
->fpr
[i
]);
654 vsr
[1] = env
->vsr
[i
];
655 reg
.addr
= (uintptr_t) &vsr
;
656 reg
.id
= vsx
? KVM_REG_PPC_VSR(i
) : KVM_REG_PPC_FPR(i
);
658 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
660 DPRINTF("Unable to set %s%d to KVM: %s\n", vsx
? "VSR" : "FPR",
667 if (env
->insns_flags
& PPC_ALTIVEC
) {
668 reg
.id
= KVM_REG_PPC_VSCR
;
669 reg
.addr
= (uintptr_t)&env
->vscr
;
670 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
672 DPRINTF("Unable to set VSCR to KVM: %s\n", strerror(errno
));
676 for (i
= 0; i
< 32; i
++) {
677 reg
.id
= KVM_REG_PPC_VR(i
);
678 reg
.addr
= (uintptr_t)&env
->avr
[i
];
679 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
681 DPRINTF("Unable to set VR%d to KVM: %s\n", i
, strerror(errno
));
690 static int kvm_get_fp(CPUState
*cs
)
692 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
693 CPUPPCState
*env
= &cpu
->env
;
694 struct kvm_one_reg reg
;
698 if (env
->insns_flags
& PPC_FLOAT
) {
700 bool vsx
= !!(env
->insns_flags2
& PPC2_VSX
);
702 reg
.id
= KVM_REG_PPC_FPSCR
;
703 reg
.addr
= (uintptr_t)&fpscr
;
704 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
706 DPRINTF("Unable to get FPSCR from KVM: %s\n", strerror(errno
));
712 for (i
= 0; i
< 32; i
++) {
715 reg
.addr
= (uintptr_t) &vsr
;
716 reg
.id
= vsx
? KVM_REG_PPC_VSR(i
) : KVM_REG_PPC_FPR(i
);
718 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
720 DPRINTF("Unable to get %s%d from KVM: %s\n",
721 vsx
? "VSR" : "FPR", i
, strerror(errno
));
724 env
->fpr
[i
] = vsr
[0];
726 env
->vsr
[i
] = vsr
[1];
732 if (env
->insns_flags
& PPC_ALTIVEC
) {
733 reg
.id
= KVM_REG_PPC_VSCR
;
734 reg
.addr
= (uintptr_t)&env
->vscr
;
735 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
737 DPRINTF("Unable to get VSCR from KVM: %s\n", strerror(errno
));
741 for (i
= 0; i
< 32; i
++) {
742 reg
.id
= KVM_REG_PPC_VR(i
);
743 reg
.addr
= (uintptr_t)&env
->avr
[i
];
744 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
746 DPRINTF("Unable to get VR%d from KVM: %s\n",
756 #if defined(TARGET_PPC64)
757 static int kvm_get_vpa(CPUState
*cs
)
759 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
760 CPUPPCState
*env
= &cpu
->env
;
761 struct kvm_one_reg reg
;
764 reg
.id
= KVM_REG_PPC_VPA_ADDR
;
765 reg
.addr
= (uintptr_t)&env
->vpa_addr
;
766 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
768 DPRINTF("Unable to get VPA address from KVM: %s\n", strerror(errno
));
772 assert((uintptr_t)&env
->slb_shadow_size
773 == ((uintptr_t)&env
->slb_shadow_addr
+ 8));
774 reg
.id
= KVM_REG_PPC_VPA_SLB
;
775 reg
.addr
= (uintptr_t)&env
->slb_shadow_addr
;
776 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
778 DPRINTF("Unable to get SLB shadow state from KVM: %s\n",
783 assert((uintptr_t)&env
->dtl_size
== ((uintptr_t)&env
->dtl_addr
+ 8));
784 reg
.id
= KVM_REG_PPC_VPA_DTL
;
785 reg
.addr
= (uintptr_t)&env
->dtl_addr
;
786 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
788 DPRINTF("Unable to get dispatch trace log state from KVM: %s\n",
796 static int kvm_put_vpa(CPUState
*cs
)
798 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
799 CPUPPCState
*env
= &cpu
->env
;
800 struct kvm_one_reg reg
;
803 /* SLB shadow or DTL can't be registered unless a master VPA is
804 * registered. That means when restoring state, if a VPA *is*
805 * registered, we need to set that up first. If not, we need to
806 * deregister the others before deregistering the master VPA */
807 assert(env
->vpa_addr
|| !(env
->slb_shadow_addr
|| env
->dtl_addr
));
810 reg
.id
= KVM_REG_PPC_VPA_ADDR
;
811 reg
.addr
= (uintptr_t)&env
->vpa_addr
;
812 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
814 DPRINTF("Unable to set VPA address to KVM: %s\n", strerror(errno
));
819 assert((uintptr_t)&env
->slb_shadow_size
820 == ((uintptr_t)&env
->slb_shadow_addr
+ 8));
821 reg
.id
= KVM_REG_PPC_VPA_SLB
;
822 reg
.addr
= (uintptr_t)&env
->slb_shadow_addr
;
823 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
825 DPRINTF("Unable to set SLB shadow state to KVM: %s\n", strerror(errno
));
829 assert((uintptr_t)&env
->dtl_size
== ((uintptr_t)&env
->dtl_addr
+ 8));
830 reg
.id
= KVM_REG_PPC_VPA_DTL
;
831 reg
.addr
= (uintptr_t)&env
->dtl_addr
;
832 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
834 DPRINTF("Unable to set dispatch trace log state to KVM: %s\n",
839 if (!env
->vpa_addr
) {
840 reg
.id
= KVM_REG_PPC_VPA_ADDR
;
841 reg
.addr
= (uintptr_t)&env
->vpa_addr
;
842 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
844 DPRINTF("Unable to set VPA address to KVM: %s\n", strerror(errno
));
851 #endif /* TARGET_PPC64 */
853 int kvm_arch_put_registers(CPUState
*cs
, int level
)
855 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
856 CPUPPCState
*env
= &cpu
->env
;
857 struct kvm_regs regs
;
861 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_REGS
, ®s
);
868 regs
.xer
= cpu_read_xer(env
);
872 regs
.srr0
= env
->spr
[SPR_SRR0
];
873 regs
.srr1
= env
->spr
[SPR_SRR1
];
875 regs
.sprg0
= env
->spr
[SPR_SPRG0
];
876 regs
.sprg1
= env
->spr
[SPR_SPRG1
];
877 regs
.sprg2
= env
->spr
[SPR_SPRG2
];
878 regs
.sprg3
= env
->spr
[SPR_SPRG3
];
879 regs
.sprg4
= env
->spr
[SPR_SPRG4
];
880 regs
.sprg5
= env
->spr
[SPR_SPRG5
];
881 regs
.sprg6
= env
->spr
[SPR_SPRG6
];
882 regs
.sprg7
= env
->spr
[SPR_SPRG7
];
884 regs
.pid
= env
->spr
[SPR_BOOKE_PID
];
886 for (i
= 0;i
< 32; i
++)
887 regs
.gpr
[i
] = env
->gpr
[i
];
890 for (i
= 0; i
< 8; i
++) {
891 regs
.cr
|= (env
->crf
[i
] & 15) << (4 * (7 - i
));
894 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_REGS
, ®s
);
900 if (env
->tlb_dirty
) {
902 env
->tlb_dirty
= false;
905 if (cap_segstate
&& (level
>= KVM_PUT_RESET_STATE
)) {
906 struct kvm_sregs sregs
;
908 sregs
.pvr
= env
->spr
[SPR_PVR
];
910 sregs
.u
.s
.sdr1
= env
->spr
[SPR_SDR1
];
914 for (i
= 0; i
< ARRAY_SIZE(env
->slb
); i
++) {
915 sregs
.u
.s
.ppc64
.slb
[i
].slbe
= env
->slb
[i
].esid
;
916 if (env
->slb
[i
].esid
& SLB_ESID_V
) {
917 sregs
.u
.s
.ppc64
.slb
[i
].slbe
|= i
;
919 sregs
.u
.s
.ppc64
.slb
[i
].slbv
= env
->slb
[i
].vsid
;
924 for (i
= 0; i
< 16; i
++) {
925 sregs
.u
.s
.ppc32
.sr
[i
] = env
->sr
[i
];
929 for (i
= 0; i
< 8; i
++) {
930 /* Beware. We have to swap upper and lower bits here */
931 sregs
.u
.s
.ppc32
.dbat
[i
] = ((uint64_t)env
->DBAT
[0][i
] << 32)
933 sregs
.u
.s
.ppc32
.ibat
[i
] = ((uint64_t)env
->IBAT
[0][i
] << 32)
937 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_SREGS
, &sregs
);
943 if (cap_hior
&& (level
>= KVM_PUT_RESET_STATE
)) {
944 kvm_put_one_spr(cs
, KVM_REG_PPC_HIOR
, SPR_HIOR
);
950 /* We deliberately ignore errors here, for kernels which have
951 * the ONE_REG calls, but don't support the specific
952 * registers, there's a reasonable chance things will still
953 * work, at least until we try to migrate. */
954 for (i
= 0; i
< 1024; i
++) {
955 uint64_t id
= env
->spr_cb
[i
].one_reg_id
;
958 kvm_put_one_spr(cs
, id
, i
);
964 for (i
= 0; i
< ARRAY_SIZE(env
->tm_gpr
); i
++) {
965 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_GPR(i
), &env
->tm_gpr
[i
]);
967 for (i
= 0; i
< ARRAY_SIZE(env
->tm_vsr
); i
++) {
968 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_VSR(i
), &env
->tm_vsr
[i
]);
970 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_CR
, &env
->tm_cr
);
971 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_LR
, &env
->tm_lr
);
972 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_CTR
, &env
->tm_ctr
);
973 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_FPSCR
, &env
->tm_fpscr
);
974 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_AMR
, &env
->tm_amr
);
975 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_PPR
, &env
->tm_ppr
);
976 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_VRSAVE
, &env
->tm_vrsave
);
977 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_VSCR
, &env
->tm_vscr
);
978 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_DSCR
, &env
->tm_dscr
);
979 kvm_set_one_reg(cs
, KVM_REG_PPC_TM_TAR
, &env
->tm_tar
);
983 if (kvm_put_vpa(cs
) < 0) {
984 DPRINTF("Warning: Unable to set VPA information to KVM\n");
988 kvm_set_one_reg(cs
, KVM_REG_PPC_TB_OFFSET
, &env
->tb_env
->tb_offset
);
989 #endif /* TARGET_PPC64 */
995 static void kvm_sync_excp(CPUPPCState
*env
, int vector
, int ivor
)
997 env
->excp_vectors
[vector
] = env
->spr
[ivor
] + env
->spr
[SPR_BOOKE_IVPR
];
1000 int kvm_arch_get_registers(CPUState
*cs
)
1002 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
1003 CPUPPCState
*env
= &cpu
->env
;
1004 struct kvm_regs regs
;
1005 struct kvm_sregs sregs
;
1009 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_REGS
, ®s
);
1014 for (i
= 7; i
>= 0; i
--) {
1015 env
->crf
[i
] = cr
& 15;
1019 env
->ctr
= regs
.ctr
;
1021 cpu_write_xer(env
, regs
.xer
);
1022 env
->msr
= regs
.msr
;
1025 env
->spr
[SPR_SRR0
] = regs
.srr0
;
1026 env
->spr
[SPR_SRR1
] = regs
.srr1
;
1028 env
->spr
[SPR_SPRG0
] = regs
.sprg0
;
1029 env
->spr
[SPR_SPRG1
] = regs
.sprg1
;
1030 env
->spr
[SPR_SPRG2
] = regs
.sprg2
;
1031 env
->spr
[SPR_SPRG3
] = regs
.sprg3
;
1032 env
->spr
[SPR_SPRG4
] = regs
.sprg4
;
1033 env
->spr
[SPR_SPRG5
] = regs
.sprg5
;
1034 env
->spr
[SPR_SPRG6
] = regs
.sprg6
;
1035 env
->spr
[SPR_SPRG7
] = regs
.sprg7
;
1037 env
->spr
[SPR_BOOKE_PID
] = regs
.pid
;
1039 for (i
= 0;i
< 32; i
++)
1040 env
->gpr
[i
] = regs
.gpr
[i
];
1044 if (cap_booke_sregs
) {
1045 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_SREGS
, &sregs
);
1050 if (sregs
.u
.e
.features
& KVM_SREGS_E_BASE
) {
1051 env
->spr
[SPR_BOOKE_CSRR0
] = sregs
.u
.e
.csrr0
;
1052 env
->spr
[SPR_BOOKE_CSRR1
] = sregs
.u
.e
.csrr1
;
1053 env
->spr
[SPR_BOOKE_ESR
] = sregs
.u
.e
.esr
;
1054 env
->spr
[SPR_BOOKE_DEAR
] = sregs
.u
.e
.dear
;
1055 env
->spr
[SPR_BOOKE_MCSR
] = sregs
.u
.e
.mcsr
;
1056 env
->spr
[SPR_BOOKE_TSR
] = sregs
.u
.e
.tsr
;
1057 env
->spr
[SPR_BOOKE_TCR
] = sregs
.u
.e
.tcr
;
1058 env
->spr
[SPR_DECR
] = sregs
.u
.e
.dec
;
1059 env
->spr
[SPR_TBL
] = sregs
.u
.e
.tb
& 0xffffffff;
1060 env
->spr
[SPR_TBU
] = sregs
.u
.e
.tb
>> 32;
1061 env
->spr
[SPR_VRSAVE
] = sregs
.u
.e
.vrsave
;
1064 if (sregs
.u
.e
.features
& KVM_SREGS_E_ARCH206
) {
1065 env
->spr
[SPR_BOOKE_PIR
] = sregs
.u
.e
.pir
;
1066 env
->spr
[SPR_BOOKE_MCSRR0
] = sregs
.u
.e
.mcsrr0
;
1067 env
->spr
[SPR_BOOKE_MCSRR1
] = sregs
.u
.e
.mcsrr1
;
1068 env
->spr
[SPR_BOOKE_DECAR
] = sregs
.u
.e
.decar
;
1069 env
->spr
[SPR_BOOKE_IVPR
] = sregs
.u
.e
.ivpr
;
1072 if (sregs
.u
.e
.features
& KVM_SREGS_E_64
) {
1073 env
->spr
[SPR_BOOKE_EPCR
] = sregs
.u
.e
.epcr
;
1076 if (sregs
.u
.e
.features
& KVM_SREGS_E_SPRG8
) {
1077 env
->spr
[SPR_BOOKE_SPRG8
] = sregs
.u
.e
.sprg8
;
1080 if (sregs
.u
.e
.features
& KVM_SREGS_E_IVOR
) {
1081 env
->spr
[SPR_BOOKE_IVOR0
] = sregs
.u
.e
.ivor_low
[0];
1082 kvm_sync_excp(env
, POWERPC_EXCP_CRITICAL
, SPR_BOOKE_IVOR0
);
1083 env
->spr
[SPR_BOOKE_IVOR1
] = sregs
.u
.e
.ivor_low
[1];
1084 kvm_sync_excp(env
, POWERPC_EXCP_MCHECK
, SPR_BOOKE_IVOR1
);
1085 env
->spr
[SPR_BOOKE_IVOR2
] = sregs
.u
.e
.ivor_low
[2];
1086 kvm_sync_excp(env
, POWERPC_EXCP_DSI
, SPR_BOOKE_IVOR2
);
1087 env
->spr
[SPR_BOOKE_IVOR3
] = sregs
.u
.e
.ivor_low
[3];
1088 kvm_sync_excp(env
, POWERPC_EXCP_ISI
, SPR_BOOKE_IVOR3
);
1089 env
->spr
[SPR_BOOKE_IVOR4
] = sregs
.u
.e
.ivor_low
[4];
1090 kvm_sync_excp(env
, POWERPC_EXCP_EXTERNAL
, SPR_BOOKE_IVOR4
);
1091 env
->spr
[SPR_BOOKE_IVOR5
] = sregs
.u
.e
.ivor_low
[5];
1092 kvm_sync_excp(env
, POWERPC_EXCP_ALIGN
, SPR_BOOKE_IVOR5
);
1093 env
->spr
[SPR_BOOKE_IVOR6
] = sregs
.u
.e
.ivor_low
[6];
1094 kvm_sync_excp(env
, POWERPC_EXCP_PROGRAM
, SPR_BOOKE_IVOR6
);
1095 env
->spr
[SPR_BOOKE_IVOR7
] = sregs
.u
.e
.ivor_low
[7];
1096 kvm_sync_excp(env
, POWERPC_EXCP_FPU
, SPR_BOOKE_IVOR7
);
1097 env
->spr
[SPR_BOOKE_IVOR8
] = sregs
.u
.e
.ivor_low
[8];
1098 kvm_sync_excp(env
, POWERPC_EXCP_SYSCALL
, SPR_BOOKE_IVOR8
);
1099 env
->spr
[SPR_BOOKE_IVOR9
] = sregs
.u
.e
.ivor_low
[9];
1100 kvm_sync_excp(env
, POWERPC_EXCP_APU
, SPR_BOOKE_IVOR9
);
1101 env
->spr
[SPR_BOOKE_IVOR10
] = sregs
.u
.e
.ivor_low
[10];
1102 kvm_sync_excp(env
, POWERPC_EXCP_DECR
, SPR_BOOKE_IVOR10
);
1103 env
->spr
[SPR_BOOKE_IVOR11
] = sregs
.u
.e
.ivor_low
[11];
1104 kvm_sync_excp(env
, POWERPC_EXCP_FIT
, SPR_BOOKE_IVOR11
);
1105 env
->spr
[SPR_BOOKE_IVOR12
] = sregs
.u
.e
.ivor_low
[12];
1106 kvm_sync_excp(env
, POWERPC_EXCP_WDT
, SPR_BOOKE_IVOR12
);
1107 env
->spr
[SPR_BOOKE_IVOR13
] = sregs
.u
.e
.ivor_low
[13];
1108 kvm_sync_excp(env
, POWERPC_EXCP_DTLB
, SPR_BOOKE_IVOR13
);
1109 env
->spr
[SPR_BOOKE_IVOR14
] = sregs
.u
.e
.ivor_low
[14];
1110 kvm_sync_excp(env
, POWERPC_EXCP_ITLB
, SPR_BOOKE_IVOR14
);
1111 env
->spr
[SPR_BOOKE_IVOR15
] = sregs
.u
.e
.ivor_low
[15];
1112 kvm_sync_excp(env
, POWERPC_EXCP_DEBUG
, SPR_BOOKE_IVOR15
);
1114 if (sregs
.u
.e
.features
& KVM_SREGS_E_SPE
) {
1115 env
->spr
[SPR_BOOKE_IVOR32
] = sregs
.u
.e
.ivor_high
[0];
1116 kvm_sync_excp(env
, POWERPC_EXCP_SPEU
, SPR_BOOKE_IVOR32
);
1117 env
->spr
[SPR_BOOKE_IVOR33
] = sregs
.u
.e
.ivor_high
[1];
1118 kvm_sync_excp(env
, POWERPC_EXCP_EFPDI
, SPR_BOOKE_IVOR33
);
1119 env
->spr
[SPR_BOOKE_IVOR34
] = sregs
.u
.e
.ivor_high
[2];
1120 kvm_sync_excp(env
, POWERPC_EXCP_EFPRI
, SPR_BOOKE_IVOR34
);
1123 if (sregs
.u
.e
.features
& KVM_SREGS_E_PM
) {
1124 env
->spr
[SPR_BOOKE_IVOR35
] = sregs
.u
.e
.ivor_high
[3];
1125 kvm_sync_excp(env
, POWERPC_EXCP_EPERFM
, SPR_BOOKE_IVOR35
);
1128 if (sregs
.u
.e
.features
& KVM_SREGS_E_PC
) {
1129 env
->spr
[SPR_BOOKE_IVOR36
] = sregs
.u
.e
.ivor_high
[4];
1130 kvm_sync_excp(env
, POWERPC_EXCP_DOORI
, SPR_BOOKE_IVOR36
);
1131 env
->spr
[SPR_BOOKE_IVOR37
] = sregs
.u
.e
.ivor_high
[5];
1132 kvm_sync_excp(env
, POWERPC_EXCP_DOORCI
, SPR_BOOKE_IVOR37
);
1136 if (sregs
.u
.e
.features
& KVM_SREGS_E_ARCH206_MMU
) {
1137 env
->spr
[SPR_BOOKE_MAS0
] = sregs
.u
.e
.mas0
;
1138 env
->spr
[SPR_BOOKE_MAS1
] = sregs
.u
.e
.mas1
;
1139 env
->spr
[SPR_BOOKE_MAS2
] = sregs
.u
.e
.mas2
;
1140 env
->spr
[SPR_BOOKE_MAS3
] = sregs
.u
.e
.mas7_3
& 0xffffffff;
1141 env
->spr
[SPR_BOOKE_MAS4
] = sregs
.u
.e
.mas4
;
1142 env
->spr
[SPR_BOOKE_MAS6
] = sregs
.u
.e
.mas6
;
1143 env
->spr
[SPR_BOOKE_MAS7
] = sregs
.u
.e
.mas7_3
>> 32;
1144 env
->spr
[SPR_MMUCFG
] = sregs
.u
.e
.mmucfg
;
1145 env
->spr
[SPR_BOOKE_TLB0CFG
] = sregs
.u
.e
.tlbcfg
[0];
1146 env
->spr
[SPR_BOOKE_TLB1CFG
] = sregs
.u
.e
.tlbcfg
[1];
1149 if (sregs
.u
.e
.features
& KVM_SREGS_EXP
) {
1150 env
->spr
[SPR_BOOKE_EPR
] = sregs
.u
.e
.epr
;
1153 if (sregs
.u
.e
.features
& KVM_SREGS_E_PD
) {
1154 env
->spr
[SPR_BOOKE_EPLC
] = sregs
.u
.e
.eplc
;
1155 env
->spr
[SPR_BOOKE_EPSC
] = sregs
.u
.e
.epsc
;
1158 if (sregs
.u
.e
.impl_id
== KVM_SREGS_E_IMPL_FSL
) {
1159 env
->spr
[SPR_E500_SVR
] = sregs
.u
.e
.impl
.fsl
.svr
;
1160 env
->spr
[SPR_Exxx_MCAR
] = sregs
.u
.e
.impl
.fsl
.mcar
;
1161 env
->spr
[SPR_HID0
] = sregs
.u
.e
.impl
.fsl
.hid0
;
1163 if (sregs
.u
.e
.impl
.fsl
.features
& KVM_SREGS_E_FSL_PIDn
) {
1164 env
->spr
[SPR_BOOKE_PID1
] = sregs
.u
.e
.impl
.fsl
.pid1
;
1165 env
->spr
[SPR_BOOKE_PID2
] = sregs
.u
.e
.impl
.fsl
.pid2
;
1171 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_SREGS
, &sregs
);
1176 if (!env
->external_htab
) {
1177 ppc_store_sdr1(env
, sregs
.u
.s
.sdr1
);
1183 * The packed SLB array we get from KVM_GET_SREGS only contains
1184 * information about valid entries. So we flush our internal
1185 * copy to get rid of stale ones, then put all valid SLB entries
1188 memset(env
->slb
, 0, sizeof(env
->slb
));
1189 for (i
= 0; i
< ARRAY_SIZE(env
->slb
); i
++) {
1190 target_ulong rb
= sregs
.u
.s
.ppc64
.slb
[i
].slbe
;
1191 target_ulong rs
= sregs
.u
.s
.ppc64
.slb
[i
].slbv
;
1193 * Only restore valid entries
1195 if (rb
& SLB_ESID_V
) {
1196 ppc_store_slb(env
, rb
, rs
);
1202 for (i
= 0; i
< 16; i
++) {
1203 env
->sr
[i
] = sregs
.u
.s
.ppc32
.sr
[i
];
1207 for (i
= 0; i
< 8; i
++) {
1208 env
->DBAT
[0][i
] = sregs
.u
.s
.ppc32
.dbat
[i
] & 0xffffffff;
1209 env
->DBAT
[1][i
] = sregs
.u
.s
.ppc32
.dbat
[i
] >> 32;
1210 env
->IBAT
[0][i
] = sregs
.u
.s
.ppc32
.ibat
[i
] & 0xffffffff;
1211 env
->IBAT
[1][i
] = sregs
.u
.s
.ppc32
.ibat
[i
] >> 32;
1216 kvm_get_one_spr(cs
, KVM_REG_PPC_HIOR
, SPR_HIOR
);
1222 /* We deliberately ignore errors here, for kernels which have
1223 * the ONE_REG calls, but don't support the specific
1224 * registers, there's a reasonable chance things will still
1225 * work, at least until we try to migrate. */
1226 for (i
= 0; i
< 1024; i
++) {
1227 uint64_t id
= env
->spr_cb
[i
].one_reg_id
;
1230 kvm_get_one_spr(cs
, id
, i
);
1236 for (i
= 0; i
< ARRAY_SIZE(env
->tm_gpr
); i
++) {
1237 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_GPR(i
), &env
->tm_gpr
[i
]);
1239 for (i
= 0; i
< ARRAY_SIZE(env
->tm_vsr
); i
++) {
1240 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_VSR(i
), &env
->tm_vsr
[i
]);
1242 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_CR
, &env
->tm_cr
);
1243 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_LR
, &env
->tm_lr
);
1244 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_CTR
, &env
->tm_ctr
);
1245 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_FPSCR
, &env
->tm_fpscr
);
1246 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_AMR
, &env
->tm_amr
);
1247 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_PPR
, &env
->tm_ppr
);
1248 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_VRSAVE
, &env
->tm_vrsave
);
1249 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_VSCR
, &env
->tm_vscr
);
1250 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_DSCR
, &env
->tm_dscr
);
1251 kvm_get_one_reg(cs
, KVM_REG_PPC_TM_TAR
, &env
->tm_tar
);
1255 if (kvm_get_vpa(cs
) < 0) {
1256 DPRINTF("Warning: Unable to get VPA information from KVM\n");
1260 kvm_get_one_reg(cs
, KVM_REG_PPC_TB_OFFSET
, &env
->tb_env
->tb_offset
);
1267 int kvmppc_set_interrupt(PowerPCCPU
*cpu
, int irq
, int level
)
1269 unsigned virq
= level
? KVM_INTERRUPT_SET_LEVEL
: KVM_INTERRUPT_UNSET
;
1271 if (irq
!= PPC_INTERRUPT_EXT
) {
1275 if (!kvm_enabled() || !cap_interrupt_unset
|| !cap_interrupt_level
) {
1279 kvm_vcpu_ioctl(CPU(cpu
), KVM_INTERRUPT
, &virq
);
1284 #if defined(TARGET_PPCEMB)
1285 #define PPC_INPUT_INT PPC40x_INPUT_INT
1286 #elif defined(TARGET_PPC64)
1287 #define PPC_INPUT_INT PPC970_INPUT_INT
1289 #define PPC_INPUT_INT PPC6xx_INPUT_INT
1292 void kvm_arch_pre_run(CPUState
*cs
, struct kvm_run
*run
)
1294 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
1295 CPUPPCState
*env
= &cpu
->env
;
1299 qemu_mutex_lock_iothread();
1301 /* PowerPC QEMU tracks the various core input pins (interrupt, critical
1302 * interrupt, reset, etc) in PPC-specific env->irq_input_state. */
1303 if (!cap_interrupt_level
&&
1304 run
->ready_for_interrupt_injection
&&
1305 (cs
->interrupt_request
& CPU_INTERRUPT_HARD
) &&
1306 (env
->irq_input_state
& (1<<PPC_INPUT_INT
)))
1308 /* For now KVM disregards the 'irq' argument. However, in the
1309 * future KVM could cache it in-kernel to avoid a heavyweight exit
1310 * when reading the UIC.
1312 irq
= KVM_INTERRUPT_SET
;
1314 DPRINTF("injected interrupt %d\n", irq
);
1315 r
= kvm_vcpu_ioctl(cs
, KVM_INTERRUPT
, &irq
);
1317 printf("cpu %d fail inject %x\n", cs
->cpu_index
, irq
);
1320 /* Always wake up soon in case the interrupt was level based */
1321 timer_mod(idle_timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) +
1322 (get_ticks_per_sec() / 50));
1325 /* We don't know if there are more interrupts pending after this. However,
1326 * the guest will return to userspace in the course of handling this one
1327 * anyways, so we will get a chance to deliver the rest. */
1329 qemu_mutex_unlock_iothread();
1332 MemTxAttrs
kvm_arch_post_run(CPUState
*cs
, struct kvm_run
*run
)
1334 return MEMTXATTRS_UNSPECIFIED
;
1337 int kvm_arch_process_async_events(CPUState
*cs
)
1342 static int kvmppc_handle_halt(PowerPCCPU
*cpu
)
1344 CPUState
*cs
= CPU(cpu
);
1345 CPUPPCState
*env
= &cpu
->env
;
1347 if (!(cs
->interrupt_request
& CPU_INTERRUPT_HARD
) && (msr_ee
)) {
1349 cs
->exception_index
= EXCP_HLT
;
1355 /* map dcr access to existing qemu dcr emulation */
1356 static int kvmppc_handle_dcr_read(CPUPPCState
*env
, uint32_t dcrn
, uint32_t *data
)
1358 if (ppc_dcr_read(env
->dcr_env
, dcrn
, data
) < 0)
1359 fprintf(stderr
, "Read to unhandled DCR (0x%x)\n", dcrn
);
1364 static int kvmppc_handle_dcr_write(CPUPPCState
*env
, uint32_t dcrn
, uint32_t data
)
1366 if (ppc_dcr_write(env
->dcr_env
, dcrn
, data
) < 0)
1367 fprintf(stderr
, "Write to unhandled DCR (0x%x)\n", dcrn
);
1372 int kvm_arch_insert_sw_breakpoint(CPUState
*cs
, struct kvm_sw_breakpoint
*bp
)
1374 /* Mixed endian case is not handled */
1375 uint32_t sc
= debug_inst_opcode
;
1377 if (cpu_memory_rw_debug(cs
, bp
->pc
, (uint8_t *)&bp
->saved_insn
,
1379 cpu_memory_rw_debug(cs
, bp
->pc
, (uint8_t *)&sc
, sizeof(sc
), 1)) {
1386 int kvm_arch_remove_sw_breakpoint(CPUState
*cs
, struct kvm_sw_breakpoint
*bp
)
1390 if (cpu_memory_rw_debug(cs
, bp
->pc
, (uint8_t *)&sc
, sizeof(sc
), 0) ||
1391 sc
!= debug_inst_opcode
||
1392 cpu_memory_rw_debug(cs
, bp
->pc
, (uint8_t *)&bp
->saved_insn
,
1400 static int find_hw_breakpoint(target_ulong addr
, int type
)
1404 assert((nb_hw_breakpoint
+ nb_hw_watchpoint
)
1405 <= ARRAY_SIZE(hw_debug_points
));
1407 for (n
= 0; n
< nb_hw_breakpoint
+ nb_hw_watchpoint
; n
++) {
1408 if (hw_debug_points
[n
].addr
== addr
&&
1409 hw_debug_points
[n
].type
== type
) {
1417 static int find_hw_watchpoint(target_ulong addr
, int *flag
)
1421 n
= find_hw_breakpoint(addr
, GDB_WATCHPOINT_ACCESS
);
1423 *flag
= BP_MEM_ACCESS
;
1427 n
= find_hw_breakpoint(addr
, GDB_WATCHPOINT_WRITE
);
1429 *flag
= BP_MEM_WRITE
;
1433 n
= find_hw_breakpoint(addr
, GDB_WATCHPOINT_READ
);
1435 *flag
= BP_MEM_READ
;
1442 int kvm_arch_insert_hw_breakpoint(target_ulong addr
,
1443 target_ulong len
, int type
)
1445 if ((nb_hw_breakpoint
+ nb_hw_watchpoint
) >= ARRAY_SIZE(hw_debug_points
)) {
1449 hw_debug_points
[nb_hw_breakpoint
+ nb_hw_watchpoint
].addr
= addr
;
1450 hw_debug_points
[nb_hw_breakpoint
+ nb_hw_watchpoint
].type
= type
;
1453 case GDB_BREAKPOINT_HW
:
1454 if (nb_hw_breakpoint
>= max_hw_breakpoint
) {
1458 if (find_hw_breakpoint(addr
, type
) >= 0) {
1465 case GDB_WATCHPOINT_WRITE
:
1466 case GDB_WATCHPOINT_READ
:
1467 case GDB_WATCHPOINT_ACCESS
:
1468 if (nb_hw_watchpoint
>= max_hw_watchpoint
) {
1472 if (find_hw_breakpoint(addr
, type
) >= 0) {
1486 int kvm_arch_remove_hw_breakpoint(target_ulong addr
,
1487 target_ulong len
, int type
)
1491 n
= find_hw_breakpoint(addr
, type
);
1497 case GDB_BREAKPOINT_HW
:
1501 case GDB_WATCHPOINT_WRITE
:
1502 case GDB_WATCHPOINT_READ
:
1503 case GDB_WATCHPOINT_ACCESS
:
1510 hw_debug_points
[n
] = hw_debug_points
[nb_hw_breakpoint
+ nb_hw_watchpoint
];
1515 void kvm_arch_remove_all_hw_breakpoints(void)
1517 nb_hw_breakpoint
= nb_hw_watchpoint
= 0;
1520 void kvm_arch_update_guest_debug(CPUState
*cs
, struct kvm_guest_debug
*dbg
)
1524 /* Software Breakpoint updates */
1525 if (kvm_sw_breakpoints_active(cs
)) {
1526 dbg
->control
|= KVM_GUESTDBG_ENABLE
| KVM_GUESTDBG_USE_SW_BP
;
1529 assert((nb_hw_breakpoint
+ nb_hw_watchpoint
)
1530 <= ARRAY_SIZE(hw_debug_points
));
1531 assert((nb_hw_breakpoint
+ nb_hw_watchpoint
) <= ARRAY_SIZE(dbg
->arch
.bp
));
1533 if (nb_hw_breakpoint
+ nb_hw_watchpoint
> 0) {
1534 dbg
->control
|= KVM_GUESTDBG_ENABLE
| KVM_GUESTDBG_USE_HW_BP
;
1535 memset(dbg
->arch
.bp
, 0, sizeof(dbg
->arch
.bp
));
1536 for (n
= 0; n
< nb_hw_breakpoint
+ nb_hw_watchpoint
; n
++) {
1537 switch (hw_debug_points
[n
].type
) {
1538 case GDB_BREAKPOINT_HW
:
1539 dbg
->arch
.bp
[n
].type
= KVMPPC_DEBUG_BREAKPOINT
;
1541 case GDB_WATCHPOINT_WRITE
:
1542 dbg
->arch
.bp
[n
].type
= KVMPPC_DEBUG_WATCH_WRITE
;
1544 case GDB_WATCHPOINT_READ
:
1545 dbg
->arch
.bp
[n
].type
= KVMPPC_DEBUG_WATCH_READ
;
1547 case GDB_WATCHPOINT_ACCESS
:
1548 dbg
->arch
.bp
[n
].type
= KVMPPC_DEBUG_WATCH_WRITE
|
1549 KVMPPC_DEBUG_WATCH_READ
;
1552 cpu_abort(cs
, "Unsupported breakpoint type\n");
1554 dbg
->arch
.bp
[n
].addr
= hw_debug_points
[n
].addr
;
1559 static int kvm_handle_debug(PowerPCCPU
*cpu
, struct kvm_run
*run
)
1561 CPUState
*cs
= CPU(cpu
);
1562 CPUPPCState
*env
= &cpu
->env
;
1563 struct kvm_debug_exit_arch
*arch_info
= &run
->debug
.arch
;
1568 if (cs
->singlestep_enabled
) {
1570 } else if (arch_info
->status
) {
1571 if (nb_hw_breakpoint
+ nb_hw_watchpoint
> 0) {
1572 if (arch_info
->status
& KVMPPC_DEBUG_BREAKPOINT
) {
1573 n
= find_hw_breakpoint(arch_info
->address
, GDB_BREAKPOINT_HW
);
1577 } else if (arch_info
->status
& (KVMPPC_DEBUG_WATCH_READ
|
1578 KVMPPC_DEBUG_WATCH_WRITE
)) {
1579 n
= find_hw_watchpoint(arch_info
->address
, &flag
);
1582 cs
->watchpoint_hit
= &hw_watchpoint
;
1583 hw_watchpoint
.vaddr
= hw_debug_points
[n
].addr
;
1584 hw_watchpoint
.flags
= flag
;
1588 } else if (kvm_find_sw_breakpoint(cs
, arch_info
->address
)) {
1591 /* QEMU is not able to handle debug exception, so inject
1592 * program exception to guest;
1593 * Yes program exception NOT debug exception !!
1594 * When QEMU is using debug resources then debug exception must
1595 * be always set. To achieve this we set MSR_DE and also set
1596 * MSRP_DEP so guest cannot change MSR_DE.
1597 * When emulating debug resource for guest we want guest
1598 * to control MSR_DE (enable/disable debug interrupt on need).
1599 * Supporting both configurations are NOT possible.
1600 * So the result is that we cannot share debug resources
1601 * between QEMU and Guest on BOOKE architecture.
1602 * In the current design QEMU gets the priority over guest,
1603 * this means that if QEMU is using debug resources then guest
1605 * For software breakpoint QEMU uses a privileged instruction;
1606 * So there cannot be any reason that we are here for guest
1607 * set debug exception, only possibility is guest executed a
1608 * privileged / illegal instruction and that's why we are
1609 * injecting a program interrupt.
1612 cpu_synchronize_state(cs
);
1613 /* env->nip is PC, so increment this by 4 to use
1614 * ppc_cpu_do_interrupt(), which set srr0 = env->nip - 4.
1617 cs
->exception_index
= POWERPC_EXCP_PROGRAM
;
1618 env
->error_code
= POWERPC_EXCP_INVAL
;
1619 ppc_cpu_do_interrupt(cs
);
1625 int kvm_arch_handle_exit(CPUState
*cs
, struct kvm_run
*run
)
1627 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
1628 CPUPPCState
*env
= &cpu
->env
;
1631 qemu_mutex_lock_iothread();
1633 switch (run
->exit_reason
) {
1635 if (run
->dcr
.is_write
) {
1636 DPRINTF("handle dcr write\n");
1637 ret
= kvmppc_handle_dcr_write(env
, run
->dcr
.dcrn
, run
->dcr
.data
);
1639 DPRINTF("handle dcr read\n");
1640 ret
= kvmppc_handle_dcr_read(env
, run
->dcr
.dcrn
, &run
->dcr
.data
);
1644 DPRINTF("handle halt\n");
1645 ret
= kvmppc_handle_halt(cpu
);
1647 #if defined(TARGET_PPC64)
1648 case KVM_EXIT_PAPR_HCALL
:
1649 DPRINTF("handle PAPR hypercall\n");
1650 run
->papr_hcall
.ret
= spapr_hypercall(cpu
,
1652 run
->papr_hcall
.args
);
1657 DPRINTF("handle epr\n");
1658 run
->epr
.epr
= ldl_phys(cs
->as
, env
->mpic_iack
);
1661 case KVM_EXIT_WATCHDOG
:
1662 DPRINTF("handle watchdog expiry\n");
1663 watchdog_perform_action();
1667 case KVM_EXIT_DEBUG
:
1668 DPRINTF("handle debug exception\n");
1669 if (kvm_handle_debug(cpu
, run
)) {
1673 /* re-enter, this exception was guest-internal */
1678 fprintf(stderr
, "KVM: unknown exit reason %d\n", run
->exit_reason
);
1683 qemu_mutex_unlock_iothread();
1687 int kvmppc_or_tsr_bits(PowerPCCPU
*cpu
, uint32_t tsr_bits
)
1689 CPUState
*cs
= CPU(cpu
);
1690 uint32_t bits
= tsr_bits
;
1691 struct kvm_one_reg reg
= {
1692 .id
= KVM_REG_PPC_OR_TSR
,
1693 .addr
= (uintptr_t) &bits
,
1696 return kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
1699 int kvmppc_clear_tsr_bits(PowerPCCPU
*cpu
, uint32_t tsr_bits
)
1702 CPUState
*cs
= CPU(cpu
);
1703 uint32_t bits
= tsr_bits
;
1704 struct kvm_one_reg reg
= {
1705 .id
= KVM_REG_PPC_CLEAR_TSR
,
1706 .addr
= (uintptr_t) &bits
,
1709 return kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
1712 int kvmppc_set_tcr(PowerPCCPU
*cpu
)
1714 CPUState
*cs
= CPU(cpu
);
1715 CPUPPCState
*env
= &cpu
->env
;
1716 uint32_t tcr
= env
->spr
[SPR_BOOKE_TCR
];
1718 struct kvm_one_reg reg
= {
1719 .id
= KVM_REG_PPC_TCR
,
1720 .addr
= (uintptr_t) &tcr
,
1723 return kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
1726 int kvmppc_booke_watchdog_enable(PowerPCCPU
*cpu
)
1728 CPUState
*cs
= CPU(cpu
);
1731 if (!kvm_enabled()) {
1735 if (!cap_ppc_watchdog
) {
1736 printf("warning: KVM does not support watchdog");
1740 ret
= kvm_vcpu_enable_cap(cs
, KVM_CAP_PPC_BOOKE_WATCHDOG
, 0);
1742 fprintf(stderr
, "%s: couldn't enable KVM_CAP_PPC_BOOKE_WATCHDOG: %s\n",
1743 __func__
, strerror(-ret
));
1750 static int read_cpuinfo(const char *field
, char *value
, int len
)
1754 int field_len
= strlen(field
);
1757 f
= fopen("/proc/cpuinfo", "r");
1763 if (!fgets(line
, sizeof(line
), f
)) {
1766 if (!strncmp(line
, field
, field_len
)) {
1767 pstrcpy(value
, len
, line
);
1778 uint32_t kvmppc_get_tbfreq(void)
1782 uint32_t retval
= get_ticks_per_sec();
1784 if (read_cpuinfo("timebase", line
, sizeof(line
))) {
1788 if (!(ns
= strchr(line
, ':'))) {
1797 bool kvmppc_get_host_serial(char **value
)
1799 return g_file_get_contents("/proc/device-tree/system-id", value
, NULL
,
1803 bool kvmppc_get_host_model(char **value
)
1805 return g_file_get_contents("/proc/device-tree/model", value
, NULL
, NULL
);
1808 /* Try to find a device tree node for a CPU with clock-frequency property */
1809 static int kvmppc_find_cpu_dt(char *buf
, int buf_len
)
1811 struct dirent
*dirp
;
1814 if ((dp
= opendir(PROC_DEVTREE_CPU
)) == NULL
) {
1815 printf("Can't open directory " PROC_DEVTREE_CPU
"\n");
1820 while ((dirp
= readdir(dp
)) != NULL
) {
1822 snprintf(buf
, buf_len
, "%s%s/clock-frequency", PROC_DEVTREE_CPU
,
1824 f
= fopen(buf
, "r");
1826 snprintf(buf
, buf_len
, "%s%s", PROC_DEVTREE_CPU
, dirp
->d_name
);
1833 if (buf
[0] == '\0') {
1834 printf("Unknown host!\n");
1841 static uint64_t kvmppc_read_int_dt(const char *filename
)
1850 f
= fopen(filename
, "rb");
1855 len
= fread(&u
, 1, sizeof(u
), f
);
1859 /* property is a 32-bit quantity */
1860 return be32_to_cpu(u
.v32
);
1862 return be64_to_cpu(u
.v64
);
1868 /* Read a CPU node property from the host device tree that's a single
1869 * integer (32-bit or 64-bit). Returns 0 if anything goes wrong
1870 * (can't find or open the property, or doesn't understand the
1872 static uint64_t kvmppc_read_int_cpu_dt(const char *propname
)
1874 char buf
[PATH_MAX
], *tmp
;
1877 if (kvmppc_find_cpu_dt(buf
, sizeof(buf
))) {
1881 tmp
= g_strdup_printf("%s/%s", buf
, propname
);
1882 val
= kvmppc_read_int_dt(tmp
);
1888 uint64_t kvmppc_get_clockfreq(void)
1890 return kvmppc_read_int_cpu_dt("clock-frequency");
1893 uint32_t kvmppc_get_vmx(void)
1895 return kvmppc_read_int_cpu_dt("ibm,vmx");
1898 uint32_t kvmppc_get_dfp(void)
1900 return kvmppc_read_int_cpu_dt("ibm,dfp");
1903 static int kvmppc_get_pvinfo(CPUPPCState
*env
, struct kvm_ppc_pvinfo
*pvinfo
)
1905 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1906 CPUState
*cs
= CPU(cpu
);
1908 if (kvm_vm_check_extension(cs
->kvm_state
, KVM_CAP_PPC_GET_PVINFO
) &&
1909 !kvm_vm_ioctl(cs
->kvm_state
, KVM_PPC_GET_PVINFO
, pvinfo
)) {
1916 int kvmppc_get_hasidle(CPUPPCState
*env
)
1918 struct kvm_ppc_pvinfo pvinfo
;
1920 if (!kvmppc_get_pvinfo(env
, &pvinfo
) &&
1921 (pvinfo
.flags
& KVM_PPC_PVINFO_FLAGS_EV_IDLE
)) {
1928 int kvmppc_get_hypercall(CPUPPCState
*env
, uint8_t *buf
, int buf_len
)
1930 uint32_t *hc
= (uint32_t*)buf
;
1931 struct kvm_ppc_pvinfo pvinfo
;
1933 if (!kvmppc_get_pvinfo(env
, &pvinfo
)) {
1934 memcpy(buf
, pvinfo
.hcall
, buf_len
);
1939 * Fallback to always fail hypercalls regardless of endianness:
1941 * tdi 0,r0,72 (becomes b .+8 in wrong endian, nop in good endian)
1943 * b .+8 (becomes nop in wrong endian)
1944 * bswap32(li r3, -1)
1947 hc
[0] = cpu_to_be32(0x08000048);
1948 hc
[1] = cpu_to_be32(0x3860ffff);
1949 hc
[2] = cpu_to_be32(0x48000008);
1950 hc
[3] = cpu_to_be32(bswap32(0x3860ffff));
1955 static inline int kvmppc_enable_hcall(KVMState
*s
, target_ulong hcall
)
1957 return kvm_vm_enable_cap(s
, KVM_CAP_PPC_ENABLE_HCALL
, 0, hcall
, 1);
1960 void kvmppc_enable_logical_ci_hcalls(void)
1963 * FIXME: it would be nice if we could detect the cases where
1964 * we're using a device which requires the in kernel
1965 * implementation of these hcalls, but the kernel lacks them and
1966 * produce a warning.
1968 kvmppc_enable_hcall(kvm_state
, H_LOGICAL_CI_LOAD
);
1969 kvmppc_enable_hcall(kvm_state
, H_LOGICAL_CI_STORE
);
1972 void kvmppc_enable_set_mode_hcall(void)
1974 kvmppc_enable_hcall(kvm_state
, H_SET_MODE
);
1977 void kvmppc_set_papr(PowerPCCPU
*cpu
)
1979 CPUState
*cs
= CPU(cpu
);
1982 ret
= kvm_vcpu_enable_cap(cs
, KVM_CAP_PPC_PAPR
, 0);
1984 cpu_abort(cs
, "This KVM version does not support PAPR\n");
1987 /* Update the capability flag so we sync the right information
1992 int kvmppc_set_compat(PowerPCCPU
*cpu
, uint32_t cpu_version
)
1994 return kvm_set_one_reg(CPU(cpu
), KVM_REG_PPC_ARCH_COMPAT
, &cpu_version
);
1997 void kvmppc_set_mpic_proxy(PowerPCCPU
*cpu
, int mpic_proxy
)
1999 CPUState
*cs
= CPU(cpu
);
2002 ret
= kvm_vcpu_enable_cap(cs
, KVM_CAP_PPC_EPR
, 0, mpic_proxy
);
2003 if (ret
&& mpic_proxy
) {
2004 cpu_abort(cs
, "This KVM version does not support EPR\n");
2008 int kvmppc_smt_threads(void)
2010 return cap_ppc_smt
? cap_ppc_smt
: 1;
2014 off_t
kvmppc_alloc_rma(void **rma
)
2018 struct kvm_allocate_rma ret
;
2020 /* If cap_ppc_rma == 0, contiguous RMA allocation is not supported
2021 * if cap_ppc_rma == 1, contiguous RMA allocation is supported, but
2022 * not necessary on this hardware
2023 * if cap_ppc_rma == 2, contiguous RMA allocation is needed on this hardware
2025 * FIXME: We should allow the user to force contiguous RMA
2026 * allocation in the cap_ppc_rma==1 case.
2028 if (cap_ppc_rma
< 2) {
2032 fd
= kvm_vm_ioctl(kvm_state
, KVM_ALLOCATE_RMA
, &ret
);
2034 fprintf(stderr
, "KVM: Error on KVM_ALLOCATE_RMA: %s\n",
2039 size
= MIN(ret
.rma_size
, 256ul << 20);
2041 *rma
= mmap(NULL
, size
, PROT_READ
|PROT_WRITE
, MAP_SHARED
, fd
, 0);
2042 if (*rma
== MAP_FAILED
) {
2043 fprintf(stderr
, "KVM: Error mapping RMA: %s\n", strerror(errno
));
2050 uint64_t kvmppc_rma_size(uint64_t current_size
, unsigned int hash_shift
)
2052 struct kvm_ppc_smmu_info info
;
2053 long rampagesize
, best_page_shift
;
2056 if (cap_ppc_rma
>= 2) {
2057 return current_size
;
2060 /* Find the largest hardware supported page size that's less than
2061 * or equal to the (logical) backing page size of guest RAM */
2062 kvm_get_smmu_info(POWERPC_CPU(first_cpu
), &info
);
2063 rampagesize
= getrampagesize();
2064 best_page_shift
= 0;
2066 for (i
= 0; i
< KVM_PPC_PAGE_SIZES_MAX_SZ
; i
++) {
2067 struct kvm_ppc_one_seg_page_size
*sps
= &info
.sps
[i
];
2069 if (!sps
->page_shift
) {
2073 if ((sps
->page_shift
> best_page_shift
)
2074 && ((1UL << sps
->page_shift
) <= rampagesize
)) {
2075 best_page_shift
= sps
->page_shift
;
2079 return MIN(current_size
,
2080 1ULL << (best_page_shift
+ hash_shift
- 7));
2084 bool kvmppc_spapr_use_multitce(void)
2086 return cap_spapr_multitce
;
2089 void *kvmppc_create_spapr_tce(uint32_t liobn
, uint32_t window_size
, int *pfd
,
2092 struct kvm_create_spapr_tce args
= {
2094 .window_size
= window_size
,
2100 /* Must set fd to -1 so we don't try to munmap when called for
2101 * destroying the table, which the upper layers -will- do
2104 if (!cap_spapr_tce
|| (need_vfio
&& !cap_spapr_vfio
)) {
2108 fd
= kvm_vm_ioctl(kvm_state
, KVM_CREATE_SPAPR_TCE
, &args
);
2110 fprintf(stderr
, "KVM: Failed to create TCE table for liobn 0x%x\n",
2115 len
= (window_size
/ SPAPR_TCE_PAGE_SIZE
) * sizeof(uint64_t);
2116 /* FIXME: round this up to page size */
2118 table
= mmap(NULL
, len
, PROT_READ
|PROT_WRITE
, MAP_SHARED
, fd
, 0);
2119 if (table
== MAP_FAILED
) {
2120 fprintf(stderr
, "KVM: Failed to map TCE table for liobn 0x%x\n",
2130 int kvmppc_remove_spapr_tce(void *table
, int fd
, uint32_t nb_table
)
2138 len
= nb_table
* sizeof(uint64_t);
2139 if ((munmap(table
, len
) < 0) ||
2141 fprintf(stderr
, "KVM: Unexpected error removing TCE table: %s",
2143 /* Leak the table */
2149 int kvmppc_reset_htab(int shift_hint
)
2151 uint32_t shift
= shift_hint
;
2153 if (!kvm_enabled()) {
2154 /* Full emulation, tell caller to allocate htab itself */
2157 if (kvm_check_extension(kvm_state
, KVM_CAP_PPC_ALLOC_HTAB
)) {
2159 ret
= kvm_vm_ioctl(kvm_state
, KVM_PPC_ALLOCATE_HTAB
, &shift
);
2160 if (ret
== -ENOTTY
) {
2161 /* At least some versions of PR KVM advertise the
2162 * capability, but don't implement the ioctl(). Oops.
2163 * Return 0 so that we allocate the htab in qemu, as is
2164 * correct for PR. */
2166 } else if (ret
< 0) {
2172 /* We have a kernel that predates the htab reset calls. For PR
2173 * KVM, we need to allocate the htab ourselves, for an HV KVM of
2174 * this era, it has allocated a 16MB fixed size hash table
2175 * already. Kernels of this era have the GET_PVINFO capability
2176 * only on PR, so we use this hack to determine the right
2178 if (kvm_check_extension(kvm_state
, KVM_CAP_PPC_GET_PVINFO
)) {
2179 /* PR - tell caller to allocate htab */
2182 /* HV - assume 16MB kernel allocated htab */
2187 static inline uint32_t mfpvr(void)
2196 static void alter_insns(uint64_t *word
, uint64_t flags
, bool on
)
2205 static void kvmppc_host_cpu_initfn(Object
*obj
)
2207 assert(kvm_enabled());
2210 static void kvmppc_host_cpu_class_init(ObjectClass
*oc
, void *data
)
2212 DeviceClass
*dc
= DEVICE_CLASS(oc
);
2213 PowerPCCPUClass
*pcc
= POWERPC_CPU_CLASS(oc
);
2214 uint32_t vmx
= kvmppc_get_vmx();
2215 uint32_t dfp
= kvmppc_get_dfp();
2216 uint32_t dcache_size
= kvmppc_read_int_cpu_dt("d-cache-size");
2217 uint32_t icache_size
= kvmppc_read_int_cpu_dt("i-cache-size");
2219 /* Now fix up the class with information we can query from the host */
2223 /* Only override when we know what the host supports */
2224 alter_insns(&pcc
->insns_flags
, PPC_ALTIVEC
, vmx
> 0);
2225 alter_insns(&pcc
->insns_flags2
, PPC2_VSX
, vmx
> 1);
2228 /* Only override when we know what the host supports */
2229 alter_insns(&pcc
->insns_flags2
, PPC2_DFP
, dfp
);
2232 if (dcache_size
!= -1) {
2233 pcc
->l1_dcache_size
= dcache_size
;
2236 if (icache_size
!= -1) {
2237 pcc
->l1_icache_size
= icache_size
;
2240 /* Reason: kvmppc_host_cpu_initfn() dies when !kvm_enabled() */
2241 dc
->cannot_destroy_with_object_finalize_yet
= true;
2244 bool kvmppc_has_cap_epr(void)
2249 bool kvmppc_has_cap_htab_fd(void)
2254 bool kvmppc_has_cap_fixup_hcalls(void)
2256 return cap_fixup_hcalls
;
2259 static PowerPCCPUClass
*ppc_cpu_get_family_class(PowerPCCPUClass
*pcc
)
2261 ObjectClass
*oc
= OBJECT_CLASS(pcc
);
2263 while (oc
&& !object_class_is_abstract(oc
)) {
2264 oc
= object_class_get_parent(oc
);
2268 return POWERPC_CPU_CLASS(oc
);
2271 static int kvm_ppc_register_host_cpu_type(void)
2273 TypeInfo type_info
= {
2274 .name
= TYPE_HOST_POWERPC_CPU
,
2275 .instance_init
= kvmppc_host_cpu_initfn
,
2276 .class_init
= kvmppc_host_cpu_class_init
,
2278 uint32_t host_pvr
= mfpvr();
2279 PowerPCCPUClass
*pvr_pcc
;
2282 pvr_pcc
= ppc_cpu_class_by_pvr(host_pvr
);
2283 if (pvr_pcc
== NULL
) {
2284 pvr_pcc
= ppc_cpu_class_by_pvr_mask(host_pvr
);
2286 if (pvr_pcc
== NULL
) {
2289 type_info
.parent
= object_class_get_name(OBJECT_CLASS(pvr_pcc
));
2290 type_register(&type_info
);
2292 /* Register generic family CPU class for a family */
2293 pvr_pcc
= ppc_cpu_get_family_class(pvr_pcc
);
2294 dc
= DEVICE_CLASS(pvr_pcc
);
2295 type_info
.parent
= object_class_get_name(OBJECT_CLASS(pvr_pcc
));
2296 type_info
.name
= g_strdup_printf("%s-"TYPE_POWERPC_CPU
, dc
->desc
);
2297 type_register(&type_info
);
2302 int kvmppc_define_rtas_kernel_token(uint32_t token
, const char *function
)
2304 struct kvm_rtas_token_args args
= {
2308 if (!kvm_check_extension(kvm_state
, KVM_CAP_PPC_RTAS
)) {
2312 strncpy(args
.name
, function
, sizeof(args
.name
));
2314 return kvm_vm_ioctl(kvm_state
, KVM_PPC_RTAS_DEFINE_TOKEN
, &args
);
2317 int kvmppc_get_htab_fd(bool write
)
2319 struct kvm_get_htab_fd s
= {
2320 .flags
= write
? KVM_GET_HTAB_WRITE
: 0,
2325 fprintf(stderr
, "KVM version doesn't support saving the hash table\n");
2329 return kvm_vm_ioctl(kvm_state
, KVM_PPC_GET_HTAB_FD
, &s
);
2332 int kvmppc_save_htab(QEMUFile
*f
, int fd
, size_t bufsize
, int64_t max_ns
)
2334 int64_t starttime
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
);
2335 uint8_t buf
[bufsize
];
2339 rc
= read(fd
, buf
, bufsize
);
2341 fprintf(stderr
, "Error reading data from KVM HTAB fd: %s\n",
2345 uint8_t *buffer
= buf
;
2348 struct kvm_get_htab_header
*head
=
2349 (struct kvm_get_htab_header
*) buffer
;
2350 size_t chunksize
= sizeof(*head
) +
2351 HASH_PTE_SIZE_64
* head
->n_valid
;
2353 qemu_put_be32(f
, head
->index
);
2354 qemu_put_be16(f
, head
->n_valid
);
2355 qemu_put_be16(f
, head
->n_invalid
);
2356 qemu_put_buffer(f
, (void *)(head
+ 1),
2357 HASH_PTE_SIZE_64
* head
->n_valid
);
2359 buffer
+= chunksize
;
2365 || ((qemu_clock_get_ns(QEMU_CLOCK_REALTIME
) - starttime
) < max_ns
)));
2367 return (rc
== 0) ? 1 : 0;
2370 int kvmppc_load_htab_chunk(QEMUFile
*f
, int fd
, uint32_t index
,
2371 uint16_t n_valid
, uint16_t n_invalid
)
2373 struct kvm_get_htab_header
*buf
;
2374 size_t chunksize
= sizeof(*buf
) + n_valid
*HASH_PTE_SIZE_64
;
2377 buf
= alloca(chunksize
);
2379 buf
->n_valid
= n_valid
;
2380 buf
->n_invalid
= n_invalid
;
2382 qemu_get_buffer(f
, (void *)(buf
+ 1), HASH_PTE_SIZE_64
*n_valid
);
2384 rc
= write(fd
, buf
, chunksize
);
2386 fprintf(stderr
, "Error writing KVM hash table: %s\n",
2390 if (rc
!= chunksize
) {
2391 /* We should never get a short write on a single chunk */
2392 fprintf(stderr
, "Short write, restoring KVM hash table\n");
2398 bool kvm_arch_stop_on_emulation_error(CPUState
*cpu
)
2403 int kvm_arch_on_sigbus_vcpu(CPUState
*cpu
, int code
, void *addr
)
2408 int kvm_arch_on_sigbus(int code
, void *addr
)
2413 void kvm_arch_init_irq_routing(KVMState
*s
)
2417 struct kvm_get_htab_buf
{
2418 struct kvm_get_htab_header header
;
2420 * We require one extra byte for read
2422 target_ulong hpte
[(HPTES_PER_GROUP
* 2) + 1];
2425 uint64_t kvmppc_hash64_read_pteg(PowerPCCPU
*cpu
, target_ulong pte_index
)
2428 struct kvm_get_htab_fd ghf
;
2429 struct kvm_get_htab_buf
*hpte_buf
;
2432 ghf
.start_index
= pte_index
;
2433 htab_fd
= kvm_vm_ioctl(kvm_state
, KVM_PPC_GET_HTAB_FD
, &ghf
);
2438 hpte_buf
= g_malloc0(sizeof(*hpte_buf
));
2440 * Read the hpte group
2442 if (read(htab_fd
, hpte_buf
, sizeof(*hpte_buf
)) < 0) {
2447 return (uint64_t)(uintptr_t) hpte_buf
->hpte
;
2456 void kvmppc_hash64_free_pteg(uint64_t token
)
2458 struct kvm_get_htab_buf
*htab_buf
;
2460 htab_buf
= container_of((void *)(uintptr_t) token
, struct kvm_get_htab_buf
,
2466 void kvmppc_hash64_write_pte(CPUPPCState
*env
, target_ulong pte_index
,
2467 target_ulong pte0
, target_ulong pte1
)
2470 struct kvm_get_htab_fd ghf
;
2471 struct kvm_get_htab_buf hpte_buf
;
2474 ghf
.start_index
= 0; /* Ignored */
2475 htab_fd
= kvm_vm_ioctl(kvm_state
, KVM_PPC_GET_HTAB_FD
, &ghf
);
2480 hpte_buf
.header
.n_valid
= 1;
2481 hpte_buf
.header
.n_invalid
= 0;
2482 hpte_buf
.header
.index
= pte_index
;
2483 hpte_buf
.hpte
[0] = pte0
;
2484 hpte_buf
.hpte
[1] = pte1
;
2486 * Write the hpte entry.
2487 * CAUTION: write() has the warn_unused_result attribute. Hence we
2488 * need to check the return value, even though we do nothing.
2490 if (write(htab_fd
, &hpte_buf
, sizeof(hpte_buf
)) < 0) {
2502 int kvm_arch_fixup_msi_route(struct kvm_irq_routing_entry
*route
,
2503 uint64_t address
, uint32_t data
, PCIDevice
*dev
)
2508 int kvm_arch_msi_data_to_gsi(uint32_t data
)
2510 return data
& 0xffff;
2513 int kvmppc_enable_hwrng(void)
2515 if (!kvm_enabled() || !kvm_check_extension(kvm_state
, KVM_CAP_PPC_HWRNG
)) {
2519 return kvmppc_enable_hcall(kvm_state
, H_RANDOM
);