blob: e5c1733e594b0a4b2be7ae7f0f1849433382aedd [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
Bin Mengfe0c33a2014-12-12 21:05:22 +08002 * U-Boot - x86 Startup Code
wdenk2262cfe2002-11-18 00:14:45 +00003 *
Graeme Russdbf71152011-04-13 19:43:26 +10004 * (C) Copyright 2008-2011
5 * Graeme Russ, <graeme.russ@gmail.com>
6 *
7 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02008 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk2262cfe2002-11-18 00:14:45 +00009 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +000011 */
12
wdenk2262cfe2002-11-18 00:14:45 +000013#include <config.h>
Graeme Russ161b3582010-10-07 20:03:29 +110014#include <asm/global_data.h>
Simon Glassd1cd0452014-11-12 22:42:09 -070015#include <asm/post.h>
Graeme Russ109ad142011-12-31 10:24:36 +110016#include <asm/processor.h>
Graeme Russ0c24c9c2011-02-12 15:11:32 +110017#include <asm/processor-flags.h>
Graeme Russ9e6c5722011-12-31 22:58:15 +110018#include <generated/generic-asm-offsets.h>
Bin Mengfe0c33a2014-12-12 21:05:22 +080019#include <generated/asm-offsets.h>
wdenk2262cfe2002-11-18 00:14:45 +000020
wdenk2262cfe2002-11-18 00:14:45 +000021.section .text
22.code32
23.globl _start
wdenk8bde7f72003-06-27 21:31:46 +000024.type _start, @function
Graeme Russfea25722011-04-13 19:43:28 +100025.globl _x86boot_start
26_x86boot_start:
Graeme Russ077e1952010-04-24 00:05:42 +100027 /*
Simon Glassda3a95d2015-07-31 09:31:25 -060028 * This is the fail-safe 32-bit bootstrap entry point.
29 *
30 * This code is used when booting from another boot loader like
31 * coreboot or EFI. So we repeat some of the same init found in
32 * start16.
Graeme Russ077e1952010-04-24 00:05:42 +100033 */
34 cli
35 cld
36
Graeme Russ2f0e0cd2011-11-08 02:33:23 +000037 /* Turn off cache (this might require a 486-class CPU) */
Graeme Russ077e1952010-04-24 00:05:42 +100038 movl %cr0, %eax
Graeme Russ0c24c9c2011-02-12 15:11:32 +110039 orl $(X86_CR0_NW | X86_CR0_CD), %eax
Graeme Russ077e1952010-04-24 00:05:42 +100040 movl %eax, %cr0
41 wbinvd
42
Gabe Black91d82a22012-11-03 11:41:28 +000043 /* Tell 32-bit code it is being entered from an in-RAM copy */
Simon Glass83ec7de2015-07-31 09:31:28 -060044 movl $GD_FLG_WARM_BOOT, %ebx
Simon Glass42fde3052015-08-04 12:33:57 -060045
46 /*
47 * Zero the BIST (Built-In Self Test) value since we don't have it.
48 * It must be 0 or the previous loader would have reported an error.
49 */
50 movl $0, %ebp
51
Gabe Black91d82a22012-11-03 11:41:28 +000052 jmp 1f
Simon Glass83ec7de2015-07-31 09:31:28 -060053
54 /* Add a way for tools to discover the _start entry point */
55 .align 4
56 .long 0x12345678
wdenk8bde7f72003-06-27 21:31:46 +000057_start:
Gabe Black91d82a22012-11-03 11:41:28 +000058 /*
Simon Glassda3a95d2015-07-31 09:31:25 -060059 * This is the 32-bit cold-reset entry point, coming from start16.
Simon Glass83ec7de2015-07-31 09:31:28 -060060 * Set %ebx to GD_FLG_COLD_BOOT to indicate this.
Gabe Black91d82a22012-11-03 11:41:28 +000061 */
Simon Glass83ec7de2015-07-31 09:31:28 -060062 movl $GD_FLG_COLD_BOOT, %ebx
Simon Glass42fde3052015-08-04 12:33:57 -060063
Simon Glassf67cd512014-11-06 13:20:10 -070064 /* Save BIST */
65 movl %eax, %ebp
Simon Glass42fde3052015-08-04 12:33:57 -0600661:
67
68 /* Save table pointer */
69 movl %ecx, %esi
Graeme Russ077e1952010-04-24 00:05:42 +100070
Simon Glassda3a95d2015-07-31 09:31:25 -060071 /* Load the segement registers to match the GDT loaded in start16.S */
Graeme Russ109ad142011-12-31 10:24:36 +110072 movl $(X86_GDT_ENTRY_32BIT_DS * X86_GDT_ENTRY_SIZE), %eax
Graeme Russ8ffb2e82010-10-07 20:03:21 +110073 movw %ax, %fs
74 movw %ax, %ds
75 movw %ax, %gs
76 movw %ax, %es
77 movw %ax, %ss
wdenk8bde7f72003-06-27 21:31:46 +000078
Mike Williams16263082011-07-22 04:01:30 +000079 /* Clear the interrupt vectors */
Graeme Russ077e1952010-04-24 00:05:42 +100080 lidt blank_idt_ptr
81
Simon Glassda3a95d2015-07-31 09:31:25 -060082 /*
83 * Critical early platform init - generally not used, we prefer init
84 * to happen later when we have a console, in case something goes
85 * wrong.
86 */
wdenk2262cfe2002-11-18 00:14:45 +000087 jmp early_board_init
Graeme Russ88fa0a62010-10-07 20:03:27 +110088.globl early_board_init_ret
wdenk2262cfe2002-11-18 00:14:45 +000089early_board_init_ret:
Simon Glassd1cd0452014-11-12 22:42:09 -070090 post_code(POST_START)
wdenk8bde7f72003-06-27 21:31:46 +000091
Graeme Russed4cba72011-02-12 15:11:52 +110092 /* Initialise Cache-As-RAM */
93 jmp car_init
94.globl car_init_ret
95car_init_ret:
Bin Mengbceb9f02014-12-12 21:05:31 +080096#ifndef CONFIG_HAVE_FSP
Graeme Russed4cba72011-02-12 15:11:52 +110097 /*
98 * We now have CONFIG_SYS_CAR_SIZE bytes of Cache-As-RAM (or SRAM,
99 * or fully initialised SDRAM - we really don't care which)
100 * starting at CONFIG_SYS_CAR_ADDR to be used as a temporary stack
Simon Glassda3a95d2015-07-31 09:31:25 -0600101 * and early malloc() area. The MRC requires some space at the top.
Simon Glass76f90f32014-11-06 13:20:04 -0700102 *
103 * Stack grows down from top of CAR. We have:
104 *
105 * top-> CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE
Simon Glass65dd74a2014-11-12 22:42:28 -0700106 * MRC area
Simon Glass76f90f32014-11-06 13:20:04 -0700107 * global_data
108 * x86 global descriptor table
109 * early malloc area
110 * stack
111 * bottom-> CONFIG_SYS_CAR_ADDR
Graeme Russed4cba72011-02-12 15:11:52 +1100112 */
Simon Glass65dd74a2014-11-12 22:42:28 -0700113 movl $(CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE - 4), %esp
114#ifdef CONFIG_DCACHE_RAM_MRC_VAR_SIZE
115 subl $CONFIG_DCACHE_RAM_MRC_VAR_SIZE, %esp
116#endif
Bin Mengbceb9f02014-12-12 21:05:31 +0800117#else
118 /*
Simon Glassda3a95d2015-07-31 09:31:25 -0600119 * When we get here after car_init(), esp points to a temporary stack
Bin Mengbceb9f02014-12-12 21:05:31 +0800120 * and esi holds the HOB list address returned by the FSP.
121 */
122#endif
Graeme Russ8d616252012-11-27 15:38:36 +0000123
124 /* Reserve space on stack for global data */
125 subl $GENERATED_GBL_DATA_SIZE, %esp
126
127 /* Align global data to 16-byte boundary */
128 andl $0xfffffff0, %esp
Simon Glassd1cd0452014-11-12 22:42:09 -0700129 post_code(POST_START_STACK)
Graeme Russ8d616252012-11-27 15:38:36 +0000130
Simon Glassfbd72822014-10-10 07:49:15 -0600131 /* Zero the global data since it won't happen later */
132 xorl %eax, %eax
133 movl $GENERATED_GBL_DATA_SIZE, %ecx
134 movl %esp, %edi
135 rep stosb
136
Bin Mengbceb9f02014-12-12 21:05:31 +0800137#ifdef CONFIG_HAVE_FSP
Bin Mengaefaff82015-06-07 11:33:14 +0800138 test %esi, %esi
139 jz skip_hob
140
Bin Mengbceb9f02014-12-12 21:05:31 +0800141 /* Store HOB list */
142 movl %esp, %edx
143 addl $GD_HOB_LIST, %edx
144 movl %esi, (%edx)
Bin Mengbceb9f02014-12-12 21:05:31 +0800145
Bin Mengaefaff82015-06-07 11:33:14 +0800146skip_hob:
Simon Glass42fde3052015-08-04 12:33:57 -0600147#else
148 /* Store table pointer */
149 movl %esp, %edx
150 addl $GD_TABLE, %edx
151 movl %esi, (%edx)
Bin Mengaefaff82015-06-07 11:33:14 +0800152#endif
Simon Glass42fde3052015-08-04 12:33:57 -0600153
Simon Glass76f90f32014-11-06 13:20:04 -0700154 /* Setup first parameter to setup_gdt, pointer to global_data */
Graeme Russ8d616252012-11-27 15:38:36 +0000155 movl %esp, %eax
156
157 /* Reserve space for global descriptor table */
158 subl $X86_GDT_SIZE, %esp
159
Simon Glass76f90f32014-11-06 13:20:04 -0700160 /* Align temporary global descriptor table to 16-byte boundary */
161 andl $0xfffffff0, %esp
162 movl %esp, %ecx
163
Simon Glass5dbcaa22014-10-10 07:49:16 -0600164#if defined(CONFIG_SYS_MALLOC_F_LEN)
Simon Glassda3a95d2015-07-31 09:31:25 -0600165 /* Set up the pre-relocation malloc pool */
Simon Glass5dbcaa22014-10-10 07:49:16 -0600166 subl $CONFIG_SYS_MALLOC_F_LEN, %esp
167 movl %eax, %edx
168 addl $GD_MALLOC_BASE, %edx
169 movl %esp, (%edx)
170#endif
Simon Glassda3a95d2015-07-31 09:31:25 -0600171 /* Store BIST into global_data */
Simon Glassf67cd512014-11-06 13:20:10 -0700172 movl %eax, %edx
173 addl $GD_BIST, %edx
174 movl %ebp, (%edx)
Graeme Russ8d616252012-11-27 15:38:36 +0000175
Simon Glassda3a95d2015-07-31 09:31:25 -0600176 /* Set second parameter to setup_gdt() */
Simon Glass76f90f32014-11-06 13:20:04 -0700177 movl %ecx, %edx
Graeme Russ8d616252012-11-27 15:38:36 +0000178
Graeme Russ8d616252012-11-27 15:38:36 +0000179 /* Setup global descriptor table so gd->xyz works */
180 call setup_gdt
Graeme Russ9e6c5722011-12-31 22:58:15 +1100181
Graeme Russ96cd6642011-02-12 15:11:54 +1100182 /* Set parameter to board_init_f() to boot flags */
Simon Glassd1cd0452014-11-12 22:42:09 -0700183 post_code(POST_START_DONE)
Graeme Russdbf71152011-04-13 19:43:26 +1000184 xorl %eax, %eax
Graeme Russ161b3582010-10-07 20:03:29 +1100185
Simon Glassda3a95d2015-07-31 09:31:25 -0600186 /* Enter, U-Boot! */
Graeme Russdbf71152011-04-13 19:43:26 +1000187 call board_init_f
wdenk2262cfe2002-11-18 00:14:45 +0000188
189 /* indicate (lack of) progress */
wdenk8bde7f72003-06-27 21:31:46 +0000190 movw $0x85, %ax
Graeme Russfb002902011-02-12 15:11:58 +1100191 jmp die
192
Graeme Russf48dd6f2012-01-01 15:06:39 +1100193.globl board_init_f_r_trampoline
194.type board_init_f_r_trampoline, @function
195board_init_f_r_trampoline:
Graeme Russfb002902011-02-12 15:11:58 +1100196 /*
197 * SDRAM has been initialised, U-Boot code has been copied into
198 * RAM, BSS has been cleared and relocation adjustments have been
199 * made. It is now time to jump into the in-RAM copy of U-Boot
200 *
Graeme Russf48dd6f2012-01-01 15:06:39 +1100201 * %eax = Address of top of new stack
Graeme Russfb002902011-02-12 15:11:58 +1100202 */
203
Graeme Russ8d616252012-11-27 15:38:36 +0000204 /* Stack grows down from top of SDRAM */
Graeme Russfb002902011-02-12 15:11:58 +1100205 movl %eax, %esp
206
Graeme Russ8d616252012-11-27 15:38:36 +0000207 /* Reserve space on stack for global data */
208 subl $GENERATED_GBL_DATA_SIZE, %esp
209
210 /* Align global data to 16-byte boundary */
211 andl $0xfffffff0, %esp
212
Simon Glassda3a95d2015-07-31 09:31:25 -0600213 /* Setup first parameter to memcpy() and setup_gdt() */
Graeme Russ8d616252012-11-27 15:38:36 +0000214 movl %esp, %eax
215
Simon Glassda3a95d2015-07-31 09:31:25 -0600216 /* Setup second parameter to memcpy() */
Graeme Russ8d616252012-11-27 15:38:36 +0000217 fs movl 0, %edx
218
Simon Glassda3a95d2015-07-31 09:31:25 -0600219 /* Set third parameter to memcpy() */
Graeme Russ8d616252012-11-27 15:38:36 +0000220 movl $GENERATED_GBL_DATA_SIZE, %ecx
221
222 /* Copy global data from CAR to SDRAM stack */
223 call memcpy
224
225 /* Reserve space for global descriptor table */
226 subl $X86_GDT_SIZE, %esp
227
228 /* Align global descriptor table to 16-byte boundary */
229 andl $0xfffffff0, %esp
230
Simon Glassda3a95d2015-07-31 09:31:25 -0600231 /* Set second parameter to setup_gdt() */
Graeme Russ8d616252012-11-27 15:38:36 +0000232 movl %esp, %edx
233
Graeme Russ8d616252012-11-27 15:38:36 +0000234 /* Setup global descriptor table so gd->xyz works */
235 call setup_gdt
236
Simon Glass801d70c2015-01-01 16:18:13 -0700237 /* Set if we need to disable CAR */
238.weak car_uninit
239 movl $car_uninit, %eax
240 cmpl $0, %eax
241 jz 1f
242
243 call car_uninit
2441:
Simon Glassda3a95d2015-07-31 09:31:25 -0600245 /* Re-enter U-Boot by calling board_init_f_r() */
Graeme Russf48dd6f2012-01-01 15:06:39 +1100246 call board_init_f_r
Graeme Russfb002902011-02-12 15:11:58 +1100247
Graeme Russ2f0e0cd2011-11-08 02:33:23 +0000248die:
249 hlt
wdenk2262cfe2002-11-18 00:14:45 +0000250 jmp die
wdenk8bde7f72003-06-27 21:31:46 +0000251 hlt
Graeme Russ077e1952010-04-24 00:05:42 +1000252
253blank_idt_ptr:
254 .word 0 /* limit */
255 .long 0 /* base */
Graeme Russa206cc22011-11-08 02:33:19 +0000256
257 .p2align 2 /* force 4-byte alignment */
258
Simon Glassda3a95d2015-07-31 09:31:25 -0600259 /* Add a multiboot header so U-Boot can be loaded by GRUB2 */
Graeme Russa206cc22011-11-08 02:33:19 +0000260multiboot_header:
261 /* magic */
Simon Glassda3a95d2015-07-31 09:31:25 -0600262 .long 0x1badb002
Graeme Russa206cc22011-11-08 02:33:19 +0000263 /* flags */
264 .long (1 << 16)
265 /* checksum */
266 .long -0x1BADB002 - (1 << 16)
267 /* header addr */
268 .long multiboot_header - _x86boot_start + CONFIG_SYS_TEXT_BASE
269 /* load addr */
270 .long CONFIG_SYS_TEXT_BASE
271 /* load end addr */
272 .long 0
273 /* bss end addr */
274 .long 0
275 /* entry addr */
276 .long CONFIG_SYS_TEXT_BASE