[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC PATCH 0/4] target/riscv/kvm: QEMU support for KVM Guest Debug on RI
From: |
Chao Du |
Subject: |
[RFC PATCH 0/4] target/riscv/kvm: QEMU support for KVM Guest Debug on RISC-V |
Date: |
Thu, 21 Dec 2023 09:49:19 +0000 |
This series implements QEMU KVM Guest Debug on RISC-V. Currently, we can
debug RISC-V KVM guest from the host side, with software breakpoints.
A brief test was done on QEMU RISC-V hypervisor emulator.
A TODO list which will be added later:
1. HW breakpoints support
2. Test cases
This series is based on QEMU 8.2.0-rc4 and is also available at:
https://github.com/Du-Chao/qemu/tree/riscv_gd_sw
This is dependent on KVM side changes:
https://github.com/Du-Chao/linux/tree/riscv_gd_sw
Chao Du (4):
target/riscv/kvm: add software breakpoints support
target/riscv/kvm: implement kvm_arch_update_guest_debug()
target/riscv/kvm: handle the exit with debug reason
linux-headers: enable KVM GUEST DEBUG for RISC-V
accel/kvm/kvm-all.c | 8 +--
include/sysemu/kvm.h | 6 +-
linux-headers/asm-riscv/kvm.h | 1 +
target/arm/kvm64.c | 6 +-
target/i386/kvm/kvm.c | 6 +-
target/mips/kvm.c | 6 +-
target/ppc/kvm.c | 6 +-
target/riscv/kvm/kvm-cpu.c | 101 ++++++++++++++++++++++++++++++++++
target/s390x/kvm/kvm.c | 6 +-
9 files changed, 130 insertions(+), 16 deletions(-)
--
2.17.1
- [RFC PATCH 0/4] target/riscv/kvm: QEMU support for KVM Guest Debug on RISC-V,
Chao Du <=
- [RFC PATCH 2/4] target/riscv/kvm: implement kvm_arch_update_guest_debug(), Chao Du, 2023/12/21
- [RFC PATCH 4/4] linux-headers: enable KVM GUEST DEBUG for RISC-V, Chao Du, 2023/12/21
- [RFC PATCH 1/4] target/riscv/kvm: add software breakpoints support, Chao Du, 2023/12/21
- [RFC PATCH 3/4] target/riscv/kvm: handle the exit with debug reason, Chao Du, 2023/12/21
- Re: [RFC PATCH 0/4] target/riscv/kvm: QEMU support for KVM Guest Debug on RISC-V, Daniel Henrique Barboza, 2023/12/22