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 | |
Tim Abbott | 1dc818c | 2009-09-16 16:44:27 -0400 | [diff] [blame^] | 26 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/linkage.h> |
| 28 | #include <asm/segment.h> |
Jeremy Fitzhardinge | 0341c14 | 2009-02-13 11:14:01 -0800 | [diff] [blame] | 29 | #include <asm/page_types.h> |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 30 | #include <asm/boot.h> |
Rusty Russell | a24e785 | 2007-10-21 16:41:35 -0700 | [diff] [blame] | 31 | #include <asm/asm-offsets.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Tim Abbott | 1dc818c | 2009-09-16 16:44:27 -0400 | [diff] [blame^] | 33 | __HEAD |
Cyrill Gorcunov | cb425af | 2009-02-14 00:50:23 +0300 | [diff] [blame] | 34 | ENTRY(startup_32) |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 35 | cld |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 36 | /* |
| 37 | * Test KEEP_SEGMENTS flag to see if the bootloader is asking |
| 38 | * us to not reload segments |
| 39 | */ |
| 40 | testb $(1<<6), BP_loadflags(%esi) |
| 41 | jnz 1f |
Rusty Russell | a24e785 | 2007-10-21 16:41:35 -0700 | [diff] [blame] | 42 | |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 43 | cli |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 44 | movl $__BOOT_DS, %eax |
| 45 | movl %eax, %ds |
| 46 | movl %eax, %es |
| 47 | movl %eax, %fs |
| 48 | movl %eax, %gs |
| 49 | movl %eax, %ss |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 50 | 1: |
Rusty Russell | a24e785 | 2007-10-21 16:41:35 -0700 | [diff] [blame] | 51 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 52 | /* |
| 53 | * Calculate the delta between where we were compiled to run |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 54 | * at and where we were actually loaded at. This can only be done |
| 55 | * with a short local call on x86. Nothing else will tell us what |
| 56 | * 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] | 57 | * data at 0x1e4 (defined as a scratch field) are used as the stack |
| 58 | * for this calculation. Only 4 bytes are needed. |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 59 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 60 | leal (BP_scratch+4)(%esi), %esp |
| 61 | call 1f |
| 62 | 1: popl %ebp |
| 63 | subl $1b, %ebp |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 64 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 65 | /* |
| 66 | * %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] | 67 | * contains the address where we should move the kernel image temporarily |
| 68 | * for safe in-place decompression. |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 69 | */ |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 70 | |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 71 | #ifdef CONFIG_RELOCATABLE |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 72 | movl %ebp, %ebx |
H. Peter Anvin | 37ba7ab | 2009-05-11 15:56:08 -0700 | [diff] [blame] | 73 | movl BP_kernel_alignment(%esi), %eax |
| 74 | decl %eax |
| 75 | addl %eax, %ebx |
| 76 | notl %eax |
| 77 | andl %eax, %ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 78 | #else |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 79 | movl $LOAD_PHYSICAL_ADDR, %ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 80 | #endif |
| 81 | |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 82 | /* Target address to relocate to for decompression */ |
| 83 | addl $z_extract_offset, %ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 84 | |
H. Peter Anvin | 0a13773 | 2009-05-08 16:27:41 -0700 | [diff] [blame] | 85 | /* Set up the stack */ |
| 86 | leal boot_stack_end(%ebx), %esp |
| 87 | |
H. Peter Anvin | 9754191 | 2009-05-06 17:56:51 -0700 | [diff] [blame] | 88 | /* Zero EFLAGS */ |
| 89 | pushl $0 |
| 90 | popfl |
| 91 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 92 | /* |
| 93 | * Copy the compressed kernel to the end of our buffer |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 94 | * where decompression in place becomes safe. |
| 95 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 96 | pushl %esi |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 97 | leal (_bss-4)(%ebp), %esi |
| 98 | leal (_bss-4)(%ebx), %edi |
H. Peter Anvin | 5b11f1c | 2009-05-08 16:20:34 -0700 | [diff] [blame] | 99 | movl $(_bss - startup_32), %ecx |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 100 | shrl $2, %ecx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 101 | std |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 102 | rep movsl |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 103 | cld |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 104 | popl %esi |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 105 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 106 | /* |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 107 | * Jump to the relocated address. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 109 | leal relocated(%ebx), %eax |
| 110 | jmp *%eax |
Cyrill Gorcunov | cb425af | 2009-02-14 00:50:23 +0300 | [diff] [blame] | 111 | ENDPROC(startup_32) |
| 112 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 113 | .text |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 114 | relocated: |
| 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* |
H. Peter Anvin | 0a13773 | 2009-05-08 16:27:41 -0700 | [diff] [blame] | 117 | * Clear BSS (stack is currently empty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 119 | xorl %eax, %eax |
H. Peter Anvin | 5b11f1c | 2009-05-08 16:20:34 -0700 | [diff] [blame] | 120 | leal _bss(%ebx), %edi |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 121 | leal _ebss(%ebx), %ecx |
| 122 | subl %edi, %ecx |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 123 | shrl $2, %ecx |
| 124 | rep stosl |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 125 | |
| 126 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | * Do the decompression, and jump to the new kernel.. |
| 128 | */ |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 129 | leal z_extract_offset_negative(%ebx), %ebp |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 130 | /* push arguments for decompress_kernel: */ |
| 131 | pushl %ebp /* output address */ |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 132 | pushl $z_input_len /* input_len */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 133 | leal input_data(%ebx), %eax |
| 134 | pushl %eax /* input_data */ |
| 135 | leal boot_heap(%ebx), %eax |
| 136 | pushl %eax /* heap area */ |
| 137 | pushl %esi /* real mode pointer */ |
| 138 | call decompress_kernel |
| 139 | addl $20, %esp |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 140 | |
| 141 | #if CONFIG_RELOCATABLE |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 142 | /* |
| 143 | * Find the address of the relocations. |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 144 | */ |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 145 | leal z_output_len(%ebp), %edi |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 146 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 147 | /* |
| 148 | * Calculate the delta between where vmlinux was compiled to run |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 149 | * and where it was actually loaded. |
| 150 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 151 | movl %ebp, %ebx |
| 152 | subl $LOAD_PHYSICAL_ADDR, %ebx |
| 153 | jz 2f /* Nothing to be done if loaded at compiled addr. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | /* |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 155 | * Process relocations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 158 | 1: subl $4, %edi |
| 159 | movl (%edi), %ecx |
| 160 | testl %ecx, %ecx |
| 161 | jz 2f |
| 162 | addl %ebx, -__PAGE_OFFSET(%ebx, %ecx) |
| 163 | jmp 1b |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 164 | 2: |
| 165 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
| 167 | /* |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 168 | * Jump to the decompressed kernel. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | */ |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 170 | xorl %ebx, %ebx |
| 171 | jmp *%ebp |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 172 | |
H. Peter Anvin | 5f64ec6 | 2009-05-08 15:45:17 -0700 | [diff] [blame] | 173 | /* |
| 174 | * Stack and heap for uncompression |
| 175 | */ |
| 176 | .bss |
| 177 | .balign 4 |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 178 | boot_heap: |
| 179 | .fill BOOT_HEAP_SIZE, 1, 0 |
| 180 | boot_stack: |
| 181 | .fill BOOT_STACK_SIZE, 1, 0 |
| 182 | boot_stack_end: |