linux-headers/arch/e2k/include/asm/kvm/boot.h

51 lines
1.2 KiB
C

/*
* E2K boot-time initializtion virtualization for KVM host
*
* Copyright 2017 Salavat S. Guiliazov (atic@mcst.ru)
*/
#ifndef _E2K_KVM_BOOT_H_
#define _E2K_KVM_BOOT_H_
#ifndef __ASSEMBLY__
#include <linux/types.h>
#include <linux/kernel.h>
#include <asm/e2k_api.h>
#include <asm/machdep_numa.h>
#ifndef CONFIG_VIRTUALIZATION
/* it is native kernel without any virtualization support */
#else /* CONFIG_VIRTUALIZATION */
#if defined(CONFIG_PARAVIRT_GUEST) || defined(CONFIG_KVM_GUEST_KERNEL)
/* it is paravirtualized host and guest kernel */
/* or pure guest kernel */
#include <asm/kvm/guest/boot.h>
#endif /* CONFIG_PARAVIRT_GUEST || CONFIG_KVM_GUEST_KERNEL */
#ifndef CONFIG_KVM_GUEST_KERNEL
/* it is native host kernel with virtualization support */
/* or paravirtualized host and guest kernel */
static inline void
kvm_host_machine_setup(machdep_t *host_machine)
{
machdep_t *node_mach;
int nid;
for_each_node_has_dup_kernel(nid) {
node_mach = the_node_machine(nid);
if (host_machine->native_iset_ver < E2K_ISET_V5) {
} else {
}
}
}
#endif /* ! CONFIG_PARAVIRT_GUEST && ! CONFIG_KVM_GUEST_KERNEL */
#endif /* CONFIG_VIRTUALIZATION */
#endif /* ! __ASSEMBLY__ */
#endif /* _E2K_KVM_BOOT_H_ */