2008-10-28 00:41:46 +07: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-08 06:57:28 +07:00
|
|
|
#ifndef _ASM_X86_HYPERVISOR_H
|
|
|
|
#define _ASM_X86_HYPERVISOR_H
|
2008-10-28 00:41:46 +07:00
|
|
|
|
2013-03-05 03:20:21 +07:00
|
|
|
#ifdef CONFIG_HYPERVISOR_GUEST
|
|
|
|
|
2010-12-21 13:18:48 +07:00
|
|
|
#include <asm/kvm_para.h>
|
2010-12-21 13:18:49 +07:00
|
|
|
#include <asm/xen/hypervisor.h>
|
2010-12-21 13:18:48 +07:00
|
|
|
|
2010-05-08 06:57:28 +07:00
|
|
|
/*
|
|
|
|
* x86 hypervisor information
|
|
|
|
*/
|
|
|
|
struct hypervisor_x86 {
|
|
|
|
/* Hypervisor name */
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
/* Detection routine */
|
2013-07-25 15:54:35 +07:00
|
|
|
uint32_t (*detect)(void);
|
2010-05-08 06:57:28 +07:00
|
|
|
|
|
|
|
/* Platform setup (run once per boot) */
|
|
|
|
void (*init_platform)(void);
|
2013-01-18 06:44:42 +07:00
|
|
|
|
|
|
|
/* X2APIC detection (run once per boot) */
|
|
|
|
bool (*x2apic_available)(void);
|
2016-08-29 13:48:43 +07:00
|
|
|
|
|
|
|
/* pin current vcpu to specified physical cpu (run rarely) */
|
|
|
|
void (*pin_vcpu)(int);
|
2017-07-28 17:23:12 +07:00
|
|
|
|
|
|
|
/* called during init_mem_mapping() to setup early mappings. */
|
|
|
|
void (*init_mem_mapping)(void);
|
2010-05-08 06:57:28 +07: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-15 00:35:36 +07:00
|
|
|
extern const struct hypervisor_x86 x86_hyper_xen_pv;
|
|
|
|
extern const struct hypervisor_x86 x86_hyper_xen_hvm;
|
2012-07-07 00:47:39 +07:00
|
|
|
extern const struct hypervisor_x86 x86_hyper_kvm;
|
2010-05-08 06:57:28 +07:00
|
|
|
|
2013-03-05 03:20:21 +07:00
|
|
|
extern void init_hypervisor_platform(void);
|
|
|
|
extern bool hypervisor_x2apic_available(void);
|
2016-08-29 13:48:43 +07:00
|
|
|
extern void hypervisor_pin_vcpu(int cpu);
|
2017-07-28 17:23:12 +07:00
|
|
|
|
|
|
|
static inline void hypervisor_init_mem_mapping(void)
|
|
|
|
{
|
|
|
|
if (x86_hyper && x86_hyper->init_mem_mapping)
|
|
|
|
x86_hyper->init_mem_mapping();
|
|
|
|
}
|
2013-03-05 03:20:21 +07:00
|
|
|
#else
|
|
|
|
static inline void init_hypervisor_platform(void) { }
|
|
|
|
static inline bool hypervisor_x2apic_available(void) { return false; }
|
2017-07-28 17:23:12 +07:00
|
|
|
static inline void hypervisor_init_mem_mapping(void) { }
|
2013-03-05 03:20:21 +07:00
|
|
|
#endif /* CONFIG_HYPERVISOR_GUEST */
|
|
|
|
#endif /* _ASM_X86_HYPERVISOR_H */
|