blob: a0dec39abeaabbd66cb439418e5a0e9ab9ae44c0 [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
Gabe Black91d82a22012-11-03 11:41:28 +000045 jmp 1f
Simon Glass83ec7de2015-07-31 09:31:28 -060046
47 /* Add a way for tools to discover the _start entry point */
48 .align 4
49 .long 0x12345678
wdenk8bde7f72003-06-27 21:31:46 +000050_start:
Gabe Black91d82a22012-11-03 11:41:28 +000051 /*
Simon Glassda3a95d2015-07-31 09:31:25 -060052 * This is the 32-bit cold-reset entry point, coming from start16.
Simon Glass83ec7de2015-07-31 09:31:28 -060053 * Set %ebx to GD_FLG_COLD_BOOT to indicate this.
Gabe Black91d82a22012-11-03 11:41:28 +000054 */
Simon Glass83ec7de2015-07-31 09:31:28 -060055 movl $GD_FLG_COLD_BOOT, %ebx
Gabe Black91d82a22012-11-03 11:41:28 +0000561:
Simon Glassf67cd512014-11-06 13:20:10 -070057 /* Save BIST */
58 movl %eax, %ebp
Graeme Russ077e1952010-04-24 00:05:42 +100059
Simon Glassda3a95d2015-07-31 09:31:25 -060060 /* Load the segement registers to match the GDT loaded in start16.S */
Graeme Russ109ad142011-12-31 10:24:36 +110061 movl $(X86_GDT_ENTRY_32BIT_DS * X86_GDT_ENTRY_SIZE), %eax
Graeme Russ8ffb2e82010-10-07 20:03:21 +110062 movw %ax, %fs
63 movw %ax, %ds
64 movw %ax, %gs
65 movw %ax, %es
66 movw %ax, %ss
wdenk8bde7f72003-06-27 21:31:46 +000067
Mike Williams16263082011-07-22 04:01:30 +000068 /* Clear the interrupt vectors */
Graeme Russ077e1952010-04-24 00:05:42 +100069 lidt blank_idt_ptr
70
Simon Glassda3a95d2015-07-31 09:31:25 -060071 /*
72 * Critical early platform init - generally not used, we prefer init
73 * to happen later when we have a console, in case something goes
74 * wrong.
75 */
wdenk2262cfe2002-11-18 00:14:45 +000076 jmp early_board_init
Graeme Russ88fa0a62010-10-07 20:03:27 +110077.globl early_board_init_ret
wdenk2262cfe2002-11-18 00:14:45 +000078early_board_init_ret:
Simon Glassd1cd0452014-11-12 22:42:09 -070079 post_code(POST_START)
wdenk8bde7f72003-06-27 21:31:46 +000080
Graeme Russed4cba72011-02-12 15:11:52 +110081 /* Initialise Cache-As-RAM */
82 jmp car_init
83.globl car_init_ret
84car_init_ret:
Bin Mengbceb9f02014-12-12 21:05:31 +080085#ifndef CONFIG_HAVE_FSP
Graeme Russed4cba72011-02-12 15:11:52 +110086 /*
87 * We now have CONFIG_SYS_CAR_SIZE bytes of Cache-As-RAM (or SRAM,
88 * or fully initialised SDRAM - we really don't care which)
89 * starting at CONFIG_SYS_CAR_ADDR to be used as a temporary stack
Simon Glassda3a95d2015-07-31 09:31:25 -060090 * and early malloc() area. The MRC requires some space at the top.
Simon Glass76f90f32014-11-06 13:20:04 -070091 *
92 * Stack grows down from top of CAR. We have:
93 *
94 * top-> CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE
Simon Glass65dd74a2014-11-12 22:42:28 -070095 * MRC area
Simon Glass76f90f32014-11-06 13:20:04 -070096 * global_data
97 * x86 global descriptor table
98 * early malloc area
99 * stack
100 * bottom-> CONFIG_SYS_CAR_ADDR
Graeme Russed4cba72011-02-12 15:11:52 +1100101 */
Simon Glass65dd74a2014-11-12 22:42:28 -0700102 movl $(CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE - 4), %esp
103#ifdef CONFIG_DCACHE_RAM_MRC_VAR_SIZE
104 subl $CONFIG_DCACHE_RAM_MRC_VAR_SIZE, %esp
105#endif
Bin Mengbceb9f02014-12-12 21:05:31 +0800106#else
107 /*
Simon Glassda3a95d2015-07-31 09:31:25 -0600108 * When we get here after car_init(), esp points to a temporary stack
Bin Mengbceb9f02014-12-12 21:05:31 +0800109 * and esi holds the HOB list address returned by the FSP.
110 */
111#endif
Graeme Russ8d616252012-11-27 15:38:36 +0000112
113 /* Reserve space on stack for global data */
114 subl $GENERATED_GBL_DATA_SIZE, %esp
115
116 /* Align global data to 16-byte boundary */
117 andl $0xfffffff0, %esp
Simon Glassd1cd0452014-11-12 22:42:09 -0700118 post_code(POST_START_STACK)
Graeme Russ8d616252012-11-27 15:38:36 +0000119
Simon Glassfbd72822014-10-10 07:49:15 -0600120 /* Zero the global data since it won't happen later */
121 xorl %eax, %eax
122 movl $GENERATED_GBL_DATA_SIZE, %ecx
123 movl %esp, %edi
124 rep stosb
125
Bin Mengbceb9f02014-12-12 21:05:31 +0800126#ifdef CONFIG_HAVE_FSP
Bin Mengaefaff82015-06-07 11:33:14 +0800127 test %esi, %esi
128 jz skip_hob
129
Bin Mengbceb9f02014-12-12 21:05:31 +0800130 /* Store HOB list */
131 movl %esp, %edx
132 addl $GD_HOB_LIST, %edx
133 movl %esi, (%edx)
Bin Mengbceb9f02014-12-12 21:05:31 +0800134
Bin Mengaefaff82015-06-07 11:33:14 +0800135skip_hob:
136#endif
Simon Glass76f90f32014-11-06 13:20:04 -0700137 /* Setup first parameter to setup_gdt, pointer to global_data */
Graeme Russ8d616252012-11-27 15:38:36 +0000138 movl %esp, %eax
139
140 /* Reserve space for global descriptor table */
141 subl $X86_GDT_SIZE, %esp
142
Simon Glass76f90f32014-11-06 13:20:04 -0700143 /* Align temporary global descriptor table to 16-byte boundary */
144 andl $0xfffffff0, %esp
145 movl %esp, %ecx
146
Simon Glass5dbcaa22014-10-10 07:49:16 -0600147#if defined(CONFIG_SYS_MALLOC_F_LEN)
Simon Glassda3a95d2015-07-31 09:31:25 -0600148 /* Set up the pre-relocation malloc pool */
Simon Glass5dbcaa22014-10-10 07:49:16 -0600149 subl $CONFIG_SYS_MALLOC_F_LEN, %esp
150 movl %eax, %edx
151 addl $GD_MALLOC_BASE, %edx
152 movl %esp, (%edx)
153#endif
Simon Glassda3a95d2015-07-31 09:31:25 -0600154 /* Store BIST into global_data */
Simon Glassf67cd512014-11-06 13:20:10 -0700155 movl %eax, %edx
156 addl $GD_BIST, %edx
157 movl %ebp, (%edx)
Graeme Russ8d616252012-11-27 15:38:36 +0000158
Simon Glassda3a95d2015-07-31 09:31:25 -0600159 /* Set second parameter to setup_gdt() */
Simon Glass76f90f32014-11-06 13:20:04 -0700160 movl %ecx, %edx
Graeme Russ8d616252012-11-27 15:38:36 +0000161
Graeme Russ8d616252012-11-27 15:38:36 +0000162 /* Setup global descriptor table so gd->xyz works */
163 call setup_gdt
Graeme Russ9e6c5722011-12-31 22:58:15 +1100164
Graeme Russ96cd6642011-02-12 15:11:54 +1100165 /* Set parameter to board_init_f() to boot flags */
Simon Glassd1cd0452014-11-12 22:42:09 -0700166 post_code(POST_START_DONE)
Graeme Russdbf71152011-04-13 19:43:26 +1000167 xorl %eax, %eax
Graeme Russ161b3582010-10-07 20:03:29 +1100168
Simon Glassda3a95d2015-07-31 09:31:25 -0600169 /* Enter, U-Boot! */
Graeme Russdbf71152011-04-13 19:43:26 +1000170 call board_init_f
wdenk2262cfe2002-11-18 00:14:45 +0000171
172 /* indicate (lack of) progress */
wdenk8bde7f72003-06-27 21:31:46 +0000173 movw $0x85, %ax
Graeme Russfb002902011-02-12 15:11:58 +1100174 jmp die
175
Graeme Russf48dd6f2012-01-01 15:06:39 +1100176.globl board_init_f_r_trampoline
177.type board_init_f_r_trampoline, @function
178board_init_f_r_trampoline:
Graeme Russfb002902011-02-12 15:11:58 +1100179 /*
180 * SDRAM has been initialised, U-Boot code has been copied into
181 * RAM, BSS has been cleared and relocation adjustments have been
182 * made. It is now time to jump into the in-RAM copy of U-Boot
183 *
Graeme Russf48dd6f2012-01-01 15:06:39 +1100184 * %eax = Address of top of new stack
Graeme Russfb002902011-02-12 15:11:58 +1100185 */
186
Graeme Russ8d616252012-11-27 15:38:36 +0000187 /* Stack grows down from top of SDRAM */
Graeme Russfb002902011-02-12 15:11:58 +1100188 movl %eax, %esp
189
Graeme Russ8d616252012-11-27 15:38:36 +0000190 /* Reserve space on stack for global data */
191 subl $GENERATED_GBL_DATA_SIZE, %esp
192
193 /* Align global data to 16-byte boundary */
194 andl $0xfffffff0, %esp
195
Simon Glassda3a95d2015-07-31 09:31:25 -0600196 /* Setup first parameter to memcpy() and setup_gdt() */
Graeme Russ8d616252012-11-27 15:38:36 +0000197 movl %esp, %eax
198
Simon Glassda3a95d2015-07-31 09:31:25 -0600199 /* Setup second parameter to memcpy() */
Graeme Russ8d616252012-11-27 15:38:36 +0000200 fs movl 0, %edx
201
Simon Glassda3a95d2015-07-31 09:31:25 -0600202 /* Set third parameter to memcpy() */
Graeme Russ8d616252012-11-27 15:38:36 +0000203 movl $GENERATED_GBL_DATA_SIZE, %ecx
204
205 /* Copy global data from CAR to SDRAM stack */
206 call memcpy
207
208 /* Reserve space for global descriptor table */
209 subl $X86_GDT_SIZE, %esp
210
211 /* Align global descriptor table to 16-byte boundary */
212 andl $0xfffffff0, %esp
213
Simon Glassda3a95d2015-07-31 09:31:25 -0600214 /* Set second parameter to setup_gdt() */
Graeme Russ8d616252012-11-27 15:38:36 +0000215 movl %esp, %edx
216
Graeme Russ8d616252012-11-27 15:38:36 +0000217 /* Setup global descriptor table so gd->xyz works */
218 call setup_gdt
219
Simon Glass801d70c2015-01-01 16:18:13 -0700220 /* Set if we need to disable CAR */
221.weak car_uninit
222 movl $car_uninit, %eax
223 cmpl $0, %eax
224 jz 1f
225
226 call car_uninit
2271:
Simon Glassda3a95d2015-07-31 09:31:25 -0600228 /* Re-enter U-Boot by calling board_init_f_r() */
Graeme Russf48dd6f2012-01-01 15:06:39 +1100229 call board_init_f_r
Graeme Russfb002902011-02-12 15:11:58 +1100230
Graeme Russ2f0e0cd2011-11-08 02:33:23 +0000231die:
232 hlt
wdenk2262cfe2002-11-18 00:14:45 +0000233 jmp die
wdenk8bde7f72003-06-27 21:31:46 +0000234 hlt
Graeme Russ077e1952010-04-24 00:05:42 +1000235
236blank_idt_ptr:
237 .word 0 /* limit */
238 .long 0 /* base */
Graeme Russa206cc22011-11-08 02:33:19 +0000239
240 .p2align 2 /* force 4-byte alignment */
241
Simon Glassda3a95d2015-07-31 09:31:25 -0600242 /* Add a multiboot header so U-Boot can be loaded by GRUB2 */
Graeme Russa206cc22011-11-08 02:33:19 +0000243multiboot_header:
244 /* magic */
Simon Glassda3a95d2015-07-31 09:31:25 -0600245 .long 0x1badb002
Graeme Russa206cc22011-11-08 02:33:19 +0000246 /* flags */
247 .long (1 << 16)
248 /* checksum */
249 .long -0x1BADB002 - (1 << 16)
250 /* header addr */
251 .long multiboot_header - _x86boot_start + CONFIG_SYS_TEXT_BASE
252 /* load addr */
253 .long CONFIG_SYS_TEXT_BASE
254 /* load end addr */
255 .long 0
256 /* bss end addr */
257 .long 0
258 /* entry addr */
259 .long CONFIG_SYS_TEXT_BASE