Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 15 | * Page 0 is deliberately kept safe, since System Management Mode code in |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * laptops may need to access the BIOS data stored there. This is also |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 17 | * useful for future device drivers that either access the BIOS via VM86 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | * mode. |
| 19 | */ |
| 20 | |
| 21 | /* |
| 22 | * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996 |
| 23 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 24 | .text |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | #include <linux/linkage.h> |
| 27 | #include <asm/segment.h> |
Jeremy Fitzhardinge | 0341c14 | 2009-02-13 11:14:01 -0800 | [diff] [blame] | 28 | #include <asm/page_types.h> |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 29 | #include <asm/boot.h> |
Rusty Russell | a24e785 | 2007-10-21 16:41:35 -0700 | [diff] [blame] | 30 | #include <asm/asm-offsets.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 32 | .section ".text.head","ax",@progbits |
Cyrill Gorcunov | cb425af | 2009-02-14 00:50:23 +0300 | [diff] [blame] | 33 | ENTRY(startup_32) |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 34 | cld |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 35 | /* |
| 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 Russell | a24e785 | 2007-10-21 16:41:35 -0700 | [diff] [blame] | 41 | |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 42 | cli |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 43 | 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. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 49 | 1: |
Rusty Russell | a24e785 | 2007-10-21 16:41:35 -0700 | [diff] [blame] | 50 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 51 | /* |
| 52 | * Calculate the delta between where we were compiled to run |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 53 | * 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 Anvin | 85414b6 | 2007-07-11 12:18:33 -0700 | [diff] [blame] | 56 | * data at 0x1e4 (defined as a scratch field) are used as the stack |
| 57 | * for this calculation. Only 4 bytes are needed. |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 58 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 59 | leal (BP_scratch+4)(%esi), %esp |
| 60 | call 1f |
| 61 | 1: popl %ebp |
| 62 | subl $1b, %ebp |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 63 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 64 | /* |
| 65 | * %ebp contains the address we are loaded at by the boot loader and %ebx |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 66 | * contains the address where we should move the kernel image temporarily |
| 67 | * for safe in-place decompression. |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 68 | */ |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 69 | |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 70 | #ifdef CONFIG_RELOCATABLE |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 71 | movl %ebp, %ebx |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 72 | addl $(CONFIG_PHYSICAL_ALIGN - 1), %ebx |
| 73 | andl $(~(CONFIG_PHYSICAL_ALIGN - 1)), %ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 74 | #else |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 75 | movl $LOAD_PHYSICAL_ADDR, %ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 76 | #endif |
| 77 | |
| 78 | /* Replace the compressed data size with the uncompressed size */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 79 | subl input_len(%ebp), %ebx |
| 80 | movl output_len(%ebp), %eax |
| 81 | addl %eax, %ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 82 | /* Add 8 bytes for every 32K input block */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 83 | shrl $12, %eax |
| 84 | addl %eax, %ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 85 | /* Add 32K + 18 bytes of extra slack */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 86 | addl $(32768 + 18), %ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 87 | /* Align on a 4K boundary */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 88 | addl $4095, %ebx |
| 89 | andl $~4095, %ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 90 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 91 | /* |
| 92 | * Copy the compressed kernel to the end of our buffer |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 93 | * where decompression in place becomes safe. |
| 94 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 95 | pushl %esi |
H. Peter Anvin | 5b11f1c | 2009-05-08 16:20:34 -0700 | [diff] [blame^] | 96 | leal _bss(%ebp), %esi |
| 97 | leal _bss(%ebx), %edi |
| 98 | movl $(_bss - startup_32), %ecx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 99 | std |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 100 | rep movsb |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 101 | cld |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 102 | popl %esi |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 103 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 104 | /* |
| 105 | * Compute the kernel start address. |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 106 | */ |
| 107 | #ifdef CONFIG_RELOCATABLE |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 108 | addl $(CONFIG_PHYSICAL_ALIGN - 1), %ebp |
| 109 | andl $(~(CONFIG_PHYSICAL_ALIGN - 1)), %ebp |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 110 | #else |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 111 | movl $LOAD_PHYSICAL_ADDR, %ebp |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 112 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
| 114 | /* |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 115 | * Jump to the relocated address. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 117 | leal relocated(%ebx), %eax |
| 118 | jmp *%eax |
Cyrill Gorcunov | cb425af | 2009-02-14 00:50:23 +0300 | [diff] [blame] | 119 | ENDPROC(startup_32) |
| 120 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 121 | .text |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 122 | relocated: |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | /* |
| 125 | * Clear BSS |
| 126 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 127 | xorl %eax, %eax |
H. Peter Anvin | 5b11f1c | 2009-05-08 16:20:34 -0700 | [diff] [blame^] | 128 | leal _bss(%ebx), %edi |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 129 | leal _ebss(%ebx), %ecx |
| 130 | subl %edi, %ecx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | cld |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 132 | rep stosb |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 133 | |
| 134 | /* |
| 135 | * Setup the stack for the decompressor |
| 136 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 137 | leal boot_stack_end(%ebx), %esp |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | /* |
| 140 | * Do the decompression, and jump to the new kernel.. |
| 141 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 142 | movl output_len(%ebx), %eax |
| 143 | pushl %eax |
| 144 | /* push arguments for decompress_kernel: */ |
| 145 | pushl %ebp /* output address */ |
| 146 | movl input_len(%ebx), %eax |
| 147 | pushl %eax /* input_len */ |
| 148 | leal input_data(%ebx), %eax |
| 149 | pushl %eax /* input_data */ |
| 150 | leal boot_heap(%ebx), %eax |
| 151 | pushl %eax /* heap area */ |
| 152 | pushl %esi /* real mode pointer */ |
| 153 | call decompress_kernel |
| 154 | addl $20, %esp |
| 155 | popl %ecx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 156 | |
| 157 | #if CONFIG_RELOCATABLE |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 158 | /* |
| 159 | * Find the address of the relocations. |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 160 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 161 | movl %ebp, %edi |
| 162 | addl %ecx, %edi |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 163 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 164 | /* |
| 165 | * Calculate the delta between where vmlinux was compiled to run |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 166 | * and where it was actually loaded. |
| 167 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 168 | movl %ebp, %ebx |
| 169 | subl $LOAD_PHYSICAL_ADDR, %ebx |
| 170 | jz 2f /* Nothing to be done if loaded at compiled addr. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | /* |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 172 | * Process relocations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 175 | 1: subl $4, %edi |
| 176 | movl (%edi), %ecx |
| 177 | testl %ecx, %ecx |
| 178 | jz 2f |
| 179 | addl %ebx, -__PAGE_OFFSET(%ebx, %ecx) |
| 180 | jmp 1b |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 181 | 2: |
| 182 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
| 184 | /* |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 185 | * Jump to the decompressed kernel. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 187 | xorl %ebx, %ebx |
| 188 | jmp *%ebp |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 189 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 190 | /* |
| 191 | * Stack and heap for uncompression |
| 192 | */ |
| 193 | .bss |
| 194 | .balign 4 |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 195 | boot_heap: |
| 196 | .fill BOOT_HEAP_SIZE, 1, 0 |
| 197 | boot_stack: |
| 198 | .fill BOOT_STACK_SIZE, 1, 0 |
| 199 | boot_stack_end: |