Skip to content

Commit

Permalink
KVM support
Browse files Browse the repository at this point in the history
Co-authored-by: wheremyfoodat <[email protected]>
Co-authored-by: hazelwiss <[email protected]>
  • Loading branch information
3 people committed Jul 21, 2024
1 parent 91f8f81 commit bbbc7fb
Show file tree
Hide file tree
Showing 6 changed files with 517 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ option(ENABLE_HTTP_SERVER "Enable HTTP server. Used for Discord bot support" OFF
option(ENABLE_DISCORD_RPC "Compile with Discord RPC support (disabled by default)" ON)
option(ENABLE_LUAJIT "Enable scripting with the Lua programming language" ON)
option(ENABLE_QT_GUI "Enable the Qt GUI. If not selected then the emulator uses a minimal SDL-based UI instead" OFF)
option(USE_KVM "Use KVM instead of Dynarmic" OFF)
option(BUILD_HYDRA_CORE "Build a Hydra core" OFF)
option(BUILD_LIBRETRO_CORE "Build a Libretro core" OFF)

Expand Down Expand Up @@ -155,12 +156,14 @@ else()
set(HOST_ARM64 FALSE)
endif()

if(HOST_X64 OR HOST_ARM64)
if(NOT USE_KVM AND (HOST_X64 OR HOST_ARM64))
set(DYNARMIC_TESTS OFF)
#set(DYNARMIC_NO_BUNDLED_FMT ON)
set(DYNARMIC_FRONTENDS "A32" CACHE STRING "")
add_subdirectory(third_party/dynarmic)
add_compile_definitions(CPU_DYNARMIC)
elseif(USE_KVM AND HOST_ARM64)
add_compile_definitions(CPU_KVM)
else()
message(FATAL_ERROR "Currently unsupported CPU architecture")
endif()
Expand Down
2 changes: 1 addition & 1 deletion include/cpu.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#ifdef CPU_DYNARMIC
#include "cpu_dynarmic.hpp"
#elif defined(CPU_KVM)
#error KVM CPU is not implemented yet
#include "cpu_kvm.hpp"
#else
#error No CPU core implemented :(
#endif
235 changes: 235 additions & 0 deletions include/cpu_kvm.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,235 @@
#pragma once

#include <fcntl.h>
#include <linux/kvm.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/mman.h>

#include "helpers.hpp"
#include "kernel.hpp"
#include "memory.hpp"

#define AARCH64_CORE_REG(x) (KVM_REG_ARM64 | KVM_REG_SIZE_U64 | KVM_REG_ARM_CORE | KVM_REG_ARM_CORE_REG(x))

struct MmuTables {
u32 level1[4096];
u32 level2SectionTables[256];
};

constexpr u32 hypervisorCodeAddress = 0xD0000000;
constexpr u32 hypervisorDataAddress = 0xE0000000;
constexpr u32 hypervisorCodeSize = hypervisorDataAddress - hypervisorCodeAddress;
constexpr u32 hypervisorDataSize = hypervisorCodeSize;
constexpr u32 mmuTableOffset = hypervisorDataSize - sizeof(MmuTables);
constexpr u32 mmuTableAddress = hypervisorDataAddress + mmuTableOffset;
constexpr u32 exitCodeOffset = 0; // at start of hypervisor data segment
constexpr u32 customEntryOffset = 0x100000; // arbitrary, far enough that the exit code won't ever overlap with this
constexpr u32 guestStateOffset = 0x200000; // also arbitrary, store the guest state here upon exit

struct GuestState
{
std::array<u32, 16> regs;
std::array<u32, 32> fprs;
u32 cpsr;
u32 fpscr;
// u32 tlsBase?
// u64 ticks?
};

struct Environment {
Environment(Memory& mem, Kernel& kernel) : mem(mem), kernel(kernel) {
u32 currentMemorySlot = 0;

kvmDescriptor = open("/dev/kvm", O_RDWR);
if (kvmDescriptor < 0) {
Helpers::panic("Failed to open /dev/kvm");
}

vmDescriptor = ioctl(kvmDescriptor, KVM_CREATE_VM, 0);
if (vmDescriptor < 0) {
Helpers::panic("Failed to create KVM VM");
}

if (ioctl(vmDescriptor, KVM_CHECK_EXTENSION, KVM_CAP_ARM_EL1_32BIT) <= 0) {
Helpers::panic("CPU doesn't support EL1 32-bit mode, KVM won't work on this CPU");
}

// TODO: allocate these with mmap instead of malloc
kvm_userspace_memory_region vramRegionDesc = {
.slot = currentMemorySlot++,
.flags = 0,
.guest_phys_addr = PhysicalAddrs::VRAM,
.memory_size = PhysicalAddrs::VRAMSize,
.userspace_addr = (uint64_t)mem.getVRAM()};
if (ioctl(vmDescriptor, KVM_SET_USER_MEMORY_REGION, &vramRegionDesc) < 0) {
Helpers::panic("Failed to set VRAM memory region");
}

kvm_userspace_memory_region dspRegionDesc = {
.slot = currentMemorySlot++,
.flags = 0,
.guest_phys_addr = PhysicalAddrs::DSPMem,
.memory_size = PhysicalAddrs::DSPMemSize,
.userspace_addr = (uint64_t)mem.getDSPMem()};
if (ioctl(vmDescriptor, KVM_SET_USER_MEMORY_REGION, &dspRegionDesc) < 0) {
Helpers::panic("Failed to set DSP memory region");
}

kvm_userspace_memory_region fcramRegionDesc = {
.slot = currentMemorySlot++,
.flags = 0,
.guest_phys_addr = PhysicalAddrs::FCRAM,
.memory_size = PhysicalAddrs::FCRAMSize * 2,
.userspace_addr = (uint64_t)mem.getFCRAM()};
if (ioctl(vmDescriptor, KVM_SET_USER_MEMORY_REGION, &fcramRegionDesc) < 0) {
Helpers::panic("Failed to set FCRAM memory region");
}

hypervisorCodeRegion = mmap(NULL, hypervisorCodeSize, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE, -1, 0);
if (hypervisorCodeRegion == MAP_FAILED) {
Helpers::panic("Failed to allocate memory for hypervisor I/O");
}

kvm_userspace_memory_region hypervisorCodeRegionDesc = {
.slot = currentMemorySlot++,
.flags = KVM_MEM_READONLY, // We want writes here to cause VM exits
.guest_phys_addr = hypervisorCodeAddress,
.memory_size = hypervisorCodeSize,
.userspace_addr = (uint64_t)hypervisorCodeRegion
};

if (ioctl(vmDescriptor, KVM_SET_USER_MEMORY_REGION, &hypervisorCodeRegionDesc) < 0) {
Helpers::panic("Failed to set up hypervisor IO memory region\n");
return;
}

hypervisorDataRegion = mmap(NULL, hypervisorDataSize, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
if (hypervisorDataRegion == MAP_FAILED) {
Helpers::panic("Failed to allocate memory for hypervisor code");
}

kvm_userspace_memory_region hypervisorDataRegionDesc = {
.slot = currentMemorySlot++,
.flags = 0,
.guest_phys_addr = hypervisorDataAddress,
.memory_size = hypervisorDataSize,
.userspace_addr = (uint64_t)hypervisorDataRegion
};

if (ioctl(vmDescriptor, KVM_SET_USER_MEMORY_REGION, &hypervisorDataRegionDesc) < 0) {
Helpers::panic("Failed to set up hypervisor code memory region\n");
return;
}

cpuDescriptor = ioctl(vmDescriptor, KVM_CREATE_VCPU, 0);
if (cpuDescriptor < 0) {
Helpers::panic("Failed to create VCPU");
}

int mmapSize = ioctl(kvmDescriptor, KVM_GET_VCPU_MMAP_SIZE, 0);
if (mmapSize < 0) {
Helpers::panic("Failed to get KVM shared memory size");
}

runInfo = (kvm_run*)mmap(nullptr, mmapSize, PROT_READ | PROT_WRITE, MAP_SHARED, cpuDescriptor, 0);
if (runInfo == MAP_FAILED) {
Helpers::panic("Failed to map KVM shared memory");
}

kvm_vcpu_init initParams;
if (ioctl(vmDescriptor, KVM_ARM_PREFERRED_TARGET, &initParams) < 0) {
Helpers::panic("Failed to fetch initialization parameters for vCPU");
}
initParams.features[0] |= 1 << KVM_ARM_VCPU_EL1_32BIT;
initParams.features[0] |= 1 << KVM_ARM_VCPU_PSCI_0_2;

if (ioctl(cpuDescriptor, KVM_ARM_VCPU_INIT, initParams) < 0) {
Helpers::panic("Failed to initialize vCPU");
}

kvm_reg_list tempRegList;
tempRegList.n = 0;
ioctl(cpuDescriptor, KVM_GET_REG_LIST, &tempRegList);

regList = (kvm_reg_list*)malloc(sizeof(kvm_reg_list) + tempRegList.n * sizeof(u64));
regList->n = tempRegList.n;
if (ioctl(cpuDescriptor, KVM_GET_REG_LIST, regList) < 0) {
Helpers::panic("Failed to get register list");
}
}

void setPC(u32 pc) {
u64 val = (u64)pc;
kvm_one_reg reg;

reg.id = AARCH64_CORE_REG(regs.pc);
reg.addr = (u64)&val;

if (ioctl(cpuDescriptor, KVM_SET_ONE_REG, &reg) < 0) [[unlikely]] {
printf("SetPC failed\n");
}
}

void run() {
if (ioctl(cpuDescriptor, KVM_RUN, 0) < 0) {
Helpers::panic("Failed to run vCPU");
} else {
printf("KVM run succeeded\n");
}
}

void mapHypervisorCode(const std::vector<u8>& code, u32 offset)
{
if (code.size() > hypervisorCodeSize) {
Helpers::panic("Launch code is too big");
}
memcpy((void*)((uintptr_t)hypervisorCodeRegion + offset), code.data(), code.size());
}

Memory& mem;
Kernel& kernel;
kvm_run* runInfo = nullptr;
kvm_reg_list* regList = nullptr;
void* hypervisorCodeRegion;
void* hypervisorDataRegion;
int kvmDescriptor = -1;
int vmDescriptor = -1;
int cpuDescriptor = -1;
};

class CPU {
Memory& mem;
Environment env;
GuestState state;

public:
static constexpr u64 ticksPerSec = 268111856;

CPU(Memory& mem, Kernel& kernel);
void reset() {}

void setReg(int index, u32 value) {}
u32 getReg(int index) {return 0;}

std::span<u32, 16> regs() { return state.regs; }
std::span<u32, 32> fprs() { return state.fprs; }

void setCPSR(u32 value) { state.cpsr = value; }
u32 getCPSR() { return state.cpsr; }
void setFPSCR(u32 value) { state.fpscr = value; }
u32 getFPSCR() { return state.fpscr; }
void setTLSBase(u32 value) {}

u64 getTicks() {return 0;}
u64& getTicksRef() {static u64 dummy; return dummy;}

void clearCache() {}

void runFrame() {}

// TODO: remove
void romLoaded();
};

#undef AARCH64_CORE_REG
11 changes: 9 additions & 2 deletions include/memory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,18 @@
namespace PhysicalAddrs {
enum : u32 {
VRAM = 0x18000000,
VRAMEnd = VRAM + 0x005FFFFF,
VRAMSize = 0x00600000,
VRAMEnd = VRAM + VRAMSize - 1,
FCRAM = 0x20000000,
FCRAMEnd = FCRAM + 0x07FFFFFF,

DSP_RAM = 0x1FF00000,
DSP_RAM_End = DSP_RAM + 0x0007FFFF
DSP_RAM_End = DSP_RAM + 0x0007FFFF,
FCRAMSize = 0x08000000,
FCRAMEnd = FCRAM + FCRAMSize - 1,
DSPMem = 0x1FF00000,
DSPMemSize = 0x00080000,
DSPMemEnd = DSPMem + DSPMemSize - 1
};
}

Expand Down Expand Up @@ -284,6 +290,7 @@ class Memory {
u8* getDSPDataMem() { return &dspRam[DSP_DATA_MEMORY_OFFSET]; }
u8* getDSPCodeMem() { return &dspRam[DSP_CODE_MEMORY_OFFSET]; }
u32 getUsedUserMem() { return usedUserMemory; }
u8* getVRAM() { return vram; }

void setVRAM(u8* pointer) { vram = pointer; }
void setDSPMem(u8* pointer) { dspRam = pointer; }
Expand Down
Binary file added perf.data
Binary file not shown.
Loading

0 comments on commit bbbc7fb

Please sign in to comment.