blob: bcabd76741eff6fcbd9737a05a374b75254c9416 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenk591dda52002-11-18 00:14:45 +00002/*
Bin Meng65db0c92015-01-20 11:25:44 +08003 * U-Boot - x86 Startup Code
wdenk591dda52002-11-18 00:14:45 +00004 *
Graeme Russ45fc1d82011-04-13 19:43:26 +10005 * (C) Copyright 2008-2011
6 * Graeme Russ, <graeme.russ@gmail.com>
7 *
8 * (C) Copyright 2002,2003
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02009 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk591dda52002-11-18 00:14:45 +000010 */
11
Graeme Russ80ccbac2010-10-07 20:03:30 +110012#include <asm/global_data.h>
Graeme Russ93efcb22011-02-12 15:11:32 +110013#include <asm/processor-flags.h>
wdenk591dda52002-11-18 00:14:45 +000014
15#define BOOT_SEG 0xffff0000 /* linear segment of boot code */
wdenk591dda52002-11-18 00:14:45 +000016
17.section .start16, "ax"
18.code16
19.globl start16
wdenk57b2d802003-06-27 21:31:46 +000020start16:
Simon Glass1f4476c2014-11-06 13:20:10 -070021 /* Save BIST */
22 movl %eax, %ecx
23
Simon Glass727c4142014-11-06 13:20:03 -070024 xorl %eax, %eax
Bin Meng65db0c92015-01-20 11:25:44 +080025 movl %eax, %cr3 /* Invalidate TLB */
Simon Glass727c4142014-11-06 13:20:03 -070026
Simon Glasscbfd7ff2014-11-06 13:20:01 -070027 /* Turn off cache (this might require a 486-class CPU) */
Wolfgang Denka1be4762008-05-20 16:00:29 +020028 movl %cr0, %eax
Ondrej Kupka19c114a2011-09-30 21:05:11 +110029 orl $(X86_CR0_NW | X86_CR0_CD), %eax
Wolfgang Denka1be4762008-05-20 16:00:29 +020030 movl %eax, %cr0
wdenk57b2d802003-06-27 21:31:46 +000031 wbinvd
32
Graeme Russ59da5a52010-04-24 00:05:43 +100033 /* load the temporary Global Descriptor Table */
Masahiro Yamada19f2a6d2019-12-03 14:20:49 +090034data32 cs lidt idt_ptr
35data32 cs lgdt gdt_ptr
wdenk591dda52002-11-18 00:14:45 +000036
wdenk591dda52002-11-18 00:14:45 +000037 /* Now, we enter protected mode */
Wolfgang Denka1be4762008-05-20 16:00:29 +020038 movl %cr0, %eax
Graeme Russ93efcb22011-02-12 15:11:32 +110039 orl $X86_CR0_PE, %eax
Wolfgang Denka1be4762008-05-20 16:00:29 +020040 movl %eax, %cr0
wdenk57b2d802003-06-27 21:31:46 +000041
wdenk591dda52002-11-18 00:14:45 +000042 /* Flush the prefetch queue */
Wolfgang Denka1be4762008-05-20 16:00:29 +020043 jmp ff
wdenk591dda52002-11-18 00:14:45 +000044ff:
Simon Glass1f4476c2014-11-06 13:20:10 -070045
Bin Meng65db0c92015-01-20 11:25:44 +080046 /* Finally restore BIST and jump to the 32-bit initialization code */
wdenk57b2d802003-06-27 21:31:46 +000047 movw $code32start, %ax
Graeme Russ3e6ec382010-10-07 20:03:21 +110048 movw %ax, %bp
Simon Glass1f4476c2014-11-06 13:20:10 -070049 movl %ecx, %eax
Masahiro Yamada19f2a6d2019-12-03 14:20:49 +090050data32 cs ljmp *(%bp)
wdenk591dda52002-11-18 00:14:45 +000051
52 /* 48-bit far pointer */
53code32start:
Wolfgang Denka1be4762008-05-20 16:00:29 +020054 .long _start /* offset */
55 .word 0x10 /* segment */
wdenk591dda52002-11-18 00:14:45 +000056
Graeme Russ4fdcc422010-08-22 16:25:59 +100057idt_ptr:
58 .word 0 /* limit */
59 .long 0 /* base */
60
Bin Meng65db0c92015-01-20 11:25:44 +080061 /*
62 * The following Global Descriptor Table is just enough to get us into
63 * 'Flat Protected Mode' - It will be discarded as soon as the final
64 * GDT is setup in a safe location in RAM
65 */
wdenk591dda52002-11-18 00:14:45 +000066gdt_ptr:
Bin Meng0f39bc02014-10-16 22:58:35 +080067 .word 0x1f /* limit (31 bytes = 4 GDT entries - 1) */
Bin Menga3c9fb02015-06-07 11:33:13 +080068 .long BOOT_SEG + gdt_rom /* base */
wdenk591dda52002-11-18 00:14:45 +000069
Bin Meng65db0c92015-01-20 11:25:44 +080070 /* Some CPUs are picky about GDT alignment... */
71 .align 16
Bin Menga3c9fb02015-06-07 11:33:13 +080072.globl gdt_rom
73gdt_rom:
Graeme Russaf3f2c82011-12-19 14:26:18 +110074 /*
75 * The GDT table ...
wdenk591dda52002-11-18 00:14:45 +000076 *
Wolfgang Denka1be4762008-05-20 16:00:29 +020077 * Selector Type
78 * 0x00 NULL
79 * 0x08 Unused
wdenk57b2d802003-06-27 21:31:46 +000080 * 0x10 32bit code
wdenk591dda52002-11-18 00:14:45 +000081 * 0x18 32bit data/stack
wdenk591dda52002-11-18 00:14:45 +000082 */
Graeme Russaf3f2c82011-12-19 14:26:18 +110083 /* The NULL Desciptor - Mandatory */
84 .word 0x0000 /* limit_low */
85 .word 0x0000 /* base_low */
86 .byte 0x00 /* base_middle */
87 .byte 0x00 /* access */
88 .byte 0x00 /* flags + limit_high */
89 .byte 0x00 /* base_high */
wdenk591dda52002-11-18 00:14:45 +000090
Graeme Russaf3f2c82011-12-19 14:26:18 +110091 /* Unused Desciptor - (matches Linux) */
92 .word 0x0000 /* limit_low */
93 .word 0x0000 /* base_low */
94 .byte 0x00 /* base_middle */
95 .byte 0x00 /* access */
96 .byte 0x00 /* flags + limit_high */
97 .byte 0x00 /* base_high */
wdenk591dda52002-11-18 00:14:45 +000098
Graeme Russaf3f2c82011-12-19 14:26:18 +110099 /*
100 * The Code Segment Descriptor:
101 * - Base = 0x00000000
102 * - Size = 4GB
103 * - Access = Present, Ring 0, Exec (Code), Readable
104 * - Flags = 4kB Granularity, 32-bit
105 */
106 .word 0xffff /* limit_low */
107 .word 0x0000 /* base_low */
108 .byte 0x00 /* base_middle */
109 .byte 0x9b /* access */
110 .byte 0xcf /* flags + limit_high */
111 .byte 0x00 /* base_high */
wdenk591dda52002-11-18 00:14:45 +0000112
Graeme Russaf3f2c82011-12-19 14:26:18 +1100113 /*
114 * The Data Segment Descriptor:
115 * - Base = 0x00000000
116 * - Size = 4GB
117 * - Access = Present, Ring 0, Non-Exec (Data), Writable
118 * - Flags = 4kB Granularity, 32-bit
119 */
120 .word 0xffff /* limit_low */
121 .word 0x0000 /* base_low */
122 .byte 0x00 /* base_middle */
123 .byte 0x93 /* access */
124 .byte 0xcf /* flags + limit_high */
125 .byte 0x00 /* base_high */