hypervisor.c 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Common hypervisor code
 *
 * Copyright (C) 2008, VMware, Inc.
 * Author : Alok N Kataria <akataria@vmware.com>
 *
 * 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.
 *
 */

24
#include <linux/module.h>
25
#include <asm/processor.h>
26
#include <asm/hypervisor.h>
27

28
static const __initconst struct hypervisor_x86 * const hypervisors[] =
29
{
30 31
#ifdef CONFIG_XEN
	&x86_hyper_xen,
32
#endif
33 34
	&x86_hyper_vmware,
	&x86_hyper_ms_hyperv,
35
#ifdef CONFIG_KVM_GUEST
36
	&x86_hyper_kvm,
37
#endif
38
};
39

40
const struct hypervisor_x86 *x86_hyper;
41
EXPORT_SYMBOL(x86_hyper);
42 43 44

static inline void __init
detect_hypervisor_vendor(void)
45
{
46
	const struct hypervisor_x86 *h, * const *p;
J
Jason Wang 已提交
47
	uint32_t pri, max_pri = 0;
48 49 50

	for (p = hypervisors; p < hypervisors + ARRAY_SIZE(hypervisors); p++) {
		h = *p;
J
Jason Wang 已提交
51 52 53
		pri = h->detect();
		if (pri != 0 && pri > max_pri) {
			max_pri = pri;
54 55 56
			x86_hyper = h;
		}
	}
J
Jason Wang 已提交
57 58

	if (max_pri)
59
		pr_info("Hypervisor detected: %s\n", x86_hyper->name);
60 61
}

62
void init_hypervisor(struct cpuinfo_x86 *c)
63
{
64 65
	if (x86_hyper && x86_hyper->set_cpu_features)
		x86_hyper->set_cpu_features(c);
66
}
67 68 69

void __init init_hypervisor_platform(void)
{
70 71 72 73 74 75

	detect_hypervisor_vendor();

	if (!x86_hyper)
		return;

76
	init_hypervisor(&boot_cpu_data);
77 78 79

	if (x86_hyper->init_platform)
		x86_hyper->init_platform();
80
}
81 82 83 84 85 86 87

bool __init hypervisor_x2apic_available(void)
{
	return x86_hyper                   &&
	       x86_hyper->x2apic_available &&
	       x86_hyper->x2apic_available();
}