mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-06-15 18:05:49 +00:00
b1ef6ede7b
Signed-off-by: Fan Du <fan.du@intel.com> Signed-off-by: Dimitri John Ledkov <dimitri.j.ledkov@intel.com>
596 lines
14 KiB
C
596 lines
14 KiB
C
#include "kvm/kvm.h"
|
|
#include "kvm/boot-protocol.h"
|
|
#include "kvm/cpufeature.h"
|
|
#include "kvm/interrupt.h"
|
|
#include "kvm/mptable.h"
|
|
#include "kvm/util.h"
|
|
#include "kvm/8250-serial.h"
|
|
#include "kvm/virtio-console.h"
|
|
|
|
#include <asm/bootparam.h>
|
|
#include <linux/kvm.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/stat.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
|
|
#include <elf.h>
|
|
#include "kvm/e820.h"
|
|
|
|
struct kvm_ext kvm_req_ext[] = {
|
|
{ DEFINE_KVM_EXT(KVM_CAP_COALESCED_MMIO) },
|
|
{ DEFINE_KVM_EXT(KVM_CAP_SET_TSS_ADDR) },
|
|
{ DEFINE_KVM_EXT(KVM_CAP_PIT2) },
|
|
{ DEFINE_KVM_EXT(KVM_CAP_USER_MEMORY) },
|
|
{ DEFINE_KVM_EXT(KVM_CAP_IRQ_ROUTING) },
|
|
{ DEFINE_KVM_EXT(KVM_CAP_IRQCHIP) },
|
|
{ DEFINE_KVM_EXT(KVM_CAP_HLT) },
|
|
{ DEFINE_KVM_EXT(KVM_CAP_IRQ_INJECT_STATUS) },
|
|
{ DEFINE_KVM_EXT(KVM_CAP_EXT_CPUID) },
|
|
{ 0, 0 }
|
|
};
|
|
|
|
bool kvm__arch_cpu_supports_vm(void)
|
|
{
|
|
struct cpuid_regs regs;
|
|
u32 eax_base;
|
|
int feature;
|
|
|
|
regs = (struct cpuid_regs) {
|
|
.eax = 0x00,
|
|
};
|
|
host_cpuid(®s);
|
|
|
|
switch (regs.ebx) {
|
|
case CPUID_VENDOR_INTEL_1:
|
|
eax_base = 0x00;
|
|
feature = KVM__X86_FEATURE_VMX;
|
|
break;
|
|
|
|
case CPUID_VENDOR_AMD_1:
|
|
eax_base = 0x80000000;
|
|
feature = KVM__X86_FEATURE_SVM;
|
|
break;
|
|
|
|
default:
|
|
return false;
|
|
}
|
|
|
|
regs = (struct cpuid_regs) {
|
|
.eax = eax_base,
|
|
};
|
|
host_cpuid(®s);
|
|
|
|
if (regs.eax < eax_base + 0x01)
|
|
return false;
|
|
|
|
regs = (struct cpuid_regs) {
|
|
.eax = eax_base + 0x01
|
|
};
|
|
host_cpuid(®s);
|
|
|
|
return regs.ecx & (1 << feature);
|
|
}
|
|
|
|
/*
|
|
* Allocating RAM size bigger than 4GB requires us to leave a gap
|
|
* in the RAM which is used for PCI MMIO, hotplug, and unconfigured
|
|
* devices (see documentation of e820_setup_gap() for details).
|
|
*
|
|
* If we're required to initialize RAM bigger than 4GB, we will create
|
|
* a gap between 0xe0000000 and 0x100000000 in the guest virtual mem space.
|
|
*/
|
|
|
|
void kvm__init_ram(struct kvm *kvm)
|
|
{
|
|
u64 phys_start, phys_size;
|
|
void *host_mem;
|
|
|
|
if (kvm->ram_size < KVM_32BIT_GAP_START) {
|
|
/* Use a single block of RAM for 32bit RAM */
|
|
|
|
phys_start = 0;
|
|
phys_size = kvm->ram_size;
|
|
host_mem = kvm->ram_start;
|
|
|
|
kvm__register_mem(kvm, phys_start, phys_size, host_mem);
|
|
} else {
|
|
/* First RAM range from zero to the PCI gap: */
|
|
|
|
phys_start = 0;
|
|
phys_size = KVM_32BIT_GAP_START;
|
|
host_mem = kvm->ram_start;
|
|
|
|
kvm__register_mem(kvm, phys_start, phys_size, host_mem);
|
|
|
|
/* Second RAM range from 4GB to the end of RAM: */
|
|
|
|
phys_start = KVM_32BIT_MAX_MEM_SIZE;
|
|
phys_size = kvm->ram_size - phys_start;
|
|
host_mem = kvm->ram_start + phys_start;
|
|
|
|
kvm__register_mem(kvm, phys_start, phys_size, host_mem);
|
|
}
|
|
}
|
|
|
|
/* Arch-specific commandline setup */
|
|
void kvm__arch_set_cmdline(char *cmdline, bool video)
|
|
{
|
|
strcpy(cmdline, "noapic noacpi pci=conf1 reboot=k panic=1 i8042.direct=1 "
|
|
"i8042.dumbkbd=1 i8042.nopnp=1");
|
|
if (video)
|
|
strcat(cmdline, " video=vesafb console=tty0");
|
|
else {
|
|
strcat(cmdline, " console=ttyS0 i8042.noaux=1");
|
|
if (do_debug_print) {
|
|
strcat(cmdline, " earlyprintk=serial");
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Architecture-specific KVM init */
|
|
void kvm__arch_init(struct kvm *kvm, const char *hugetlbfs_path, u64 ram_size)
|
|
{
|
|
struct kvm_pit_config pit_config = { .flags = 0, };
|
|
int ret;
|
|
|
|
ret = ioctl(kvm->vm_fd, KVM_SET_TSS_ADDR, 0xfffbd000);
|
|
if (ret < 0)
|
|
die_perror("KVM_SET_TSS_ADDR ioctl");
|
|
|
|
ret = ioctl(kvm->vm_fd, KVM_CREATE_PIT2, &pit_config);
|
|
if (ret < 0)
|
|
die_perror("KVM_CREATE_PIT2 ioctl");
|
|
|
|
if (ram_size < KVM_32BIT_GAP_START) {
|
|
kvm->ram_size = ram_size;
|
|
kvm->ram_start = mmap_anon_or_hugetlbfs(kvm, hugetlbfs_path, ram_size);
|
|
} else {
|
|
kvm->ram_start = mmap_anon_or_hugetlbfs(kvm, hugetlbfs_path, ram_size + KVM_32BIT_GAP_SIZE);
|
|
kvm->ram_size = ram_size + KVM_32BIT_GAP_SIZE;
|
|
if (kvm->ram_start != MAP_FAILED)
|
|
/*
|
|
* We mprotect the gap (see kvm__init_ram() for details) PROT_NONE so that
|
|
* if we accidently write to it, we will know.
|
|
*/
|
|
mprotect(kvm->ram_start + KVM_32BIT_GAP_START, KVM_32BIT_GAP_SIZE, PROT_NONE);
|
|
}
|
|
if (kvm->ram_start == MAP_FAILED)
|
|
die("out of memory");
|
|
|
|
madvise(kvm->ram_start, kvm->ram_size, MADV_MERGEABLE);
|
|
|
|
ret = ioctl(kvm->vm_fd, KVM_CREATE_IRQCHIP);
|
|
if (ret < 0)
|
|
die_perror("KVM_CREATE_IRQCHIP ioctl");
|
|
}
|
|
|
|
void kvm__arch_delete_ram(struct kvm *kvm)
|
|
{
|
|
munmap(kvm->ram_start, kvm->ram_size);
|
|
}
|
|
|
|
void kvm__irq_line(struct kvm *kvm, int irq, int level)
|
|
{
|
|
struct kvm_irq_level irq_level;
|
|
|
|
irq_level = (struct kvm_irq_level) {
|
|
{
|
|
.irq = irq,
|
|
},
|
|
.level = level,
|
|
};
|
|
|
|
if (ioctl(kvm->vm_fd, KVM_IRQ_LINE, &irq_level) < 0)
|
|
die_perror("KVM_IRQ_LINE failed");
|
|
}
|
|
|
|
void kvm__irq_trigger(struct kvm *kvm, int irq)
|
|
{
|
|
kvm__irq_line(kvm, irq, 1);
|
|
kvm__irq_line(kvm, irq, 0);
|
|
}
|
|
|
|
#define BOOT_LOADER_SELECTOR 0x1000
|
|
#define BOOT_LOADER_IP 0x0000
|
|
#define BOOT_LOADER_SP 0x8000
|
|
#define BOOT_CMDLINE_OFFSET 0x20000
|
|
|
|
#define BOOT_PROTOCOL_REQUIRED 0x206
|
|
#define LOAD_HIGH 0x01
|
|
|
|
static inline void *guest_real_to_host(struct kvm *kvm, u16 selector, u16 offset)
|
|
{
|
|
unsigned long flat = ((u32)selector << 4) + offset;
|
|
|
|
return guest_flat_to_host(kvm, flat);
|
|
}
|
|
|
|
int load_flat_binary(struct kvm *kvm, int fd_kernel, int fd_initrd, const char *kernel_cmdline)
|
|
{
|
|
void *p;
|
|
int nr;
|
|
|
|
/*
|
|
* Some architectures may support loading an initrd alongside the flat kernel,
|
|
* but we do not.
|
|
*/
|
|
if (fd_initrd != -1)
|
|
pr_warning("Loading initrd with flat binary not supported.");
|
|
|
|
if (lseek(fd_kernel, 0, SEEK_SET) < 0)
|
|
die_perror("lseek");
|
|
|
|
p = guest_real_to_host(kvm, BOOT_LOADER_SELECTOR, BOOT_LOADER_IP);
|
|
|
|
while ((nr = read(fd_kernel, p, 65536)) > 0)
|
|
p += nr;
|
|
|
|
kvm->arch.boot_selector = BOOT_LOADER_SELECTOR;
|
|
kvm->arch.boot_ip = BOOT_LOADER_IP;
|
|
kvm->arch.boot_sp = BOOT_LOADER_SP;
|
|
|
|
return true;
|
|
}
|
|
|
|
static int load_elf32_binary(struct kvm *kvm, int fd_kernel, int fd_initrd,
|
|
const char *kernel_cmdline)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
static int load_elf64_binary(struct kvm *kvm, int fd_kernel, int fd_initrd,
|
|
const char *kernel_cmdline)
|
|
{
|
|
int ret = false;
|
|
ssize_t numb;
|
|
size_t buflen;
|
|
uint32_t cmdline_size;
|
|
char *cmdline;
|
|
struct boot_params *zero_page = NULL;
|
|
Elf64_Off ph_off;
|
|
Elf64_Half ph_entsz;
|
|
Elf64_Half ph_cnt;
|
|
Elf64_Half ph_i;
|
|
Elf64_Phdr *phdr = NULL;
|
|
Elf64_Ehdr hdr;
|
|
|
|
numb = pread_in_full(fd_kernel, &hdr, sizeof(Elf64_Ehdr), 0);
|
|
if (numb < 0 || (size_t)numb != sizeof(Elf64_Ehdr)) {
|
|
pr_warning("unable to read ELF64 hdr: %s\n", strerror(errno));
|
|
goto done;
|
|
}
|
|
ph_off = hdr.e_phoff;
|
|
ph_entsz = hdr.e_phentsize;
|
|
ph_cnt = hdr.e_phnum;
|
|
buflen = ph_entsz * ph_cnt;
|
|
|
|
phdr = malloc(buflen);
|
|
if (!phdr) {
|
|
pr_warning("unable to allocate program header buffer\n");
|
|
goto done;
|
|
}
|
|
|
|
numb = pread_in_full(fd_kernel, phdr, buflen, ph_off);
|
|
if (numb < 0 || (size_t)numb != buflen) {
|
|
pr_warning("unable to read program header: %s\n",
|
|
strerror(errno));
|
|
goto done_0;
|
|
}
|
|
|
|
/* FIXME mmap */
|
|
for (ph_i = 0; ph_i < ph_cnt; ph_i++) {
|
|
char *dst;
|
|
size_t off = phdr[ph_i].p_offset;
|
|
size_t len = phdr[ph_i].p_filesz;
|
|
uint64_t addr = phdr[ph_i].p_paddr;
|
|
|
|
if ((phdr[ph_i].p_type & PT_LOAD) == 0)
|
|
continue;
|
|
|
|
dst = guest_flat_to_host(kvm, addr);
|
|
|
|
numb = pread_in_full(fd_kernel, dst, len, off);
|
|
if (numb < 0 || (size_t)numb != len) {
|
|
pr_warning("unable to load segment: %s\n",
|
|
strerror(errno));
|
|
goto done_0;
|
|
}
|
|
}
|
|
|
|
cmdline = guest_flat_to_host(kvm, BOOT_CMDLINE_OFFSET);
|
|
if (!kernel_cmdline) {
|
|
kernel_cmdline = "auto";
|
|
}
|
|
cmdline_size = strlen(kernel_cmdline)+1;
|
|
memset(cmdline, 0, cmdline_size);
|
|
memcpy(cmdline, kernel_cmdline, cmdline_size - 1);
|
|
|
|
#define BOOT_ZEROPAGE_OFFSET 0x7E00
|
|
zero_page = guest_flat_to_host(kvm, BOOT_ZEROPAGE_OFFSET);
|
|
memset(zero_page, 0, sizeof(struct boot_params));
|
|
zero_page->hdr.type_of_loader = 0xFF;
|
|
zero_page->hdr.boot_flag = 0xAA55;
|
|
zero_page->hdr.header = 0x53726448;
|
|
zero_page->hdr.cmd_line_ptr = BOOT_CMDLINE_OFFSET;
|
|
zero_page->hdr.cmdline_size = cmdline_size;
|
|
|
|
zero_page->e820_entries++;
|
|
zero_page->e820_map[0].addr = REAL_MODE_IVT_BEGIN;
|
|
zero_page->e820_map[0].size = EBDA_START - REAL_MODE_IVT_BEGIN;
|
|
zero_page->e820_map[0].type = E820_RAM;
|
|
|
|
zero_page->e820_entries++;
|
|
zero_page->e820_map[1].addr = EBDA_START;
|
|
zero_page->e820_map[1].size = VGA_RAM_BEGIN - EBDA_START;
|
|
zero_page->e820_map[1].type = E820_RESERVED;
|
|
|
|
zero_page->e820_entries++;
|
|
zero_page->e820_map[2].addr = MB_BIOS_BEGIN;
|
|
zero_page->e820_map[2].size = MB_BIOS_END - MB_BIOS_BEGIN;
|
|
zero_page->e820_map[2].type = E820_RESERVED;
|
|
|
|
if (kvm->ram_size < KVM_32BIT_GAP_START) {
|
|
zero_page->e820_entries++;
|
|
zero_page->e820_map[3].addr = BZ_KERNEL_START;
|
|
zero_page->e820_map[3].size = kvm->ram_size - BZ_KERNEL_START;
|
|
zero_page->e820_map[3].type = E820_RAM;
|
|
} else {
|
|
zero_page->e820_entries++;
|
|
zero_page->e820_map[3].addr = BZ_KERNEL_START;
|
|
zero_page->e820_map[3].size = KVM_32BIT_GAP_START -
|
|
BZ_KERNEL_START;
|
|
zero_page->e820_map[3].type = E820_RAM;
|
|
|
|
zero_page->e820_entries++;
|
|
zero_page->e820_map[4].addr = KVM_32BIT_MAX_MEM_SIZE;
|
|
zero_page->e820_map[4].size = kvm->ram_size -
|
|
KVM_32BIT_MAX_MEM_SIZE;
|
|
zero_page->e820_map[4].type = E820_RAM;
|
|
}
|
|
|
|
if (fd_initrd >= 0) {
|
|
struct stat initrd_stat;
|
|
unsigned long addr;
|
|
void *p;
|
|
int nr;
|
|
|
|
if (fstat(fd_initrd, &initrd_stat))
|
|
die_perror("fstat");
|
|
|
|
/* boot.hdr.initrd_addr_max is 0x7fffffff */
|
|
addr = 0x7fffffff & ~0xfffff;
|
|
for (;;) {
|
|
if (addr < (kvm->ram_size - initrd_stat.st_size))
|
|
break;
|
|
addr -= 0x100000;
|
|
}
|
|
|
|
p = guest_flat_to_host(kvm, addr);
|
|
nr = read(fd_initrd, p, initrd_stat.st_size);
|
|
if (nr != initrd_stat.st_size)
|
|
die("Failed to read initrd");
|
|
|
|
zero_page->hdr.ramdisk_image = addr;
|
|
zero_page->hdr.ramdisk_size = initrd_stat.st_size;
|
|
}
|
|
|
|
/*
|
|
* normally, we would jump to real-mode code (either the bootloader or
|
|
* the setup code in the bzImage. There's not point in doing that here,
|
|
* as we've already setup the zero page, so let's just setup protected
|
|
* mode and go straight into the kernel.
|
|
*
|
|
* startup_64 expect:
|
|
* - CS.L=1 and CS.D = 0
|
|
* 0) start from protected mode, disable paging
|
|
* 1) enable PAE (CR4.PAE = 1)
|
|
* 2) load cr3 w/ PML4
|
|
* 3) set IA32_EFER.LME=1
|
|
* 4) enable paging CR0.PG=1
|
|
* - identity mapped page tables
|
|
* - rsi has real_mode_data ptr
|
|
*/
|
|
|
|
kvm->arch.boot_protected = true;
|
|
kvm->arch.boot_64 = true;
|
|
|
|
kvm->arch.boot_ip = hdr.e_entry;
|
|
kvm->arch.boot_sp = BOOT_LOADER_SP;
|
|
kvm->arch.boot_si = BOOT_ZEROPAGE_OFFSET;
|
|
|
|
ret = true;
|
|
|
|
done_0:
|
|
free(phdr);
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
int load_elf_binary(struct kvm *kvm, int fd_kernel, int fd_initrd,
|
|
const char *kernel_cmdline)
|
|
{
|
|
unsigned char class;
|
|
int nr;
|
|
char ident[EI_NIDENT];
|
|
|
|
if (lseek(fd_kernel, 0, SEEK_SET))
|
|
return false;
|
|
|
|
nr = read(fd_kernel, &ident, sizeof(ident));
|
|
if (nr != sizeof(ident))
|
|
return false;
|
|
|
|
if (strncmp(ident, ELFMAG, SELFMAG))
|
|
return false;
|
|
|
|
class = ident[EI_CLASS];
|
|
if (class != ELFCLASS32 && class != ELFCLASS64)
|
|
return false;
|
|
|
|
if (ident[EI_DATA] != ELFDATA2LSB)
|
|
return false;
|
|
|
|
if (class == ELFCLASS32) {
|
|
return load_elf32_binary(kvm, fd_kernel, fd_initrd,
|
|
kernel_cmdline);
|
|
} else {
|
|
return load_elf64_binary(kvm, fd_kernel, fd_initrd,
|
|
kernel_cmdline);
|
|
}
|
|
}
|
|
|
|
static const char *BZIMAGE_MAGIC = "HdrS";
|
|
|
|
bool load_bzimage(struct kvm *kvm, int fd_kernel, int fd_initrd,
|
|
const char *kernel_cmdline)
|
|
{
|
|
struct boot_params *kern_boot;
|
|
unsigned long setup_sects;
|
|
struct boot_params boot;
|
|
size_t cmdline_size;
|
|
ssize_t setup_size;
|
|
void *p;
|
|
int nr;
|
|
u16 vidmode;
|
|
|
|
/*
|
|
* See Documentation/x86/boot.txt for details no bzImage on-disk and
|
|
* memory layout.
|
|
*/
|
|
|
|
if (lseek(fd_kernel, 0, SEEK_SET) < 0)
|
|
die_perror("lseek");
|
|
|
|
if (read(fd_kernel, &boot, sizeof(boot)) != sizeof(boot))
|
|
return false;
|
|
|
|
if (memcmp(&boot.hdr.header, BZIMAGE_MAGIC, strlen(BZIMAGE_MAGIC)))
|
|
return false;
|
|
|
|
if (boot.hdr.version < BOOT_PROTOCOL_REQUIRED)
|
|
die("Too old kernel");
|
|
|
|
if (lseek(fd_kernel, 0, SEEK_SET) < 0)
|
|
die_perror("lseek");
|
|
|
|
if (!boot.hdr.setup_sects)
|
|
boot.hdr.setup_sects = BZ_DEFAULT_SETUP_SECTS;
|
|
setup_sects = boot.hdr.setup_sects + 1;
|
|
|
|
setup_size = setup_sects << 9;
|
|
p = guest_real_to_host(kvm, BOOT_LOADER_SELECTOR, BOOT_LOADER_IP);
|
|
|
|
/* copy setup.bin to mem*/
|
|
if (read(fd_kernel, p, setup_size) != setup_size)
|
|
die_perror("read");
|
|
|
|
/* copy vmlinux.bin to BZ_KERNEL_START*/
|
|
p = guest_flat_to_host(kvm, BZ_KERNEL_START);
|
|
|
|
while ((nr = read(fd_kernel, p, 65536)) > 0)
|
|
p += nr;
|
|
|
|
p = guest_flat_to_host(kvm, BOOT_CMDLINE_OFFSET);
|
|
if (kernel_cmdline) {
|
|
cmdline_size = strlen(kernel_cmdline) + 1;
|
|
if (cmdline_size > boot.hdr.cmdline_size)
|
|
cmdline_size = boot.hdr.cmdline_size;
|
|
|
|
memset(p, 0, boot.hdr.cmdline_size);
|
|
memcpy(p, kernel_cmdline, cmdline_size - 1);
|
|
}
|
|
|
|
|
|
/* vidmode should be either specified or set by default */
|
|
if (kvm->cfg.vnc || kvm->cfg.sdl || kvm->cfg.gtk) {
|
|
if (!kvm->cfg.arch.vidmode)
|
|
vidmode = 0x312;
|
|
else
|
|
vidmode = kvm->cfg.arch.vidmode;
|
|
} else {
|
|
vidmode = 0;
|
|
}
|
|
|
|
kern_boot = guest_real_to_host(kvm, BOOT_LOADER_SELECTOR, 0x00);
|
|
|
|
kern_boot->hdr.cmd_line_ptr = BOOT_CMDLINE_OFFSET;
|
|
kern_boot->hdr.type_of_loader = 0xff;
|
|
kern_boot->hdr.heap_end_ptr = 0xfe00;
|
|
kern_boot->hdr.loadflags |= CAN_USE_HEAP;
|
|
kern_boot->hdr.vid_mode = vidmode;
|
|
|
|
/*
|
|
* Read initrd image into guest memory
|
|
*/
|
|
if (fd_initrd >= 0) {
|
|
struct stat initrd_stat;
|
|
unsigned long addr;
|
|
|
|
if (fstat(fd_initrd, &initrd_stat))
|
|
die_perror("fstat");
|
|
|
|
addr = boot.hdr.initrd_addr_max & ~0xfffff;
|
|
for (;;) {
|
|
if (addr < BZ_KERNEL_START)
|
|
die("Not enough memory for initrd");
|
|
else if (addr < (kvm->ram_size - initrd_stat.st_size))
|
|
break;
|
|
addr -= 0x100000;
|
|
}
|
|
|
|
p = guest_flat_to_host(kvm, addr);
|
|
nr = read(fd_initrd, p, initrd_stat.st_size);
|
|
if (nr != initrd_stat.st_size)
|
|
die("Failed to read initrd");
|
|
|
|
kern_boot->hdr.ramdisk_image = addr;
|
|
kern_boot->hdr.ramdisk_size = initrd_stat.st_size;
|
|
}
|
|
|
|
kvm->arch.boot_selector = BOOT_LOADER_SELECTOR;
|
|
/*
|
|
* The real-mode setup code starts at offset 0x200 of a bzImage. See
|
|
* Documentation/x86/boot.txt for details.
|
|
*/
|
|
kvm->arch.boot_ip = BOOT_LOADER_IP + 0x200;
|
|
kvm->arch.boot_sp = BOOT_LOADER_SP;
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* kvm__arch_setup_firmware - inject BIOS into guest system memory
|
|
* @kvm - guest system descriptor
|
|
*
|
|
* This function is a main routine where we poke guest memory
|
|
* and install BIOS there.
|
|
*/
|
|
int kvm__arch_setup_firmware(struct kvm *kvm)
|
|
{
|
|
/* standart minimal configuration */
|
|
setup_bios(kvm);
|
|
|
|
/* FIXME: SMP, ACPI and friends here */
|
|
|
|
return 0;
|
|
}
|
|
|
|
int kvm__arch_free_firmware(struct kvm *kvm)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void kvm__arch_read_term(struct kvm *kvm)
|
|
{
|
|
serial8250__update_consoles(kvm);
|
|
virtio_console__inject_interrupt(kvm);
|
|
}
|