blob: a73b4d7c4597f7a5df030aa46d0e41b66fa08cc5 [file] [log] [blame]
Simon Glass75659ac2019-04-25 21:58:52 -06001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
Simon Glass202a0962019-09-25 08:11:44 -06003 * 32-bit x86 Startup Code when running from SPL. This is the startup code in
4 * U-Boot proper, when SPL is used.
5
Simon Glass75659ac2019-04-25 21:58:52 -06006 * Copyright 2018 Google, Inc
7 * Written by Simon Glass <sjg@chromium.org>
8 */
9
10#include <config.h>
11
12.section .text.start
13.code32
14.globl _start
15.type _start, @function
16_start:
17 /* Set up memory using the existing stack */
18 movl $(CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE - 4), %eax
19#ifdef CONFIG_DCACHE_RAM_MRC_VAR_SIZE
20 subl $CONFIG_DCACHE_RAM_MRC_VAR_SIZE, %eax
21#endif
22 /*
23 * We don't subject CONFIG_DCACHE_RAM_MRC_VAR_SIZE since memory is
24 * already set up. This has the happy side-effect of putting gd in a
25 * new place separate from SPL, so the memset() in
26 * board_init_f_init_reserve() does not cause any problems (otherwise
27 * it would zero out the gd and crash)
28 */
29 call board_init_f_alloc_reserve
30 mov %eax, %esp
31
32 call board_init_f_init_reserve
33
34 xorl %eax, %eax
35 call board_init_f
36 call board_init_f_r
37
38 /* Should not return here */
39 jmp .
40
41.globl board_init_f_r_trampoline
42.type board_init_f_r_trampoline, @function
43board_init_f_r_trampoline:
44 /*
45 * SPL has been executed and SDRAM has been initialised, U-Boot code
46 * has been copied into RAM, BSS has been cleared and relocation
47 * adjustments have been made. It is now time to jump into the in-RAM
48 * copy of U-Boot
49 *
50 * %eax = Address of top of new stack
51 */
52
53 /* Stack grows down from top of SDRAM */
54 movl %eax, %esp
55
56 /* Re-enter U-Boot by calling board_init_f_r() */
57 call board_init_f_r
58
59die:
60 hlt
61 jmp die
62 hlt
63
64 .align 4
65_dt_ucode_base_size:
66 /* These next two fields are filled in by binman */
67.globl ucode_base
68ucode_base: /* Declared in microcode.h */
69 .long 0 /* microcode base */
70.globl ucode_size
71ucode_size: /* Declared in microcode.h */
72 .long 0 /* microcode size */