blob: 09cdc0c3ee7ece77ecb19b337a0b3675c6f029ee [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
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
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 *
15 * Page 0 is deliberately kept safe, since System Management Mode code in
16 * laptops may need to access the BIOS data stored there. This is also
17 * useful for future device drivers that either access the BIOS via VM86
18 * mode.
19 */
20
21/*
Domen Puncerf4549442005-06-25 14:58:59 -070022 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070024 .code32
25 .text
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Tim Abbott1dc818c2009-09-16 16:44:27 -040027#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/linkage.h>
29#include <asm/segment.h>
Alexander van Heukelum7c539762008-04-08 12:54:30 +020030#include <asm/boot.h>
Vivek Goyal1ab60e02007-05-02 19:27:07 +020031#include <asm/msr.h>
Cyrill Gorcunove83e31f42008-05-12 15:43:39 +020032#include <asm/processor-flags.h>
Eric W. Biedermanbd531472007-10-26 11:29:04 -060033#include <asm/asm-offsets.h>
Alexander Kuleshovfb148d82015-02-19 13:34:58 +060034#include <asm/bootparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
H.J. Lu6d92bc92016-03-16 20:04:35 -070036/*
37 * Locally defined symbols should be marked hidden:
38 */
39 .hidden _bss
40 .hidden _ebss
41 .hidden _got
42 .hidden _egot
43
Tim Abbott1dc818c2009-09-16 16:44:27 -040044 __HEAD
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 .code32
Cyrill Gorcunov2d4eeecb2009-02-14 00:50:22 +030046ENTRY(startup_32)
Yinghai Lu8ee2f2d2013-01-24 12:20:07 -080047 /*
48 * 32bit entry is 0 and it is ABI so immutable!
49 * If we come here directly from a bootloader,
50 * kernel(text+data+bss+brk) ramdisk, zero_page, command line
51 * all need to be under the 4G limit.
52 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 cld
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070054 /*
55 * Test KEEP_SEGMENTS flag to see if the bootloader is asking
56 * us to not reload segments
57 */
Alexander Kuleshovfb148d82015-02-19 13:34:58 +060058 testb $KEEP_SEGMENTS, BP_loadflags(%esi)
Eric W. Biedermanbd531472007-10-26 11:29:04 -060059 jnz 1f
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 cli
Lans Zhang2dead152013-03-01 09:20:39 +080062 movl $(__BOOT_DS), %eax
Vivek Goyal1ab60e02007-05-02 19:27:07 +020063 movl %eax, %ds
64 movl %eax, %es
65 movl %eax, %ss
Eric W. Biedermanbd531472007-10-26 11:29:04 -0600661:
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070068/*
69 * Calculate the delta between where we were compiled to run
Vivek Goyal1ab60e02007-05-02 19:27:07 +020070 * at and where we were actually loaded at. This can only be done
71 * with a short local call on x86. Nothing else will tell us what
72 * address we are running at. The reserved chunk of the real-mode
H. Peter Anvin85414b62007-07-11 12:18:33 -070073 * data at 0x1e4 (defined as a scratch field) are used as the stack
74 * for this calculation. Only 4 bytes are needed.
Vivek Goyal1ab60e02007-05-02 19:27:07 +020075 */
H. Peter Anvinbd2a3692009-05-05 23:24:50 -070076 leal (BP_scratch+4)(%esi), %esp
Vivek Goyal1ab60e02007-05-02 19:27:07 +020077 call 1f
781: popl %ebp
79 subl $1b, %ebp
80
Vivek Goyala4831e02007-05-02 19:27:08 +020081/* setup a stack and make sure cpu supports long mode. */
Alexander van Heukelum7c539762008-04-08 12:54:30 +020082 movl $boot_stack_end, %eax
Vivek Goyala4831e02007-05-02 19:27:08 +020083 addl %ebp, %eax
84 movl %eax, %esp
85
86 call verify_cpu
87 testl %eax, %eax
88 jnz no_longmode
89
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070090/*
91 * Compute the delta between where we were compiled to run at
Vivek Goyal1ab60e02007-05-02 19:27:07 +020092 * and where the code will actually run at.
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070093 *
94 * %ebp contains the address we are loaded at by the boot loader and %ebx
Vivek Goyal1ab60e02007-05-02 19:27:07 +020095 * contains the address where we should move the kernel image temporarily
96 * for safe in-place decompression.
97 */
98
99#ifdef CONFIG_RELOCATABLE
100 movl %ebp, %ebx
H. Peter Anvin37ba7ab2009-05-11 15:56:08 -0700101 movl BP_kernel_alignment(%esi), %eax
102 decl %eax
103 addl %eax, %ebx
104 notl %eax
105 andl %eax, %ebx
Kees Cook8ab38202013-10-10 17:18:14 -0700106 cmpl $LOAD_PHYSICAL_ADDR, %ebx
107 jge 1f
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200108#endif
Kees Cook8ab38202013-10-10 17:18:14 -0700109 movl $LOAD_PHYSICAL_ADDR, %ebx
1101:
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200111
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700112 /* Target address to relocate to for decompression */
Yinghai Lu974f2212016-04-28 17:09:04 -0700113 movl BP_init_size(%esi), %eax
114 subl $_end, %eax
115 addl %eax, %ebx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117/*
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200118 * Prepare for entering 64 bit mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200120
121 /* Load new GDT with the 64bit segments using 32bit descriptor */
122 leal gdt(%ebp), %eax
123 movl %eax, gdt+2(%ebp)
124 lgdt gdt(%ebp)
125
126 /* Enable PAE mode */
Matt Fleming108d3f42014-02-24 13:37:29 +0000127 movl %cr4, %eax
128 orl $X86_CR4_PAE, %eax
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200129 movl %eax, %cr4
130
131 /*
132 * Build early 4G boot pagetable
133 */
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700134 /* Initialize Page tables to 0 */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200135 leal pgtable(%ebx), %edi
136 xorl %eax, %eax
137 movl $((4096*6)/4), %ecx
138 rep stosl
139
140 /* Build Level 4 */
141 leal pgtable + 0(%ebx), %edi
142 leal 0x1007 (%edi), %eax
143 movl %eax, 0(%edi)
144
145 /* Build Level 3 */
146 leal pgtable + 0x1000(%ebx), %edi
147 leal 0x1007(%edi), %eax
148 movl $4, %ecx
1491: movl %eax, 0x00(%edi)
150 addl $0x00001000, %eax
151 addl $8, %edi
152 decl %ecx
153 jnz 1b
154
155 /* Build Level 2 */
156 leal pgtable + 0x2000(%ebx), %edi
157 movl $0x00000183, %eax
158 movl $2048, %ecx
1591: movl %eax, 0(%edi)
160 addl $0x00200000, %eax
161 addl $8, %edi
162 decl %ecx
163 jnz 1b
164
165 /* Enable the boot page tables */
166 leal pgtable(%ebx), %eax
167 movl %eax, %cr3
168
169 /* Enable Long mode in EFER (Extended Feature Enable Register) */
170 movl $MSR_EFER, %ecx
171 rdmsr
172 btsl $_EFER_LME, %eax
173 wrmsr
174
Yinghai Lud3c433b2013-01-24 12:20:01 -0800175 /* After gdt is loaded */
176 xorl %eax, %eax
177 lldt %ax
Denys Vlasenko40e4f2d12015-04-01 16:50:58 +0200178 movl $__BOOT_TSS, %eax
Yinghai Lud3c433b2013-01-24 12:20:01 -0800179 ltr %ax
180
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700181 /*
182 * Setup for the jump to 64bit mode
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200183 *
184 * When the jump is performend we will be in long mode but
185 * in 32bit compatibility mode with EFER.LME = 1, CS.L = 0, CS.D = 1
186 * (and in turn EFER.LMA = 1). To jump into 64bit mode we use
187 * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
188 * We place all of the values on our mini stack so lret can
189 * used to perform that far jump.
190 */
191 pushl $__KERNEL_CS
192 leal startup_64(%ebp), %eax
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000193#ifdef CONFIG_EFI_MIXED
194 movl efi32_config(%ebp), %ebx
195 cmp $0, %ebx
196 jz 1f
197 leal handover_entry(%ebp), %eax
1981:
199#endif
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200200 pushl %eax
201
202 /* Enter paged protected Mode, activating Long Mode */
Cyrill Gorcunove83e31f42008-05-12 15:43:39 +0200203 movl $(X86_CR0_PG | X86_CR0_PE), %eax /* Enable Paging and Protected mode */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200204 movl %eax, %cr0
205
206 /* Jump from 32bit compatibility mode into 64bit mode. */
207 lret
Cyrill Gorcunov2d4eeecb2009-02-14 00:50:22 +0300208ENDPROC(startup_32)
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200209
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000210#ifdef CONFIG_EFI_MIXED
211 .org 0x190
212ENTRY(efi32_stub_entry)
213 add $0x4, %esp /* Discard return address */
214 popl %ecx
215 popl %edx
216 popl %esi
217
218 leal (BP_scratch+4)(%esi), %esp
219 call 1f
2201: pop %ebp
221 subl $1b, %ebp
222
223 movl %ecx, efi32_config(%ebp)
224 movl %edx, efi32_config+8(%ebp)
225 sgdtl efi32_boot_gdt(%ebp)
226
227 leal efi32_config(%ebp), %eax
228 movl %eax, efi_config(%ebp)
229
230 jmp startup_32
231ENDPROC(efi32_stub_entry)
232#endif
233
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200234 .code64
Vivek Goyala4831e02007-05-02 19:27:08 +0200235 .org 0x200
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200236ENTRY(startup_64)
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700237 /*
Yinghai Lu8ee2f2d2013-01-24 12:20:07 -0800238 * 64bit entry is 0x200 and it is ABI so immutable!
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700239 * We come here either from startup_32 or directly from a
Yinghai Lu8ee2f2d2013-01-24 12:20:07 -0800240 * 64bit bootloader.
241 * If we come here from a bootloader, kernel(text+data+bss+brk),
242 * ramdisk, zero_page, command line could be above 4G.
243 * We depend on an identity mapped page table being provided
244 * that maps our entire kernel(text+data+bss+brk), zero page
245 * and command line.
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200246 */
Matt Fleming291f3632011-12-12 21:27:52 +0000247#ifdef CONFIG_EFI_STUB
Matt Flemingb1994302012-04-15 16:06:04 +0100248 /*
David Woodhouse99f857d2013-01-10 14:31:59 +0000249 * The entry point for the PE/COFF executable is efi_pe_entry, so
250 * only legacy boot loaders will execute this jmp.
Matt Flemingb1994302012-04-15 16:06:04 +0100251 */
252 jmp preferred_addr
253
David Woodhouse99f857d2013-01-10 14:31:59 +0000254ENTRY(efi_pe_entry)
Matt Fleming54b52d82014-01-10 15:27:14 +0000255 movq %rcx, efi64_config(%rip) /* Handle */
256 movq %rdx, efi64_config+8(%rip) /* EFI System table pointer */
257
258 leaq efi64_config(%rip), %rax
259 movq %rax, efi_config(%rip)
260
261 call 1f
2621: popq %rbp
263 subq $1b, %rbp
264
265 /*
Linus Torvaldsf3670392014-09-22 23:05:49 -0700266 * Relocate efi_config->call().
Matt Fleming54b52d82014-01-10 15:27:14 +0000267 */
268 addq %rbp, efi64_config+88(%rip)
269
270 movq %rax, %rdi
Matt Fleming9ca8f722012-07-19 10:23:48 +0100271 call make_boot_params
272 cmpq $0,%rax
Matt Fleming54b52d82014-01-10 15:27:14 +0000273 je fail
274 mov %rax, %rsi
Matt Fleming7e8213c2014-04-08 13:14:00 +0100275 leaq startup_32(%rip), %rax
276 movl %eax, BP_code32_start(%rsi)
Matt Fleming54b52d82014-01-10 15:27:14 +0000277 jmp 2f /* Skip the relocation */
Matt Fleming9ca8f722012-07-19 10:23:48 +0100278
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000279handover_entry:
Matt Fleming54b52d82014-01-10 15:27:14 +0000280 call 1f
2811: popq %rbp
282 subq $1b, %rbp
283
284 /*
Linus Torvaldsf3670392014-09-22 23:05:49 -0700285 * Relocate efi_config->call().
Matt Fleming54b52d82014-01-10 15:27:14 +0000286 */
287 movq efi_config(%rip), %rax
288 addq %rbp, 88(%rax)
Matt Fleming54b52d82014-01-10 15:27:14 +00002892:
290 movq efi_config(%rip), %rdi
Matt Fleming291f3632011-12-12 21:27:52 +0000291 call efi_main
Matt Fleming291f3632011-12-12 21:27:52 +0000292 movq %rax,%rsi
Matt Flemingb1994302012-04-15 16:06:04 +0100293 cmpq $0,%rax
294 jne 2f
Matt Fleming54b52d82014-01-10 15:27:14 +0000295fail:
Matt Flemingb1994302012-04-15 16:06:04 +0100296 /* EFI init failed, so hang. */
297 hlt
Matt Fleming54b52d82014-01-10 15:27:14 +0000298 jmp fail
Matt Flemingb1994302012-04-15 16:06:04 +01002992:
Matt Fleming7e8213c2014-04-08 13:14:00 +0100300 movl BP_code32_start(%esi), %eax
Matt Fleming291f3632011-12-12 21:27:52 +0000301 leaq preferred_addr(%rax), %rax
302 jmp *%rax
303
304preferred_addr:
305#endif
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200306
307 /* Setup data segments. */
308 xorl %eax, %eax
309 movl %eax, %ds
310 movl %eax, %es
311 movl %eax, %ss
Zachary Amsden08da5a22007-08-10 22:31:05 +0200312 movl %eax, %fs
313 movl %eax, %gs
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200314
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700315 /*
316 * Compute the decompressed kernel start address. It is where
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200317 * we were loaded at aligned to a 2M boundary. %rbp contains the
318 * decompressed kernel start address.
319 *
320 * If it is a relocatable kernel then decompress and run the kernel
321 * from load address aligned to 2MB addr, otherwise decompress and
H. Peter Anvin40b387a2009-05-11 14:41:55 -0700322 * run the kernel from LOAD_PHYSICAL_ADDR
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700323 *
324 * We cannot rely on the calculation done in 32-bit mode, since we
325 * may have been invoked via the 64-bit entry point.
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200326 */
327
328 /* Start with the delta to where the kernel will run at. */
329#ifdef CONFIG_RELOCATABLE
330 leaq startup_32(%rip) /* - $startup_32 */, %rbp
H. Peter Anvin37ba7ab2009-05-11 15:56:08 -0700331 movl BP_kernel_alignment(%rsi), %eax
332 decl %eax
333 addq %rax, %rbp
334 notq %rax
335 andq %rax, %rbp
Kees Cook8ab38202013-10-10 17:18:14 -0700336 cmpq $LOAD_PHYSICAL_ADDR, %rbp
337 jge 1f
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200338#endif
Kees Cook8ab38202013-10-10 17:18:14 -0700339 movq $LOAD_PHYSICAL_ADDR, %rbp
3401:
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200341
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700342 /* Target address to relocate to for decompression */
Yinghai Lu974f2212016-04-28 17:09:04 -0700343 movl BP_init_size(%rsi), %ebx
344 subl $_end, %ebx
345 addq %rbp, %rbx
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200346
H. Peter Anvin0a137732009-05-08 16:27:41 -0700347 /* Set up the stack */
348 leaq boot_stack_end(%rbx), %rsp
349
350 /* Zero EFLAGS */
351 pushq $0
352 popfq
353
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700354/*
355 * Copy the compressed kernel to the end of our buffer
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200356 * where decompression in place becomes safe.
357 */
H. Peter Anvin36d37932009-05-08 16:45:15 -0700358 pushq %rsi
359 leaq (_bss-8)(%rip), %rsi
360 leaq (_bss-8)(%rbx), %rdi
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -0700361 movq $_bss /* - $startup_32 */, %rcx
H. Peter Anvin36d37932009-05-08 16:45:15 -0700362 shrq $3, %rcx
363 std
364 rep movsq
365 cld
366 popq %rsi
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200367
368/*
369 * Jump to the relocated address.
370 */
371 leaq relocated(%rbx), %rax
372 jmp *%rax
373
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000374#ifdef CONFIG_EFI_STUB
375 .org 0x390
376ENTRY(efi64_stub_entry)
377 movq %rdi, efi64_config(%rip) /* Handle */
378 movq %rsi, efi64_config+8(%rip) /* EFI System table pointer */
379
380 leaq efi64_config(%rip), %rax
381 movq %rax, efi_config(%rip)
382
383 movq %rdx, %rsi
384 jmp handover_entry
385ENDPROC(efi64_stub_entry)
386#endif
387
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700388 .text
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200389relocated:
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391/*
H. Peter Anvin0a137732009-05-08 16:27:41 -0700392 * Clear BSS (stack is currently empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 */
H. Peter Anvin36d37932009-05-08 16:45:15 -0700394 xorl %eax, %eax
395 leaq _bss(%rip), %rdi
396 leaq _ebss(%rip), %rcx
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200397 subq %rdi, %rcx
H. Peter Anvin36d37932009-05-08 16:45:15 -0700398 shrq $3, %rcx
399 rep stosq
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200400
Linus Torvaldsf3670392014-09-22 23:05:49 -0700401/*
402 * Adjust our own GOT
403 */
404 leaq _got(%rip), %rdx
405 leaq _egot(%rip), %rcx
4061:
407 cmpq %rcx, %rdx
408 jae 2f
409 addq %rbx, (%rdx)
410 addq $8, %rdx
411 jmp 1b
4122:
413
H. Peter Anvin22a57f52010-08-02 15:34:44 -0700414/*
Kees Cookc0402882016-04-18 09:42:13 -0700415 * Do the extraction, and jump to the new kernel..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 */
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700417 pushq %rsi /* Save the real mode argument */
Junjie Maoe6023362014-10-31 21:40:38 +0800418 movq $z_run_size, %r9 /* size of kernel with .bss and .brk */
419 pushq %r9
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700420 movq %rsi, %rdi /* real mode address */
421 leaq boot_heap(%rip), %rsi /* malloc area for uncompression */
422 leaq input_data(%rip), %rdx /* input_data */
423 movl $z_input_len, %ecx /* input_len */
424 movq %rbp, %r8 /* output target address */
Junjie Maoe6023362014-10-31 21:40:38 +0800425 movq $z_output_len, %r9 /* decompressed length, end of relocs */
Kees Cookc0402882016-04-18 09:42:13 -0700426 call extract_kernel /* returns kernel location in %rax */
Junjie Maoe6023362014-10-31 21:40:38 +0800427 popq %r9
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200428 popq %rsi
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430/*
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200431 * Jump to the decompressed kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 */
Kees Cook8ab38202013-10-10 17:18:14 -0700433 jmp *%rax
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Yinghai Lu187a8a72013-01-24 12:20:00 -0800435 .code32
436no_longmode:
437 /* This isn't an x86-64 CPU so hang */
4381:
439 hlt
440 jmp 1b
441
442#include "../../kernel/verify_cpu.S"
443
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200444 .data
445gdt:
446 .word gdt_end - gdt
447 .long gdt
448 .word 0
449 .quad 0x0000000000000000 /* NULL descriptor */
450 .quad 0x00af9a000000ffff /* __KERNEL_CS */
451 .quad 0x00cf92000000ffff /* __KERNEL_DS */
Zachary Amsden08da5a22007-08-10 22:31:05 +0200452 .quad 0x0080890000000000 /* TS descriptor */
453 .quad 0x0000000000000000 /* TS continued */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200454gdt_end:
Alexander van Heukelum7c539762008-04-08 12:54:30 +0200455
Matt Fleming3db4caf2014-03-05 10:15:55 +0000456#ifdef CONFIG_EFI_STUB
Matt Fleming54b52d82014-01-10 15:27:14 +0000457efi_config:
458 .quad 0
459
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000460#ifdef CONFIG_EFI_MIXED
461 .global efi32_config
462efi32_config:
463 .fill 11,8,0
464 .quad efi64_thunk
465 .byte 0
466#endif
467
Matt Fleming54b52d82014-01-10 15:27:14 +0000468 .global efi64_config
469efi64_config:
470 .fill 11,8,0
Matt Fleming62fa6e62014-03-27 15:10:39 -0700471 .quad efi_call
Matt Fleming54b52d82014-01-10 15:27:14 +0000472 .byte 1
Matt Fleming3db4caf2014-03-05 10:15:55 +0000473#endif /* CONFIG_EFI_STUB */
474
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700475/*
476 * Stack and heap for uncompression
477 */
478 .bss
479 .balign 4
Alexander van Heukelum7c539762008-04-08 12:54:30 +0200480boot_heap:
481 .fill BOOT_HEAP_SIZE, 1, 0
482boot_stack:
483 .fill BOOT_STACK_SIZE, 1, 0
484boot_stack_end:
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -0700485
486/*
487 * Space for page tables (not in .bss so not zeroed)
488 */
489 .section ".pgtable","a",@nobits
490 .balign 4096
491pgtable:
492 .fill 6*4096, 1, 0