]> git.sur5r.net Git - u-boot/blob - arch/i386/cpu/start.S
x86: Split sc520 memory sizing versus reporting
[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
29
30 .section .text
31 .code32
32 .globl _start
33 .type _start, @function
34 .globl _i386boot_start
35 _i386boot_start:
36 _start:
37         movl    $0x18,%eax      /* Load our segement registes, the
38                                  * gdt have already been loaded by start16.S */
39         movw    %ax,%fs
40         movw    %ax,%ds
41         movw    %ax,%gs
42         movw    %ax,%es
43         movw    %ax,%ss
44
45         /* We call a few functions in the board support package
46          * since we have no stack yet we'll have to use %ebp
47          * to store the return address */
48
49         /* Early platform init (setup gpio, etc ) */
50         mov     $early_board_init_ret, %ebp
51         jmp     early_board_init
52 early_board_init_ret:
53
54         /* The __port80 entry-point should be usabe by now */
55         /* so we try to indicate progress */
56         movw    $0x01, %ax
57         movl    $.progress0, %ebp
58         jmp     show_boot_progress_asm
59 .progress0:
60
61         /* size memory */
62         mov     $mem_init_ret, %ebp
63         jmp     mem_init
64 mem_init_ret:
65
66         /* fetch memory size (into %eax) */
67         mov     $get_mem_size_ret, %ebp
68         jmp     get_mem_size
69 get_mem_size_ret:
70
71         /* Check we have enough memory for stack */
72         movl    $CONFIG_SYS_STACK_SIZE, %ecx
73         cmpl    %ecx, %eax
74         jae     mem_ok
75
76         /* indicate (lack of) progress */
77         movw    $0x81, %ax
78         movl    $.progress0a, %ebp
79         jmp     show_boot_progress_asm
80 .progress0a:
81         jmp     die
82 mem_ok:
83         /* Set stack pointer to upper memory limit*/
84         movl    %eax, %esp
85
86         /* indicate progress */
87         movw    $0x02, %ax
88         movl    $.progress1, %ebp
89         jmp     show_boot_progress_asm
90 .progress1:
91
92         /* Test the stack */
93         pushl   $0
94         popl    %eax
95         cmpl    $0, %eax
96         jne     no_stack
97         push    $0x55aa55aa
98         popl    %ebx
99         cmpl    $0x55aa55aa, %ebx
100         je      stack_ok
101
102 no_stack:
103         /* indicate (lack of) progress */
104         movw    $0x82, %ax
105         movl    $.progress1a, %ebp
106         jmp     show_boot_progress_asm
107 .progress1a:
108         jmp die
109
110
111 stack_ok:
112         /* indicate progress */
113         movw    $0x03, %ax
114         movl    $.progress2, %ebp
115         jmp     show_boot_progress_asm
116 .progress2:
117
118         wbinvd
119
120         /* Get upper memory limit */
121         movl %esp, %ecx
122         subl $CONFIG_SYS_STACK_SIZE, %ecx
123
124         /* Create a Stack Frame */
125         pushl %ebp
126         movl %esp, %ebp
127
128         /* stack_limit parameter */
129         pushl   %ecx
130         call    board_init_f    /* Enter, U-boot! */
131
132         /* indicate (lack of) progress */
133         movw    $0x85, %ax
134         movl    $.progress4a, %ebp
135         jmp     show_boot_progress_asm
136 .progress4a:
137
138 die:    hlt
139         jmp     die
140         hlt