Fixes to the libpayload build system
[coreboot.git] / payloads / libpayload / arch / powerpc / 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 .globl powerpc_do_exec
40         .type powerpc_do_exec,@function
41
42 powerpc_do_exec:
43 #if 0
44         pushl %ebp
45         movl %esp, %ebp
46         pushl %eax
47
48         /* Put the run address in %eax */
49         movl 8(%ebp), %eax
50
51         /* Save off the rest of the registers */
52
53         pushl %esi
54         pushl %ecx
55         pushl %ebp
56
57         /* Push the argc and argv pointers on to the stack */
58
59         movl 12(%ebp), %esi
60         movl 16(%ebp), %ecx
61
62         pushl %esi
63         pushl %ecx
64
65         /* Move a "magic" number on the stack - the other
66          * payload will use this as a clue that the argc
67          * and argv are sane
68          */
69
70         movl  $12345678, %ecx
71         pushl %ecx
72
73         /* Jump to the code */
74         call *%eax
75
76         /* %eax has the return value */
77
78         /* Skip over the argc/argv stuff still on the stack */
79         addl $12, %esp
80
81         /* Get back %ebp */
82         popl %ebp
83
84         /* Get the pointer to the return value
85          * and save the return value in it
86          */
87
88         movl 20(%ebp), %ecx
89         movl %eax, (%eax)
90
91         /* Get the rest of the saved registers */
92         popl %ecx
93         popl %esi
94         popl %eax
95
96         /* Restore the stack pointer */
97         movl %ebp,%esp
98         popl %ebp
99         ret
100 #endif