blob: 398387644ecdc39373f3440cfda36deb07a2d341 [file] [log] [blame]
Angel Ponsf23ae0b2020-04-02 23:48:12 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbin76c37002012-10-30 09:03:43 -05002
Michael Niewöhner90df9162020-10-13 22:58:28 +02003#include <types.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05004#include <cpu/x86/msr.h>
Elyes HAOUAS45ce5d82021-01-31 09:15:30 +01005
Aaron Durbin76c37002012-10-30 09:03:43 -05006#include "haswell.h"
7
Aaron Durbin76c37002012-10-30 09:03:43 -05008void intel_cpu_haswell_finalize_smm(void)
9{
Angel Pons99b2f302020-08-28 01:57:10 +020010 /* Lock memory configuration to protect SMM */
Michael Niewöhner90df9162020-10-13 22:58:28 +020011 msr_set(MSR_LT_LOCK_MEMORY, BIT(0));
Aaron Durbin76c37002012-10-30 09:03:43 -050012}