blob: 857879711c6a83574a12299501bb56e2687d3db8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Albert ARIBAUD3ebd1cb2013-02-25 00:58:59 +00002/*
3 * Copyright 2013 Albert ARIBAUD <albert.u.boot@aribaud.net>
Albert ARIBAUD3ebd1cb2013-02-25 00:58:59 +00004 */
Marek BehĂșn236f2ec2021-05-20 13:23:52 +02005#include <linux/compiler.h>
Albert ARIBAUD3ebd1cb2013-02-25 00:58:59 +00006
7/**
8 * These two symbols are declared in a C file so that the linker
9 * uses R_ARM_RELATIVE relocation, rather than the R_ARM_ABS32 one
10 * it would use if the symbols were defined in the linker file.
11 * Using only R_ARM_RELATIVE relocation ensures that references to
12 * the symbols are correct after as well as before relocation.
13 *
14 * We need a 0-byte-size type for these symbols, and the compiler
15 * does not allow defining objects of C type 'void'. Using an empty
16 * struct is allowed by the compiler, but causes gcc versions 4.4 and
17 * below to complain about aliasing. Therefore we use the next best
18 * thing: zero-sized arrays, which are both 0-byte-size and exempt from
19 * aliasing warnings.
20 */
21
Marek BehĂșn236f2ec2021-05-20 13:23:52 +020022char __bss_start[0] __section(".__bss_start");
23char __bss_end[0] __section(".__bss_end");
24char __image_copy_start[0] __section(".__image_copy_start");
25char __image_copy_end[0] __section(".__image_copy_end");
26char __rel_dyn_start[0] __section(".__rel_dyn_start");
27char __rel_dyn_end[0] __section(".__rel_dyn_end");
28char __secure_start[0] __section(".__secure_start");
29char __secure_end[0] __section(".__secure_end");
30char __secure_stack_start[0] __section(".__secure_stack_start");
31char __secure_stack_end[0] __section(".__secure_stack_end");
32char __efi_runtime_start[0] __section(".__efi_runtime_start");
33char __efi_runtime_stop[0] __section(".__efi_runtime_stop");
34char __efi_runtime_rel_start[0] __section(".__efi_runtime_rel_start");
35char __efi_runtime_rel_stop[0] __section(".__efi_runtime_rel_stop");
36char _end[0] __section(".__end");