blob: 338bab19e471fdd3f4ab088aa999afeb2e10145e [file] [log] [blame]
wdenk591dda52002-11-18 00:14:45 +00001/*
Graeme Russcbfce1d2011-04-13 19:43:28 +10002 * U-boot - x86 Startup Code
wdenk591dda52002-11-18 00:14:45 +00003 *
Graeme Russ45fc1d82011-04-13 19:43:26 +10004 * (C) Copyright 2008-2011
5 * Graeme Russ, <graeme.russ@gmail.com>
6 *
7 * (C) Copyright 2002
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02008 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk591dda52002-11-18 00:14:45 +00009 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
wdenk591dda52002-11-18 00:14:45 +000011 */
12
wdenk591dda52002-11-18 00:14:45 +000013#include <config.h>
14#include <version.h>
Graeme Russ5fb91cc2010-10-07 20:03:29 +110015#include <asm/global_data.h>
Graeme Russ391bb952011-12-31 10:24:36 +110016#include <asm/processor.h>
Graeme Russ93efcb22011-02-12 15:11:32 +110017#include <asm/processor-flags.h>
Graeme Russ35368962011-12-31 22:58:15 +110018#include <generated/generic-asm-offsets.h>
wdenk591dda52002-11-18 00:14:45 +000019
wdenk591dda52002-11-18 00:14:45 +000020.section .text
21.code32
22.globl _start
wdenk57b2d802003-06-27 21:31:46 +000023.type _start, @function
Graeme Russcbfce1d2011-04-13 19:43:28 +100024.globl _x86boot_start
25_x86boot_start:
Graeme Russ8accbb92010-04-24 00:05:42 +100026 /*
27 * This is the fail safe 32-bit bootstrap entry point. The
28 * following code is not executed from a cold-reset (actually, a
29 * lot of it is, but from real-mode after cold reset. It is
30 * repeated here to put the board into a state as close to cold
31 * reset as necessary)
32 */
33 cli
34 cld
35
Graeme Russc379b5d2011-11-08 02:33:23 +000036 /* Turn off cache (this might require a 486-class CPU) */
Graeme Russ8accbb92010-04-24 00:05:42 +100037 movl %cr0, %eax
Graeme Russ93efcb22011-02-12 15:11:32 +110038 orl $(X86_CR0_NW | X86_CR0_CD), %eax
Graeme Russ8accbb92010-04-24 00:05:42 +100039 movl %eax, %cr0
40 wbinvd
41
Gabe Blackef899322012-11-03 11:41:28 +000042 /* Tell 32-bit code it is being entered from an in-RAM copy */
43 movw $GD_FLG_WARM_BOOT, %bx
44 jmp 1f
wdenk57b2d802003-06-27 21:31:46 +000045_start:
Gabe Blackef899322012-11-03 11:41:28 +000046 /*
47 * This is the 32-bit cold-reset entry point. Initialize %bx to 0
48 * in case we're preceeded by some sort of boot stub.
49 */
50 movw $GD_FLG_COLD_BOOT, %bx
511:
Graeme Russ8accbb92010-04-24 00:05:42 +100052
Graeme Russ45fc1d82011-04-13 19:43:26 +100053 /* Load the segement registes to match the gdt loaded in start16.S */
Graeme Russ391bb952011-12-31 10:24:36 +110054 movl $(X86_GDT_ENTRY_32BIT_DS * X86_GDT_ENTRY_SIZE), %eax
Graeme Russ3e6ec382010-10-07 20:03:21 +110055 movw %ax, %fs
56 movw %ax, %ds
57 movw %ax, %gs
58 movw %ax, %es
59 movw %ax, %ss
wdenk57b2d802003-06-27 21:31:46 +000060
Mike Williamsbf895ad2011-07-22 04:01:30 +000061 /* Clear the interrupt vectors */
Graeme Russ8accbb92010-04-24 00:05:42 +100062 lidt blank_idt_ptr
63
wdenk591dda52002-11-18 00:14:45 +000064 /* Early platform init (setup gpio, etc ) */
wdenk591dda52002-11-18 00:14:45 +000065 jmp early_board_init
Graeme Russ157b0e92010-10-07 20:03:27 +110066.globl early_board_init_ret
wdenk591dda52002-11-18 00:14:45 +000067early_board_init_ret:
wdenk57b2d802003-06-27 21:31:46 +000068
Graeme Russbc761932011-02-12 15:11:52 +110069 /* Initialise Cache-As-RAM */
70 jmp car_init
71.globl car_init_ret
72car_init_ret:
73 /*
74 * We now have CONFIG_SYS_CAR_SIZE bytes of Cache-As-RAM (or SRAM,
75 * or fully initialised SDRAM - we really don't care which)
76 * starting at CONFIG_SYS_CAR_ADDR to be used as a temporary stack
77 */
Graeme Russb39f12f2010-04-24 00:05:41 +100078
Graeme Russ007818a2012-11-27 15:38:36 +000079 /* Stack grows down from top of CAR */
80 movl $(CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE), %esp
81
82 /* Reserve space on stack for global data */
83 subl $GENERATED_GBL_DATA_SIZE, %esp
84
85 /* Align global data to 16-byte boundary */
86 andl $0xfffffff0, %esp
87
Simon Glass73e44fb2014-10-10 07:49:15 -060088 /* Zero the global data since it won't happen later */
89 xorl %eax, %eax
90 movl $GENERATED_GBL_DATA_SIZE, %ecx
91 movl %esp, %edi
92 rep stosb
93
Graeme Russ007818a2012-11-27 15:38:36 +000094 /* Setup first parameter to setup_gdt */
95 movl %esp, %eax
96
97 /* Reserve space for global descriptor table */
98 subl $X86_GDT_SIZE, %esp
99
Simon Glassb24a9512014-10-10 07:49:16 -0600100#if defined(CONFIG_SYS_MALLOC_F_LEN)
101 subl $CONFIG_SYS_MALLOC_F_LEN, %esp
102 movl %eax, %edx
103 addl $GD_MALLOC_BASE, %edx
104 movl %esp, (%edx)
105#endif
106
Graeme Russ007818a2012-11-27 15:38:36 +0000107 /* Align temporary global descriptor table to 16-byte boundary */
108 andl $0xfffffff0, %esp
109
110 /* Set second parameter to setup_gdt */
111 movl %esp, %edx
112
Graeme Russ007818a2012-11-27 15:38:36 +0000113 /* Setup global descriptor table so gd->xyz works */
114 call setup_gdt
Graeme Russ35368962011-12-31 22:58:15 +1100115
Graeme Russ38183932011-02-12 15:11:54 +1100116 /* Set parameter to board_init_f() to boot flags */
Graeme Russ45fc1d82011-04-13 19:43:26 +1000117 xorl %eax, %eax
118 movw %bx, %ax
Graeme Russ5fb91cc2010-10-07 20:03:29 +1100119
Graeme Russ45fc1d82011-04-13 19:43:26 +1000120 /* Enter, U-boot! */
121 call board_init_f
wdenk591dda52002-11-18 00:14:45 +0000122
123 /* indicate (lack of) progress */
wdenk57b2d802003-06-27 21:31:46 +0000124 movw $0x85, %ax
Graeme Russ9c44afc2011-02-12 15:11:58 +1100125 jmp die
126
Graeme Russd7755b42012-01-01 15:06:39 +1100127.globl board_init_f_r_trampoline
128.type board_init_f_r_trampoline, @function
129board_init_f_r_trampoline:
Graeme Russ9c44afc2011-02-12 15:11:58 +1100130 /*
131 * SDRAM has been initialised, U-Boot code has been copied into
132 * RAM, BSS has been cleared and relocation adjustments have been
133 * made. It is now time to jump into the in-RAM copy of U-Boot
134 *
Graeme Russd7755b42012-01-01 15:06:39 +1100135 * %eax = Address of top of new stack
Graeme Russ9c44afc2011-02-12 15:11:58 +1100136 */
137
Graeme Russ007818a2012-11-27 15:38:36 +0000138 /* Stack grows down from top of SDRAM */
Graeme Russ9c44afc2011-02-12 15:11:58 +1100139 movl %eax, %esp
140
Graeme Russ007818a2012-11-27 15:38:36 +0000141 /* Reserve space on stack for global data */
142 subl $GENERATED_GBL_DATA_SIZE, %esp
143
144 /* Align global data to 16-byte boundary */
145 andl $0xfffffff0, %esp
146
147 /* Setup first parameter to memcpy (and setup_gdt) */
148 movl %esp, %eax
149
150 /* Setup second parameter to memcpy */
151 fs movl 0, %edx
152
153 /* Set third parameter to memcpy */
154 movl $GENERATED_GBL_DATA_SIZE, %ecx
155
156 /* Copy global data from CAR to SDRAM stack */
157 call memcpy
158
159 /* Reserve space for global descriptor table */
160 subl $X86_GDT_SIZE, %esp
161
162 /* Align global descriptor table to 16-byte boundary */
163 andl $0xfffffff0, %esp
164
165 /* Set second parameter to setup_gdt */
166 movl %esp, %edx
167
Graeme Russ007818a2012-11-27 15:38:36 +0000168 /* Setup global descriptor table so gd->xyz works */
169 call setup_gdt
170
Graeme Russd7755b42012-01-01 15:06:39 +1100171 /* Re-enter U-Boot by calling board_init_f_r */
172 call board_init_f_r
Graeme Russ9c44afc2011-02-12 15:11:58 +1100173
Graeme Russc379b5d2011-11-08 02:33:23 +0000174die:
175 hlt
wdenk591dda52002-11-18 00:14:45 +0000176 jmp die
wdenk57b2d802003-06-27 21:31:46 +0000177 hlt
Graeme Russ8accbb92010-04-24 00:05:42 +1000178
179blank_idt_ptr:
180 .word 0 /* limit */
181 .long 0 /* base */
Graeme Russ786c3952011-11-08 02:33:19 +0000182
183 .p2align 2 /* force 4-byte alignment */
184
185multiboot_header:
186 /* magic */
187 .long 0x1BADB002
188 /* flags */
189 .long (1 << 16)
190 /* checksum */
191 .long -0x1BADB002 - (1 << 16)
192 /* header addr */
193 .long multiboot_header - _x86boot_start + CONFIG_SYS_TEXT_BASE
194 /* load addr */
195 .long CONFIG_SYS_TEXT_BASE
196 /* load end addr */
197 .long 0
198 /* bss end addr */
199 .long 0
200 /* entry addr */
201 .long CONFIG_SYS_TEXT_BASE