blob: cff463758940ebbdda7992e57b11e81c3d5daef9 [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 *
Graeme Russ88fa0a62010-10-07 20:03:27 +11004 * Copyright (c) 2002 Omicron Ceti AB, Daniel Engstr�m <denaiel@omicron.se>
wdenk2262cfe2002-11-18 00:14:45 +00005 *
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>
Graeme Russ161b3582010-10-07 20:03:29 +110028#include <asm/global_data.h>
wdenk2262cfe2002-11-18 00:14:45 +000029
wdenk8bde7f72003-06-27 21:31:46 +000030
wdenk2262cfe2002-11-18 00:14:45 +000031.section .text
32.code32
33.globl _start
wdenk8bde7f72003-06-27 21:31:46 +000034.type _start, @function
wdenk2262cfe2002-11-18 00:14:45 +000035.globl _i386boot_start
36_i386boot_start:
Graeme Russ077e1952010-04-24 00:05:42 +100037 /*
38 * This is the fail safe 32-bit bootstrap entry point. The
39 * following code is not executed from a cold-reset (actually, a
40 * lot of it is, but from real-mode after cold reset. It is
41 * repeated here to put the board into a state as close to cold
42 * reset as necessary)
43 */
44 cli
45 cld
46
47 /* Turn of cache (this might require a 486-class CPU) */
48 movl %cr0, %eax
Graeme Russ8ffb2e82010-10-07 20:03:21 +110049 orl $0x60000000, %eax
Graeme Russ077e1952010-04-24 00:05:42 +100050 movl %eax, %cr0
51 wbinvd
52
53 /* Tell 32-bit code it is being entered from an in-RAM copy */
54 movw $0x0000, %bx
wdenk8bde7f72003-06-27 21:31:46 +000055_start:
Graeme Russ077e1952010-04-24 00:05:42 +100056 /* This is the 32-bit cold-reset entry point */
57
Graeme Russ8ffb2e82010-10-07 20:03:21 +110058 movl $0x18, %eax /* Load our segement registes, the
Wolfgang Denk53677ef2008-05-20 16:00:29 +020059 * gdt have already been loaded by start16.S */
Graeme Russ8ffb2e82010-10-07 20:03:21 +110060 movw %ax, %fs
61 movw %ax, %ds
62 movw %ax, %gs
63 movw %ax, %es
64 movw %ax, %ss
wdenk8bde7f72003-06-27 21:31:46 +000065
Graeme Russ077e1952010-04-24 00:05:42 +100066 /* Clear the interupt vectors */
67 lidt blank_idt_ptr
68
69 /*
70 * Skip low-level board and memory initialization if not starting
71 * from cold-reset. This allows us to do a fail safe boot-strap
72 * into a new build of U-Boot from a known-good boot flash
73 */
74 movw $0x0001, %ax
75 cmpw %ax, %bx
76 jne mem_init_ret
77
wdenk2262cfe2002-11-18 00:14:45 +000078 /* We call a few functions in the board support package
79 * since we have no stack yet we'll have to use %ebp
80 * to store the return address */
wdenk8bde7f72003-06-27 21:31:46 +000081
wdenk2262cfe2002-11-18 00:14:45 +000082 /* Early platform init (setup gpio, etc ) */
wdenk2262cfe2002-11-18 00:14:45 +000083 jmp early_board_init
Graeme Russ88fa0a62010-10-07 20:03:27 +110084.globl early_board_init_ret
wdenk2262cfe2002-11-18 00:14:45 +000085early_board_init_ret:
wdenk8bde7f72003-06-27 21:31:46 +000086
wdenk2262cfe2002-11-18 00:14:45 +000087 /* size memory */
Graeme Russ8ffb2e82010-10-07 20:03:21 +110088 jmp mem_init
Graeme Russ88fa0a62010-10-07 20:03:27 +110089.globl mem_init_ret
wdenk2262cfe2002-11-18 00:14:45 +000090mem_init_ret:
wdenk8bde7f72003-06-27 21:31:46 +000091
Graeme Russ759598f2010-04-24 00:05:41 +100092 /* fetch memory size (into %eax) */
Graeme Russ8ffb2e82010-10-07 20:03:21 +110093 jmp get_mem_size
Graeme Russ88fa0a62010-10-07 20:03:27 +110094.globl get_mem_size_ret
Graeme Russ759598f2010-04-24 00:05:41 +100095get_mem_size_ret:
96
Graeme Russ00940a22010-10-07 20:03:26 +110097#if CONFIG_SYS_SDRAM_ECC_ENABLE
98 /* Skip ECC initialization if not starting from cold-reset */
99 movl %ebx, %ecx
100 andl $GD_FLG_COLD_BOOT, %ecx
101 jz init_ecc_ret
Graeme Russ00940a22010-10-07 20:03:26 +1100102 jmp init_ecc
103
Graeme Russ88fa0a62010-10-07 20:03:27 +1100104.globl init_ecc_ret
Graeme Russ00940a22010-10-07 20:03:26 +1100105init_ecc_ret:
106#endif
107
Graeme Russ1c409bc2009-11-24 20:04:21 +1100108 /* Check we have enough memory for stack */
109 movl $CONFIG_SYS_STACK_SIZE, %ecx
wdenk8bde7f72003-06-27 21:31:46 +0000110 cmpl %ecx, %eax
Graeme Russ6ae032a2010-10-07 20:03:24 +1100111 jb die
wdenk8bde7f72003-06-27 21:31:46 +0000112mem_ok:
Graeme Russ1c409bc2009-11-24 20:04:21 +1100113 /* Set stack pointer to upper memory limit*/
Graeme Russ8ffb2e82010-10-07 20:03:21 +1100114 movl %eax, %esp
wdenk2262cfe2002-11-18 00:14:45 +0000115
Graeme Russ1c409bc2009-11-24 20:04:21 +1100116 /* Test the stack */
wdenk2262cfe2002-11-18 00:14:45 +0000117 pushl $0
Graeme Russ5a3876d2010-10-07 20:03:28 +1100118 popl %ecx
119 cmpl $0, %ecx
Graeme Russ88fa0a62010-10-07 20:03:27 +1100120 jne die
wdenk2262cfe2002-11-18 00:14:45 +0000121 push $0x55aa55aa
Graeme Russ5f267902010-10-07 20:03:28 +1100122 popl %ecx
123 cmpl $0x55aa55aa, %ecx
Graeme Russ6ae032a2010-10-07 20:03:24 +1100124 jne die
wdenk2262cfe2002-11-18 00:14:45 +0000125
wdenk8bde7f72003-06-27 21:31:46 +0000126 wbinvd
wdenk2262cfe2002-11-18 00:14:45 +0000127
Graeme Russ5c161652010-10-07 20:03:23 +1100128 /* Set the upper memory limit parameter */
Graeme Russ5c161652010-10-07 20:03:23 +1100129 subl $CONFIG_SYS_STACK_SIZE, %eax
wdenk2262cfe2002-11-18 00:14:45 +0000130
Graeme Russ161b3582010-10-07 20:03:29 +1100131 /* Reserve space for global data */
132 subl $(GD_SIZE * 4), %eax
133
134 /* %eax points to the global data structure */
135 movl %esp, (GD_RAM_SIZE * 4)(%eax)
136 movl %ebx, (GD_FLAGS * 4)(%eax)
137
Graeme Russ1c409bc2009-11-24 20:04:21 +1100138 call board_init_f /* Enter, U-boot! */
wdenk2262cfe2002-11-18 00:14:45 +0000139
140 /* indicate (lack of) progress */
wdenk8bde7f72003-06-27 21:31:46 +0000141 movw $0x85, %ax
wdenk2262cfe2002-11-18 00:14:45 +0000142die: hlt
143 jmp die
wdenk8bde7f72003-06-27 21:31:46 +0000144 hlt
Graeme Russ077e1952010-04-24 00:05:42 +1000145
146blank_idt_ptr:
147 .word 0 /* limit */
148 .long 0 /* base */