db18a5195fc1be97aecf135a5196a672dda99837
[coreboot.git] / payloads / libpayload / arch / i386 / head.S
1 /*
2  * This file is part of the libpayload project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30         .code32
31         .global _entry, _leave
32         .text
33         .align 4
34
35 /*
36  * Our entry point - assume that the CPU is in 32 bit protected mode and
37  * all segments are in a flat model. That's our operating mode, so we won't
38  * change anything.
39  */
40 _entry:
41         call _init
42
43         /* We're back - go back to the bootloader. */
44         ret
45
46         .align 4
47
48 #define MB_MAGIC 0x1BADB002
49 #define MB_FLAGS 0x00010003
50
51 mb_header:
52         .long MB_MAGIC
53         .long MB_FLAGS
54         .long -(MB_MAGIC + MB_FLAGS)
55         .long mb_header
56         .long _start
57         .long _edata
58         .long _end
59         .long _init
60
61 /*
62  * This function saves off the previous stack and switches us to our
63  * own execution environment.
64  */
65 _init:
66         /* No interrupts, please. */
67         cli
68
69         /* Store current stack pointer. */
70         movl %esp, %esi
71
72         /* Store EAX and EBX */
73
74         movl %eax,loader_eax
75         movl %ebx,loader_ebx
76
77         /* Setup new stack. */
78         movl $_stack, %ebx
79
80         movl %ebx, %esp
81
82         /* Save old stack pointer. */
83         pushl %esi
84
85         /* Let's rock. */
86         call start_main
87
88         /* %eax has the return value - pass it on unmolested */
89 _leave:
90         /* Get old stack pointer. */
91         popl %ebx
92
93         /* Restore old stack. */
94         movl %ebx, %esp
95
96         /* Return to the original context. */
97         ret