soc/intel/alderlake: Add ADL-P 4+4 with 28W TDP
[coreboot.git] / src / cpu / x86 / sse_enable.inc
blob468c118be2c5efe68e8e56c5ab9be487917e3dfb
1 /* SPDX-License-Identifier: GPL-2.0-only */
3         /* Preserve BIST. */
4         movl    %eax, %ebp
6         /* Enable SSE instructions. */
7         movl    %cr4, %eax
8         orl     $(1 << 9), %eax
9         movl    %eax, %cr4
11         /* Restore BIST. */
12         movl    %ebp, %eax