repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
soc/intel/alderlake: Add ADL-P 4+4 with 28W TDP
[coreboot.git]
/
src
/
cpu
/
x86
/
sse_enable.inc
blob
468c118be2c5efe68e8e56c5ab9be487917e3dfb
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
/* Preserve BIST. */
4
movl %eax, %ebp
5
6
/* Enable SSE instructions. */
7
movl %cr4, %eax
8
orl $(1 << 9), %eax
9
movl %eax, %cr4
10
11
/* Restore BIST. */
12
movl %ebp, %eax