blob: b6bca53db10d34a2b9b377b9ff2ec310b13cca1f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass9bce37c2013-03-05 14:39:37 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass9bce37c2013-03-05 14:39:37 +00004 */
5
6/* Taken from Linux kernel, commit f56c3196 */
7
8#ifndef _ASM_GENERIC_SECTIONS_H_
9#define _ASM_GENERIC_SECTIONS_H_
10
Sean Anderson9efec312019-12-17 21:22:42 -050011#include <linux/types.h>
12
Simon Glass9bce37c2013-03-05 14:39:37 +000013/* References to section boundaries */
14
15extern char _text[], _stext[], _etext[];
16extern char _data[], _sdata[], _edata[];
17extern char __bss_start[], __bss_stop[];
18extern char __init_begin[], __init_end[];
19extern char _sinittext[], _einittext[];
Simon Glass62cf9122013-04-26 02:53:43 +000020extern char _end[], _init[];
Simon Glass9bce37c2013-03-05 14:39:37 +000021extern char __per_cpu_load[], __per_cpu_start[], __per_cpu_end[];
22extern char __kprobes_text_start[], __kprobes_text_end[];
23extern char __entry_text_start[], __entry_text_end[];
24extern char __initdata_begin[], __initdata_end[];
25extern char __start_rodata[], __end_rodata[];
Heinrich Schuchardt7804ae92017-09-05 03:19:37 +020026extern char __efi_helloworld_begin[];
27extern char __efi_helloworld_end[];
Heinrich Schuchardt4b7d5c12020-07-14 21:25:28 +020028extern char __efi_var_file_begin[];
29extern char __efi_var_file_end[];
Simon Glass9bce37c2013-03-05 14:39:37 +000030
Simon Glass8dee67a2021-03-15 17:25:38 +130031/* Private data used by of-platdata devices/uclasses */
32extern char __priv_data_start[], __priv_data_end[];
33
Simon Glass9bce37c2013-03-05 14:39:37 +000034/* Start and end of .ctors section - used for constructor calls. */
35extern char __ctors_start[], __ctors_end[];
36
Ilias Apalodimas9b378942024-03-15 08:43:47 +020037extern char __efi_runtime_rel_start[], __efi_runtime_rel_stop[];
Ilias Apalodimas048a9ec2024-03-15 08:43:49 +020038extern char __efi_runtime_start[], __efi_runtime_stop[];
Ilias Apalodimas9b378942024-03-15 08:43:47 +020039
Simon Glass9bce37c2013-03-05 14:39:37 +000040/* function descriptor handling (if any). Override
41 * in asm/sections.h */
42#ifndef dereference_function_descriptor
43#define dereference_function_descriptor(p) (p)
44#endif
45
46/* random extra sections (if any). Override
47 * in asm/sections.h */
48#ifndef arch_is_kernel_text
49static inline int arch_is_kernel_text(unsigned long addr)
50{
51 return 0;
52}
53#endif
54
55#ifndef arch_is_kernel_data
56static inline int arch_is_kernel_data(unsigned long addr)
57{
58 return 0;
59}
60#endif
61
62/* U-Boot-specific things begin here */
63
64/* Start of U-Boot text region */
65extern char __text_start[];
66
Shiji Yangbb112342023-08-03 09:47:16 +080067/* This marks the text region which must be relocated */
68extern char __image_copy_start[], __image_copy_end[];
69
70extern char __bss_end[];
71extern char __rel_dyn_start[], __rel_dyn_end[];
72extern char _image_binary_end[];
Simon Glass9bce37c2013-03-05 14:39:37 +000073
74/*
75 * This is the U-Boot entry point - prior to relocation it should be same
76 * as __text_start
77 */
78extern void _start(void);
79
Simon Glass9bce37c2013-03-05 14:39:37 +000080#endif /* _ASM_GENERIC_SECTIONS_H_ */