blob: c71acb0bfff5a8c29cd5776d94f289163ed1f22f [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älkki34856572019-01-09 20:30:52 +020029
Kyösti Mälkki34856572019-01-09 20:30:52 +020030/* Symbol _start16bit must be aligned to 4kB to start AP CPUs with
31 * Startup IPI message without RAM.
32 */
33.align 4096
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000034.code16
Aaron Durbinf8468d42016-03-02 14:47:37 -060035.globl _start16bit
36.type _start16bit, @function
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000037
Aaron Durbinf8468d42016-03-02 14:47:37 -060038_start16bit:
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000039 cli
40 /* Save the BIST result */
41 movl %eax, %ebp
Julius Wernercd49cce2019-03-05 16:53:33 -080042#if !CONFIG(NO_EARLY_BOOTBLOCK_POSTCODES)
Kyösti Mälkki2a40ebc2011-11-21 08:16:20 +020043 post_code(POST_RESET_VECTOR_CORRECT)
Martin Roth14554372015-11-12 14:02:42 -070044#endif
Kyösti Mälkki2a40ebc2011-11-21 08:16:20 +020045
Kyösti Mälkki0dbfb542011-11-22 20:21:06 +020046 /* IMMEDIATELY invalidate the translation lookaside buffer (TLB) before
47 * executing any further code. Even though paging is disabled we
48 * could still get false address translations due to the TLB if we
49 * didn't invalidate it. Thanks to kmliu@sis.com.tw for this TLB fix.
50 */
51
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000052 xorl %eax, %eax
53 movl %eax, %cr3 /* Invalidate TLB*/
54
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000055 /* Invalidating the cache here seems to be a bad idea on
56 * modern processors. Don't.
57 * If we are hyperthreaded or we have multiple cores it is bad,
58 * for SMP startup. On Opterons it causes a 5 second delay.
59 * Invalidating the cache was pure paranoia in any event.
Paul Menzel39851122018-02-14 15:13:38 +010060 * If your CPU needs it you can write a CPU dependent version of
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000061 * entry16.inc.
62 */
63
64 /* Note: gas handles memory addresses in 16 bit code very poorly.
65 * In particular it doesn't appear to have a directive allowing you
66 * associate a section or even an absolute offset with a segment register.
67 *
68 * This means that anything except cs:ip relative offsets are
69 * a real pain in 16 bit mode. And explains why it is almost
Vikram Narayanan15370ca2012-01-21 20:19:14 +053070 * impossible to get gas to do lgdt correctly.
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000071 *
72 * One way to work around this is to have the linker do the
73 * math instead of the assembler. This solves the very
Raul E Rangelfa52f312020-04-24 13:57:26 -060074 * practical problem of being able to write code that can
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000075 * be relocated.
76 *
Stefan Reinauer14e22772010-04-27 06:56:47 +000077 * An lgdt call before we have memory enabled cannot be
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000078 * position independent, as we cannot execute a call
79 * instruction to get our current instruction pointer.
Raul E Rangelfa52f312020-04-24 13:57:26 -060080 * So while this code is relocatable it isn't arbitrarily
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000081 * relocatable.
82 *
Stefan Reinauer14e22772010-04-27 06:56:47 +000083 * The criteria for relocation have been relaxed to their
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000084 * utmost, so that we can use the same code for both
Elyes HAOUASd6e96862016-08-21 10:12:15 +020085 * our initial entry point and startup of the second CPU.
Aaron Durbinf8468d42016-03-02 14:47:37 -060086 * The code assumes when executing at _start16bit that:
87 * (((cs & 0xfff) == 0) and (ip == _start16bit & 0xffff))
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000088 * or
89 * ((cs == anything) and (ip == 0)).
90 *
Aaron Durbinf8468d42016-03-02 14:47:37 -060091 * The restrictions in reset16.inc mean that _start16bit initially
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000092 * must be loaded at or above 0xffff0000 or below 0x100000.
93 *
Vikram Narayanan15370ca2012-01-21 20:19:14 +053094 * The linker scripts computes gdtptr16_offset by simply returning
Elyes HAOUASece26962018-08-07 12:24:16 +020095 * the low 16 bits. This means that the initial segment used
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000096 * when start is called must be 64K aligned. This should not
97 * restrict the address as the ip address can be anything.
Kyösti Mälkki78630152012-03-05 09:25:12 +020098 *
99 * Also load an IDT with NULL limit to prevent the 16bit IDT being used
100 * in protected mode before c_start.S sets up a 32bit IDT when entering
Elyes HAOUAS585d1a02016-07-28 19:15:34 +0200101 * RAM stage. In practise: CPU will shutdown on any exception.
Kyösti Mälkki78630152012-03-05 09:25:12 +0200102 * See IA32 manual Vol 3A 19.26 Interrupts.
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000103 */
104
105 movw %cs, %ax
106 shlw $4, %ax
Kyösti Mälkki78630152012-03-05 09:25:12 +0200107 movw $nullidt_offset, %bx
108 subw %ax, %bx
109 lidt %cs:(%bx)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000110 movw $gdtptr16_offset, %bx
111 subw %ax, %bx
Patrick Georgi938ef9f2014-01-18 16:24:24 +0100112 lgdtl %cs:(%bx)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000113
114 movl %cr0, %eax
115 andl $0x7FFAFFD1, %eax /* PG,AM,WP,NE,TS,EM,MP = 0 */
116 orl $0x60000001, %eax /* CD, NW, PE = 1 */
117 movl %eax, %cr0
118
119 /* Restore BIST to %eax */
120 movl %ebp, %eax
121
122 /* Now that we are in protected mode jump to a 32 bit code segment. */
Patrick Georgi938ef9f2014-01-18 16:24:24 +0100123 ljmpl $ROM_CODE_SEG, $__protected_start
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000124
Li-Ta Lof84926e2004-11-04 18:36:06 +0000125 /**
126 * The gdt is defined in entry32.inc, it has a 4 Gb code segment
127 * at 0x08, and a 4 GB data segment at 0x10;
128 */
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000129.align 4
130.globl gdtptr16
131gdtptr16:
132 .word gdt_end - gdt -1 /* compute the table limit */
133 .long gdt /* we know the offset */
134
Stefan Reinauer71496be2011-06-01 14:01:46 -0700135.align 4
136.globl nullidt
137nullidt:
138 .word 0 /* limit */
139 .long 0
140 .word 0
141
Aaron Durbinf8468d42016-03-02 14:47:37 -0600142.globl _estart16bit
143_estart16bit:
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000144 .code32