blob: 95be5a2f9a8bc4430fa39ce92038add40fbd92b7 [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 Russ9963a822011-02-12 15:11:26 +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>
Graeme Russ0c24c9c2011-02-12 15:11:32 +110029#include <asm/processor-flags.h>
wdenk2262cfe2002-11-18 00:14:45 +000030
wdenk8bde7f72003-06-27 21:31:46 +000031
wdenk2262cfe2002-11-18 00:14:45 +000032.section .text
33.code32
34.globl _start
wdenk8bde7f72003-06-27 21:31:46 +000035.type _start, @function
wdenk2262cfe2002-11-18 00:14:45 +000036.globl _i386boot_start
37_i386boot_start:
Graeme Russ077e1952010-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 Russ0c24c9c2011-02-12 15:11:32 +110050 orl $(X86_CR0_NW | X86_CR0_CD), %eax
Graeme Russ077e1952010-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 Russc81b26b2010-10-07 20:03:30 +110055 movw $GD_FLG_WARM_BOOT, %bx
wdenk8bde7f72003-06-27 21:31:46 +000056_start:
Graeme Russ077e1952010-04-24 00:05:42 +100057 /* This is the 32-bit cold-reset entry point */
58
Graeme Russ8ffb2e82010-10-07 20:03:21 +110059 movl $0x18, %eax /* Load our segement registes, the
Wolfgang Denk53677ef2008-05-20 16:00:29 +020060 * gdt have already been loaded by start16.S */
Graeme Russ8ffb2e82010-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
wdenk8bde7f72003-06-27 21:31:46 +000066
Graeme Russ077e1952010-04-24 00:05:42 +100067 /* Clear the interupt vectors */
68 lidt blank_idt_ptr
69
wdenk2262cfe2002-11-18 00:14:45 +000070 /* Early platform init (setup gpio, etc ) */
wdenk2262cfe2002-11-18 00:14:45 +000071 jmp early_board_init
Graeme Russ88fa0a62010-10-07 20:03:27 +110072.globl early_board_init_ret
wdenk2262cfe2002-11-18 00:14:45 +000073early_board_init_ret:
wdenk8bde7f72003-06-27 21:31:46 +000074
Graeme Russed4cba72011-02-12 15:11:52 +110075 /* Initialise Cache-As-RAM */
76 jmp car_init
77.globl car_init_ret
78car_init_ret:
79 /*
80 * We now have CONFIG_SYS_CAR_SIZE bytes of Cache-As-RAM (or SRAM,
81 * or fully initialised SDRAM - we really don't care which)
82 * starting at CONFIG_SYS_CAR_ADDR to be used as a temporary stack
83 */
84 movl $CONFIG_SYS_INIT_SP_ADDR, %esp
Graeme Russ96cd6642011-02-12 15:11:54 +110085 movl $CONFIG_SYS_INIT_GD_ADDR, %ebp
Graeme Russed4cba72011-02-12 15:11:52 +110086
Graeme Russ96cd6642011-02-12 15:11:54 +110087 /* Set Boot Flags in Global Data */
88 movl %ebx, (GD_FLAGS * 4)(%ebp)
89
90 /* Determine our load offset (and put in Global Data) */
91 call 1f
921: popl %ecx
93 subl $1b, %ecx
94 movl %ecx, (GD_LOAD_OFF * 4)(%ebp)
Graeme Russ4e334672011-02-12 15:11:33 +110095
wdenk2262cfe2002-11-18 00:14:45 +000096 /* size memory */
Graeme Russ96cd6642011-02-12 15:11:54 +110097 call dram_init_f
wdenk8bde7f72003-06-27 21:31:46 +000098
Graeme Russ96cd6642011-02-12 15:11:54 +110099 /* Setup stack in SDRAM */
100 movl (GD_RAM_SIZE * 4)(%ebp), %esp
Graeme Russ00940a22010-10-07 20:03:26 +1100101
Graeme Russ1c409bc2009-11-24 20:04:21 +1100102 /* Test the stack */
wdenk2262cfe2002-11-18 00:14:45 +0000103 pushl $0
Graeme Russ5a3876d2010-10-07 20:03:28 +1100104 popl %ecx
105 cmpl $0, %ecx
Graeme Russ88fa0a62010-10-07 20:03:27 +1100106 jne die
wdenk2262cfe2002-11-18 00:14:45 +0000107 push $0x55aa55aa
Graeme Russ5f267902010-10-07 20:03:28 +1100108 popl %ecx
109 cmpl $0x55aa55aa, %ecx
Graeme Russ6ae032a2010-10-07 20:03:24 +1100110 jne die
wdenk2262cfe2002-11-18 00:14:45 +0000111
wdenk8bde7f72003-06-27 21:31:46 +0000112 wbinvd
wdenk2262cfe2002-11-18 00:14:45 +0000113
Graeme Russ96cd6642011-02-12 15:11:54 +1100114 /* Set parameter to board_init_f() to boot flags */
115 movl (GD_FLAGS * 4)(%ebp), %eax
Graeme Russ161b3582010-10-07 20:03:29 +1100116
Graeme Russ1c409bc2009-11-24 20:04:21 +1100117 call board_init_f /* Enter, U-boot! */
wdenk2262cfe2002-11-18 00:14:45 +0000118
119 /* indicate (lack of) progress */
wdenk8bde7f72003-06-27 21:31:46 +0000120 movw $0x85, %ax
wdenk2262cfe2002-11-18 00:14:45 +0000121die: hlt
122 jmp die
wdenk8bde7f72003-06-27 21:31:46 +0000123 hlt
Graeme Russ077e1952010-04-24 00:05:42 +1000124
125blank_idt_ptr:
126 .word 0 /* limit */
127 .long 0 /* base */