blob: ff4f1a26d04fe250d9ac0ba7c10974a7e9af8aea [file] [log] [blame]
Kyösti Mälkki03083132020-11-22 00:34:13 +02001/* SPDX-License-Identifier: BSD-3-Clause */
2
Eric Biedermanfcd5ace2004-10-14 19:29:29 +00003/*
Kyösti Mälkki0dbfb542011-11-22 20:21:06 +02004 * This software and ancillary information (herein called SOFTWARE)
5 * called LinuxBIOS is made available under the terms described here.
6 *
7 * The SOFTWARE has been approved for release with associated
8 * LA-CC Number 00-34. Unless otherwise indicated, this SOFTWARE has
9 * been authored by an employee or employees of the University of
10 * California, operator of the Los Alamos National Laboratory under
11 * Contract No. W-7405-ENG-36 with the U.S. Department of Energy.
12 *
13 * The U.S. Government has rights to use, reproduce, and distribute this
14 * SOFTWARE. The public may copy, distribute, prepare derivative works
15 * and publicly display this SOFTWARE without charge, provided that this
16 * Notice and any statement of authorship are reproduced on all copies.
17 *
18 * Neither the Government nor the University makes any warranty, express
19 * or implied, or assumes any liability or responsibility for the use of
20 * this SOFTWARE. If SOFTWARE is modified to produce derivative works,
21 * such modified SOFTWARE should be clearly marked, so as not to confuse
22 * it with the version available from LANL.
23 *
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000024 */
25
26
Kyösti Mälkki0dbfb542011-11-22 20:21:06 +020027/* Start code to put an i386 or later processor into 32-bit protected mode.
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000028 */
29
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000030#include <arch/rom_segs.h>
Kyösti Mälkkidf771c12019-12-21 10:17:56 +020031#include <cpu/x86/post_code.h>
Kyösti Mälkki34856572019-01-09 20:30:52 +020032
Kyösti Mälkki03083132020-11-22 00:34:13 +020033.section .init._start, "ax", @progbits
34
35/* Symbol _start16bit must reachable from the reset vector, and be aligned to
36 * 4kB to start AP CPUs with Startup IPI message without RAM.
Kyösti Mälkki34856572019-01-09 20:30:52 +020037 */
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000038.code16
Aaron Durbinf8468d42016-03-02 14:47:37 -060039.globl _start16bit
40.type _start16bit, @function
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000041
Aaron Durbinf8468d42016-03-02 14:47:37 -060042_start16bit:
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000043 cli
44 /* Save the BIST result */
45 movl %eax, %ebp
lilacious40cb3fe2023-06-21 23:24:14 +020046 post_code(POSTCODE_RESET_VECTOR_CORRECT)
Kyösti Mälkki2a40ebc2011-11-21 08:16:20 +020047
Kyösti Mälkki0dbfb542011-11-22 20:21:06 +020048 /* IMMEDIATELY invalidate the translation lookaside buffer (TLB) before
49 * executing any further code. Even though paging is disabled we
50 * could still get false address translations due to the TLB if we
51 * didn't invalidate it. Thanks to kmliu@sis.com.tw for this TLB fix.
52 */
53
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000054 xorl %eax, %eax
55 movl %eax, %cr3 /* Invalidate TLB*/
56
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000057 /* Invalidating the cache here seems to be a bad idea on
58 * modern processors. Don't.
59 * If we are hyperthreaded or we have multiple cores it is bad,
60 * for SMP startup. On Opterons it causes a 5 second delay.
61 * Invalidating the cache was pure paranoia in any event.
Paul Menzel39851122018-02-14 15:13:38 +010062 * If your CPU needs it you can write a CPU dependent version of
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000063 * entry16.inc.
64 */
65
66 /* Note: gas handles memory addresses in 16 bit code very poorly.
67 * In particular it doesn't appear to have a directive allowing you
68 * associate a section or even an absolute offset with a segment register.
69 *
70 * This means that anything except cs:ip relative offsets are
71 * a real pain in 16 bit mode. And explains why it is almost
Vikram Narayanan15370ca2012-01-21 20:19:14 +053072 * impossible to get gas to do lgdt correctly.
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000073 *
74 * One way to work around this is to have the linker do the
75 * math instead of the assembler. This solves the very
Raul E Rangelfa52f312020-04-24 13:57:26 -060076 * practical problem of being able to write code that can
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000077 * be relocated.
78 *
Stefan Reinauer14e22772010-04-27 06:56:47 +000079 * An lgdt call before we have memory enabled cannot be
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000080 * position independent, as we cannot execute a call
81 * instruction to get our current instruction pointer.
Raul E Rangelfa52f312020-04-24 13:57:26 -060082 * So while this code is relocatable it isn't arbitrarily
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000083 * relocatable.
84 *
Stefan Reinauer14e22772010-04-27 06:56:47 +000085 * The criteria for relocation have been relaxed to their
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000086 * utmost, so that we can use the same code for both
Elyes HAOUASd6e96862016-08-21 10:12:15 +020087 * our initial entry point and startup of the second CPU.
Aaron Durbinf8468d42016-03-02 14:47:37 -060088 * The code assumes when executing at _start16bit that:
89 * (((cs & 0xfff) == 0) and (ip == _start16bit & 0xffff))
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000090 * or
91 * ((cs == anything) and (ip == 0)).
92 *
Aaron Durbinf8468d42016-03-02 14:47:37 -060093 * The restrictions in reset16.inc mean that _start16bit initially
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000094 * must be loaded at or above 0xffff0000 or below 0x100000.
95 *
Vikram Narayanan15370ca2012-01-21 20:19:14 +053096 * The linker scripts computes gdtptr16_offset by simply returning
Elyes HAOUASece26962018-08-07 12:24:16 +020097 * the low 16 bits. This means that the initial segment used
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000098 * when start is called must be 64K aligned. This should not
99 * restrict the address as the ip address can be anything.
Kyösti Mälkki78630152012-03-05 09:25:12 +0200100 *
101 * Also load an IDT with NULL limit to prevent the 16bit IDT being used
102 * in protected mode before c_start.S sets up a 32bit IDT when entering
Elyes HAOUAS585d1a02016-07-28 19:15:34 +0200103 * RAM stage. In practise: CPU will shutdown on any exception.
Kyösti Mälkki78630152012-03-05 09:25:12 +0200104 * See IA32 manual Vol 3A 19.26 Interrupts.
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000105 */
106
107 movw %cs, %ax
108 shlw $4, %ax
Kyösti Mälkki78630152012-03-05 09:25:12 +0200109 movw $nullidt_offset, %bx
110 subw %ax, %bx
111 lidt %cs:(%bx)
Kyösti Mälkkidc873cc2020-11-21 17:59:41 +0200112 movw $gdtptr_offset, %bx
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000113 subw %ax, %bx
Patrick Georgi938ef9f2014-01-18 16:24:24 +0100114 lgdtl %cs:(%bx)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000115
Arthur Heymanse7266e82021-05-10 09:23:31 +0200116#if CONFIG(INTEL_CBNT_SUPPORT)
117#include <cpu/intel/msr.h>
118 movl $MSR_BOOT_GUARD_SACM_INFO, %ecx
119 rdmsr
120 andl $B_BOOT_GUARD_SACM_INFO_NEM_ENABLED, %eax
121 jz 1f
122 movl %cr0, %eax
123 andl $0x7FFAFFD1, %eax /* PG,AM,WP,NE,TS,EM,MP = 0 */
124 orl $0x01, %eax /* PE = 1 */
125 movl %eax, %cr0
126 jmp 2f
127#endif
1281:
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000129 movl %cr0, %eax
130 andl $0x7FFAFFD1, %eax /* PG,AM,WP,NE,TS,EM,MP = 0 */
131 orl $0x60000001, %eax /* CD, NW, PE = 1 */
132 movl %eax, %cr0
Arthur Heymanse7266e82021-05-10 09:23:31 +02001332:
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000134
135 /* Restore BIST to %eax */
136 movl %ebp, %eax
137
138 /* Now that we are in protected mode jump to a 32 bit code segment. */
Kyösti Mälkki6c7441f2020-12-05 08:39:57 +0200139 ljmpl $ROM_CODE_SEG, $bootblock_protected_mode_entry
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000140
Li-Ta Lof84926e2004-11-04 18:36:06 +0000141 /**
Kyösti Mälkki97b76f72020-11-19 16:41:28 +0200142 * The gdt is defined in gdt_init.S, it has a 4 Gb code segment
Li-Ta Lof84926e2004-11-04 18:36:06 +0000143 * at 0x08, and a 4 GB data segment at 0x10;
144 */
Kyösti Mälkkidc873cc2020-11-21 17:59:41 +0200145__gdtptr:
146 .long gdtptr
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000147
Stefan Reinauer71496be2011-06-01 14:01:46 -0700148.align 4
149.globl nullidt
150nullidt:
151 .word 0 /* limit */
152 .long 0
153 .word 0