blob: d7245cf80261773336d6c927392e481a37eb80c4 [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
26#include <linux/linkage.h>
27#include <asm/segment.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080028#include <asm/page_types.h>
Vivek Goyale69f2022006-12-07 02:14:04 +010029#include <asm/boot.h>
Rusty Russella24e7852007-10-21 16:41:35 -070030#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070032 .section ".text.head","ax",@progbits
Cyrill Gorcunovcb425af2009-02-14 00:50:23 +030033ENTRY(startup_32)
Eric W. Biedermanbd531472007-10-26 11:29:04 -060034 cld
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070035 /*
36 * Test KEEP_SEGMENTS flag to see if the bootloader is asking
37 * us to not reload segments
38 */
39 testb $(1<<6), BP_loadflags(%esi)
40 jnz 1f
Rusty Russella24e7852007-10-21 16:41:35 -070041
Eric W. Biedermanbd531472007-10-26 11:29:04 -060042 cli
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070043 movl $__BOOT_DS, %eax
44 movl %eax, %ds
45 movl %eax, %es
46 movl %eax, %fs
47 movl %eax, %gs
48 movl %eax, %ss
Eric W. Biedermanbd531472007-10-26 11:29:04 -0600491:
Rusty Russella24e7852007-10-21 16:41:35 -070050
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070051/*
52 * Calculate the delta between where we were compiled to run
Eric W. Biederman968de4f2006-12-07 02:14:04 +010053 * at and where we were actually loaded at. This can only be done
54 * with a short local call on x86. Nothing else will tell us what
55 * address we are running at. The reserved chunk of the real-mode
H. Peter Anvin85414b62007-07-11 12:18:33 -070056 * data at 0x1e4 (defined as a scratch field) are used as the stack
57 * for this calculation. Only 4 bytes are needed.
Eric W. Biederman968de4f2006-12-07 02:14:04 +010058 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070059 leal (BP_scratch+4)(%esi), %esp
60 call 1f
611: popl %ebp
62 subl $1b, %ebp
Eric W. Biederman968de4f2006-12-07 02:14:04 +010063
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070064/*
65 * %ebp contains the address we are loaded at by the boot loader and %ebx
Vivek Goyale69f2022006-12-07 02:14:04 +010066 * contains the address where we should move the kernel image temporarily
67 * for safe in-place decompression.
Eric W. Biederman968de4f2006-12-07 02:14:04 +010068 */
Vivek Goyale69f2022006-12-07 02:14:04 +010069
Eric W. Biederman968de4f2006-12-07 02:14:04 +010070#ifdef CONFIG_RELOCATABLE
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070071 movl %ebp, %ebx
Vivek Goyale69f2022006-12-07 02:14:04 +010072 addl $(CONFIG_PHYSICAL_ALIGN - 1), %ebx
73 andl $(~(CONFIG_PHYSICAL_ALIGN - 1)), %ebx
Eric W. Biederman968de4f2006-12-07 02:14:04 +010074#else
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070075 movl $LOAD_PHYSICAL_ADDR, %ebx
Eric W. Biederman968de4f2006-12-07 02:14:04 +010076#endif
77
78 /* Replace the compressed data size with the uncompressed size */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070079 subl input_len(%ebp), %ebx
80 movl output_len(%ebp), %eax
81 addl %eax, %ebx
Eric W. Biederman968de4f2006-12-07 02:14:04 +010082 /* Add 8 bytes for every 32K input block */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070083 shrl $12, %eax
84 addl %eax, %ebx
Eric W. Biederman968de4f2006-12-07 02:14:04 +010085 /* Add 32K + 18 bytes of extra slack */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070086 addl $(32768 + 18), %ebx
Eric W. Biederman968de4f2006-12-07 02:14:04 +010087 /* Align on a 4K boundary */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070088 addl $4095, %ebx
89 andl $~4095, %ebx
Eric W. Biederman968de4f2006-12-07 02:14:04 +010090
H. Peter Anvin0a137732009-05-08 16:27:41 -070091 /* Set up the stack */
92 leal boot_stack_end(%ebx), %esp
93
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070094/*
95 * Copy the compressed kernel to the end of our buffer
Eric W. Biederman968de4f2006-12-07 02:14:04 +010096 * where decompression in place becomes safe.
97 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -070098 pushl %esi
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -070099 leal _bss(%ebp), %esi
100 leal _bss(%ebx), %edi
101 movl $(_bss - startup_32), %ecx
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100102 std
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700103 rep movsb
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100104 cld
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700105 popl %esi
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100106
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700107/*
108 * Compute the kernel start address.
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100109 */
110#ifdef CONFIG_RELOCATABLE
Vivek Goyale69f2022006-12-07 02:14:04 +0100111 addl $(CONFIG_PHYSICAL_ALIGN - 1), %ebp
112 andl $(~(CONFIG_PHYSICAL_ALIGN - 1)), %ebp
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100113#else
Vivek Goyale69f2022006-12-07 02:14:04 +0100114 movl $LOAD_PHYSICAL_ADDR, %ebp
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117/*
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100118 * Jump to the relocated address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700120 leal relocated(%ebx), %eax
121 jmp *%eax
Cyrill Gorcunovcb425af2009-02-14 00:50:23 +0300122ENDPROC(startup_32)
123
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700124 .text
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100125relocated:
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/*
H. Peter Anvin0a137732009-05-08 16:27:41 -0700128 * Clear BSS (stack is currently empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700130 xorl %eax, %eax
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -0700131 leal _bss(%ebx), %edi
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700132 leal _ebss(%ebx), %ecx
133 subl %edi, %ecx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 cld
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700135 rep stosb
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100136
137/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 * Do the decompression, and jump to the new kernel..
139 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700140 movl output_len(%ebx), %eax
141 pushl %eax
142 /* push arguments for decompress_kernel: */
143 pushl %ebp /* output address */
144 movl input_len(%ebx), %eax
145 pushl %eax /* input_len */
146 leal input_data(%ebx), %eax
147 pushl %eax /* input_data */
148 leal boot_heap(%ebx), %eax
149 pushl %eax /* heap area */
150 pushl %esi /* real mode pointer */
151 call decompress_kernel
152 addl $20, %esp
153 popl %ecx
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100154
155#if CONFIG_RELOCATABLE
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700156/*
157 * Find the address of the relocations.
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100158 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700159 movl %ebp, %edi
160 addl %ecx, %edi
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100161
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700162/*
163 * Calculate the delta between where vmlinux was compiled to run
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100164 * and where it was actually loaded.
165 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700166 movl %ebp, %ebx
167 subl $LOAD_PHYSICAL_ADDR, %ebx
168 jz 2f /* Nothing to be done if loaded at compiled addr. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/*
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100170 * Process relocations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
H. Peter Anvin5f64ec62009-05-08 15:45:17 -07001731: subl $4, %edi
174 movl (%edi), %ecx
175 testl %ecx, %ecx
176 jz 2f
177 addl %ebx, -__PAGE_OFFSET(%ebx, %ecx)
178 jmp 1b
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001792:
180#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182/*
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100183 * Jump to the decompressed kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 */
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700185 xorl %ebx, %ebx
186 jmp *%ebp
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100187
H. Peter Anvin5f64ec62009-05-08 15:45:17 -0700188/*
189 * Stack and heap for uncompression
190 */
191 .bss
192 .balign 4
Alexander van Heukelum7c539762008-04-08 12:54:30 +0200193boot_heap:
194 .fill BOOT_HEAP_SIZE, 1, 0
195boot_stack:
196 .fill BOOT_STACK_SIZE, 1, 0
197boot_stack_end: