blob: 5e90da14130c80770722040ab3391e59ccfba18a [file] [log] [blame]
Eric Biedermanfcd5ace2004-10-14 19:29:29 +00001/*
Kyösti Mälkki0dbfb542011-11-22 20:21:06 +02002 * This software and ancillary information (herein called SOFTWARE)
3 * called LinuxBIOS is made available under the terms described here.
4 *
5 * The SOFTWARE has been approved for release with associated
6 * LA-CC Number 00-34. Unless otherwise indicated, this SOFTWARE has
7 * been authored by an employee or employees of the University of
8 * California, operator of the Los Alamos National Laboratory under
9 * Contract No. W-7405-ENG-36 with the U.S. Department of Energy.
10 *
11 * The U.S. Government has rights to use, reproduce, and distribute this
12 * SOFTWARE. The public may copy, distribute, prepare derivative works
13 * and publicly display this SOFTWARE without charge, provided that this
14 * Notice and any statement of authorship are reproduced on all copies.
15 *
16 * Neither the Government nor the University makes any warranty, express
17 * or implied, or assumes any liability or responsibility for the use of
18 * this SOFTWARE. If SOFTWARE is modified to produce derivative works,
19 * such modified SOFTWARE should be clearly marked, so as not to confuse
20 * it with the version available from LANL.
21 *
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000022 */
23
24
Kyösti Mälkki0dbfb542011-11-22 20:21:06 +020025/* Start code to put an i386 or later processor into 32-bit protected mode.
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000026 */
27
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000028#include <arch/rom_segs.h>
Kyösti Mälkkidf771c12019-12-21 10:17:56 +020029#include <cpu/x86/post_code.h>
Kyösti Mälkki34856572019-01-09 20:30:52 +020030
Kyösti Mälkki34856572019-01-09 20:30:52 +020031/* Symbol _start16bit must be aligned to 4kB to start AP CPUs with
32 * Startup IPI message without RAM.
33 */
34.align 4096
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000035.code16
Aaron Durbinf8468d42016-03-02 14:47:37 -060036.globl _start16bit
37.type _start16bit, @function
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000038
Aaron Durbinf8468d42016-03-02 14:47:37 -060039_start16bit:
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000040 cli
41 /* Save the BIST result */
42 movl %eax, %ebp
Julius Wernercd49cce2019-03-05 16:53:33 -080043#if !CONFIG(NO_EARLY_BOOTBLOCK_POSTCODES)
Kyösti Mälkki2a40ebc2011-11-21 08:16:20 +020044 post_code(POST_RESET_VECTOR_CORRECT)
Martin Roth14554372015-11-12 14:02:42 -070045#endif
Kyösti Mälkki2a40ebc2011-11-21 08:16:20 +020046
Kyösti Mälkki0dbfb542011-11-22 20:21:06 +020047 /* IMMEDIATELY invalidate the translation lookaside buffer (TLB) before
48 * executing any further code. Even though paging is disabled we
49 * could still get false address translations due to the TLB if we
50 * didn't invalidate it. Thanks to kmliu@sis.com.tw for this TLB fix.
51 */
52
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000053 xorl %eax, %eax
54 movl %eax, %cr3 /* Invalidate TLB*/
55
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000056 /* Invalidating the cache here seems to be a bad idea on
57 * modern processors. Don't.
58 * If we are hyperthreaded or we have multiple cores it is bad,
59 * for SMP startup. On Opterons it causes a 5 second delay.
60 * Invalidating the cache was pure paranoia in any event.
Paul Menzel39851122018-02-14 15:13:38 +010061 * If your CPU needs it you can write a CPU dependent version of
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000062 * entry16.inc.
63 */
64
65 /* Note: gas handles memory addresses in 16 bit code very poorly.
66 * In particular it doesn't appear to have a directive allowing you
67 * associate a section or even an absolute offset with a segment register.
68 *
69 * This means that anything except cs:ip relative offsets are
70 * a real pain in 16 bit mode. And explains why it is almost
Vikram Narayanan15370ca2012-01-21 20:19:14 +053071 * impossible to get gas to do lgdt correctly.
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000072 *
73 * One way to work around this is to have the linker do the
74 * math instead of the assembler. This solves the very
Raul E Rangelfa52f312020-04-24 13:57:26 -060075 * practical problem of being able to write code that can
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000076 * be relocated.
77 *
Stefan Reinauer14e22772010-04-27 06:56:47 +000078 * An lgdt call before we have memory enabled cannot be
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000079 * position independent, as we cannot execute a call
80 * instruction to get our current instruction pointer.
Raul E Rangelfa52f312020-04-24 13:57:26 -060081 * So while this code is relocatable it isn't arbitrarily
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000082 * relocatable.
83 *
Stefan Reinauer14e22772010-04-27 06:56:47 +000084 * The criteria for relocation have been relaxed to their
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000085 * utmost, so that we can use the same code for both
Elyes HAOUASd6e96862016-08-21 10:12:15 +020086 * our initial entry point and startup of the second CPU.
Aaron Durbinf8468d42016-03-02 14:47:37 -060087 * The code assumes when executing at _start16bit that:
88 * (((cs & 0xfff) == 0) and (ip == _start16bit & 0xffff))
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000089 * or
90 * ((cs == anything) and (ip == 0)).
91 *
Aaron Durbinf8468d42016-03-02 14:47:37 -060092 * The restrictions in reset16.inc mean that _start16bit initially
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000093 * must be loaded at or above 0xffff0000 or below 0x100000.
94 *
Vikram Narayanan15370ca2012-01-21 20:19:14 +053095 * The linker scripts computes gdtptr16_offset by simply returning
Elyes HAOUASece26962018-08-07 12:24:16 +020096 * the low 16 bits. This means that the initial segment used
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000097 * when start is called must be 64K aligned. This should not
98 * restrict the address as the ip address can be anything.
Kyösti Mälkki78630152012-03-05 09:25:12 +020099 *
100 * Also load an IDT with NULL limit to prevent the 16bit IDT being used
101 * in protected mode before c_start.S sets up a 32bit IDT when entering
Elyes HAOUAS585d1a02016-07-28 19:15:34 +0200102 * RAM stage. In practise: CPU will shutdown on any exception.
Kyösti Mälkki78630152012-03-05 09:25:12 +0200103 * See IA32 manual Vol 3A 19.26 Interrupts.
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000104 */
105
106 movw %cs, %ax
107 shlw $4, %ax
Kyösti Mälkki78630152012-03-05 09:25:12 +0200108 movw $nullidt_offset, %bx
109 subw %ax, %bx
110 lidt %cs:(%bx)
Kyösti Mälkkidc873cc2020-11-21 17:59:41 +0200111 movw $gdtptr_offset, %bx
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000112 subw %ax, %bx
Patrick Georgi938ef9f2014-01-18 16:24:24 +0100113 lgdtl %cs:(%bx)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000114
115 movl %cr0, %eax
116 andl $0x7FFAFFD1, %eax /* PG,AM,WP,NE,TS,EM,MP = 0 */
117 orl $0x60000001, %eax /* CD, NW, PE = 1 */
118 movl %eax, %cr0
119
120 /* Restore BIST to %eax */
121 movl %ebp, %eax
122
123 /* Now that we are in protected mode jump to a 32 bit code segment. */
Patrick Georgi938ef9f2014-01-18 16:24:24 +0100124 ljmpl $ROM_CODE_SEG, $__protected_start
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000125
Li-Ta Lof84926e2004-11-04 18:36:06 +0000126 /**
Kyösti Mälkki97b76f72020-11-19 16:41:28 +0200127 * The gdt is defined in gdt_init.S, it has a 4 Gb code segment
Li-Ta Lof84926e2004-11-04 18:36:06 +0000128 * at 0x08, and a 4 GB data segment at 0x10;
129 */
Kyösti Mälkkidc873cc2020-11-21 17:59:41 +0200130__gdtptr:
131 .long gdtptr
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000132
Stefan Reinauer71496be2011-06-01 14:01:46 -0700133.align 4
134.globl nullidt
135nullidt:
136 .word 0 /* limit */
137 .long 0
138 .word 0