Make libpayload parse the coreboot tables before setting up the consoles
[coreboot.git] / payloads / libpayload / arch / i386 / exec.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 /* calling syntax:  i386_do_exec(long addr, int argc, char **argv, int *ret) */
31
32 /* This implements the payload API detailed here:
33  * http://www.coreboot.org/Payload_API
34  */
35
36 .align 4
37 .text
38
39 .global i386_do_exec
40         .type i386_do_exec,@function
41
42 i386_do_exec:
43         pushl %ebp
44         movl %esp, %ebp
45         pushl %eax
46
47         /* Put the run address in %eax */
48         movl 8(%ebp), %eax
49
50         /* Save off the rest of the registers */
51
52         pushl %esi
53         pushl %ecx
54         pushl %ebp
55
56         /* Push the argc and argv pointers on to the stack */
57
58         movl 12(%ebp), %esi
59         movl 16(%ebp), %ecx
60
61         pushl %esi
62         pushl %ecx
63
64         /* Move a "magic" number on the stack - the other
65          * payload will use this as a clue that the argc
66          * and argv are sane
67          */
68
69         movl  $12345678, %ecx
70         pushl %ecx
71
72         /* Jump to the code */
73         call *%eax
74
75         /* %eax has the return value */
76
77         /* Skip over the argc/argv stuff still on the stack */
78         addl $12, %esp
79
80         /* Get back %ebp */
81         popl %ebp
82
83         /* Get the pointer to the return value
84          * and save the return value in it
85          */
86
87         movl 20(%ebp), %ecx
88         movl %eax, (%eax)
89
90         /* Get the rest of the saved registers */
91         popl %ecx
92         popl %esi
93         popl %eax
94
95         /* Restore the stack pointer */
96         movl %ebp,%esp
97         popl %ebp
98         ret
99