repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ec/starlabs/merlin: Remove unused variant directories
[coreboot2.git]
/
src
/
cpu
/
intel
/
haswell
/
finalize.c
blob
398387644ecdc39373f3440cfda36deb07a2d341
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <types.h>
4
#include <cpu/x86/msr.h>
5
6
#include
"haswell.h"
7
8
void
intel_cpu_haswell_finalize_smm
(
void
)
9
{
10
/* Lock memory configuration to protect SMM */
11
msr_set
(
MSR_LT_LOCK_MEMORY
,
BIT
(
0
));
12
}