mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-11 13:56:30 +00:00
7e21fbca26
Some times gcc may generate data that is then used within code that may be part of an efi runtime section. That data could be jump tables, constants or strings. In order to make sure we catch these, we need to ensure that gcc emits them into a section that we can relocate together with all the other efi runtime bits. This only works if the -ffunction-sections and -fdata-sections flags are passed and the efi runtime functions are in a section that starts with ".text". Up to now we had all efi runtime bits in sections that did not interfere with the normal section naming scheme, but this forces us to do so. Hence we need to move the efi_loader text/data/rodata sections before the global *(.text*) catch-all section. With this patch in place, we should hopefully have an easier time to extend the efi runtime functionality in the future. Signed-off-by: Alexander Graf <agraf@suse.de> [agraf: Fix x86_64 breakage]
27 lines
475 B
ArmAsm
27 lines
475 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* 64-bit x86 Startup Code
|
|
*
|
|
* (C) Copyright 216 Google, Inc
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
.section .text.start
|
|
.code64
|
|
.globl _start
|
|
.type _start, @function
|
|
_start:
|
|
/* Set up memory using the existing stack */
|
|
mov %rsp, %rdi
|
|
call board_init_f_alloc_reserve
|
|
mov %rax, %rsp
|
|
|
|
call board_init_f_init_reserve
|
|
|
|
call board_init_f
|
|
call board_init_f_r
|
|
|
|
/* Should not return here */
|
|
jmp .
|