blob: 541b83dcb5ca80a9925c10779c1366747ea37a9c [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
/* Preserve BIST. */
movl %eax, %ebp
/* Enable SSE instructions. */
movl %cr4, %eax
orl $(1 << 9), %eax
movl %eax, %cr4
/* Restore BIST. */
movl %ebp, %eax