Merge tag 'v3.10.86' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / x86 / boot / compressed / head_32.S
CommitLineData
1da177e4
LT
1/*
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 *
5f64ec64 15 * Page 0 is deliberately kept safe, since System Management Mode code in
1da177e4 16 * laptops may need to access the BIOS data stored there. This is also
5f64ec64 17 * useful for future device drivers that either access the BIOS via VM86
1da177e4
LT
18 * mode.
19 */
20
21/*
22 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
23 */
5f64ec64 24 .text
1da177e4 25
1dc818c1 26#include <linux/init.h>
1da177e4
LT
27#include <linux/linkage.h>
28#include <asm/segment.h>
0341c14d 29#include <asm/page_types.h>
e69f202d 30#include <asm/boot.h>
a24e7851 31#include <asm/asm-offsets.h>
1da177e4 32
1dc818c1 33 __HEAD
cb425afd 34ENTRY(startup_32)
291f3632 35#ifdef CONFIG_EFI_STUB
b1994304
MF
36 jmp preferred_addr
37
291f3632
MF
38 /*
39 * We don't need the return address, so set up the stack so
99f857db 40 * efi_main() can find its arguments.
291f3632 41 */
99f857db 42ENTRY(efi_pe_entry)
291f3632
MF
43 add $0x4, %esp
44
9ca8f72a
MF
45 call make_boot_params
46 cmpl $0, %eax
47 je 1f
48 movl 0x4(%esp), %esi
49 movl (%esp), %ecx
50 pushl %eax
51 pushl %esi
52 pushl %ecx
35d5134b
MF
53
54 call reloc
55reloc:
56 popl %ecx
8492fd43 57 subl $reloc, %ecx
35d5134b
MF
58 movl %ecx, BP_code32_start(%eax)
59
f791620f 60 sub $0x4, %esp
9ca8f72a 61
99f857db 62ENTRY(efi_stub_entry)
f791620f 63 add $0x4, %esp
291f3632
MF
64 call efi_main
65 cmpl $0, %eax
291f3632 66 movl %eax, %esi
b1994304 67 jne 2f
291f3632 681:
b1994304
MF
69 /* EFI init failed, so hang. */
70 hlt
71 jmp 1b
722:
35d5134b 73 movl BP_code32_start(%esi), %eax
291f3632
MF
74 leal preferred_addr(%eax), %eax
75 jmp *%eax
76
77preferred_addr:
78#endif
bd53147d 79 cld
5f64ec64
PA
80 /*
81 * Test KEEP_SEGMENTS flag to see if the bootloader is asking
82 * us to not reload segments
83 */
84 testb $(1<<6), BP_loadflags(%esi)
85 jnz 1f
a24e7851 86
bd53147d 87 cli
5f64ec64
PA
88 movl $__BOOT_DS, %eax
89 movl %eax, %ds
90 movl %eax, %es
91 movl %eax, %fs
92 movl %eax, %gs
93 movl %eax, %ss
bd53147d 941:
a24e7851 95
5f64ec64
PA
96/*
97 * Calculate the delta between where we were compiled to run
968de4f0
EB
98 * at and where we were actually loaded at. This can only be done
99 * with a short local call on x86. Nothing else will tell us what
100 * address we are running at. The reserved chunk of the real-mode
85414b69
PA
101 * data at 0x1e4 (defined as a scratch field) are used as the stack
102 * for this calculation. Only 4 bytes are needed.
968de4f0 103 */
5f64ec64
PA
104 leal (BP_scratch+4)(%esi), %esp
105 call 1f
1061: popl %ebp
107 subl $1b, %ebp
968de4f0 108
5f64ec64
PA
109/*
110 * %ebp contains the address we are loaded at by the boot loader and %ebx
e69f202d
VG
111 * contains the address where we should move the kernel image temporarily
112 * for safe in-place decompression.
968de4f0 113 */
e69f202d 114
968de4f0 115#ifdef CONFIG_RELOCATABLE
5f64ec64 116 movl %ebp, %ebx
37ba7ab5
PA
117 movl BP_kernel_alignment(%esi), %eax
118 decl %eax
119 addl %eax, %ebx
120 notl %eax
121 andl %eax, %ebx
968de4f0 122#else
5f64ec64 123 movl $LOAD_PHYSICAL_ADDR, %ebx
968de4f0
EB
124#endif
125
02a884c0
PA
126 /* Target address to relocate to for decompression */
127 addl $z_extract_offset, %ebx
968de4f0 128
0a137736
PA
129 /* Set up the stack */
130 leal boot_stack_end(%ebx), %esp
131
97541912
PA
132 /* Zero EFLAGS */
133 pushl $0
134 popfl
135
5f64ec64
PA
136/*
137 * Copy the compressed kernel to the end of our buffer
968de4f0
EB
138 * where decompression in place becomes safe.
139 */
5f64ec64 140 pushl %esi
36d3793c
PA
141 leal (_bss-4)(%ebp), %esi
142 leal (_bss-4)(%ebx), %edi
5b11f1ce 143 movl $(_bss - startup_32), %ecx
36d3793c 144 shrl $2, %ecx
968de4f0 145 std
36d3793c 146 rep movsl
968de4f0 147 cld
5f64ec64 148 popl %esi
968de4f0 149
1da177e4 150/*
968de4f0 151 * Jump to the relocated address.
1da177e4 152 */
5f64ec64
PA
153 leal relocated(%ebx), %eax
154 jmp *%eax
cb425afd
CG
155ENDPROC(startup_32)
156
5f64ec64 157 .text
968de4f0
EB
158relocated:
159
1da177e4 160/*
0a137736 161 * Clear BSS (stack is currently empty)
1da177e4 162 */
5f64ec64 163 xorl %eax, %eax
5b11f1ce 164 leal _bss(%ebx), %edi
5f64ec64
PA
165 leal _ebss(%ebx), %ecx
166 subl %edi, %ecx
36d3793c
PA
167 shrl $2, %ecx
168 rep stosl
968de4f0 169
22a57f58
PA
170/*
171 * Adjust our own GOT
172 */
173 leal _got(%ebx), %edx
174 leal _egot(%ebx), %ecx
1751:
176 cmpl %ecx, %edx
177 jae 2f
178 addl %ebx, (%edx)
179 addl $4, %edx
180 jmp 1b
1812:
182
1da177e4
LT
183/*
184 * Do the decompression, and jump to the new kernel..
185 */
02a884c0 186 leal z_extract_offset_negative(%ebx), %ebp
5f64ec64
PA
187 /* push arguments for decompress_kernel: */
188 pushl %ebp /* output address */
02a884c0 189 pushl $z_input_len /* input_len */
5f64ec64
PA
190 leal input_data(%ebx), %eax
191 pushl %eax /* input_data */
192 leal boot_heap(%ebx), %eax
193 pushl %eax /* heap area */
194 pushl %esi /* real mode pointer */
195 call decompress_kernel
196 addl $20, %esp
968de4f0
EB
197
198#if CONFIG_RELOCATABLE
5f64ec64
PA
199/*
200 * Find the address of the relocations.
968de4f0 201 */
02a884c0 202 leal z_output_len(%ebp), %edi
968de4f0 203
5f64ec64
PA
204/*
205 * Calculate the delta between where vmlinux was compiled to run
968de4f0
EB
206 * and where it was actually loaded.
207 */
5f64ec64
PA
208 movl %ebp, %ebx
209 subl $LOAD_PHYSICAL_ADDR, %ebx
210 jz 2f /* Nothing to be done if loaded at compiled addr. */
1da177e4 211/*
968de4f0 212 * Process relocations.
1da177e4 213 */
968de4f0 214
5f64ec64
PA
2151: subl $4, %edi
216 movl (%edi), %ecx
217 testl %ecx, %ecx
218 jz 2f
219 addl %ebx, -__PAGE_OFFSET(%ebx, %ecx)
220 jmp 1b
968de4f0
EB
2212:
222#endif
1da177e4
LT
223
224/*
968de4f0 225 * Jump to the decompressed kernel.
1da177e4 226 */
5f64ec64
PA
227 xorl %ebx, %ebx
228 jmp *%ebp
968de4f0 229
5f64ec64
PA
230/*
231 * Stack and heap for uncompression
232 */
233 .bss
234 .balign 4
7c539764
AH
235boot_heap:
236 .fill BOOT_HEAP_SIZE, 1, 0
237boot_stack:
238 .fill BOOT_STACK_SIZE, 1, 0
239boot_stack_end: