head_32.S 5.54 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds's avatar
Linus Torvalds committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 *  linux/boot/head.S
 *
 *  Copyright (C) 1991, 1992, 1993  Linus Torvalds
 */

/*
 *  head.S contains the 32-bit startup code.
 *
 * NOTE!!! Startup happens at absolute address 0x00001000, which is also where
 * the page directory will exist. The startup code will be overwritten by
 * the page directory. [According to comments etc elsewhere on a compressed
 * kernel it will end up at 0x1000 + 1Mb I hope so as I assume this. - AC]
 *
16
 * Page 0 is deliberately kept safe, since System Management Mode code in
Linus Torvalds's avatar
Linus Torvalds committed
17
 * laptops may need to access the BIOS data stored there.  This is also
18
 * useful for future device drivers that either access the BIOS via VM86
Linus Torvalds's avatar
Linus Torvalds committed
19 20 21 22 23 24
 * mode.
 */

/*
 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
 */
25
	.text
Linus Torvalds's avatar
Linus Torvalds committed
26

27
#include <linux/init.h>
Linus Torvalds's avatar
Linus Torvalds committed
28 29
#include <linux/linkage.h>
#include <asm/segment.h>
30
#include <asm/page_types.h>
31
#include <asm/boot.h>
Rusty Russell's avatar
Rusty Russell committed
32
#include <asm/asm-offsets.h>
33
#include <asm/bootparam.h>
Linus Torvalds's avatar
Linus Torvalds committed
34

35
/*
36 37 38 39
 * These symbols needed to be marked as .hidden to prevent the BFD linker from
 * generating R_386_32 (rather than R_386_RELATIVE) relocations for them when
 * the 32-bit compressed kernel is linked as PIE. This is no longer necessary,
 * but it doesn't hurt to keep them .hidden.
40 41 42
 */
	.hidden _bss
	.hidden _ebss
43
	.hidden _end
44

45
	__HEAD
46
SYM_FUNC_START(startup_32)
47 48
	cld
	cli
Rusty Russell's avatar
Rusty Russell committed
49

50 51
/*
 * Calculate the delta between where we were compiled to run
52 53 54
 * at and where we were actually loaded at.  This can only be done
 * with a short local call on x86.  Nothing  else will tell us what
 * address we are running at.  The reserved chunk of the real-mode
55 56
 * data at 0x1e4 (defined as a scratch field) are used as the stack
 * for this calculation. Only 4 bytes are needed.
57
 */
58 59
	leal	(BP_scratch+4)(%esi), %esp
	call	1f
60
1:	popl	%edx
61
	addl	$_GLOBAL_OFFSET_TABLE_+(.-1b), %edx
62

63
	/* Load new GDT */
64
	leal	gdt@GOTOFF(%edx), %eax
65 66 67 68 69 70 71 72 73 74 75
	movl	%eax, 2(%eax)
	lgdt	(%eax)

	/* Load segment registers with our descriptors */
	movl	$__BOOT_DS, %eax
	movl	%eax, %ds
	movl	%eax, %es
	movl	%eax, %fs
	movl	%eax, %gs
	movl	%eax, %ss

76
/*
77 78 79 80 81 82
 * %edx contains the address we are loaded at by the boot loader (plus the
 * offset to the GOT).  The below code calculates %ebx to be the address where
 * we should move the kernel image temporarily for safe in-place decompression
 * (again, plus the offset to the GOT).
 *
 * %ebp is calculated to be the address that the kernel will be decompressed to.
83
 */
84

85
#ifdef CONFIG_RELOCATABLE
86
	leal	startup_32@GOTOFF(%edx), %ebx
87 88 89 90 91 92 93 94 95 96

#ifdef CONFIG_EFI_STUB
/*
 * If we were loaded via the EFI LoadImage service, startup_32() will be at an
 * offset to the start of the space allocated for the image. efi_pe_entry() will
 * set up image_offset to tell us where the image actually starts, so that we
 * can use the full available buffer.
 *	image_offset = startup_32 - image_base
 * Otherwise image_offset will be zero and has no effect on the calculations.
 */
97
	subl    image_offset@GOTOFF(%edx), %ebx
98 99
#endif

100 101 102 103 104
	movl	BP_kernel_alignment(%esi), %eax
	decl	%eax
	addl    %eax, %ebx
	notl	%eax
	andl    %eax, %ebx
105
	cmpl	$LOAD_PHYSICAL_ADDR, %ebx
106
	jae	1f
107
#endif
108 109
	movl	$LOAD_PHYSICAL_ADDR, %ebx
1:
110

111
	movl	%ebx, %ebp	// Save the output address for later
112
	/* Target address to relocate to for decompression */
113
	addl    BP_init_size(%esi), %ebx
114
	subl    $_end@GOTOFF, %ebx
115

116
	/* Set up the stack */
117
	leal	boot_stack_end@GOTOFF(%ebx), %esp
118

119 120 121 122
	/* Zero EFLAGS */
	pushl	$0
	popfl

123 124
/*
 * Copy the compressed kernel to the end of our buffer
125 126
 * where decompression in place becomes safe.
 */
127
	pushl	%esi
128 129
	leal	(_bss@GOTOFF-4)(%edx), %esi
	leal	(_bss@GOTOFF-4)(%ebx), %edi
130
	movl	$(_bss - startup_32), %ecx
131
	shrl	$2, %ecx
132
	std
133
	rep	movsl
134
	cld
135
	popl	%esi
136

137 138 139
	/*
	 * The GDT may get overwritten either during the copy we just did or
	 * during extract_kernel below. To avoid any issues, repoint the GDTR
140
	 * to the new copy of the GDT.
141
	 */
142
	leal	gdt@GOTOFF(%ebx), %eax
143 144
	movl	%eax, 2(%eax)
	lgdt	(%eax)
145

Linus Torvalds's avatar
Linus Torvalds committed
146
/*
147
 * Jump to the relocated address.
Linus Torvalds's avatar
Linus Torvalds committed
148
 */
149
	leal	.Lrelocated@GOTOFF(%ebx), %eax
150
	jmp	*%eax
151
SYM_FUNC_END(startup_32)
152

153
#ifdef CONFIG_EFI_STUB
154
SYM_FUNC_START(efi32_stub_entry)
155
SYM_FUNC_START_ALIAS(efi_stub_entry)
156
	add	$0x4, %esp
157
	movl	8(%esp), %esi	/* save boot_params pointer */
158
	call	efi_main
159
	/* efi_main returns the possibly relocated address of startup_32 */
160
	jmp	*%eax
161
SYM_FUNC_END(efi32_stub_entry)
162
SYM_FUNC_END_ALIAS(efi_stub_entry)
163 164
#endif

165
	.text
166
SYM_FUNC_START_LOCAL_NOALIGN(.Lrelocated)
167

Linus Torvalds's avatar
Linus Torvalds committed
168
/*
169
 * Clear BSS (stack is currently empty)
Linus Torvalds's avatar
Linus Torvalds committed
170
 */
171
	xorl	%eax, %eax
172 173
	leal	_bss@GOTOFF(%ebx), %edi
	leal	_ebss@GOTOFF(%ebx), %ecx
174
	subl	%edi, %ecx
175 176
	shrl	$2, %ecx
	rep	stosl
177

Linus Torvalds's avatar
Linus Torvalds committed
178
/*
179
 * Do the extraction, and jump to the new kernel..
Linus Torvalds's avatar
Linus Torvalds committed
180
 */
181
				/* push arguments for extract_kernel: */
182
	pushl	$z_output_len	/* decompressed length, end of relocs */
183

184
	pushl	%ebp		/* output address */
185

186
	pushl	$z_input_len	/* input_len */
187
	leal	input_data@GOTOFF(%ebx), %eax
188
	pushl	%eax		/* input_data */
189
	leal	boot_heap@GOTOFF(%ebx), %eax
190 191
	pushl	%eax		/* heap area */
	pushl	%esi		/* real mode pointer */
192
	call	extract_kernel	/* returns kernel location in %eax */
193
	addl	$24, %esp
Linus Torvalds's avatar
Linus Torvalds committed
194 195

/*
196
 * Jump to the extracted kernel.
Linus Torvalds's avatar
Linus Torvalds committed
197
 */
198
	xorl	%ebx, %ebx
199
	jmp	*%eax
200
SYM_FUNC_END(.Lrelocated)
201

202 203 204 205 206 207 208 209 210 211 212
	.data
	.balign	8
SYM_DATA_START_LOCAL(gdt)
	.word	gdt_end - gdt - 1
	.long	0
	.word	0
	.quad	0x0000000000000000	/* Reserved */
	.quad	0x00cf9a000000ffff	/* __KERNEL_CS */
	.quad	0x00cf92000000ffff	/* __KERNEL_DS */
SYM_DATA_END_LABEL(gdt, SYM_L_LOCAL, gdt_end)

213 214 215 216
#ifdef CONFIG_EFI_STUB
SYM_DATA(image_offset, .long 0)
#endif

217 218 219 220 221
/*
 * Stack and heap for uncompression
 */
	.bss
	.balign 4
222 223 224 225 226
boot_heap:
	.fill BOOT_HEAP_SIZE, 1, 0
boot_stack:
	.fill BOOT_STACK_SIZE, 1, 0
boot_stack_end: