x86/sev: Register GHCB memory when SEV-SNP is active
[sfrench/cifs-2.6.git] / arch / x86 / kernel / cpu / common.c
index ed4417500700416768b6096a905e3e5d090b4d98..9e45521338721f05cc3c8b92997e5ed64a966daf 100644 (file)
@@ -60,6 +60,7 @@
 #include <asm/uv/uv.h>
 #include <asm/sigframe.h>
 #include <asm/traps.h>
+#include <asm/sev.h>
 
 #include "cpu.h"
 
@@ -2124,6 +2125,9 @@ void cpu_init_exception_handling(void)
 
        load_TR_desc();
 
+       /* GHCB needs to be setup to handle #VC. */
+       setup_ghcb();
+
        /* Finally load the IDT */
        load_current_idt();
 }