2 * U-Boot - x86 Startup Code
4 * (C) Copyright 2008-2011
5 * Graeme Russ, <graeme.russ@gmail.com>
8 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
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. The
29 * following code is not executed from a cold-reset (actually, a
30 * lot of it is, but from real-mode after cold reset. It is
31 * repeated here to put the board into a state as close to cold
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 movw $GD_FLG_WARM_BOOT, %bx
48 * This is the 32-bit cold-reset entry point. Initialize %bx to 0
49 * in case we're preceeded by some sort of boot stub.
51 movw $GD_FLG_COLD_BOOT, %bx
56 /* Load the segement registes to match the gdt loaded in start16.S */
57 movl $(X86_GDT_ENTRY_32BIT_DS * X86_GDT_ENTRY_SIZE), %eax
64 /* Clear the interrupt vectors */
67 /* Early platform init (setup gpio, etc ) */
69 .globl early_board_init_ret
73 /* Initialise Cache-As-RAM */
77 #ifndef CONFIG_HAVE_FSP
79 * We now have CONFIG_SYS_CAR_SIZE bytes of Cache-As-RAM (or SRAM,
80 * or fully initialised SDRAM - we really don't care which)
81 * starting at CONFIG_SYS_CAR_ADDR to be used as a temporary stack
82 * and early malloc area. The MRC requires some space at the top.
84 * Stack grows down from top of CAR. We have:
86 * top-> CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE
89 * x86 global descriptor table
92 * bottom-> CONFIG_SYS_CAR_ADDR
94 movl $(CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE - 4), %esp
95 #ifdef CONFIG_DCACHE_RAM_MRC_VAR_SIZE
96 subl $CONFIG_DCACHE_RAM_MRC_VAR_SIZE, %esp
100 * When we get here after car_init, esp points to a temporary stack
101 * and esi holds the HOB list address returned by the FSP.
105 /* Reserve space on stack for global data */
106 subl $GENERATED_GBL_DATA_SIZE, %esp
108 /* Align global data to 16-byte boundary */
109 andl $0xfffffff0, %esp
110 post_code(POST_START_STACK)
112 /* Zero the global data since it won't happen later */
114 movl $GENERATED_GBL_DATA_SIZE, %ecx
118 #ifdef CONFIG_HAVE_FSP
124 addl $GD_HOB_LIST, %edx
129 /* Setup first parameter to setup_gdt, pointer to global_data */
132 /* Reserve space for global descriptor table */
133 subl $X86_GDT_SIZE, %esp
135 /* Align temporary global descriptor table to 16-byte boundary */
136 andl $0xfffffff0, %esp
139 #if defined(CONFIG_SYS_MALLOC_F_LEN)
140 subl $CONFIG_SYS_MALLOC_F_LEN, %esp
142 addl $GD_MALLOC_BASE, %edx
150 /* Set second parameter to setup_gdt */
153 /* Setup global descriptor table so gd->xyz works */
156 /* Set parameter to board_init_f() to boot flags */
157 post_code(POST_START_DONE)
163 /* indicate (lack of) progress */
167 .globl board_init_f_r_trampoline
168 .type board_init_f_r_trampoline, @function
169 board_init_f_r_trampoline:
171 * SDRAM has been initialised, U-Boot code has been copied into
172 * RAM, BSS has been cleared and relocation adjustments have been
173 * made. It is now time to jump into the in-RAM copy of U-Boot
175 * %eax = Address of top of new stack
178 /* Stack grows down from top of SDRAM */
181 /* Reserve space on stack for global data */
182 subl $GENERATED_GBL_DATA_SIZE, %esp
184 /* Align global data to 16-byte boundary */
185 andl $0xfffffff0, %esp
187 /* Setup first parameter to memcpy (and setup_gdt) */
190 /* Setup second parameter to memcpy */
193 /* Set third parameter to memcpy */
194 movl $GENERATED_GBL_DATA_SIZE, %ecx
196 /* Copy global data from CAR to SDRAM stack */
199 /* Reserve space for global descriptor table */
200 subl $X86_GDT_SIZE, %esp
202 /* Align global descriptor table to 16-byte boundary */
203 andl $0xfffffff0, %esp
205 /* Set second parameter to setup_gdt */
208 /* Setup global descriptor table so gd->xyz works */
211 /* Set if we need to disable CAR */
213 movl $car_uninit, %eax
219 /* Re-enter U-Boot by calling board_init_f_r */
231 .p2align 2 /* force 4-byte alignment */
239 .long -0x1BADB002 - (1 << 16)
241 .long multiboot_header - _x86boot_start + CONFIG_SYS_TEXT_BASE
243 .long CONFIG_SYS_TEXT_BASE
249 .long CONFIG_SYS_TEXT_BASE