/* * 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 #include #include #include #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 #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_ */