thinkpad-acpi: be more strict when detecting a ThinkPad
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / ia64 / kvm / vmm.c
blob2275bf4e681a891c47cbb2002b8b0e714b0508a0
1 /*
2 * vmm.c: vmm module interface with kvm module
4 * Copyright (c) 2007, Intel Corporation.
6 * Xiantao Zhang (xiantao.zhang@intel.com)
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place - Suite 330, Boston, MA 02111-1307 USA.
23 #include<linux/module.h>
24 #include<asm/fpswa.h>
26 #include "vcpu.h"
28 MODULE_AUTHOR("Intel");
29 MODULE_LICENSE("GPL");
31 extern char kvm_ia64_ivt;
32 extern fpswa_interface_t *vmm_fpswa_interface;
34 struct kvm_vmm_info vmm_info = {
35 .module = THIS_MODULE,
36 .vmm_entry = vmm_entry,
37 .tramp_entry = vmm_trampoline,
38 .vmm_ivt = (unsigned long)&kvm_ia64_ivt,
41 static int __init kvm_vmm_init(void)
44 vmm_fpswa_interface = fpswa_interface;
46 /*Register vmm data to kvm side*/
47 return kvm_init(&vmm_info, 1024, THIS_MODULE);
50 static void __exit kvm_vmm_exit(void)
52 kvm_exit();
53 return ;
56 void vmm_spin_lock(spinlock_t *lock)
58 _vmm_raw_spin_lock(lock);
61 void vmm_spin_unlock(spinlock_t *lock)
63 _vmm_raw_spin_unlock(lock);
65 module_init(kvm_vmm_init)
66 module_exit(kvm_vmm_exit)