]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/kernel/cpu/hypervisor.c
x86, hypervisor: Export the x86_hyper* symbols
[net-next-2.6.git] / arch / x86 / kernel / cpu / hypervisor.c
CommitLineData
88b094fb
AK
1/*
2 * Common hypervisor code
3 *
4 * Copyright (C) 2008, VMware, Inc.
5 * Author : Alok N Kataria <akataria@vmware.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
15 * NON INFRINGEMENT. See the GNU General Public License for more
16 * details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
24#include <asm/processor.h>
4e42ebd5 25#include <asm/hypervisor.h>
88b094fb 26
e08cae41
PA
27/*
28 * Hypervisor detect order. This is specified explicitly here because
29 * some hypervisors might implement compatibility modes for other
30 * hypervisors and therefore need to be detected in specific sequence.
31 */
32static const __initconst struct hypervisor_x86 * const hypervisors[] =
88b094fb 33{
e08cae41
PA
34 &x86_hyper_vmware,
35 &x86_hyper_ms_hyperv,
36};
88b094fb 37
e08cae41 38const struct hypervisor_x86 *x86_hyper;
96f6e775 39EXPORT_SYMBOL(x86_hyper);
e08cae41
PA
40
41static inline void __init
42detect_hypervisor_vendor(void)
eca0cd02 43{
e08cae41
PA
44 const struct hypervisor_x86 *h, * const *p;
45
46 for (p = hypervisors; p < hypervisors + ARRAY_SIZE(hypervisors); p++) {
47 h = *p;
48 if (h->detect()) {
49 x86_hyper = h;
50 printk(KERN_INFO "Hypervisor detected: %s\n", h->name);
51 break;
52 }
53 }
eca0cd02
AK
54}
55
88b094fb
AK
56void __cpuinit init_hypervisor(struct cpuinfo_x86 *c)
57{
e08cae41
PA
58 if (x86_hyper && x86_hyper->set_cpu_features)
59 x86_hyper->set_cpu_features(c);
88b094fb 60}
2d826404
TG
61
62void __init init_hypervisor_platform(void)
63{
e08cae41
PA
64
65 detect_hypervisor_vendor();
66
67 if (!x86_hyper)
68 return;
69
2d826404 70 init_hypervisor(&boot_cpu_data);
e08cae41
PA
71
72 if (x86_hyper->init_platform)
73 x86_hyper->init_platform();
2d826404 74}