blob: 90dfd5d210be2694726c9f914e287b21e7e67d58 [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
wdenk8bde7f72003-06-27 21:31:46 +00002 * U-boot - i386 Startup Code
wdenk2262cfe2002-11-18 00:14:45 +00003 *
4 * Copyright (c) 2002 Omicron Ceti AB, Daniel Engström <denaiel@omicron.se>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25
26#include <config.h>
27#include <version.h>
28
wdenk8bde7f72003-06-27 21:31:46 +000029
wdenk2262cfe2002-11-18 00:14:45 +000030.section .text
31.code32
32.globl _start
wdenk8bde7f72003-06-27 21:31:46 +000033.type _start, @function
wdenk2262cfe2002-11-18 00:14:45 +000034.globl _i386boot_start
35_i386boot_start:
Graeme Russ077e1952010-04-24 00:05:42 +100036 /*
37 * This is the fail safe 32-bit bootstrap entry point. The
38 * following code is not executed from a cold-reset (actually, a
39 * lot of it is, but from real-mode after cold reset. It is
40 * repeated here to put the board into a state as close to cold
41 * reset as necessary)
42 */
43 cli
44 cld
45
46 /* Turn of cache (this might require a 486-class CPU) */
47 movl %cr0, %eax
Graeme Russ8ffb2e82010-10-07 20:03:21 +110048 orl $0x60000000, %eax
Graeme Russ077e1952010-04-24 00:05:42 +100049 movl %eax, %cr0
50 wbinvd
51
52 /* Tell 32-bit code it is being entered from an in-RAM copy */
53 movw $0x0000, %bx
wdenk8bde7f72003-06-27 21:31:46 +000054_start:
Graeme Russ077e1952010-04-24 00:05:42 +100055 /* This is the 32-bit cold-reset entry point */
56
Graeme Russ8ffb2e82010-10-07 20:03:21 +110057 movl $0x18, %eax /* Load our segement registes, the
Wolfgang Denk53677ef2008-05-20 16:00:29 +020058 * gdt have already been loaded by start16.S */
Graeme Russ8ffb2e82010-10-07 20:03:21 +110059 movw %ax, %fs
60 movw %ax, %ds
61 movw %ax, %gs
62 movw %ax, %es
63 movw %ax, %ss
wdenk8bde7f72003-06-27 21:31:46 +000064
Graeme Russ077e1952010-04-24 00:05:42 +100065 /* Clear the interupt vectors */
66 lidt blank_idt_ptr
67
68 /*
69 * Skip low-level board and memory initialization if not starting
70 * from cold-reset. This allows us to do a fail safe boot-strap
71 * into a new build of U-Boot from a known-good boot flash
72 */
73 movw $0x0001, %ax
74 cmpw %ax, %bx
75 jne mem_init_ret
76
wdenk2262cfe2002-11-18 00:14:45 +000077 /* We call a few functions in the board support package
78 * since we have no stack yet we'll have to use %ebp
79 * to store the return address */
wdenk8bde7f72003-06-27 21:31:46 +000080
wdenk2262cfe2002-11-18 00:14:45 +000081 /* Early platform init (setup gpio, etc ) */
Graeme Russ8ffb2e82010-10-07 20:03:21 +110082 mov $early_board_init_ret, %ebp
wdenk2262cfe2002-11-18 00:14:45 +000083 jmp early_board_init
84early_board_init_ret:
wdenk8bde7f72003-06-27 21:31:46 +000085
wdenk2262cfe2002-11-18 00:14:45 +000086 /* The __port80 entry-point should be usabe by now */
87 /* so we try to indicate progress */
wdenk8bde7f72003-06-27 21:31:46 +000088 movw $0x01, %ax
wdenk2262cfe2002-11-18 00:14:45 +000089 movl $.progress0, %ebp
Graeme Russa369f4a2008-09-29 23:03:14 +100090 jmp show_boot_progress_asm
wdenk8bde7f72003-06-27 21:31:46 +000091.progress0:
wdenk2262cfe2002-11-18 00:14:45 +000092
93 /* size memory */
94 mov $mem_init_ret, %ebp
Graeme Russ8ffb2e82010-10-07 20:03:21 +110095 jmp mem_init
wdenk2262cfe2002-11-18 00:14:45 +000096mem_init_ret:
wdenk8bde7f72003-06-27 21:31:46 +000097
Graeme Russ759598f2010-04-24 00:05:41 +100098 /* fetch memory size (into %eax) */
99 mov $get_mem_size_ret, %ebp
Graeme Russ8ffb2e82010-10-07 20:03:21 +1100100 jmp get_mem_size
Graeme Russ759598f2010-04-24 00:05:41 +1000101get_mem_size_ret:
102
Graeme Russ1c409bc2009-11-24 20:04:21 +1100103 /* Check we have enough memory for stack */
104 movl $CONFIG_SYS_STACK_SIZE, %ecx
wdenk8bde7f72003-06-27 21:31:46 +0000105 cmpl %ecx, %eax
wdenk2262cfe2002-11-18 00:14:45 +0000106 jae mem_ok
wdenk8bde7f72003-06-27 21:31:46 +0000107
wdenk2262cfe2002-11-18 00:14:45 +0000108 /* indicate (lack of) progress */
wdenk8bde7f72003-06-27 21:31:46 +0000109 movw $0x81, %ax
wdenk2262cfe2002-11-18 00:14:45 +0000110 movl $.progress0a, %ebp
Graeme Russa369f4a2008-09-29 23:03:14 +1000111 jmp show_boot_progress_asm
wdenk8bde7f72003-06-27 21:31:46 +0000112.progress0a:
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200113 jmp die
wdenk8bde7f72003-06-27 21:31:46 +0000114mem_ok:
Graeme Russ1c409bc2009-11-24 20:04:21 +1100115 /* Set stack pointer to upper memory limit*/
Graeme Russ8ffb2e82010-10-07 20:03:21 +1100116 movl %eax, %esp
wdenk2262cfe2002-11-18 00:14:45 +0000117
118 /* indicate progress */
wdenk8bde7f72003-06-27 21:31:46 +0000119 movw $0x02, %ax
wdenk2262cfe2002-11-18 00:14:45 +0000120 movl $.progress1, %ebp
Graeme Russa369f4a2008-09-29 23:03:14 +1000121 jmp show_boot_progress_asm
wdenk8bde7f72003-06-27 21:31:46 +0000122.progress1:
wdenk2262cfe2002-11-18 00:14:45 +0000123
Graeme Russ1c409bc2009-11-24 20:04:21 +1100124 /* Test the stack */
wdenk2262cfe2002-11-18 00:14:45 +0000125 pushl $0
126 popl %eax
127 cmpl $0, %eax
128 jne no_stack
129 push $0x55aa55aa
130 popl %ebx
131 cmpl $0x55aa55aa, %ebx
132 je stack_ok
133
134no_stack:
135 /* indicate (lack of) progress */
wdenk8bde7f72003-06-27 21:31:46 +0000136 movw $0x82, %ax
wdenk2262cfe2002-11-18 00:14:45 +0000137 movl $.progress1a, %ebp
Graeme Russa369f4a2008-09-29 23:03:14 +1000138 jmp show_boot_progress_asm
wdenk8bde7f72003-06-27 21:31:46 +0000139.progress1a:
wdenk2262cfe2002-11-18 00:14:45 +0000140 jmp die
wdenk8bde7f72003-06-27 21:31:46 +0000141
142
143stack_ok:
wdenk2262cfe2002-11-18 00:14:45 +0000144 /* indicate progress */
wdenk8bde7f72003-06-27 21:31:46 +0000145 movw $0x03, %ax
wdenk2262cfe2002-11-18 00:14:45 +0000146 movl $.progress2, %ebp
Graeme Russa369f4a2008-09-29 23:03:14 +1000147 jmp show_boot_progress_asm
wdenk8bde7f72003-06-27 21:31:46 +0000148.progress2:
wdenk2262cfe2002-11-18 00:14:45 +0000149
wdenk8bde7f72003-06-27 21:31:46 +0000150 wbinvd
wdenk2262cfe2002-11-18 00:14:45 +0000151
Graeme Russ5c161652010-10-07 20:03:23 +1100152 /* Set the upper memory limit parameter */
153 movl %esp, %eax
154 subl $CONFIG_SYS_STACK_SIZE, %eax
wdenk2262cfe2002-11-18 00:14:45 +0000155
Graeme Russ1c409bc2009-11-24 20:04:21 +1100156 call board_init_f /* Enter, U-boot! */
wdenk2262cfe2002-11-18 00:14:45 +0000157
158 /* indicate (lack of) progress */
wdenk8bde7f72003-06-27 21:31:46 +0000159 movw $0x85, %ax
wdenk2262cfe2002-11-18 00:14:45 +0000160 movl $.progress4a, %ebp
Graeme Russa369f4a2008-09-29 23:03:14 +1000161 jmp show_boot_progress_asm
wdenk2262cfe2002-11-18 00:14:45 +0000162.progress4a:
163
164die: hlt
165 jmp die
wdenk8bde7f72003-06-27 21:31:46 +0000166 hlt
Graeme Russ077e1952010-04-24 00:05:42 +1000167
168blank_idt_ptr:
169 .word 0 /* limit */
170 .long 0 /* base */