aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/kvm/kvm_main.c
diff options
context:
space:
mode:
authorCarsten Otte <cotte@de.ibm.com>2007-10-10 11:16:19 -0400
committerAvi Kivity <avi@qumranet.com>2008-01-30 10:52:51 -0500
commit043405e10001fe7aae60c46a57189515f13a6468 (patch)
treea2f2e56117b200aeed70a853489b8e669a48fe15 /drivers/kvm/kvm_main.c
parent6fc138d2278078990f597cb1f62fde9e5b458f96 (diff)
KVM: Move x86 msr handling to new files x86.[ch]
Signed-off-by: Carsten Otte <cotte@de.ibm.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/kvm_main.c')
-rw-r--r--drivers/kvm/kvm_main.c69
1 files changed, 3 insertions, 66 deletions
diff --git a/drivers/kvm/kvm_main.c b/drivers/kvm/kvm_main.c
index 22b143feb66d..ec696887b222 100644
--- a/drivers/kvm/kvm_main.c
+++ b/drivers/kvm/kvm_main.c
@@ -16,6 +16,7 @@
16 */ 16 */
17 17
18#include "kvm.h" 18#include "kvm.h"
19#include "x86.h"
19#include "x86_emulate.h" 20#include "x86_emulate.h"
20#include "segment_descriptor.h" 21#include "segment_descriptor.h"
21#include "irq.h" 22#include "irq.h"
@@ -2508,43 +2509,6 @@ void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
2508EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits); 2509EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
2509 2510
2510/* 2511/*
2511 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
2512 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
2513 *
2514 * This list is modified at module load time to reflect the
2515 * capabilities of the host cpu.
2516 */
2517static u32 msrs_to_save[] = {
2518 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
2519 MSR_K6_STAR,
2520#ifdef CONFIG_X86_64
2521 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
2522#endif
2523 MSR_IA32_TIME_STAMP_COUNTER,
2524};
2525
2526static unsigned num_msrs_to_save;
2527
2528static u32 emulated_msrs[] = {
2529 MSR_IA32_MISC_ENABLE,
2530};
2531
2532static __init void kvm_init_msr_list(void)
2533{
2534 u32 dummy[2];
2535 unsigned i, j;
2536
2537 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
2538 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
2539 continue;
2540 if (j < i)
2541 msrs_to_save[j] = msrs_to_save[i];
2542 j++;
2543 }
2544 num_msrs_to_save = j;
2545}
2546
2547/*
2548 * Adapt set_msr() to msr_io()'s calling convention 2512 * Adapt set_msr() to msr_io()'s calling convention
2549 */ 2513 */
2550static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data) 2514static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
@@ -3356,33 +3320,6 @@ static long kvm_dev_ioctl(struct file *filp,
3356 goto out; 3320 goto out;
3357 r = kvm_dev_ioctl_create_vm(); 3321 r = kvm_dev_ioctl_create_vm();
3358 break; 3322 break;
3359 case KVM_GET_MSR_INDEX_LIST: {
3360 struct kvm_msr_list __user *user_msr_list = argp;
3361 struct kvm_msr_list msr_list;
3362 unsigned n;
3363
3364 r = -EFAULT;
3365 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
3366 goto out;
3367 n = msr_list.nmsrs;
3368 msr_list.nmsrs = num_msrs_to_save + ARRAY_SIZE(emulated_msrs);
3369 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
3370 goto out;
3371 r = -E2BIG;
3372 if (n < num_msrs_to_save)
3373 goto out;
3374 r = -EFAULT;
3375 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
3376 num_msrs_to_save * sizeof(u32)))
3377 goto out;
3378 if (copy_to_user(user_msr_list->indices
3379 + num_msrs_to_save * sizeof(u32),
3380 &emulated_msrs,
3381 ARRAY_SIZE(emulated_msrs) * sizeof(u32)))
3382 goto out;
3383 r = 0;
3384 break;
3385 }
3386 case KVM_CHECK_EXTENSION: { 3323 case KVM_CHECK_EXTENSION: {
3387 int ext = (long)argp; 3324 int ext = (long)argp;
3388 3325
@@ -3406,7 +3343,7 @@ static long kvm_dev_ioctl(struct file *filp,
3406 r = 2 * PAGE_SIZE; 3343 r = 2 * PAGE_SIZE;
3407 break; 3344 break;
3408 default: 3345 default:
3409 ; 3346 return kvm_arch_dev_ioctl(filp, ioctl, arg);
3410 } 3347 }
3411out: 3348out:
3412 return r; 3349 return r;
@@ -3770,7 +3707,7 @@ static __init int kvm_init(void)
3770 3707
3771 kvm_init_debug(); 3708 kvm_init_debug();
3772 3709
3773 kvm_init_msr_list(); 3710 kvm_arch_init();
3774 3711
3775 bad_page = alloc_page(GFP_KERNEL); 3712 bad_page = alloc_page(GFP_KERNEL);
3776 3713