Merge tag 'u-boot-imx-20191009' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / arch / x86 / cpu / start_from_spl.S
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * 32-bit x86 Startup Code when running from SPL. This is the startup code in
4  * U-Boot proper, when SPL is used.
5
6  * 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
43 board_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
59 die:
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
68 ucode_base:     /* Declared in microcode.h */
69         .long   0                       /* microcode base */
70 .globl ucode_size
71 ucode_size:     /* Declared in microcode.h */
72         .long   0                       /* microcode size */