lkml.org 
[lkml]   [2017]   [Mar]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Subject[RFC PATCH v2 01/32] x86: Add the Secure Encrypted Virtualization CPU feature
    From
    Date
    From: Tom Lendacky <thomas.lendacky@amd.com>

    Update the CPU features to include identifying and reporting on the
    Secure Encrypted Virtualization (SEV) feature. SME is identified by
    CPUID 0x8000001f, but requires BIOS support to enable it (set bit 23 of
    MSR_K8_SYSCFG and set bit 0 of MSR_K7_HWCR). Only show the SEV feature
    as available if reported by CPUID and enabled by BIOS.

    Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
    ---
    arch/x86/include/asm/cpufeatures.h | 1 +
    arch/x86/include/asm/msr-index.h | 2 ++
    arch/x86/kernel/cpu/amd.c | 22 ++++++++++++++++++----
    arch/x86/kernel/cpu/scattered.c | 1 +
    4 files changed, 22 insertions(+), 4 deletions(-)

    diff --git a/arch/x86/include/asm/cpufeatures.h b/arch/x86/include/asm/cpufeatures.h
    index b1a4468..9907579 100644
    --- a/arch/x86/include/asm/cpufeatures.h
    +++ b/arch/x86/include/asm/cpufeatures.h
    @@ -188,6 +188,7 @@
    */

    #define X86_FEATURE_SME ( 7*32+ 0) /* AMD Secure Memory Encryption */
    +#define X86_FEATURE_SEV ( 7*32+ 1) /* AMD Secure Encrypted Virtualization */
    #define X86_FEATURE_CPB ( 7*32+ 2) /* AMD Core Performance Boost */
    #define X86_FEATURE_EPB ( 7*32+ 3) /* IA32_ENERGY_PERF_BIAS support */
    #define X86_FEATURE_CAT_L3 ( 7*32+ 4) /* Cache Allocation Technology L3 */
    diff --git a/arch/x86/include/asm/msr-index.h b/arch/x86/include/asm/msr-index.h
    index e2d0503..e8b3b28 100644
    --- a/arch/x86/include/asm/msr-index.h
    +++ b/arch/x86/include/asm/msr-index.h
    @@ -361,6 +361,8 @@
    #define MSR_K7_PERFCTR3 0xc0010007
    #define MSR_K7_CLK_CTL 0xc001001b
    #define MSR_K7_HWCR 0xc0010015
    +#define MSR_K7_HWCR_SMMLOCK_BIT 0
    +#define MSR_K7_HWCR_SMMLOCK BIT_ULL(MSR_K7_HWCR_SMMLOCK_BIT)
    #define MSR_K7_FID_VID_CTL 0xc0010041
    #define MSR_K7_FID_VID_STATUS 0xc0010042

    diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c
    index 6bddda3..675958e 100644
    --- a/arch/x86/kernel/cpu/amd.c
    +++ b/arch/x86/kernel/cpu/amd.c
    @@ -617,10 +617,13 @@ static void early_init_amd(struct cpuinfo_x86 *c)
    set_cpu_bug(c, X86_BUG_AMD_E400);

    /*
    - * BIOS support is required for SME. If BIOS has enabld SME then
    - * adjust x86_phys_bits by the SME physical address space reduction
    - * value. If BIOS has not enabled SME then don't advertise the
    - * feature (set in scattered.c).
    + * BIOS support is required for SME and SEV.
    + * For SME: If BIOS has enabled SME then adjust x86_phys_bits by
    + * the SME physical address space reduction value.
    + * If BIOS has not enabled SME then don't advertise the
    + * SME feature (set in scattered.c).
    + * For SEV: If BIOS has not enabled SEV then don't advertise the
    + * SEV feature (set in scattered.c).
    */
    if (c->extended_cpuid_level >= 0x8000001f) {
    if (cpu_has(c, X86_FEATURE_SME)) {
    @@ -637,6 +640,17 @@ static void early_init_amd(struct cpuinfo_x86 *c)
    clear_cpu_cap(c, X86_FEATURE_SME);
    }
    }
    +
    + if (cpu_has(c, X86_FEATURE_SEV)) {
    + u64 syscfg, hwcr;
    +
    + /* Check if SEV is enabled */
    + rdmsrl(MSR_K8_SYSCFG, syscfg);
    + rdmsrl(MSR_K7_HWCR, hwcr);
    + if (!(syscfg & MSR_K8_SYSCFG_MEM_ENCRYPT) ||
    + !(hwcr & MSR_K7_HWCR_SMMLOCK))
    + clear_cpu_cap(c, X86_FEATURE_SEV);
    + }
    }
    }

    diff --git a/arch/x86/kernel/cpu/scattered.c b/arch/x86/kernel/cpu/scattered.c
    index cabda87..c3f58d9 100644
    --- a/arch/x86/kernel/cpu/scattered.c
    +++ b/arch/x86/kernel/cpu/scattered.c
    @@ -31,6 +31,7 @@ static const struct cpuid_bit cpuid_bits[] = {
    { X86_FEATURE_CPB, CPUID_EDX, 9, 0x80000007, 0 },
    { X86_FEATURE_PROC_FEEDBACK, CPUID_EDX, 11, 0x80000007, 0 },
    { X86_FEATURE_SME, CPUID_EAX, 0, 0x8000001f, 0 },
    + { X86_FEATURE_SEV, CPUID_EAX, 1, 0x8000001f, 0 },
    { 0, 0, 0, 0, 0 }
    };

    \
     
     \ /
      Last update: 2017-03-02 16:54    [W:2.665 / U:0.232 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site