xref: /DragonStub/gnuefi/crt0-efi-ia32.S (revision 64027ee9864d8a8685ae187eb91ddc519d18cedb)
1/* crt0-efi-ia32.S - x86 EFI startup code.
2   Copyright (C) 1999 Hewlett-Packard Co.
3	Contributed by David Mosberger <davidm@hpl.hp.com>.
4
5    All rights reserved.
6
7    Redistribution and use in source and binary forms, with or without
8    modification, are permitted provided that the following conditions
9    are met:
10
11    * Redistributions of source code must retain the above copyright
12      notice, this list of conditions and the following disclaimer.
13    * Redistributions in binary form must reproduce the above
14      copyright notice, this list of conditions and the following
15      disclaimer in the documentation and/or other materials
16      provided with the distribution.
17    * Neither the name of Hewlett-Packard Co. nor the names of its
18      contributors may be used to endorse or promote products derived
19      from this software without specific prior written permission.
20
21    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
22    CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
23    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24    MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
26    BE LIABLE FOR ANYDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
27    OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
29    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
31    TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
32    THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33    SUCH DAMAGE.
34*/
35
36	.text
37	.align 4
38
39	.globl _start
40	.type _start,%function
41_start:
42	pushl %ebp
43	movl %esp,%ebp
44
45	pushl 12(%ebp)			# copy "image" argument
46	pushl  8(%ebp)			# copy "systab" argument
47
48	call 0f
490:	popl %eax
50	movl %eax,%ebx
51
52	addl $ImageBase-0b,%eax		# %eax = ldbase
53	addl $_DYNAMIC-0b,%ebx		# %ebx = _DYNAMIC
54
55	pushl %ebx			# pass _DYNAMIC as second argument
56	pushl %eax			# pass ldbase as first argument
57	call _relocate
58	popl %ebx
59	popl %ebx
60	testl %eax,%eax
61	jne .exit
62
63	call _entry			# call app with "image" and "systab" argument
64
65.exit:	leave
66	ret
67
68 	// hand-craft a dummy .reloc section so EFI knows it's a relocatable executable:
69
70 	.data
71dummy:	.4byte	0
72
73#define IMAGE_REL_ABSOLUTE	0
74 	.section .reloc
75 	.4byte	dummy					// Page RVA
76	.4byte	12					// Block Size (2*4+2*2), must be aligned by 32 Bits
77	.2byte	(IMAGE_REL_ABSOLUTE<<12) +  0		// reloc for dummy
78	.2byte	(IMAGE_REL_ABSOLUTE<<12) +  0		// reloc for dummy
79
80#if defined(__ELF__) && defined(__linux__)
81	.section .note.GNU-stack,"",%progbits
82#endif
83