diff options
author | Subrata Banik <subratabanik@google.com> | 2023-04-01 20:36:15 +0530 |
---|---|---|
committer | Lean Sheng Tan <sheng.tan@9elements.com> | 2023-04-06 19:34:09 +0000 |
commit | d8fc4fa4e642a407f0fb0f365e1ea7227662a167 (patch) | |
tree | 16e24802e30fd963c229bc54d3d1d83a4c5eda94 /src/soc/intel/meteorlake | |
parent | 6e911eebc535dd2e70f98e7be9283bf5814cf1c8 (diff) | |
download | coreboot-d8fc4fa4e642a407f0fb0f365e1ea7227662a167.tar.gz coreboot-d8fc4fa4e642a407f0fb0f365e1ea7227662a167.tar.bz2 coreboot-d8fc4fa4e642a407f0fb0f365e1ea7227662a167.zip |
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.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/intel/meteorlake/cpu.c b/src/soc/intel/meteorlake/cpu.c index 6d64e5bb18cd..fa1b83f49c26 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(); } } |