]> git.sur5r.net Git - u-boot/blob - arch/i386/cpu/start.S
sc520: Remove printf calls from cpu_init_f
[u-boot] / arch / i386 / cpu / start.S
1 /*
2  *  U-boot - i386 Startup Code
3  *
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 #include <asm/global_data.h>
29 #include <asm/processor-flags.h>
30
31
32 .section .text
33 .code32
34 .globl _start
35 .type _start, @function
36 .globl _i386boot_start
37 _i386boot_start:
38         /*
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
50         orl     $(X86_CR0_NW | X86_CR0_CD), %eax
51         movl    %eax, %cr0
52         wbinvd
53
54         /* Tell 32-bit code it is being entered from an in-RAM copy */
55         movw    $GD_FLG_WARM_BOOT, %bx
56 _start:
57         /* This is the 32-bit cold-reset entry point */
58
59         movl    $0x18, %eax     /* Load our segement registes, the
60                                  * gdt have already been loaded by start16.S */
61         movw    %ax, %fs
62         movw    %ax, %ds
63         movw    %ax, %gs
64         movw    %ax, %es
65         movw    %ax, %ss
66
67         /* Clear the interupt vectors */
68         lidt    blank_idt_ptr
69
70         /* Early platform init (setup gpio, etc ) */
71         jmp     early_board_init
72 .globl early_board_init_ret
73 early_board_init_ret:
74
75         /* Skip memory initialization if not starting from cold-reset */
76         movl    %ebx, %ecx
77         andl    $GD_FLG_COLD_BOOT, %ecx
78         jz      skip_mem_init
79
80         /* size memory */
81         jmp     mem_init
82 .globl mem_init_ret
83 mem_init_ret:
84
85 skip_mem_init:
86         /* fetch memory size (into %eax) */
87         jmp     get_mem_size
88 .globl get_mem_size_ret
89 get_mem_size_ret:
90
91 #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
96         jmp     init_ecc
97
98 .globl init_ecc_ret
99 init_ecc_ret:
100 #endif
101
102         /* Check we have enough memory for stack */
103         movl    $CONFIG_SYS_STACK_SIZE, %ecx
104         cmpl    %ecx, %eax
105         jb      die
106 mem_ok:
107         /* Set stack pointer to upper memory limit*/
108         movl    %eax, %esp
109
110         /* Test the stack */
111         pushl   $0
112         popl    %ecx
113         cmpl    $0, %ecx
114         jne     die
115         push    $0x55aa55aa
116         popl    %ecx
117         cmpl    $0x55aa55aa, %ecx
118         jne     die
119
120         wbinvd
121
122         /* Determine our load offset */
123         call    1f
124 1:      popl    %ecx
125         subl    $1b, %ecx
126
127         /* Set the upper memory limit parameter */
128         subl    $CONFIG_SYS_STACK_SIZE, %eax
129
130         /* 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)
136         movl    %ecx, (GD_LOAD_OFF * 4)(%eax)
137
138         call    board_init_f    /* Enter, U-boot! */
139
140         /* indicate (lack of) progress */
141         movw    $0x85, %ax
142 die:    hlt
143         jmp     die
144         hlt
145
146 blank_idt_ptr:
147         .word   0               /* limit */
148         .long   0               /* base */