2 * ARM implementation of KVM hooks, 64 bit specific code
4 * Copyright Mian-M. Hamayun 2013, Virtual Open Systems
5 * Copyright Alex Bennée 2014, Linaro
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
12 #include "qemu/osdep.h"
13 #include <sys/ioctl.h>
15 #include <sys/ptrace.h>
17 #include <linux/elf.h>
18 #include <linux/kvm.h>
20 #include "qemu-common.h"
21 #include "qemu/timer.h"
22 #include "qemu/error-report.h"
23 #include "qemu/host-utils.h"
24 #include "exec/gdbstub.h"
25 #include "sysemu/sysemu.h"
26 #include "sysemu/kvm.h"
29 #include "internals.h"
30 #include "hw/arm/arm.h"
32 static bool have_guest_debug
;
35 * Although the ARM implementation of hardware assisted debugging
36 * allows for different breakpoints per-core, the current GDB
37 * interface treats them as a global pool of registers (which seems to
38 * be the case for x86, ppc and s390). As a result we store one copy
39 * of registers which is used for all active cores.
41 * Write access is serialised by virtue of the GDB protocol which
42 * updates things. Read access (i.e. when the values are copied to the
43 * vCPU) is also gated by GDB's run control.
45 * This is not unreasonable as most of the time debugging kernels you
46 * never know which core will eventually execute your function.
54 /* The watchpoint registers can cover more area than the requested
55 * watchpoint so we need to store the additional information
56 * somewhere. We also need to supply a CPUWatchpoint to the GDB stub
57 * when the watchpoint is hit.
62 CPUWatchpoint details
;
65 /* Maximum and current break/watch point counts */
66 int max_hw_bps
, max_hw_wps
;
67 GArray
*hw_breakpoints
, *hw_watchpoints
;
69 #define cur_hw_wps (hw_watchpoints->len)
70 #define cur_hw_bps (hw_breakpoints->len)
71 #define get_hw_bp(i) (&g_array_index(hw_breakpoints, HWBreakpoint, i))
72 #define get_hw_wp(i) (&g_array_index(hw_watchpoints, HWWatchpoint, i))
75 * kvm_arm_init_debug() - check for guest debug capabilities
78 * kvm_check_extension returns the number of debug registers we have
79 * or 0 if we have none.
82 static void kvm_arm_init_debug(CPUState
*cs
)
84 have_guest_debug
= kvm_check_extension(cs
->kvm_state
,
85 KVM_CAP_SET_GUEST_DEBUG
);
87 max_hw_wps
= kvm_check_extension(cs
->kvm_state
, KVM_CAP_GUEST_DEBUG_HW_WPS
);
88 hw_watchpoints
= g_array_sized_new(true, true,
89 sizeof(HWWatchpoint
), max_hw_wps
);
91 max_hw_bps
= kvm_check_extension(cs
->kvm_state
, KVM_CAP_GUEST_DEBUG_HW_BPS
);
92 hw_breakpoints
= g_array_sized_new(true, true,
93 sizeof(HWBreakpoint
), max_hw_bps
);
98 * insert_hw_breakpoint()
99 * @addr: address of breakpoint
101 * See ARM ARM D2.9.1 for details but here we are only going to create
102 * simple un-linked breakpoints (i.e. we don't chain breakpoints
103 * together to match address and context or vmid). The hardware is
104 * capable of fancier matching but that will require exposing that
105 * fanciness to GDB's interface
107 * D7.3.2 DBGBCR<n>_EL1, Debug Breakpoint Control Registers
109 * 31 24 23 20 19 16 15 14 13 12 9 8 5 4 3 2 1 0
110 * +------+------+-------+-----+----+------+-----+------+-----+---+
111 * | RES0 | BT | LBN | SSC | HMC| RES0 | BAS | RES0 | PMC | E |
112 * +------+------+-------+-----+----+------+-----+------+-----+---+
114 * BT: Breakpoint type (0 = unlinked address match)
115 * LBN: Linked BP number (0 = unused)
116 * SSC/HMC/PMC: Security, Higher and Priv access control (Table D-12)
117 * BAS: Byte Address Select (RES1 for AArch64)
120 static int insert_hw_breakpoint(target_ulong addr
)
123 .bcr
= 0x1, /* BCR E=1, enable */
127 if (cur_hw_bps
>= max_hw_bps
) {
131 brk
.bcr
= deposit32(brk
.bcr
, 1, 2, 0x3); /* PMC = 11 */
132 brk
.bcr
= deposit32(brk
.bcr
, 5, 4, 0xf); /* BAS = RES1 */
134 g_array_append_val(hw_breakpoints
, brk
);
140 * delete_hw_breakpoint()
141 * @pc: address of breakpoint
143 * Delete a breakpoint and shuffle any above down
146 static int delete_hw_breakpoint(target_ulong pc
)
149 for (i
= 0; i
< hw_breakpoints
->len
; i
++) {
150 HWBreakpoint
*brk
= get_hw_bp(i
);
151 if (brk
->bvr
== pc
) {
152 g_array_remove_index(hw_breakpoints
, i
);
160 * insert_hw_watchpoint()
161 * @addr: address of watch point
163 * @type: type of watch point
165 * See ARM ARM D2.10. As with the breakpoints we can do some advanced
166 * stuff if we want to. The watch points can be linked with the break
167 * points above to make them context aware. However for simplicity
168 * currently we only deal with simple read/write watch points.
170 * D7.3.11 DBGWCR<n>_EL1, Debug Watchpoint Control Registers
172 * 31 29 28 24 23 21 20 19 16 15 14 13 12 5 4 3 2 1 0
173 * +------+-------+------+----+-----+-----+-----+-----+-----+-----+---+
174 * | RES0 | MASK | RES0 | WT | LBN | SSC | HMC | BAS | LSC | PAC | E |
175 * +------+-------+------+----+-----+-----+-----+-----+-----+-----+---+
177 * MASK: num bits addr mask (0=none,01/10=res,11=3 bits (8 bytes))
178 * WT: 0 - unlinked, 1 - linked (not currently used)
179 * LBN: Linked BP number (not currently used)
180 * SSC/HMC/PAC: Security, Higher and Priv access control (Table D2-11)
181 * BAS: Byte Address Select
182 * LSC: Load/Store control (01: load, 10: store, 11: both)
185 * The bottom 2 bits of the value register are masked. Therefore to
186 * break on any sizes smaller than an unaligned word you need to set
187 * MASK=0, BAS=bit per byte in question. For larger regions (^2) you
188 * need to ensure you mask the address as required and set BAS=0xff
191 static int insert_hw_watchpoint(target_ulong addr
,
192 target_ulong len
, int type
)
195 .wcr
= 1, /* E=1, enable */
196 .wvr
= addr
& (~0x7ULL
),
197 .details
= { .vaddr
= addr
, .len
= len
}
200 if (cur_hw_wps
>= max_hw_wps
) {
205 * HMC=0 SSC=0 PAC=3 will hit EL0 or EL1, any security state,
206 * valid whether EL3 is implemented or not
208 wp
.wcr
= deposit32(wp
.wcr
, 1, 2, 3);
211 case GDB_WATCHPOINT_READ
:
212 wp
.wcr
= deposit32(wp
.wcr
, 3, 2, 1);
213 wp
.details
.flags
= BP_MEM_READ
;
215 case GDB_WATCHPOINT_WRITE
:
216 wp
.wcr
= deposit32(wp
.wcr
, 3, 2, 2);
217 wp
.details
.flags
= BP_MEM_WRITE
;
219 case GDB_WATCHPOINT_ACCESS
:
220 wp
.wcr
= deposit32(wp
.wcr
, 3, 2, 3);
221 wp
.details
.flags
= BP_MEM_ACCESS
;
224 g_assert_not_reached();
228 /* we align the address and set the bits in BAS */
229 int off
= addr
& 0x7;
230 int bas
= (1 << len
) - 1;
232 wp
.wcr
= deposit32(wp
.wcr
, 5 + off
, 8 - off
, bas
);
234 /* For ranges above 8 bytes we need to be a power of 2 */
235 if (is_power_of_2(len
)) {
236 int bits
= ctz64(len
);
238 wp
.wvr
&= ~((1 << bits
) - 1);
239 wp
.wcr
= deposit32(wp
.wcr
, 24, 4, bits
);
240 wp
.wcr
= deposit32(wp
.wcr
, 5, 8, 0xff);
246 g_array_append_val(hw_watchpoints
, wp
);
251 static bool check_watchpoint_in_range(int i
, target_ulong addr
)
253 HWWatchpoint
*wp
= get_hw_wp(i
);
254 uint64_t addr_top
, addr_bottom
= wp
->wvr
;
255 int bas
= extract32(wp
->wcr
, 5, 8);
256 int mask
= extract32(wp
->wcr
, 24, 4);
259 addr_top
= addr_bottom
+ (1 << mask
);
261 /* BAS must be contiguous but can offset against the base
262 * address in DBGWVR */
263 addr_bottom
= addr_bottom
+ ctz32(bas
);
264 addr_top
= addr_bottom
+ clo32(bas
);
267 if (addr
>= addr_bottom
&& addr
<= addr_top
) {
275 * delete_hw_watchpoint()
276 * @addr: address of breakpoint
278 * Delete a breakpoint and shuffle any above down
281 static int delete_hw_watchpoint(target_ulong addr
,
282 target_ulong len
, int type
)
285 for (i
= 0; i
< cur_hw_wps
; i
++) {
286 if (check_watchpoint_in_range(i
, addr
)) {
287 g_array_remove_index(hw_watchpoints
, i
);
295 int kvm_arch_insert_hw_breakpoint(target_ulong addr
,
296 target_ulong len
, int type
)
299 case GDB_BREAKPOINT_HW
:
300 return insert_hw_breakpoint(addr
);
302 case GDB_WATCHPOINT_READ
:
303 case GDB_WATCHPOINT_WRITE
:
304 case GDB_WATCHPOINT_ACCESS
:
305 return insert_hw_watchpoint(addr
, len
, type
);
311 int kvm_arch_remove_hw_breakpoint(target_ulong addr
,
312 target_ulong len
, int type
)
315 case GDB_BREAKPOINT_HW
:
316 return delete_hw_breakpoint(addr
);
318 case GDB_WATCHPOINT_READ
:
319 case GDB_WATCHPOINT_WRITE
:
320 case GDB_WATCHPOINT_ACCESS
:
321 return delete_hw_watchpoint(addr
, len
, type
);
328 void kvm_arch_remove_all_hw_breakpoints(void)
330 if (cur_hw_wps
> 0) {
331 g_array_remove_range(hw_watchpoints
, 0, cur_hw_wps
);
333 if (cur_hw_bps
> 0) {
334 g_array_remove_range(hw_breakpoints
, 0, cur_hw_bps
);
338 void kvm_arm_copy_hw_debug_data(struct kvm_guest_debug_arch
*ptr
)
341 memset(ptr
, 0, sizeof(struct kvm_guest_debug_arch
));
343 for (i
= 0; i
< max_hw_wps
; i
++) {
344 HWWatchpoint
*wp
= get_hw_wp(i
);
345 ptr
->dbg_wcr
[i
] = wp
->wcr
;
346 ptr
->dbg_wvr
[i
] = wp
->wvr
;
348 for (i
= 0; i
< max_hw_bps
; i
++) {
349 HWBreakpoint
*bp
= get_hw_bp(i
);
350 ptr
->dbg_bcr
[i
] = bp
->bcr
;
351 ptr
->dbg_bvr
[i
] = bp
->bvr
;
355 bool kvm_arm_hw_debug_active(CPUState
*cs
)
357 return ((cur_hw_wps
> 0) || (cur_hw_bps
> 0));
360 static bool find_hw_breakpoint(CPUState
*cpu
, target_ulong pc
)
364 for (i
= 0; i
< cur_hw_bps
; i
++) {
365 HWBreakpoint
*bp
= get_hw_bp(i
);
373 static CPUWatchpoint
*find_hw_watchpoint(CPUState
*cpu
, target_ulong addr
)
377 for (i
= 0; i
< cur_hw_wps
; i
++) {
378 if (check_watchpoint_in_range(i
, addr
)) {
379 return &get_hw_wp(i
)->details
;
386 static inline void set_feature(uint64_t *features
, int feature
)
388 *features
|= 1ULL << feature
;
391 bool kvm_arm_get_host_cpu_features(ARMHostCPUClass
*ahcc
)
393 /* Identify the feature bits corresponding to the host CPU, and
394 * fill out the ARMHostCPUClass fields accordingly. To do this
395 * we have to create a scratch VM, create a single CPU inside it,
396 * and then query that CPU for the relevant ID registers.
397 * For AArch64 we currently don't care about ID registers at
398 * all; we just want to know the CPU type.
401 uint64_t features
= 0;
402 /* Old kernels may not know about the PREFERRED_TARGET ioctl: however
403 * we know these will only support creating one kind of guest CPU,
404 * which is its preferred CPU type. Fortunately these old kernels
405 * support only a very limited number of CPUs.
407 static const uint32_t cpus_to_try
[] = {
408 KVM_ARM_TARGET_AEM_V8
,
409 KVM_ARM_TARGET_FOUNDATION_V8
,
410 KVM_ARM_TARGET_CORTEX_A57
,
411 QEMU_KVM_ARM_TARGET_NONE
413 struct kvm_vcpu_init init
;
415 if (!kvm_arm_create_scratch_host_vcpu(cpus_to_try
, fdarray
, &init
)) {
419 ahcc
->target
= init
.target
;
420 ahcc
->dtb_compatible
= "arm,arm-v8";
422 kvm_arm_destroy_scratch_host_vcpu(fdarray
);
424 /* We can assume any KVM supporting CPU is at least a v8
425 * with VFPv4+Neon; this in turn implies most of the other
428 set_feature(&features
, ARM_FEATURE_V8
);
429 set_feature(&features
, ARM_FEATURE_VFP4
);
430 set_feature(&features
, ARM_FEATURE_NEON
);
431 set_feature(&features
, ARM_FEATURE_AARCH64
);
433 ahcc
->features
= features
;
438 #define ARM_CPU_ID_MPIDR 3, 0, 0, 0, 5
440 int kvm_arch_init_vcpu(CPUState
*cs
)
444 ARMCPU
*cpu
= ARM_CPU(cs
);
446 if (cpu
->kvm_target
== QEMU_KVM_ARM_TARGET_NONE
||
447 !object_dynamic_cast(OBJECT(cpu
), TYPE_AARCH64_CPU
)) {
448 fprintf(stderr
, "KVM is not supported for this guest CPU type\n");
452 /* Determine init features for this CPU */
453 memset(cpu
->kvm_init_features
, 0, sizeof(cpu
->kvm_init_features
));
454 if (cpu
->start_powered_off
) {
455 cpu
->kvm_init_features
[0] |= 1 << KVM_ARM_VCPU_POWER_OFF
;
457 if (kvm_check_extension(cs
->kvm_state
, KVM_CAP_ARM_PSCI_0_2
)) {
458 cpu
->psci_version
= 2;
459 cpu
->kvm_init_features
[0] |= 1 << KVM_ARM_VCPU_PSCI_0_2
;
461 if (!arm_feature(&cpu
->env
, ARM_FEATURE_AARCH64
)) {
462 cpu
->kvm_init_features
[0] |= 1 << KVM_ARM_VCPU_EL1_32BIT
;
465 /* Do KVM_ARM_VCPU_INIT ioctl */
466 ret
= kvm_arm_vcpu_init(cs
);
472 * When KVM is in use, PSCI is emulated in-kernel and not by qemu.
473 * Currently KVM has its own idea about MPIDR assignment, so we
474 * override our defaults with what we get from KVM.
476 ret
= kvm_get_one_reg(cs
, ARM64_SYS_REG(ARM_CPU_ID_MPIDR
), &mpidr
);
480 cpu
->mp_affinity
= mpidr
& ARM64_AFFINITY_MASK
;
482 kvm_arm_init_debug(cs
);
484 return kvm_arm_init_cpreg_list(cpu
);
487 bool kvm_arm_reg_syncs_via_cpreg_list(uint64_t regidx
)
489 /* Return true if the regidx is a register we should synchronize
490 * via the cpreg_tuples array (ie is not a core reg we sync by
491 * hand in kvm_arch_get/put_registers())
493 switch (regidx
& KVM_REG_ARM_COPROC_MASK
) {
494 case KVM_REG_ARM_CORE
:
501 typedef struct CPRegStateLevel
{
506 /* All system registers not listed in the following table are assumed to be
507 * of the level KVM_PUT_RUNTIME_STATE. If a register should be written less
508 * often, you must add it to this table with a state of either
509 * KVM_PUT_RESET_STATE or KVM_PUT_FULL_STATE.
511 static const CPRegStateLevel non_runtime_cpregs
[] = {
512 { KVM_REG_ARM_TIMER_CNT
, KVM_PUT_FULL_STATE
},
515 int kvm_arm_cpreg_level(uint64_t regidx
)
519 for (i
= 0; i
< ARRAY_SIZE(non_runtime_cpregs
); i
++) {
520 const CPRegStateLevel
*l
= &non_runtime_cpregs
[i
];
521 if (l
->regidx
== regidx
) {
526 return KVM_PUT_RUNTIME_STATE
;
529 #define AARCH64_CORE_REG(x) (KVM_REG_ARM64 | KVM_REG_SIZE_U64 | \
530 KVM_REG_ARM_CORE | KVM_REG_ARM_CORE_REG(x))
532 #define AARCH64_SIMD_CORE_REG(x) (KVM_REG_ARM64 | KVM_REG_SIZE_U128 | \
533 KVM_REG_ARM_CORE | KVM_REG_ARM_CORE_REG(x))
535 #define AARCH64_SIMD_CTRL_REG(x) (KVM_REG_ARM64 | KVM_REG_SIZE_U32 | \
536 KVM_REG_ARM_CORE | KVM_REG_ARM_CORE_REG(x))
538 int kvm_arch_put_registers(CPUState
*cs
, int level
)
540 struct kvm_one_reg reg
;
547 ARMCPU
*cpu
= ARM_CPU(cs
);
548 CPUARMState
*env
= &cpu
->env
;
550 /* If we are in AArch32 mode then we need to copy the AArch32 regs to the
551 * AArch64 registers before pushing them out to 64-bit KVM.
554 aarch64_sync_32_to_64(env
);
557 for (i
= 0; i
< 31; i
++) {
558 reg
.id
= AARCH64_CORE_REG(regs
.regs
[i
]);
559 reg
.addr
= (uintptr_t) &env
->xregs
[i
];
560 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
566 /* KVM puts SP_EL0 in regs.sp and SP_EL1 in regs.sp_el1. On the
567 * QEMU side we keep the current SP in xregs[31] as well.
569 aarch64_save_sp(env
, 1);
571 reg
.id
= AARCH64_CORE_REG(regs
.sp
);
572 reg
.addr
= (uintptr_t) &env
->sp_el
[0];
573 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
578 reg
.id
= AARCH64_CORE_REG(sp_el1
);
579 reg
.addr
= (uintptr_t) &env
->sp_el
[1];
580 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
585 /* Note that KVM thinks pstate is 64 bit but we use a uint32_t */
587 val
= pstate_read(env
);
589 val
= cpsr_read(env
);
591 reg
.id
= AARCH64_CORE_REG(regs
.pstate
);
592 reg
.addr
= (uintptr_t) &val
;
593 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
598 reg
.id
= AARCH64_CORE_REG(regs
.pc
);
599 reg
.addr
= (uintptr_t) &env
->pc
;
600 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
605 reg
.id
= AARCH64_CORE_REG(elr_el1
);
606 reg
.addr
= (uintptr_t) &env
->elr_el
[1];
607 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
612 /* Saved Program State Registers
614 * Before we restore from the banked_spsr[] array we need to
615 * ensure that any modifications to env->spsr are correctly
616 * reflected in the banks.
618 el
= arm_current_el(env
);
619 if (el
> 0 && !is_a64(env
)) {
620 i
= bank_number(env
->uncached_cpsr
& CPSR_M
);
621 env
->banked_spsr
[i
] = env
->spsr
;
624 /* KVM 0-4 map to QEMU banks 1-5 */
625 for (i
= 0; i
< KVM_NR_SPSR
; i
++) {
626 reg
.id
= AARCH64_CORE_REG(spsr
[i
]);
627 reg
.addr
= (uintptr_t) &env
->banked_spsr
[i
+ 1];
628 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
634 /* Advanced SIMD and FP registers
635 * We map Qn = regs[2n+1]:regs[2n]
637 for (i
= 0; i
< 32; i
++) {
640 #ifdef HOST_WORDS_BIGENDIAN
641 fp_val
[0] = env
->vfp
.regs
[rd
+ 1];
642 fp_val
[1] = env
->vfp
.regs
[rd
];
644 fp_val
[1] = env
->vfp
.regs
[rd
+ 1];
645 fp_val
[0] = env
->vfp
.regs
[rd
];
647 reg
.id
= AARCH64_SIMD_CORE_REG(fp_regs
.vregs
[i
]);
648 reg
.addr
= (uintptr_t)(&fp_val
);
649 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
655 reg
.addr
= (uintptr_t)(&fpr
);
656 fpr
= vfp_get_fpsr(env
);
657 reg
.id
= AARCH64_SIMD_CTRL_REG(fp_regs
.fpsr
);
658 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
663 fpr
= vfp_get_fpcr(env
);
664 reg
.id
= AARCH64_SIMD_CTRL_REG(fp_regs
.fpcr
);
665 ret
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
670 if (!write_list_to_kvmstate(cpu
, level
)) {
674 kvm_arm_sync_mpstate_to_kvm(cpu
);
679 int kvm_arch_get_registers(CPUState
*cs
)
681 struct kvm_one_reg reg
;
688 ARMCPU
*cpu
= ARM_CPU(cs
);
689 CPUARMState
*env
= &cpu
->env
;
691 for (i
= 0; i
< 31; i
++) {
692 reg
.id
= AARCH64_CORE_REG(regs
.regs
[i
]);
693 reg
.addr
= (uintptr_t) &env
->xregs
[i
];
694 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
700 reg
.id
= AARCH64_CORE_REG(regs
.sp
);
701 reg
.addr
= (uintptr_t) &env
->sp_el
[0];
702 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
707 reg
.id
= AARCH64_CORE_REG(sp_el1
);
708 reg
.addr
= (uintptr_t) &env
->sp_el
[1];
709 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
714 reg
.id
= AARCH64_CORE_REG(regs
.pstate
);
715 reg
.addr
= (uintptr_t) &val
;
716 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
721 env
->aarch64
= ((val
& PSTATE_nRW
) == 0);
723 pstate_write(env
, val
);
725 env
->uncached_cpsr
= val
& CPSR_M
;
726 cpsr_write(env
, val
, 0xffffffff);
729 /* KVM puts SP_EL0 in regs.sp and SP_EL1 in regs.sp_el1. On the
730 * QEMU side we keep the current SP in xregs[31] as well.
732 aarch64_restore_sp(env
, 1);
734 reg
.id
= AARCH64_CORE_REG(regs
.pc
);
735 reg
.addr
= (uintptr_t) &env
->pc
;
736 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
741 /* If we are in AArch32 mode then we need to sync the AArch32 regs with the
742 * incoming AArch64 regs received from 64-bit KVM.
743 * We must perform this after all of the registers have been acquired from
747 aarch64_sync_64_to_32(env
);
750 reg
.id
= AARCH64_CORE_REG(elr_el1
);
751 reg
.addr
= (uintptr_t) &env
->elr_el
[1];
752 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
757 /* Fetch the SPSR registers
759 * KVM SPSRs 0-4 map to QEMU banks 1-5
761 for (i
= 0; i
< KVM_NR_SPSR
; i
++) {
762 reg
.id
= AARCH64_CORE_REG(spsr
[i
]);
763 reg
.addr
= (uintptr_t) &env
->banked_spsr
[i
+ 1];
764 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
770 el
= arm_current_el(env
);
771 if (el
> 0 && !is_a64(env
)) {
772 i
= bank_number(env
->uncached_cpsr
& CPSR_M
);
773 env
->spsr
= env
->banked_spsr
[i
];
776 /* Advanced SIMD and FP registers
777 * We map Qn = regs[2n+1]:regs[2n]
779 for (i
= 0; i
< 32; i
++) {
781 reg
.id
= AARCH64_SIMD_CORE_REG(fp_regs
.vregs
[i
]);
782 reg
.addr
= (uintptr_t)(&fp_val
);
783 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
788 #ifdef HOST_WORDS_BIGENDIAN
789 env
->vfp
.regs
[rd
+ 1] = fp_val
[0];
790 env
->vfp
.regs
[rd
] = fp_val
[1];
792 env
->vfp
.regs
[rd
+ 1] = fp_val
[1];
793 env
->vfp
.regs
[rd
] = fp_val
[0];
798 reg
.addr
= (uintptr_t)(&fpr
);
799 reg
.id
= AARCH64_SIMD_CTRL_REG(fp_regs
.fpsr
);
800 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
804 vfp_set_fpsr(env
, fpr
);
806 reg
.id
= AARCH64_SIMD_CTRL_REG(fp_regs
.fpcr
);
807 ret
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
811 vfp_set_fpcr(env
, fpr
);
813 if (!write_kvmstate_to_list(cpu
)) {
816 /* Note that it's OK to have registers which aren't in CPUState,
817 * so we can ignore a failure return here.
819 write_list_to_cpustate(cpu
);
821 kvm_arm_sync_mpstate_to_qemu(cpu
);
823 /* TODO: other registers */
827 /* C6.6.29 BRK instruction */
828 static const uint32_t brk_insn
= 0xd4200000;
830 int kvm_arch_insert_sw_breakpoint(CPUState
*cs
, struct kvm_sw_breakpoint
*bp
)
832 if (have_guest_debug
) {
833 if (cpu_memory_rw_debug(cs
, bp
->pc
, (uint8_t *)&bp
->saved_insn
, 4, 0) ||
834 cpu_memory_rw_debug(cs
, bp
->pc
, (uint8_t *)&brk_insn
, 4, 1)) {
839 error_report("guest debug not supported on this kernel");
844 int kvm_arch_remove_sw_breakpoint(CPUState
*cs
, struct kvm_sw_breakpoint
*bp
)
848 if (have_guest_debug
) {
849 if (cpu_memory_rw_debug(cs
, bp
->pc
, (uint8_t *)&brk
, 4, 0) ||
851 cpu_memory_rw_debug(cs
, bp
->pc
, (uint8_t *)&bp
->saved_insn
, 4, 1)) {
856 error_report("guest debug not supported on this kernel");
861 /* See v8 ARM ARM D7.2.27 ESR_ELx, Exception Syndrome Register
863 * To minimise translating between kernel and user-space the kernel
864 * ABI just provides user-space with the full exception syndrome
865 * register value to be decoded in QEMU.
868 bool kvm_arm_handle_debug(CPUState
*cs
, struct kvm_debug_exit_arch
*debug_exit
)
870 int hsr_ec
= debug_exit
->hsr
>> ARM_EL_EC_SHIFT
;
871 ARMCPU
*cpu
= ARM_CPU(cs
);
872 CPUClass
*cc
= CPU_GET_CLASS(cs
);
873 CPUARMState
*env
= &cpu
->env
;
875 /* Ensure PC is synchronised */
876 kvm_cpu_synchronize_state(cs
);
879 case EC_SOFTWARESTEP
:
880 if (cs
->singlestep_enabled
) {
884 * The kernel should have suppressed the guest's ability to
885 * single step at this point so something has gone wrong.
887 error_report("%s: guest single-step while debugging unsupported"
888 " (%"PRIx64
", %"PRIx32
")\n",
889 __func__
, env
->pc
, debug_exit
->hsr
);
894 if (kvm_find_sw_breakpoint(cs
, env
->pc
)) {
899 if (find_hw_breakpoint(cs
, env
->pc
)) {
905 CPUWatchpoint
*wp
= find_hw_watchpoint(cs
, debug_exit
->far
);
907 cs
->watchpoint_hit
= wp
;
913 error_report("%s: unhandled debug exit (%"PRIx32
", %"PRIx64
")\n",
914 __func__
, debug_exit
->hsr
, env
->pc
);
917 /* If we are not handling the debug exception it must belong to
918 * the guest. Let's re-use the existing TCG interrupt code to set
919 * everything up properly.
921 cs
->exception_index
= EXCP_BKPT
;
922 env
->exception
.syndrome
= debug_exit
->hsr
;
923 env
->exception
.vaddress
= debug_exit
->far
;
924 cc
->do_interrupt(cs
);