2020-04-02 23:48:12 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2004-10-14 21:29:29 +02:00
|
|
|
|
2010-09-27 19:53:17 +02:00
|
|
|
/* Preserve BIST. */
|
|
|
|
movl %eax, %ebp
|
2004-10-14 21:29:29 +02:00
|
|
|
|
2010-09-27 19:53:17 +02:00
|
|
|
/* Enable SSE instructions. */
|
2004-10-14 21:29:29 +02:00
|
|
|
movl %cr4, %eax
|
2010-09-27 19:53:17 +02:00
|
|
|
orl $(1 << 9), %eax
|
2004-10-14 21:29:29 +02:00
|
|
|
movl %eax, %cr4
|
|
|
|
|
2010-09-27 19:53:17 +02:00
|
|
|
/* Restore BIST. */
|
2004-10-14 21:29:29 +02:00
|
|
|
movl %ebp, %eax
|