summaryrefslogtreecommitdiffstats
path: root/src/cpu/intel/model_6ex
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2018-12-15 15:57:33 -0600
committerPatrick Georgi <pgeorgi@google.com>2018-12-20 22:18:05 +0000
commitf9aed6578565593ff2b5d9e90f8e6e80e5d9831d (patch)
tree248a89e4ed74073abb525a543e828722f1fbdac7 /src/cpu/intel/model_6ex
parentc5ad267a372f376cee90c1b8a0d9b8a96316ddb8 (diff)
downloadcoreboot-f9aed6578565593ff2b5d9e90f8e6e80e5d9831d.tar.gz
coreboot-f9aed6578565593ff2b5d9e90f8e6e80e5d9831d.tar.bz2
coreboot-f9aed6578565593ff2b5d9e90f8e6e80e5d9831d.zip
cpu/intel/common: decouple IA32_FEATURE_CONTROL lock from set_vmx()
Newer CPUs/SoCs need to configure other features via the IA32_FEATURE_CONTROL msr, such as SGX, which cannot be done if the msr is already locked. Create separate functions for setting the vmx flag and lock bit, and rename existing function to indicate that the lock bit will be set in addition to vmx flag (per Kconfig). This will allow Skylake/Kabylake (and others?) to use the common VMX code without breaking SGX, while ensuring no change in functionality to existing platforms which current set both together. Test: build/boot each affected platform, ensure no change in functionality Change-Id: Iee772fe87306b4729ca012cef8640d3858e2cb06 Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/30229 Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: David Guckian Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu/intel/model_6ex')
-rw-r--r--src/cpu/intel/model_6ex/model_6ex_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/model_6ex/model_6ex_init.c b/src/cpu/intel/model_6ex/model_6ex_init.c
index 5041dcd51d60..78ece74d66e3 100644
--- a/src/cpu/intel/model_6ex/model_6ex_init.c
+++ b/src/cpu/intel/model_6ex/model_6ex_init.c
@@ -136,7 +136,7 @@ static void model_6ex_init(struct device *cpu)
setup_lapic();
/* Set virtualization based on Kconfig option */
- set_vmx();
+ set_vmx_and_lock();
/* Configure C States */
configure_c_states();