2008-10-27 17:41:46 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008, VMware, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
|
|
|
|
* NON INFRINGEMENT. See the GNU General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
*/
|
2010-05-07 23:57:28 +00:00
|
|
|
#ifndef _ASM_X86_HYPERVISOR_H
|
|
|
|
#define _ASM_X86_HYPERVISOR_H
|
2008-10-27 17:41:46 +00:00
|
|
|
|
2013-03-04 20:20:21 +00:00
|
|
|
#ifdef CONFIG_HYPERVISOR_GUEST
|
|
|
|
|
2010-12-21 06:18:48 +00:00
|
|
|
#include <asm/kvm_para.h>
|
2010-12-21 06:18:49 +00:00
|
|
|
#include <asm/xen/hypervisor.h>
|
2010-12-21 06:18:48 +00:00
|
|
|
|
2010-05-07 23:57:28 +00:00
|
|
|
/*
|
|
|
|
* x86 hypervisor information
|
|
|
|
*/
|
|
|
|
struct hypervisor_x86 {
|
|
|
|
/* Hypervisor name */
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
/* Detection routine */
|
2013-07-25 08:54:35 +00:00
|
|
|
uint32_t (*detect)(void);
|
2010-05-07 23:57:28 +00:00
|
|
|
|
|
|
|
/* Platform setup (run once per boot) */
|
|
|
|
void (*init_platform)(void);
|
2013-01-17 23:44:42 +00:00
|
|
|
|
|
|
|
/* X2APIC detection (run once per boot) */
|
|
|
|
bool (*x2apic_available)(void);
|
2016-08-29 06:48:43 +00:00
|
|
|
|
|
|
|
/* pin current vcpu to specified physical cpu (run rarely) */
|
|
|
|
void (*pin_vcpu)(int);
|
2017-07-28 10:23:12 +00:00
|
|
|
|
|
|
|
/* called during init_mem_mapping() to setup early mappings. */
|
|
|
|
void (*init_mem_mapping)(void);
|
2010-05-07 23:57:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct hypervisor_x86 *x86_hyper;
|
|
|
|
|
|
|
|
/* Recognized hypervisors */
|
|
|
|
extern const struct hypervisor_x86 x86_hyper_vmware;
|
|
|
|
extern const struct hypervisor_x86 x86_hyper_ms_hyperv;
|
2017-03-14 17:35:36 +00:00
|
|
|
extern const struct hypervisor_x86 x86_hyper_xen_pv;
|
|
|
|
extern const struct hypervisor_x86 x86_hyper_xen_hvm;
|
2012-07-06 17:47:39 +00:00
|
|
|
extern const struct hypervisor_x86 x86_hyper_kvm;
|
2010-05-07 23:57:28 +00:00
|
|
|
|
2013-03-04 20:20:21 +00:00
|
|
|
extern void init_hypervisor_platform(void);
|
|
|
|
extern bool hypervisor_x2apic_available(void);
|
2016-08-29 06:48:43 +00:00
|
|
|
extern void hypervisor_pin_vcpu(int cpu);
|
2017-07-28 10:23:12 +00:00
|
|
|
|
|
|
|
static inline void hypervisor_init_mem_mapping(void)
|
|
|
|
{
|
|
|
|
if (x86_hyper && x86_hyper->init_mem_mapping)
|
|
|
|
x86_hyper->init_mem_mapping();
|
|
|
|
}
|
2013-03-04 20:20:21 +00:00
|
|
|
#else
|
|
|
|
static inline void init_hypervisor_platform(void) { }
|
|
|
|
static inline bool hypervisor_x2apic_available(void) { return false; }
|
2017-07-28 10:23:12 +00:00
|
|
|
static inline void hypervisor_init_mem_mapping(void) { }
|
2013-03-04 20:20:21 +00:00
|
|
|
#endif /* CONFIG_HYPERVISOR_GUEST */
|
|
|
|
#endif /* _ASM_X86_HYPERVISOR_H */
|