2005-04-17 05:20:36 +07:00
|
|
|
/*
|
|
|
|
* 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]
|
|
|
|
*
|
2009-05-09 05:45:17 +07:00
|
|
|
* Page 0 is deliberately kept safe, since System Management Mode code in
|
2005-04-17 05:20:36 +07:00
|
|
|
* laptops may need to access the BIOS data stored there. This is also
|
2009-05-09 05:45:17 +07:00
|
|
|
* useful for future device drivers that either access the BIOS via VM86
|
2005-04-17 05:20:36 +07:00
|
|
|
* mode.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
|
|
|
|
*/
|
2009-05-09 05:45:17 +07:00
|
|
|
.text
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2009-09-17 03:44:27 +07:00
|
|
|
#include <linux/init.h>
|
2005-04-17 05:20:36 +07:00
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <asm/segment.h>
|
2009-02-14 02:14:01 +07:00
|
|
|
#include <asm/page_types.h>
|
2006-12-07 08:14:04 +07:00
|
|
|
#include <asm/boot.h>
|
2007-10-22 06:41:35 +07:00
|
|
|
#include <asm/asm-offsets.h>
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2009-09-17 03:44:27 +07:00
|
|
|
__HEAD
|
2009-02-14 04:50:23 +07:00
|
|
|
ENTRY(startup_32)
|
x86, efi: EFI boot stub support
There is currently a large divide between kernel development and the
development of EFI boot loaders. The idea behind this patch is to give
the kernel developers full control over the EFI boot process. As
H. Peter Anvin put it,
"The 'kernel carries its own stub' approach been very successful in
dealing with BIOS, and would make a lot of sense to me for EFI as
well."
This patch introduces an EFI boot stub that allows an x86 bzImage to
be loaded and executed by EFI firmware. The bzImage appears to the
firmware as an EFI application. Luckily there are enough free bits
within the bzImage header so that it can masquerade as an EFI
application, thereby coercing the EFI firmware into loading it and
jumping to its entry point. The beauty of this masquerading approach
is that both BIOS and EFI boot loaders can still load and run the same
bzImage, thereby allowing a single kernel image to work in any boot
environment.
The EFI boot stub supports multiple initrds, but they must exist on
the same partition as the bzImage. Command-line arguments for the
kernel can be appended after the bzImage name when run from the EFI
shell, e.g.
Shell> bzImage console=ttyS0 root=/dev/sdb initrd=initrd.img
v7:
- Fix checkpatch warnings.
v6:
- Try to allocate initrd memory just below hdr->inird_addr_max.
v5:
- load_options_size is UTF-16, which needs dividing by 2 to convert
to the corresponding ASCII size.
v4:
- Don't read more than image->load_options_size
v3:
- Fix following warnings when compiling CONFIG_EFI_STUB=n
arch/x86/boot/tools/build.c: In function ‘main’:
arch/x86/boot/tools/build.c:138:24: warning: unused variable ‘pe_header’
arch/x86/boot/tools/build.c:138:15: warning: unused variable ‘file_sz’
- As reported by Matthew Garrett, some Apple machines have GOPs that
don't have hardware attached. We need to weed these out by
searching for ones that handle the PCIIO protocol.
- Don't allocate memory if no initrds are on cmdline
- Don't trust image->load_options_size
Maarten Lankhorst noted:
- Don't strip first argument when booted from efibootmgr
- Don't allocate too much memory for cmdline
- Don't update cmdline_size, the kernel considers it read-only
- Don't accept '\n' for initrd names
v2:
- File alignment was too large, was 8192 should be 512. Reported by
Maarten Lankhorst on LKML.
- Added UGA support for graphics
- Use VIDEO_TYPE_EFI instead of hard-coded number.
- Move linelength assignment until after we've assigned depth
- Dynamically fill out AddressOfEntryPoint in tools/build.c
- Don't use magic number for GDT/TSS stuff. Requested by Andi Kleen
- The bzImage may need to be relocated as it may have been loaded at
a high address address by the firmware. This was required to get my
macbook booting because the firmware loaded it at 0x7cxxxxxx, which
triggers this error in decompress_kernel(),
if (heap > ((-__PAGE_OFFSET-(128<<20)-1) & 0x7fffffff))
error("Destination address too large");
Cc: Mike Waychison <mikew@google.com>
Cc: Matthew Garrett <mjg@redhat.com>
Tested-by: Henrik Rydberg <rydberg@euromail.se>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Link: http://lkml.kernel.org/r/1321383097.2657.9.camel@mfleming-mobl1.ger.corp.intel.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
2011-12-13 04:27:52 +07:00
|
|
|
#ifdef CONFIG_EFI_STUB
|
2012-04-15 22:06:04 +07:00
|
|
|
jmp preferred_addr
|
|
|
|
|
|
|
|
.balign 0x10
|
x86, efi: EFI boot stub support
There is currently a large divide between kernel development and the
development of EFI boot loaders. The idea behind this patch is to give
the kernel developers full control over the EFI boot process. As
H. Peter Anvin put it,
"The 'kernel carries its own stub' approach been very successful in
dealing with BIOS, and would make a lot of sense to me for EFI as
well."
This patch introduces an EFI boot stub that allows an x86 bzImage to
be loaded and executed by EFI firmware. The bzImage appears to the
firmware as an EFI application. Luckily there are enough free bits
within the bzImage header so that it can masquerade as an EFI
application, thereby coercing the EFI firmware into loading it and
jumping to its entry point. The beauty of this masquerading approach
is that both BIOS and EFI boot loaders can still load and run the same
bzImage, thereby allowing a single kernel image to work in any boot
environment.
The EFI boot stub supports multiple initrds, but they must exist on
the same partition as the bzImage. Command-line arguments for the
kernel can be appended after the bzImage name when run from the EFI
shell, e.g.
Shell> bzImage console=ttyS0 root=/dev/sdb initrd=initrd.img
v7:
- Fix checkpatch warnings.
v6:
- Try to allocate initrd memory just below hdr->inird_addr_max.
v5:
- load_options_size is UTF-16, which needs dividing by 2 to convert
to the corresponding ASCII size.
v4:
- Don't read more than image->load_options_size
v3:
- Fix following warnings when compiling CONFIG_EFI_STUB=n
arch/x86/boot/tools/build.c: In function ‘main’:
arch/x86/boot/tools/build.c:138:24: warning: unused variable ‘pe_header’
arch/x86/boot/tools/build.c:138:15: warning: unused variable ‘file_sz’
- As reported by Matthew Garrett, some Apple machines have GOPs that
don't have hardware attached. We need to weed these out by
searching for ones that handle the PCIIO protocol.
- Don't allocate memory if no initrds are on cmdline
- Don't trust image->load_options_size
Maarten Lankhorst noted:
- Don't strip first argument when booted from efibootmgr
- Don't allocate too much memory for cmdline
- Don't update cmdline_size, the kernel considers it read-only
- Don't accept '\n' for initrd names
v2:
- File alignment was too large, was 8192 should be 512. Reported by
Maarten Lankhorst on LKML.
- Added UGA support for graphics
- Use VIDEO_TYPE_EFI instead of hard-coded number.
- Move linelength assignment until after we've assigned depth
- Dynamically fill out AddressOfEntryPoint in tools/build.c
- Don't use magic number for GDT/TSS stuff. Requested by Andi Kleen
- The bzImage may need to be relocated as it may have been loaded at
a high address address by the firmware. This was required to get my
macbook booting because the firmware loaded it at 0x7cxxxxxx, which
triggers this error in decompress_kernel(),
if (heap > ((-__PAGE_OFFSET-(128<<20)-1) & 0x7fffffff))
error("Destination address too large");
Cc: Mike Waychison <mikew@google.com>
Cc: Matthew Garrett <mjg@redhat.com>
Tested-by: Henrik Rydberg <rydberg@euromail.se>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Link: http://lkml.kernel.org/r/1321383097.2657.9.camel@mfleming-mobl1.ger.corp.intel.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
2011-12-13 04:27:52 +07:00
|
|
|
/*
|
|
|
|
* We don't need the return address, so set up the stack so
|
|
|
|
* efi_main() can find its arugments.
|
|
|
|
*/
|
|
|
|
add $0x4, %esp
|
|
|
|
|
2012-07-19 16:23:48 +07:00
|
|
|
call make_boot_params
|
|
|
|
cmpl $0, %eax
|
|
|
|
je 1f
|
|
|
|
movl 0x4(%esp), %esi
|
|
|
|
movl (%esp), %ecx
|
|
|
|
pushl %eax
|
|
|
|
pushl %esi
|
|
|
|
pushl %ecx
|
|
|
|
|
|
|
|
.org 0x30,0x90
|
x86, efi: EFI boot stub support
There is currently a large divide between kernel development and the
development of EFI boot loaders. The idea behind this patch is to give
the kernel developers full control over the EFI boot process. As
H. Peter Anvin put it,
"The 'kernel carries its own stub' approach been very successful in
dealing with BIOS, and would make a lot of sense to me for EFI as
well."
This patch introduces an EFI boot stub that allows an x86 bzImage to
be loaded and executed by EFI firmware. The bzImage appears to the
firmware as an EFI application. Luckily there are enough free bits
within the bzImage header so that it can masquerade as an EFI
application, thereby coercing the EFI firmware into loading it and
jumping to its entry point. The beauty of this masquerading approach
is that both BIOS and EFI boot loaders can still load and run the same
bzImage, thereby allowing a single kernel image to work in any boot
environment.
The EFI boot stub supports multiple initrds, but they must exist on
the same partition as the bzImage. Command-line arguments for the
kernel can be appended after the bzImage name when run from the EFI
shell, e.g.
Shell> bzImage console=ttyS0 root=/dev/sdb initrd=initrd.img
v7:
- Fix checkpatch warnings.
v6:
- Try to allocate initrd memory just below hdr->inird_addr_max.
v5:
- load_options_size is UTF-16, which needs dividing by 2 to convert
to the corresponding ASCII size.
v4:
- Don't read more than image->load_options_size
v3:
- Fix following warnings when compiling CONFIG_EFI_STUB=n
arch/x86/boot/tools/build.c: In function ‘main’:
arch/x86/boot/tools/build.c:138:24: warning: unused variable ‘pe_header’
arch/x86/boot/tools/build.c:138:15: warning: unused variable ‘file_sz’
- As reported by Matthew Garrett, some Apple machines have GOPs that
don't have hardware attached. We need to weed these out by
searching for ones that handle the PCIIO protocol.
- Don't allocate memory if no initrds are on cmdline
- Don't trust image->load_options_size
Maarten Lankhorst noted:
- Don't strip first argument when booted from efibootmgr
- Don't allocate too much memory for cmdline
- Don't update cmdline_size, the kernel considers it read-only
- Don't accept '\n' for initrd names
v2:
- File alignment was too large, was 8192 should be 512. Reported by
Maarten Lankhorst on LKML.
- Added UGA support for graphics
- Use VIDEO_TYPE_EFI instead of hard-coded number.
- Move linelength assignment until after we've assigned depth
- Dynamically fill out AddressOfEntryPoint in tools/build.c
- Don't use magic number for GDT/TSS stuff. Requested by Andi Kleen
- The bzImage may need to be relocated as it may have been loaded at
a high address address by the firmware. This was required to get my
macbook booting because the firmware loaded it at 0x7cxxxxxx, which
triggers this error in decompress_kernel(),
if (heap > ((-__PAGE_OFFSET-(128<<20)-1) & 0x7fffffff))
error("Destination address too large");
Cc: Mike Waychison <mikew@google.com>
Cc: Matthew Garrett <mjg@redhat.com>
Tested-by: Henrik Rydberg <rydberg@euromail.se>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Link: http://lkml.kernel.org/r/1321383097.2657.9.camel@mfleming-mobl1.ger.corp.intel.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
2011-12-13 04:27:52 +07:00
|
|
|
call efi_main
|
|
|
|
cmpl $0, %eax
|
|
|
|
movl %eax, %esi
|
2012-04-15 22:06:04 +07:00
|
|
|
jne 2f
|
x86, efi: EFI boot stub support
There is currently a large divide between kernel development and the
development of EFI boot loaders. The idea behind this patch is to give
the kernel developers full control over the EFI boot process. As
H. Peter Anvin put it,
"The 'kernel carries its own stub' approach been very successful in
dealing with BIOS, and would make a lot of sense to me for EFI as
well."
This patch introduces an EFI boot stub that allows an x86 bzImage to
be loaded and executed by EFI firmware. The bzImage appears to the
firmware as an EFI application. Luckily there are enough free bits
within the bzImage header so that it can masquerade as an EFI
application, thereby coercing the EFI firmware into loading it and
jumping to its entry point. The beauty of this masquerading approach
is that both BIOS and EFI boot loaders can still load and run the same
bzImage, thereby allowing a single kernel image to work in any boot
environment.
The EFI boot stub supports multiple initrds, but they must exist on
the same partition as the bzImage. Command-line arguments for the
kernel can be appended after the bzImage name when run from the EFI
shell, e.g.
Shell> bzImage console=ttyS0 root=/dev/sdb initrd=initrd.img
v7:
- Fix checkpatch warnings.
v6:
- Try to allocate initrd memory just below hdr->inird_addr_max.
v5:
- load_options_size is UTF-16, which needs dividing by 2 to convert
to the corresponding ASCII size.
v4:
- Don't read more than image->load_options_size
v3:
- Fix following warnings when compiling CONFIG_EFI_STUB=n
arch/x86/boot/tools/build.c: In function ‘main’:
arch/x86/boot/tools/build.c:138:24: warning: unused variable ‘pe_header’
arch/x86/boot/tools/build.c:138:15: warning: unused variable ‘file_sz’
- As reported by Matthew Garrett, some Apple machines have GOPs that
don't have hardware attached. We need to weed these out by
searching for ones that handle the PCIIO protocol.
- Don't allocate memory if no initrds are on cmdline
- Don't trust image->load_options_size
Maarten Lankhorst noted:
- Don't strip first argument when booted from efibootmgr
- Don't allocate too much memory for cmdline
- Don't update cmdline_size, the kernel considers it read-only
- Don't accept '\n' for initrd names
v2:
- File alignment was too large, was 8192 should be 512. Reported by
Maarten Lankhorst on LKML.
- Added UGA support for graphics
- Use VIDEO_TYPE_EFI instead of hard-coded number.
- Move linelength assignment until after we've assigned depth
- Dynamically fill out AddressOfEntryPoint in tools/build.c
- Don't use magic number for GDT/TSS stuff. Requested by Andi Kleen
- The bzImage may need to be relocated as it may have been loaded at
a high address address by the firmware. This was required to get my
macbook booting because the firmware loaded it at 0x7cxxxxxx, which
triggers this error in decompress_kernel(),
if (heap > ((-__PAGE_OFFSET-(128<<20)-1) & 0x7fffffff))
error("Destination address too large");
Cc: Mike Waychison <mikew@google.com>
Cc: Matthew Garrett <mjg@redhat.com>
Tested-by: Henrik Rydberg <rydberg@euromail.se>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Link: http://lkml.kernel.org/r/1321383097.2657.9.camel@mfleming-mobl1.ger.corp.intel.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
2011-12-13 04:27:52 +07:00
|
|
|
1:
|
2012-04-15 22:06:04 +07:00
|
|
|
/* EFI init failed, so hang. */
|
|
|
|
hlt
|
|
|
|
jmp 1b
|
|
|
|
2:
|
|
|
|
call 3f
|
|
|
|
3:
|
x86, efi: EFI boot stub support
There is currently a large divide between kernel development and the
development of EFI boot loaders. The idea behind this patch is to give
the kernel developers full control over the EFI boot process. As
H. Peter Anvin put it,
"The 'kernel carries its own stub' approach been very successful in
dealing with BIOS, and would make a lot of sense to me for EFI as
well."
This patch introduces an EFI boot stub that allows an x86 bzImage to
be loaded and executed by EFI firmware. The bzImage appears to the
firmware as an EFI application. Luckily there are enough free bits
within the bzImage header so that it can masquerade as an EFI
application, thereby coercing the EFI firmware into loading it and
jumping to its entry point. The beauty of this masquerading approach
is that both BIOS and EFI boot loaders can still load and run the same
bzImage, thereby allowing a single kernel image to work in any boot
environment.
The EFI boot stub supports multiple initrds, but they must exist on
the same partition as the bzImage. Command-line arguments for the
kernel can be appended after the bzImage name when run from the EFI
shell, e.g.
Shell> bzImage console=ttyS0 root=/dev/sdb initrd=initrd.img
v7:
- Fix checkpatch warnings.
v6:
- Try to allocate initrd memory just below hdr->inird_addr_max.
v5:
- load_options_size is UTF-16, which needs dividing by 2 to convert
to the corresponding ASCII size.
v4:
- Don't read more than image->load_options_size
v3:
- Fix following warnings when compiling CONFIG_EFI_STUB=n
arch/x86/boot/tools/build.c: In function ‘main’:
arch/x86/boot/tools/build.c:138:24: warning: unused variable ‘pe_header’
arch/x86/boot/tools/build.c:138:15: warning: unused variable ‘file_sz’
- As reported by Matthew Garrett, some Apple machines have GOPs that
don't have hardware attached. We need to weed these out by
searching for ones that handle the PCIIO protocol.
- Don't allocate memory if no initrds are on cmdline
- Don't trust image->load_options_size
Maarten Lankhorst noted:
- Don't strip first argument when booted from efibootmgr
- Don't allocate too much memory for cmdline
- Don't update cmdline_size, the kernel considers it read-only
- Don't accept '\n' for initrd names
v2:
- File alignment was too large, was 8192 should be 512. Reported by
Maarten Lankhorst on LKML.
- Added UGA support for graphics
- Use VIDEO_TYPE_EFI instead of hard-coded number.
- Move linelength assignment until after we've assigned depth
- Dynamically fill out AddressOfEntryPoint in tools/build.c
- Don't use magic number for GDT/TSS stuff. Requested by Andi Kleen
- The bzImage may need to be relocated as it may have been loaded at
a high address address by the firmware. This was required to get my
macbook booting because the firmware loaded it at 0x7cxxxxxx, which
triggers this error in decompress_kernel(),
if (heap > ((-__PAGE_OFFSET-(128<<20)-1) & 0x7fffffff))
error("Destination address too large");
Cc: Mike Waychison <mikew@google.com>
Cc: Matthew Garrett <mjg@redhat.com>
Tested-by: Henrik Rydberg <rydberg@euromail.se>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Link: http://lkml.kernel.org/r/1321383097.2657.9.camel@mfleming-mobl1.ger.corp.intel.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
2011-12-13 04:27:52 +07:00
|
|
|
popl %eax
|
2012-04-15 22:06:04 +07:00
|
|
|
subl $3b, %eax
|
x86, efi: EFI boot stub support
There is currently a large divide between kernel development and the
development of EFI boot loaders. The idea behind this patch is to give
the kernel developers full control over the EFI boot process. As
H. Peter Anvin put it,
"The 'kernel carries its own stub' approach been very successful in
dealing with BIOS, and would make a lot of sense to me for EFI as
well."
This patch introduces an EFI boot stub that allows an x86 bzImage to
be loaded and executed by EFI firmware. The bzImage appears to the
firmware as an EFI application. Luckily there are enough free bits
within the bzImage header so that it can masquerade as an EFI
application, thereby coercing the EFI firmware into loading it and
jumping to its entry point. The beauty of this masquerading approach
is that both BIOS and EFI boot loaders can still load and run the same
bzImage, thereby allowing a single kernel image to work in any boot
environment.
The EFI boot stub supports multiple initrds, but they must exist on
the same partition as the bzImage. Command-line arguments for the
kernel can be appended after the bzImage name when run from the EFI
shell, e.g.
Shell> bzImage console=ttyS0 root=/dev/sdb initrd=initrd.img
v7:
- Fix checkpatch warnings.
v6:
- Try to allocate initrd memory just below hdr->inird_addr_max.
v5:
- load_options_size is UTF-16, which needs dividing by 2 to convert
to the corresponding ASCII size.
v4:
- Don't read more than image->load_options_size
v3:
- Fix following warnings when compiling CONFIG_EFI_STUB=n
arch/x86/boot/tools/build.c: In function ‘main’:
arch/x86/boot/tools/build.c:138:24: warning: unused variable ‘pe_header’
arch/x86/boot/tools/build.c:138:15: warning: unused variable ‘file_sz’
- As reported by Matthew Garrett, some Apple machines have GOPs that
don't have hardware attached. We need to weed these out by
searching for ones that handle the PCIIO protocol.
- Don't allocate memory if no initrds are on cmdline
- Don't trust image->load_options_size
Maarten Lankhorst noted:
- Don't strip first argument when booted from efibootmgr
- Don't allocate too much memory for cmdline
- Don't update cmdline_size, the kernel considers it read-only
- Don't accept '\n' for initrd names
v2:
- File alignment was too large, was 8192 should be 512. Reported by
Maarten Lankhorst on LKML.
- Added UGA support for graphics
- Use VIDEO_TYPE_EFI instead of hard-coded number.
- Move linelength assignment until after we've assigned depth
- Dynamically fill out AddressOfEntryPoint in tools/build.c
- Don't use magic number for GDT/TSS stuff. Requested by Andi Kleen
- The bzImage may need to be relocated as it may have been loaded at
a high address address by the firmware. This was required to get my
macbook booting because the firmware loaded it at 0x7cxxxxxx, which
triggers this error in decompress_kernel(),
if (heap > ((-__PAGE_OFFSET-(128<<20)-1) & 0x7fffffff))
error("Destination address too large");
Cc: Mike Waychison <mikew@google.com>
Cc: Matthew Garrett <mjg@redhat.com>
Tested-by: Henrik Rydberg <rydberg@euromail.se>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Link: http://lkml.kernel.org/r/1321383097.2657.9.camel@mfleming-mobl1.ger.corp.intel.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
2011-12-13 04:27:52 +07:00
|
|
|
subl BP_pref_address(%esi), %eax
|
|
|
|
add BP_code32_start(%esi), %eax
|
|
|
|
leal preferred_addr(%eax), %eax
|
|
|
|
jmp *%eax
|
|
|
|
|
|
|
|
preferred_addr:
|
|
|
|
#endif
|
2007-10-27 00:29:04 +07:00
|
|
|
cld
|
2009-05-09 05:45:17 +07:00
|
|
|
/*
|
|
|
|
* Test KEEP_SEGMENTS flag to see if the bootloader is asking
|
|
|
|
* us to not reload segments
|
|
|
|
*/
|
|
|
|
testb $(1<<6), BP_loadflags(%esi)
|
|
|
|
jnz 1f
|
2007-10-22 06:41:35 +07:00
|
|
|
|
2007-10-27 00:29:04 +07:00
|
|
|
cli
|
2009-05-09 05:45:17 +07:00
|
|
|
movl $__BOOT_DS, %eax
|
|
|
|
movl %eax, %ds
|
|
|
|
movl %eax, %es
|
|
|
|
movl %eax, %fs
|
|
|
|
movl %eax, %gs
|
|
|
|
movl %eax, %ss
|
2007-10-27 00:29:04 +07:00
|
|
|
1:
|
2007-10-22 06:41:35 +07:00
|
|
|
|
2009-05-09 05:45:17 +07:00
|
|
|
/*
|
|
|
|
* Calculate the delta between where we were compiled to run
|
2006-12-07 08:14:04 +07:00
|
|
|
* 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
|
2007-07-12 02:18:33 +07:00
|
|
|
* data at 0x1e4 (defined as a scratch field) are used as the stack
|
|
|
|
* for this calculation. Only 4 bytes are needed.
|
2006-12-07 08:14:04 +07:00
|
|
|
*/
|
2009-05-09 05:45:17 +07:00
|
|
|
leal (BP_scratch+4)(%esi), %esp
|
|
|
|
call 1f
|
|
|
|
1: popl %ebp
|
|
|
|
subl $1b, %ebp
|
2006-12-07 08:14:04 +07:00
|
|
|
|
2009-05-09 05:45:17 +07:00
|
|
|
/*
|
|
|
|
* %ebp contains the address we are loaded at by the boot loader and %ebx
|
2006-12-07 08:14:04 +07:00
|
|
|
* contains the address where we should move the kernel image temporarily
|
|
|
|
* for safe in-place decompression.
|
2006-12-07 08:14:04 +07:00
|
|
|
*/
|
2006-12-07 08:14:04 +07:00
|
|
|
|
2006-12-07 08:14:04 +07:00
|
|
|
#ifdef CONFIG_RELOCATABLE
|
2009-05-09 05:45:17 +07:00
|
|
|
movl %ebp, %ebx
|
2009-05-12 05:56:08 +07:00
|
|
|
movl BP_kernel_alignment(%esi), %eax
|
|
|
|
decl %eax
|
|
|
|
addl %eax, %ebx
|
|
|
|
notl %eax
|
|
|
|
andl %eax, %ebx
|
2006-12-07 08:14:04 +07:00
|
|
|
#else
|
2009-05-09 05:45:17 +07:00
|
|
|
movl $LOAD_PHYSICAL_ADDR, %ebx
|
2006-12-07 08:14:04 +07:00
|
|
|
#endif
|
|
|
|
|
2009-05-09 07:42:16 +07:00
|
|
|
/* Target address to relocate to for decompression */
|
|
|
|
addl $z_extract_offset, %ebx
|
2006-12-07 08:14:04 +07:00
|
|
|
|
2009-05-09 06:27:41 +07:00
|
|
|
/* Set up the stack */
|
|
|
|
leal boot_stack_end(%ebx), %esp
|
|
|
|
|
2009-05-07 07:56:51 +07:00
|
|
|
/* Zero EFLAGS */
|
|
|
|
pushl $0
|
|
|
|
popfl
|
|
|
|
|
2009-05-09 05:45:17 +07:00
|
|
|
/*
|
|
|
|
* Copy the compressed kernel to the end of our buffer
|
2006-12-07 08:14:04 +07:00
|
|
|
* where decompression in place becomes safe.
|
|
|
|
*/
|
2009-05-09 05:45:17 +07:00
|
|
|
pushl %esi
|
2009-05-09 06:45:15 +07:00
|
|
|
leal (_bss-4)(%ebp), %esi
|
|
|
|
leal (_bss-4)(%ebx), %edi
|
2009-05-09 06:20:34 +07:00
|
|
|
movl $(_bss - startup_32), %ecx
|
2009-05-09 06:45:15 +07:00
|
|
|
shrl $2, %ecx
|
2006-12-07 08:14:04 +07:00
|
|
|
std
|
2009-05-09 06:45:15 +07:00
|
|
|
rep movsl
|
2006-12-07 08:14:04 +07:00
|
|
|
cld
|
2009-05-09 05:45:17 +07:00
|
|
|
popl %esi
|
2006-12-07 08:14:04 +07:00
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
/*
|
2006-12-07 08:14:04 +07:00
|
|
|
* Jump to the relocated address.
|
2005-04-17 05:20:36 +07:00
|
|
|
*/
|
2009-05-09 05:45:17 +07:00
|
|
|
leal relocated(%ebx), %eax
|
|
|
|
jmp *%eax
|
2009-02-14 04:50:23 +07:00
|
|
|
ENDPROC(startup_32)
|
|
|
|
|
2009-05-09 05:45:17 +07:00
|
|
|
.text
|
2006-12-07 08:14:04 +07:00
|
|
|
relocated:
|
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
/*
|
2009-05-09 06:27:41 +07:00
|
|
|
* Clear BSS (stack is currently empty)
|
2005-04-17 05:20:36 +07:00
|
|
|
*/
|
2009-05-09 05:45:17 +07:00
|
|
|
xorl %eax, %eax
|
2009-05-09 06:20:34 +07:00
|
|
|
leal _bss(%ebx), %edi
|
2009-05-09 05:45:17 +07:00
|
|
|
leal _ebss(%ebx), %ecx
|
|
|
|
subl %edi, %ecx
|
2009-05-09 06:45:15 +07:00
|
|
|
shrl $2, %ecx
|
|
|
|
rep stosl
|
2006-12-07 08:14:04 +07:00
|
|
|
|
2010-08-03 05:34:44 +07:00
|
|
|
/*
|
|
|
|
* Adjust our own GOT
|
|
|
|
*/
|
|
|
|
leal _got(%ebx), %edx
|
|
|
|
leal _egot(%ebx), %ecx
|
|
|
|
1:
|
|
|
|
cmpl %ecx, %edx
|
|
|
|
jae 2f
|
|
|
|
addl %ebx, (%edx)
|
|
|
|
addl $4, %edx
|
|
|
|
jmp 1b
|
|
|
|
2:
|
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
/*
|
|
|
|
* Do the decompression, and jump to the new kernel..
|
|
|
|
*/
|
2009-05-09 07:42:16 +07:00
|
|
|
leal z_extract_offset_negative(%ebx), %ebp
|
2009-05-09 05:45:17 +07:00
|
|
|
/* push arguments for decompress_kernel: */
|
|
|
|
pushl %ebp /* output address */
|
2009-05-09 07:42:16 +07:00
|
|
|
pushl $z_input_len /* input_len */
|
2009-05-09 05:45:17 +07:00
|
|
|
leal input_data(%ebx), %eax
|
|
|
|
pushl %eax /* input_data */
|
|
|
|
leal boot_heap(%ebx), %eax
|
|
|
|
pushl %eax /* heap area */
|
|
|
|
pushl %esi /* real mode pointer */
|
|
|
|
call decompress_kernel
|
|
|
|
addl $20, %esp
|
2006-12-07 08:14:04 +07:00
|
|
|
|
|
|
|
#if CONFIG_RELOCATABLE
|
2009-05-09 05:45:17 +07:00
|
|
|
/*
|
|
|
|
* Find the address of the relocations.
|
2006-12-07 08:14:04 +07:00
|
|
|
*/
|
2009-05-09 07:42:16 +07:00
|
|
|
leal z_output_len(%ebp), %edi
|
2006-12-07 08:14:04 +07:00
|
|
|
|
2009-05-09 05:45:17 +07:00
|
|
|
/*
|
|
|
|
* Calculate the delta between where vmlinux was compiled to run
|
2006-12-07 08:14:04 +07:00
|
|
|
* and where it was actually loaded.
|
|
|
|
*/
|
2009-05-09 05:45:17 +07:00
|
|
|
movl %ebp, %ebx
|
|
|
|
subl $LOAD_PHYSICAL_ADDR, %ebx
|
|
|
|
jz 2f /* Nothing to be done if loaded at compiled addr. */
|
2005-04-17 05:20:36 +07:00
|
|
|
/*
|
2006-12-07 08:14:04 +07:00
|
|
|
* Process relocations.
|
2005-04-17 05:20:36 +07:00
|
|
|
*/
|
2006-12-07 08:14:04 +07:00
|
|
|
|
2009-05-09 05:45:17 +07:00
|
|
|
1: subl $4, %edi
|
|
|
|
movl (%edi), %ecx
|
|
|
|
testl %ecx, %ecx
|
|
|
|
jz 2f
|
|
|
|
addl %ebx, -__PAGE_OFFSET(%ebx, %ecx)
|
|
|
|
jmp 1b
|
2006-12-07 08:14:04 +07:00
|
|
|
2:
|
|
|
|
#endif
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
/*
|
2006-12-07 08:14:04 +07:00
|
|
|
* Jump to the decompressed kernel.
|
2005-04-17 05:20:36 +07:00
|
|
|
*/
|
2009-05-09 05:45:17 +07:00
|
|
|
xorl %ebx, %ebx
|
|
|
|
jmp *%ebp
|
2006-12-07 08:14:04 +07:00
|
|
|
|
2009-05-09 05:45:17 +07:00
|
|
|
/*
|
|
|
|
* Stack and heap for uncompression
|
|
|
|
*/
|
|
|
|
.bss
|
|
|
|
.balign 4
|
2008-04-08 17:54:30 +07:00
|
|
|
boot_heap:
|
|
|
|
.fill BOOT_HEAP_SIZE, 1, 0
|
|
|
|
boot_stack:
|
|
|
|
.fill BOOT_STACK_SIZE, 1, 0
|
|
|
|
boot_stack_end:
|