39 #ifndef __CPU_KVM_KVMVM_HH__ 40 #define __CPU_KVM_KVMVM_HH__ 142 #if defined(__i386__) || defined(__x86_64__) 159 bool getSupportedCPUID(
struct kvm_cpuid2 &
cpuid)
const;
171 const CPUIDVector &getSupportedCPUID()
const;
178 bool getSupportedMSRs(
struct kvm_msr_list &msrs)
const;
188 const MSRIndexVector &getSupportedMSRs()
const;
192 mutable CPUIDVector supportedCPUIDCache;
195 mutable MSRIndexVector supportedMSRCache;
227 int ioctl(
int request,
long p1)
const;
228 int ioctl(
int request,
void *p1)
const {
229 return ioctl(request, (
long)p1);
232 return ioctl(request, 0
L);
305 void setTSSAddress(
Addr tss_address);
314 void coalesceMMIO(
Addr start,
int size);
321 void coalesceMMIO(
const AddrRange &range);
333 void createIRQChip();
346 void setIRQLine(uint32_t
irq,
bool high);
376 const MemSlot allocMemSlot(uint64_t size);
386 void setupMemSlot(
const MemSlot slot,
void *host_addr,
Addr guest_addr,
392 void disableMemSlot(
const MemSlot slot);
397 void freeMemSlot(
const MemSlot slot);
406 int createDevice(uint32_t
type, uint32_t flags = 0);
419 long contextIdToVCpuId(
ContextID ctx)
const;
421 #if defined(__aarch64__) 434 void kvmArmPreferredTarget(
struct kvm_vcpu_init &target)
const;
460 void delayedStartup();
473 void setUserMemoryRegion(uint32_t slot,
474 void *host_addr,
Addr guest_addr,
475 uint64_t
len, uint32_t flags);
484 int createVCPU(
long vcpuID);
509 int ioctl(
int request,
long p1)
const;
510 int ioctl(
int request,
void *p1)
const {
511 return ioctl(request, (
long)p1);
514 return ioctl(request, 0
L);
int kvmFD
KVM VM file descriptor.
bool capExtendedCPUID() const
Support for BaseKvmCPU::setCPUID2 and getSupportedCPUID().
int ioctl(int request, void *p1) const
int vcpuMMapSize
Size of the MMAPed vCPU parameter area.
void enableKernelIRQChip()
Tell the VM and VCPUs to use an in-kernel IRQ chip for interrupt delivery.
void notifyFork() override
Notify a child process of a fork.
int apiVersion
KVM API version.
bool hasKernelIRQChip() const
Is in-kernel IRQ chip emulation enabled?
std::vector< MemorySlot > memorySlots
int capNumMemSlots() const
Attempt to determine how many memory slots are available.
static Kvm * instance
Singleton instance.
int getAPIVersion() const
Get the version of the KVM API implemented by the kernel.
long nextVCPUID
Next unallocated vCPU ID.
Base class for KVM based CPU models.
bool capVCPUEvents() const
Support for getting and setting the kvm_vcpu_events structure.
int ioctl(int request, long p1) const
Main VM ioctl interface.
bool capOneReg() const
Support for reading and writing single registers.
bool _hasKernelIRQChip
Do we have in-kernel IRQ-chip emulation enabled?
bool capUserNMI() const
Support for BaseKvmCPU::kvmNonMaskableInterrupt().
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
bool started
Has delayedStartup() already been called?
int checkExtension(int extension) const
Check for the presence of an extension to the KVM API.
int ioctl(int request) const
int createVM()
Create a KVM Virtual Machine.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Structures tracking memory slots.
int vmFD
KVM VM file descriptor.
bool capSetTSSAddress() const
Support for KvmVM::setTSSAddress()
Kvm & operator=(const Kvm &kvm)
bool capUserMemory() const
Support for KvmVM::setUserMemoryRegion()
bool capXCRs() const
Support for getting and setting the x86 XCRs.
bool capXSave() const
Support for getting and setting the kvm_xsave structure.
int capCoalescedMMIO() const
Check if coalesced MMIO is supported and which page in the MMAP'ed structure it stores requests in...
bool capIRQChip() const
Support for creating an in-kernel IRQ chip model.
Kvm * kvm
Global KVM interface.
bool capDebugRegs() const
Support for getting and setting the kvm_debugregs structure.
int getVCPUMMapSize() const
Get the size of the MMAPed parameter area used to communicate vCPU parameters between the kernel and ...
int ioctl(int request, void *p1) const
const Params * params() const
Abstract superclass for simulation objects.
int ContextID
Globally unique thread context ID.
int ioctl(int request) const