Patrick Georgi | 11f0079 | 2020-03-04 15:10:45 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | /* This file is part of the coreboot project. */ |
Alexandru Gagniuc | 6be6c8f | 2016-01-26 18:22:43 -0800 | [diff] [blame] | 3 | /* |
Arthur Heymans | c05b1a6 | 2019-11-22 21:01:30 +0100 | [diff] [blame] | 4 | * This is the modern bootblock. It prepares the system for C environment runtime |
Martin Roth | 20bbd81 | 2019-08-30 21:09:37 -0600 | [diff] [blame] | 5 | * setup. The actual setup is done by hardware-specific code. |
| 6 | * |
| 7 | * It provides a bootflow similar to other architectures, and thus is considered |
| 8 | * to be the modern approach. |
| 9 | * |
Alexandru Gagniuc | 6be6c8f | 2016-01-26 18:22:43 -0800 | [diff] [blame] | 10 | */ |
| 11 | |
Furquan Shaikh | b3ee03c | 2016-04-13 17:15:36 -0700 | [diff] [blame] | 12 | #include <cpu/x86/cr.h> |
Alexandru Gagniuc | 6be6c8f | 2016-01-26 18:22:43 -0800 | [diff] [blame] | 13 | |
| 14 | /* |
| 15 | * Include the old code for reset vector and protected mode entry. That code has |
| 16 | * withstood the test of time. |
| 17 | */ |
| 18 | #include <arch/x86/prologue.inc> |
| 19 | #include <cpu/x86/16bit/entry16.inc> |
| 20 | #include <cpu/x86/16bit/reset16.inc> |
| 21 | #include <cpu/x86/32bit/entry32.inc> |
| 22 | |
Patrick Rudolph | b1ef725 | 2019-09-28 17:44:01 +0200 | [diff] [blame] | 23 | /* BIST result in eax */ |
| 24 | mov %eax, %ebx |
| 25 | /* entry64.inc preserves ebx. */ |
| 26 | #include <cpu/x86/64bit/entry64.inc> |
| 27 | mov %ebx, %eax |
| 28 | |
Julius Werner | cd49cce | 2019-03-05 16:53:33 -0800 | [diff] [blame] | 29 | #if CONFIG(BOOTBLOCK_DEBUG_SPINLOOP) |
Lee Leahy | fdc8c8b | 2016-06-07 08:45:17 -0700 | [diff] [blame] | 30 | |
| 31 | /* Wait for a JTAG debugger to break in and set EBX non-zero */ |
| 32 | xor %ebx, %ebx |
| 33 | |
| 34 | debug_spinloop: |
| 35 | cmp $0, %ebx |
| 36 | jz debug_spinloop |
| 37 | #endif |
Alexandru Gagniuc | 6be6c8f | 2016-01-26 18:22:43 -0800 | [diff] [blame] | 38 | |
| 39 | bootblock_protected_mode_entry: |
Lee Leahy | 2030d25 | 2016-06-05 18:41:00 -0700 | [diff] [blame] | 40 | |
Julius Werner | cd49cce | 2019-03-05 16:53:33 -0800 | [diff] [blame] | 41 | #if !CONFIG(USE_MARCH_586) |
Kyösti Mälkki | 87efe24 | 2018-12-23 07:22:44 +0200 | [diff] [blame] | 42 | /* MMX registers required here */ |
| 43 | |
Lee Leahy | 2030d25 | 2016-06-05 18:41:00 -0700 | [diff] [blame] | 44 | /* BIST result in eax */ |
Himanshu Sahdev aka CunningLearner | 2b84008 | 2019-09-08 12:29:27 +0530 | [diff] [blame] | 45 | movd %eax, %mm0 |
Lee Leahy | 2030d25 | 2016-06-05 18:41:00 -0700 | [diff] [blame] | 46 | |
| 47 | /* Get an early timestamp */ |
Alexandru Gagniuc | 6be6c8f | 2016-01-26 18:22:43 -0800 | [diff] [blame] | 48 | rdtsc |
| 49 | movd %eax, %mm1 |
| 50 | movd %edx, %mm2 |
Lee Leahy | 2030d25 | 2016-06-05 18:41:00 -0700 | [diff] [blame] | 51 | #endif |
Alexandru Gagniuc | 6be6c8f | 2016-01-26 18:22:43 -0800 | [diff] [blame] | 52 | |
Julius Werner | cd49cce | 2019-03-05 16:53:33 -0800 | [diff] [blame] | 53 | #if CONFIG(SSE) |
Alexandru Gagniuc | 6be6c8f | 2016-01-26 18:22:43 -0800 | [diff] [blame] | 54 | enable_sse: |
Alexandru Gagniuc | 6be6c8f | 2016-01-26 18:22:43 -0800 | [diff] [blame] | 55 | mov %cr4, %eax |
Lee Leahy | 3892597 | 2016-06-08 07:11:48 -0700 | [diff] [blame] | 56 | or $CR4_OSFXSR, %ax |
Alexandru Gagniuc | 6be6c8f | 2016-01-26 18:22:43 -0800 | [diff] [blame] | 57 | mov %eax, %cr4 |
Julius Werner | cd49cce | 2019-03-05 16:53:33 -0800 | [diff] [blame] | 58 | #endif /* CONFIG(SSE) */ |
Alexandru Gagniuc | 6be6c8f | 2016-01-26 18:22:43 -0800 | [diff] [blame] | 59 | |
| 60 | /* We're done. Now it's up to platform-specific code */ |
| 61 | jmp bootblock_pre_c_entry |