]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
KVM: export information about NPT to generic x86 code
authorJoerg Roedel <joerg.roedel@amd.com>
Thu, 7 Feb 2008 12:47:41 +0000 (13:47 +0100)
committerAvi Kivity <avi@qumranet.com>
Sun, 27 Apr 2008 08:53:19 +0000 (11:53 +0300)
The generic x86 code has to know if the specific implementation uses Nested
Paging. In the generic code Nested Paging is called Two Dimensional Paging
(TDP) to avoid confusion with (future) TDP implementations of other vendors.
This patch exports the availability of TDP to the generic x86 code.

Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
arch/x86/kvm/mmu.c
arch/x86/kvm/svm.c
include/asm-x86/kvm_host.h

index 6651dfadae500b106156fcb040a356c83a3a17a8..21cfa289d0fe91a01c81595cacc464467ccd1a93 100644 (file)
 #include <asm/cmpxchg.h>
 #include <asm/io.h>
 
+/*
+ * When setting this variable to true it enables Two-Dimensional-Paging
+ * where the hardware walks 2 page tables:
+ * 1. the guest-virtual to guest-physical
+ * 2. while doing 1. it walks guest-physical to host-physical
+ * If the hardware supports that we don't need to do shadow paging.
+ */
+static bool tdp_enabled = false;
+
 #undef MMU_DEBUG
 
 #undef AUDIT
@@ -1582,6 +1591,12 @@ out:
 }
 EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
 
+void kvm_enable_tdp(void)
+{
+       tdp_enabled = true;
+}
+EXPORT_SYMBOL_GPL(kvm_enable_tdp);
+
 static void free_mmu_pages(struct kvm_vcpu *vcpu)
 {
        struct kvm_mmu_page *sp;
index fb5d6c2e6a08043e5062e89c6bc9dccbcfc19bff..9e29a13136c44a0fd3f13ba0b1e0a6e2debcd1eb 100644 (file)
@@ -426,8 +426,10 @@ static __init int svm_hardware_setup(void)
                npt_enabled = false;
        }
 
-       if (npt_enabled)
+       if (npt_enabled) {
                printk(KERN_INFO "kvm: Nested Paging enabled\n");
+               kvm_enable_tdp();
+       }
 
        return 0;
 
index 274f153c870475c4cde735e812740453607cfb56..5c6ba2212b1bd77014667339116c24b1d3858dc9 100644 (file)
@@ -493,6 +493,8 @@ int kvm_fix_hypercall(struct kvm_vcpu *vcpu);
 
 int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, u32 error_code);
 
+void kvm_enable_tdp(void);
+
 int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3);
 int complete_pio(struct kvm_vcpu *vcpu);