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 | * |
| 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 | /* |
| 22 | * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996 |
| 23 | */ |
| 24 | .text |
| 25 | |
| 26 | #include <linux/linkage.h> |
| 27 | #include <asm/segment.h> |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 28 | #include <asm/page.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 | |
Segher Boessenkool | c6b33cc | 2007-01-02 11:41:47 +0530 | [diff] [blame] | 32 | .section ".text.head","ax",@progbits |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | .globl startup_32 |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | startup_32: |
Rusty Russell | a24e785 | 2007-10-21 16:41:35 -0700 | [diff] [blame] | 36 | /* check to see if KEEP_SEGMENTS flag is meaningful */ |
| 37 | cmpw $0x207, BP_version(%esi) |
| 38 | jb 1f |
| 39 | |
| 40 | /* test KEEP_SEGMENTS flag to see if the bootloader is asking |
| 41 | * us to not reload segments */ |
| 42 | testb $(1<<6), BP_loadflags(%esi) |
| 43 | jnz 2f |
| 44 | |
| 45 | 1: cli |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | movl $(__BOOT_DS),%eax |
| 47 | movl %eax,%ds |
| 48 | movl %eax,%es |
| 49 | movl %eax,%fs |
| 50 | movl %eax,%gs |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 51 | movl %eax,%ss |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Rusty Russell | a24e785 | 2007-10-21 16:41:35 -0700 | [diff] [blame] | 53 | 2: cld |
| 54 | |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 55 | /* Calculate the delta between where we were compiled to run |
| 56 | * at and where we were actually loaded at. This can only be done |
| 57 | * with a short local call on x86. Nothing else will tell us what |
| 58 | * 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] | 59 | * data at 0x1e4 (defined as a scratch field) are used as the stack |
| 60 | * for this calculation. Only 4 bytes are needed. |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 61 | */ |
H. Peter Anvin | 85414b6 | 2007-07-11 12:18:33 -0700 | [diff] [blame] | 62 | leal (0x1e4+4)(%esi), %esp |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 63 | call 1f |
| 64 | 1: popl %ebp |
| 65 | subl $1b, %ebp |
| 66 | |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 67 | /* %ebp contains the address we are loaded at by the boot loader and %ebx |
| 68 | * contains the address where we should move the kernel image temporarily |
| 69 | * for safe in-place decompression. |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 70 | */ |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 71 | |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 72 | #ifdef CONFIG_RELOCATABLE |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 73 | movl %ebp, %ebx |
| 74 | addl $(CONFIG_PHYSICAL_ALIGN - 1), %ebx |
| 75 | andl $(~(CONFIG_PHYSICAL_ALIGN - 1)), %ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 76 | #else |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 77 | movl $LOAD_PHYSICAL_ADDR, %ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 78 | #endif |
| 79 | |
| 80 | /* Replace the compressed data size with the uncompressed size */ |
| 81 | subl input_len(%ebp), %ebx |
| 82 | movl output_len(%ebp), %eax |
| 83 | addl %eax, %ebx |
| 84 | /* Add 8 bytes for every 32K input block */ |
| 85 | shrl $12, %eax |
| 86 | addl %eax, %ebx |
| 87 | /* Add 32K + 18 bytes of extra slack */ |
| 88 | addl $(32768 + 18), %ebx |
| 89 | /* Align on a 4K boundary */ |
| 90 | addl $4095, %ebx |
| 91 | andl $~4095, %ebx |
| 92 | |
| 93 | /* Copy the compressed kernel to the end of our buffer |
| 94 | * where decompression in place becomes safe. |
| 95 | */ |
| 96 | pushl %esi |
| 97 | leal _end(%ebp), %esi |
| 98 | leal _end(%ebx), %edi |
| 99 | movl $(_end - startup_32), %ecx |
| 100 | std |
| 101 | rep |
| 102 | movsb |
| 103 | cld |
| 104 | popl %esi |
| 105 | |
| 106 | /* Compute the kernel start address. |
| 107 | */ |
| 108 | #ifdef CONFIG_RELOCATABLE |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 109 | addl $(CONFIG_PHYSICAL_ALIGN - 1), %ebp |
| 110 | andl $(~(CONFIG_PHYSICAL_ALIGN - 1)), %ebp |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 111 | #else |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 112 | movl $LOAD_PHYSICAL_ADDR, %ebp |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 113 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
| 115 | /* |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 116 | * Jump to the relocated address. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | */ |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 118 | leal relocated(%ebx), %eax |
| 119 | jmp *%eax |
| 120 | .section ".text" |
| 121 | relocated: |
| 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | /* |
| 124 | * Clear BSS |
| 125 | */ |
| 126 | xorl %eax,%eax |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 127 | leal _edata(%ebx),%edi |
| 128 | leal _end(%ebx), %ecx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | subl %edi,%ecx |
| 130 | cld |
| 131 | rep |
| 132 | stosb |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 133 | |
| 134 | /* |
| 135 | * Setup the stack for the decompressor |
| 136 | */ |
| 137 | leal stack_end(%ebx), %esp |
| 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 | */ |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 142 | movl output_len(%ebx), %eax |
| 143 | pushl %eax |
| 144 | pushl %ebp # output address |
| 145 | movl input_len(%ebx), %eax |
| 146 | pushl %eax # input_len |
| 147 | leal input_data(%ebx), %eax |
| 148 | pushl %eax # input_data |
| 149 | leal _end(%ebx), %eax |
| 150 | pushl %eax # end of the image as third argument |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | pushl %esi # real mode pointer as second arg |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | call decompress_kernel |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 153 | addl $20, %esp |
| 154 | popl %ecx |
| 155 | |
| 156 | #if CONFIG_RELOCATABLE |
| 157 | /* Find the address of the relocations. |
| 158 | */ |
| 159 | movl %ebp, %edi |
| 160 | addl %ecx, %edi |
| 161 | |
| 162 | /* Calculate the delta between where vmlinux was compiled to run |
| 163 | * and where it was actually loaded. |
| 164 | */ |
| 165 | movl %ebp, %ebx |
Vivek Goyal | e69f202 | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 166 | subl $LOAD_PHYSICAL_ADDR, %ebx |
| 167 | jz 2f /* Nothing to be done if loaded at compiled addr. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | /* |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 169 | * Process relocations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | */ |
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 | 1: subl $4, %edi |
| 173 | movl 0(%edi), %ecx |
| 174 | testl %ecx, %ecx |
| 175 | jz 2f |
| 176 | addl %ebx, -__PAGE_OFFSET(%ebx, %ecx) |
| 177 | jmp 1b |
| 178 | 2: |
| 179 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
| 181 | /* |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 182 | * Jump to the decompressed kernel. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | xorl %ebx,%ebx |
Eric W. Biederman | 968de4f | 2006-12-07 02:14:04 +0100 | [diff] [blame] | 185 | jmp *%ebp |
| 186 | |
| 187 | .bss |
| 188 | .balign 4 |
| 189 | stack: |
| 190 | .fill 4096, 1, 0 |
| 191 | stack_end: |