blob: 460c21bef8e7562cb9cfadbf0b22fb02f3e558ab [file] [log] [blame]
wdenk591dda52002-11-18 00:14:45 +00001/*
wdenk57b2d802003-06-27 21:31:46 +00002 * U-boot - i386 Startup Code
wdenk591dda52002-11-18 00:14:45 +00003 *
Graeme Russbd923012011-02-12 15:11:26 +11004 * Copyright (c) 2002 Omicron Ceti AB, Daniel Engström <denaiel@omicron.se>
wdenk591dda52002-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 Russ5fb91cc2010-10-07 20:03:29 +110028#include <asm/global_data.h>
Graeme Russ93efcb22011-02-12 15:11:32 +110029#include <asm/processor-flags.h>
wdenk591dda52002-11-18 00:14:45 +000030
wdenk57b2d802003-06-27 21:31:46 +000031
wdenk591dda52002-11-18 00:14:45 +000032.section .text
33.code32
34.globl _start
wdenk57b2d802003-06-27 21:31:46 +000035.type _start, @function
wdenk591dda52002-11-18 00:14:45 +000036.globl _i386boot_start
37_i386boot_start:
Graeme Russ8accbb92010-04-24 00:05:42 +100038 /*
39 * This is the fail safe 32-bit bootstrap entry point. The
40 * following code is not executed from a cold-reset (actually, a
41 * lot of it is, but from real-mode after cold reset. It is
42 * repeated here to put the board into a state as close to cold
43 * reset as necessary)
44 */
45 cli
46 cld
47
48 /* Turn of cache (this might require a 486-class CPU) */
49 movl %cr0, %eax
Graeme Russ93efcb22011-02-12 15:11:32 +110050 orl $(X86_CR0_NW | X86_CR0_CD), %eax
Graeme Russ8accbb92010-04-24 00:05:42 +100051 movl %eax, %cr0
52 wbinvd
53
54 /* Tell 32-bit code it is being entered from an in-RAM copy */
Graeme Russ80ccbac2010-10-07 20:03:30 +110055 movw $GD_FLG_WARM_BOOT, %bx
wdenk57b2d802003-06-27 21:31:46 +000056_start:
Graeme Russ8accbb92010-04-24 00:05:42 +100057 /* This is the 32-bit cold-reset entry point */
58
Graeme Russ3e6ec382010-10-07 20:03:21 +110059 movl $0x18, %eax /* Load our segement registes, the
Wolfgang Denka1be4762008-05-20 16:00:29 +020060 * gdt have already been loaded by start16.S */
Graeme Russ3e6ec382010-10-07 20:03:21 +110061 movw %ax, %fs
62 movw %ax, %ds
63 movw %ax, %gs
64 movw %ax, %es
65 movw %ax, %ss
wdenk57b2d802003-06-27 21:31:46 +000066
Graeme Russ8accbb92010-04-24 00:05:42 +100067 /* Clear the interupt vectors */
68 lidt blank_idt_ptr
69
Graeme Russ80ccbac2010-10-07 20:03:30 +110070 /* Skip low-level initialization if not starting from cold-reset */
71 movl %ebx, %ecx
72 andl $GD_FLG_COLD_BOOT, %ecx
73 jz skip_mem_init
wdenk57b2d802003-06-27 21:31:46 +000074
wdenk591dda52002-11-18 00:14:45 +000075 /* Early platform init (setup gpio, etc ) */
wdenk591dda52002-11-18 00:14:45 +000076 jmp early_board_init
Graeme Russ157b0e92010-10-07 20:03:27 +110077.globl early_board_init_ret
wdenk591dda52002-11-18 00:14:45 +000078early_board_init_ret:
wdenk57b2d802003-06-27 21:31:46 +000079
wdenk591dda52002-11-18 00:14:45 +000080 /* size memory */
Graeme Russ3e6ec382010-10-07 20:03:21 +110081 jmp mem_init
Graeme Russ157b0e92010-10-07 20:03:27 +110082.globl mem_init_ret
wdenk591dda52002-11-18 00:14:45 +000083mem_init_ret:
wdenk57b2d802003-06-27 21:31:46 +000084
Graeme Russ80ccbac2010-10-07 20:03:30 +110085skip_mem_init:
Graeme Russb39f12f2010-04-24 00:05:41 +100086 /* fetch memory size (into %eax) */
Graeme Russ3e6ec382010-10-07 20:03:21 +110087 jmp get_mem_size
Graeme Russ157b0e92010-10-07 20:03:27 +110088.globl get_mem_size_ret
Graeme Russb39f12f2010-04-24 00:05:41 +100089get_mem_size_ret:
90
Graeme Russ2c7ce412010-10-07 20:03:26 +110091#if CONFIG_SYS_SDRAM_ECC_ENABLE
92 /* Skip ECC initialization if not starting from cold-reset */
93 movl %ebx, %ecx
94 andl $GD_FLG_COLD_BOOT, %ecx
95 jz init_ecc_ret
Graeme Russ2c7ce412010-10-07 20:03:26 +110096 jmp init_ecc
97
Graeme Russ157b0e92010-10-07 20:03:27 +110098.globl init_ecc_ret
Graeme Russ2c7ce412010-10-07 20:03:26 +110099init_ecc_ret:
100#endif
101
Graeme Russ078395c2009-11-24 20:04:21 +1100102 /* Check we have enough memory for stack */
103 movl $CONFIG_SYS_STACK_SIZE, %ecx
wdenk57b2d802003-06-27 21:31:46 +0000104 cmpl %ecx, %eax
Graeme Russ8f120352010-10-07 20:03:24 +1100105 jb die
wdenk57b2d802003-06-27 21:31:46 +0000106mem_ok:
Graeme Russ078395c2009-11-24 20:04:21 +1100107 /* Set stack pointer to upper memory limit*/
Graeme Russ3e6ec382010-10-07 20:03:21 +1100108 movl %eax, %esp
wdenk591dda52002-11-18 00:14:45 +0000109
Graeme Russ078395c2009-11-24 20:04:21 +1100110 /* Test the stack */
wdenk591dda52002-11-18 00:14:45 +0000111 pushl $0
Graeme Russ2beb72d2010-10-07 20:03:28 +1100112 popl %ecx
113 cmpl $0, %ecx
Graeme Russ157b0e92010-10-07 20:03:27 +1100114 jne die
wdenk591dda52002-11-18 00:14:45 +0000115 push $0x55aa55aa
Graeme Russbcf00382010-10-07 20:03:28 +1100116 popl %ecx
117 cmpl $0x55aa55aa, %ecx
Graeme Russ8f120352010-10-07 20:03:24 +1100118 jne die
wdenk591dda52002-11-18 00:14:45 +0000119
wdenk57b2d802003-06-27 21:31:46 +0000120 wbinvd
wdenk591dda52002-11-18 00:14:45 +0000121
Graeme Russ5d3c37f2010-10-07 20:03:33 +1100122 /* Determine our load offset */
123 call 1f
1241: popl %ecx
125 subl $1b, %ecx
126
Graeme Russbed10fa2010-10-07 20:03:23 +1100127 /* Set the upper memory limit parameter */
Graeme Russbed10fa2010-10-07 20:03:23 +1100128 subl $CONFIG_SYS_STACK_SIZE, %eax
wdenk591dda52002-11-18 00:14:45 +0000129
Graeme Russ5fb91cc2010-10-07 20:03:29 +1100130 /* Reserve space for global data */
131 subl $(GD_SIZE * 4), %eax
132
133 /* %eax points to the global data structure */
134 movl %esp, (GD_RAM_SIZE * 4)(%eax)
135 movl %ebx, (GD_FLAGS * 4)(%eax)
Graeme Russ5d3c37f2010-10-07 20:03:33 +1100136 movl %ecx, (GD_LOAD_OFF * 4)(%eax)
Graeme Russ5fb91cc2010-10-07 20:03:29 +1100137
Graeme Russ078395c2009-11-24 20:04:21 +1100138 call board_init_f /* Enter, U-boot! */
wdenk591dda52002-11-18 00:14:45 +0000139
140 /* indicate (lack of) progress */
wdenk57b2d802003-06-27 21:31:46 +0000141 movw $0x85, %ax
wdenk591dda52002-11-18 00:14:45 +0000142die: hlt
143 jmp die
wdenk57b2d802003-06-27 21:31:46 +0000144 hlt
Graeme Russ8accbb92010-04-24 00:05:42 +1000145
146blank_idt_ptr:
147 .word 0 /* limit */
148 .long 0 /* base */