blob: 398387644ecdc39373f3440cfda36deb07a2d341 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <types.h>
#include <cpu/x86/msr.h>
#include "haswell.h"
void intel_cpu_haswell_finalize_smm(void)
{
/* Lock memory configuration to protect SMM */
msr_set(MSR_LT_LOCK_MEMORY, BIT(0));
}
|