aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/meteorlake
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2023-04-01 20:36:15 +0530
committerLean Sheng Tan <sheng.tan@9elements.com>2023-04-06 19:34:09 +0000
commitd8fc4fa4e642a407f0fb0f365e1ea7227662a167 (patch)
tree16e24802e30fd963c229bc54d3d1d83a4c5eda94 /src/soc/intel/meteorlake
parent6e911eebc535dd2e70f98e7be9283bf5814cf1c8 (diff)
soc/intel/meteorlake: Set AES-NI Lock
This function performs locking of the AES-NI enablement state. TEST=Able to build and boot google/rex. Signed-off-by: Subrata Banik <subratabanik@google.com> Change-Id: I16f1c14d8a0ca927a34c295cb95311bd4972d691 Reviewed-on: https://review.coreboot.org/c/coreboot/+/74160 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kapil Porwal <kapilporwal@google.com> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/soc/intel/meteorlake')
-rw-r--r--src/soc/intel/meteorlake/cpu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/intel/meteorlake/cpu.c b/src/soc/intel/meteorlake/cpu.c
index 6d64e5bb18..fa1b83f49c 100644
--- a/src/soc/intel/meteorlake/cpu.c
+++ b/src/soc/intel/meteorlake/cpu.c
@@ -143,6 +143,8 @@ void soc_core_init(struct device *cpu)
if (CONFIG(DROP_CPU_FEATURE_PROGRAM_IN_FSP)) {
/* Disable 3-strike error */
disable_three_strike_error();
+
+ set_aesni_lock();
}
}