blob: de9d4200d305ba86eb48bb60f3a852b210fb2649 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/boot/head.S
3 *
4 * Copyright (C) 1991, 1992, 1993 Linus Torvalds
5 */
6
7/*
8 * head.S contains the 32-bit startup code.
9 *
10 * NOTE!!! Startup happens at absolute address 0x00001000, which is also where
11 * the page directory will exist. The startup code will be overwritten by
12 * the page directory. [According to comments etc elsewhere on a compressed
13 * kernel it will end up at 0x1000 + 1Mb I hope so as I assume this. - AC]
14 *
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070015 * Page 0 is deliberately kept safe, since System Management Mode code in
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * laptops may need to access the BIOS data stored there. This is also
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070017 * useful for future device drivers that either access the BIOS via VM86
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * mode.
19 */
20
21/*
22 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
23 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070024 .text
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Tim Abbott1dc818c2009-09-16 16:44:27 -040026#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/linkage.h>
28#include <asm/segment.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080029#include <asm/page_types.h>
Vivek Goyale69f2022006-12-07 02:14:04 +010030#include <asm/boot.h>
Rusty Russella24e7852007-10-21 16:41:35 -070031#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Tim Abbott1dc818c2009-09-16 16:44:27 -040033 __HEAD
Cyrill Gorcunovcb425af2009-02-14 00:50:23 +030034ENTRY(startup_32)
Matt Fleming291f3632011-12-12 21:27:52 +000035#ifdef CONFIG_EFI_STUB
Matt Flemingb1994302012-04-15 16:06:04 +010036 jmp preferred_addr
37
Matt Fleming291f3632011-12-12 21:27:52 +000038 /*
39 * We don't need the return address, so set up the stack so
David Woodhouse99f857d2013-01-10 14:31:59 +000040 * efi_main() can find its arguments.
Matt Fleming291f3632011-12-12 21:27:52 +000041 */
David Woodhouse99f857d2013-01-10 14:31:59 +000042ENTRY(efi_pe_entry)
Matt Fleming291f3632011-12-12 21:27:52 +000043 add $0x4, %esp
44
Matt Fleming54b52d82014-01-10 15:27:14 +000045 call 1f
461: popl %esi
47 subl $1b, %esi
48
49 popl %ecx
50 movl %ecx, efi32_config(%esi) /* Handle */
51 popl %ecx
52 movl %ecx, efi32_config+8(%esi) /* EFI System table pointer */
53
54 /* Relocate efi_config->call() */
55 leal efi32_config(%esi), %eax
56 add %esi, 88(%eax)
57 pushl %eax
58
Matt Fleming9ca8f722012-07-19 10:23:48 +010059 call make_boot_params
60 cmpl $0, %eax
Matt Fleming54b52d82014-01-10 15:27:14 +000061 je fail
62 popl %ecx
Matt Fleming9ca8f722012-07-19 10:23:48 +010063 pushl %eax
Matt Fleming9ca8f722012-07-19 10:23:48 +010064 pushl %ecx
Matt Fleming54b52d82014-01-10 15:27:14 +000065 jmp 2f /* Skip efi_config initialization */
Matt Fleming9ca8f722012-07-19 10:23:48 +010066
Matt Flemingb8ff87a2014-01-10 15:54:31 +000067ENTRY(efi32_stub_entry)
David Woodhousef7916202013-01-07 22:01:50 +000068 add $0x4, %esp
Matt Fleming54b52d82014-01-10 15:27:14 +000069 popl %ecx
70 popl %edx
71
72 call 1f
731: popl %esi
74 subl $1b, %esi
75
76 movl %ecx, efi32_config(%esi) /* Handle */
77 movl %edx, efi32_config+8(%esi) /* EFI System table pointer */
78
79 /* Relocate efi_config->call() */
80 leal efi32_config(%esi), %eax
81 add %esi, 88(%eax)
82 pushl %eax
832:
Matt Fleming291f3632011-12-12 21:27:52 +000084 call efi_main
85 cmpl $0, %eax
Matt Fleming291f3632011-12-12 21:27:52 +000086 movl %eax, %esi
Matt Flemingb1994302012-04-15 16:06:04 +010087 jne 2f
Matt Fleming54b52d82014-01-10 15:27:14 +000088fail:
Matt Flemingb1994302012-04-15 16:06:04 +010089 /* EFI init failed, so hang. */
90 hlt
Matt Fleming54b52d82014-01-10 15:27:14 +000091 jmp fail
Matt Flemingb1994302012-04-15 16:06:04 +0100922:
93 call 3f
943:
Matt Fleming291f3632011-12-12 21:27:52 +000095 popl %eax
Matt Flemingb1994302012-04-15 16:06:04 +010096 subl $3b, %eax
Matt Fleming291f3632011-12-12 21:27:52 +000097 subl BP_pref_address(%esi), %eax
98 add BP_code32_start(%esi), %eax
99 leal preferred_addr(%eax), %eax
100 jmp *%eax
101
102preferred_addr:
103#endif
Eric W. Biedermanbd531472007-10-26 11:29:04 -0600104 cld
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700105 /*
106 * Test KEEP_SEGMENTS flag to see if the bootloader is asking
107 * us to not reload segments
108 */
109 testb $(1<<6), BP_loadflags(%esi)
110 jnz 1f
Rusty Russella24e7852007-10-21 16:41:35 -0700111
Eric W. Biedermanbd531472007-10-26 11:29:04 -0600112 cli
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700113 movl $__BOOT_DS, %eax
114 movl %eax, %ds
115 movl %eax, %es
116 movl %eax, %fs
117 movl %eax, %gs
118 movl %eax, %ss
Eric W. Biedermanbd531472007-10-26 11:29:04 -06001191:
Rusty Russella24e7852007-10-21 16:41:35 -0700120
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700121/*
122 * Calculate the delta between where we were compiled to run
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100123 * at and where we were actually loaded at. This can only be done
124 * with a short local call on x86. Nothing else will tell us what
125 * address we are running at. The reserved chunk of the real-mode
H. Peter Anvin85414b62007-07-11 12:18:33 -0700126 * data at 0x1e4 (defined as a scratch field) are used as the stack
127 * for this calculation. Only 4 bytes are needed.
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100128 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700129 leal (BP_scratch+4)(%esi), %esp
130 call 1f
1311: popl %ebp
132 subl $1b, %ebp
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100133
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700134/*
135 * %ebp contains the address we are loaded at by the boot loader and %ebx
Vivek Goyale69f2022006-12-07 02:14:04 +0100136 * contains the address where we should move the kernel image temporarily
137 * for safe in-place decompression.
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100138 */
Vivek Goyale69f2022006-12-07 02:14:04 +0100139
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100140#ifdef CONFIG_RELOCATABLE
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700141 movl %ebp, %ebx
H. Peter Anvin37ba7ab2009-05-11 15:56:08 -0700142 movl BP_kernel_alignment(%esi), %eax
143 decl %eax
144 addl %eax, %ebx
145 notl %eax
146 andl %eax, %ebx
Kees Cook8ab38202013-10-10 17:18:14 -0700147 cmpl $LOAD_PHYSICAL_ADDR, %ebx
148 jge 1f
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100149#endif
Kees Cook8ab38202013-10-10 17:18:14 -0700150 movl $LOAD_PHYSICAL_ADDR, %ebx
1511:
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100152
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700153 /* Target address to relocate to for decompression */
154 addl $z_extract_offset, %ebx
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100155
H. Peter Anvin0a137732009-05-08 16:27:41 -0700156 /* Set up the stack */
157 leal boot_stack_end(%ebx), %esp
158
H. Peter Anvin97541912009-05-06 17:56:51 -0700159 /* Zero EFLAGS */
160 pushl $0
161 popfl
162
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700163/*
164 * Copy the compressed kernel to the end of our buffer
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100165 * where decompression in place becomes safe.
166 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700167 pushl %esi
H. Peter Anvin36d37932009-05-08 16:45:15 -0700168 leal (_bss-4)(%ebp), %esi
169 leal (_bss-4)(%ebx), %edi
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -0700170 movl $(_bss - startup_32), %ecx
H. Peter Anvin36d37932009-05-08 16:45:15 -0700171 shrl $2, %ecx
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100172 std
H. Peter Anvin36d37932009-05-08 16:45:15 -0700173 rep movsl
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100174 cld
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700175 popl %esi
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100176
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700177/*
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100178 * Jump to the relocated address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700180 leal relocated(%ebx), %eax
181 jmp *%eax
Cyrill Gorcunovcb425af2009-02-14 00:50:23 +0300182ENDPROC(startup_32)
183
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700184 .text
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100185relocated:
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/*
H. Peter Anvin0a137732009-05-08 16:27:41 -0700188 * Clear BSS (stack is currently empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700190 xorl %eax, %eax
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -0700191 leal _bss(%ebx), %edi
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700192 leal _ebss(%ebx), %ecx
193 subl %edi, %ecx
H. Peter Anvin36d37932009-05-08 16:45:15 -0700194 shrl $2, %ecx
195 rep stosl
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100196
197/*
H. Peter Anvin22a57f52010-08-02 15:34:44 -0700198 * Adjust our own GOT
199 */
200 leal _got(%ebx), %edx
201 leal _egot(%ebx), %ecx
2021:
203 cmpl %ecx, %edx
204 jae 2f
205 addl %ebx, (%edx)
206 addl $4, %edx
207 jmp 1b
2082:
209
210/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 * Do the decompression, and jump to the new kernel..
212 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700213 /* push arguments for decompress_kernel: */
Kees Cooka0215062013-07-08 09:15:17 -0700214 pushl $z_output_len /* decompressed length */
215 leal z_extract_offset_negative(%ebx), %ebp
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700216 pushl %ebp /* output address */
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700217 pushl $z_input_len /* input_len */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700218 leal input_data(%ebx), %eax
219 pushl %eax /* input_data */
220 leal boot_heap(%ebx), %eax
221 pushl %eax /* heap area */
222 pushl %esi /* real mode pointer */
Kees Cook8ab38202013-10-10 17:18:14 -0700223 call decompress_kernel /* returns kernel location in %eax */
Kees Cooka0215062013-07-08 09:15:17 -0700224 addl $24, %esp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226/*
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100227 * Jump to the decompressed kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700229 xorl %ebx, %ebx
Kees Cook8ab38202013-10-10 17:18:14 -0700230 jmp *%eax
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100231
Matt Fleming3db4caf2014-03-05 10:15:55 +0000232#ifdef CONFIG_EFI_STUB
Matt Fleming54b52d82014-01-10 15:27:14 +0000233 .data
234efi32_config:
235 .fill 11,8,0
236 .long efi_call_phys
237 .long 0
238 .byte 0
Matt Fleming3db4caf2014-03-05 10:15:55 +0000239#endif
Matt Fleming54b52d82014-01-10 15:27:14 +0000240
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700241/*
242 * Stack and heap for uncompression
243 */
244 .bss
245 .balign 4
Alexander van Heukelum7c539762008-04-08 12:54:30 +0200246boot_heap:
247 .fill BOOT_HEAP_SIZE, 1, 0
248boot_stack:
249 .fill BOOT_STACK_SIZE, 1, 0
250boot_stack_end: