2 * U-Boot - x86 Startup Code
4 * (C) Copyright 2008-2011
10 * SPDX-License-Identifier: GPL-2.0+
14 #include <asm/global_data.h>
16 #include <asm/processor.h>
17 #include <asm/processor-flags.h>
18 #include <generated/generic-asm-offsets.h>
19 #include <generated/asm-offsets.h>
24 .type _start, @function
28 * This is the fail-safe 32-bit bootstrap entry point.
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
37 /* Turn off cache (this might require a 486-class CPU) */
39 orl $(X86_CR0_NW | X86_CR0_CD), %eax
43 /* Tell 32-bit code it is being entered from an in-RAM copy */
44 movl $GD_FLG_WARM_BOOT, %ebx
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.
54 /* Add a way for tools to discover the _start entry point */
59 * This is the 32-bit cold-reset entry point, coming from start16.
60 * Set %ebx to GD_FLG_COLD_BOOT to indicate this.
62 movl $GD_FLG_COLD_BOOT, %ebx
68 /* Save table pointer */
71 /* Load the segement registers to match the GDT loaded in start16.S */
72 movl $(X86_GDT_ENTRY_32BIT_DS * X86_GDT_ENTRY_SIZE), %eax
79 /* Clear the interrupt vectors */
83 * Critical early platform init - generally not used, we prefer init
84 * to happen later when we have a console, in case something goes
88 .globl early_board_init_ret
92 /* Initialise Cache-As-RAM */
96 #ifndef CONFIG_HAVE_FSP
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
101 * and early malloc() area. The MRC requires some space at the top.
103 * Stack grows down from top of CAR. We have:
105 * top-> CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE
108 * x86 global descriptor table
111 * bottom-> CONFIG_SYS_CAR_ADDR
113 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
119 * When we get here after car_init(), esp points to a temporary stack
120 * and esi holds the HOB list address returned by the FSP.
124 /* Reserve space on stack for global data */
125 subl $GENERATED_GBL_DATA_SIZE, %esp
127 /* Align global data to 16-byte boundary */
128 andl $0xfffffff0, %esp
129 post_code(POST_START_STACK)
132 * Debug UART is available here although it may not be plumbed out
133 * to pins depending on the board. To use it:
135 * call debug_uart_init
140 /* Zero the global data since it won't happen later */
142 movl $GENERATED_GBL_DATA_SIZE, %ecx
146 #ifdef CONFIG_HAVE_FSP
152 addl $GD_HOB_LIST, %edx
157 /* Store table pointer */
163 /* Setup first parameter to setup_gdt, pointer to global_data */
166 /* Reserve space for global descriptor table */
167 subl $X86_GDT_SIZE, %esp
169 /* Align temporary global descriptor table to 16-byte boundary */
170 andl $0xfffffff0, %esp
173 #if defined(CONFIG_SYS_MALLOC_F_LEN)
174 /* Set up the pre-relocation malloc pool */
175 subl $CONFIG_SYS_MALLOC_F_LEN, %esp
177 addl $GD_MALLOC_BASE, %edx
180 /* Store BIST into global_data */
185 /* Set second parameter to setup_gdt() */
188 /* Setup global descriptor table so gd->xyz works */
191 /* Set parameter to board_init_f() to boot flags */
192 post_code(POST_START_DONE)
198 /* indicate (lack of) progress */
202 .globl board_init_f_r_trampoline
203 .type board_init_f_r_trampoline, @function
204 board_init_f_r_trampoline:
206 * SDRAM has been initialised, U-Boot code has been copied into
207 * RAM, BSS has been cleared and relocation adjustments have been
208 * made. It is now time to jump into the in-RAM copy of U-Boot
210 * %eax = Address of top of new stack
213 /* Stack grows down from top of SDRAM */
216 /* Reserve space on stack for global data */
217 subl $GENERATED_GBL_DATA_SIZE, %esp
219 /* Align global data to 16-byte boundary */
220 andl $0xfffffff0, %esp
222 /* Setup first parameter to memcpy() and setup_gdt() */
225 /* Setup second parameter to memcpy() */
228 /* Set third parameter to memcpy() */
229 movl $GENERATED_GBL_DATA_SIZE, %ecx
231 /* Copy global data from CAR to SDRAM stack */
234 /* Reserve space for global descriptor table */
235 subl $X86_GDT_SIZE, %esp
237 /* Align global descriptor table to 16-byte boundary */
238 andl $0xfffffff0, %esp
240 /* Set second parameter to setup_gdt() */
243 /* Setup global descriptor table so gd->xyz works */
246 /* Set if we need to disable CAR */
248 movl $car_uninit, %eax
254 /* Re-enter U-Boot by calling board_init_f_r() */
266 .p2align 2 /* force 4-byte alignment */
268 /* Add a multiboot header so U-Boot can be loaded by GRUB2 */
275 .long -0x1BADB002 - (1 << 16)
277 .long multiboot_header - _x86boot_start + CONFIG_SYS_TEXT_BASE
279 .long CONFIG_SYS_TEXT_BASE
285 .long CONFIG_SYS_TEXT_BASE