cbfs: Return the error code from file_cbfs_init()
[oweals/u-boot.git] / include / asm-generic / sections.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2011 The Chromium OS Authors.
4  */
5
6 /* Taken from Linux kernel, commit f56c3196 */
7
8 #ifndef _ASM_GENERIC_SECTIONS_H_
9 #define _ASM_GENERIC_SECTIONS_H_
10
11 #include <linux/types.h>
12
13 /* References to section boundaries */
14
15 extern char _text[], _stext[], _etext[];
16 extern char _data[], _sdata[], _edata[];
17 extern char __bss_start[], __bss_stop[];
18 extern char __init_begin[], __init_end[];
19 extern char _sinittext[], _einittext[];
20 extern char _end[], _init[];
21 extern char __per_cpu_load[], __per_cpu_start[], __per_cpu_end[];
22 extern char __kprobes_text_start[], __kprobes_text_end[];
23 extern char __entry_text_start[], __entry_text_end[];
24 extern char __initdata_begin[], __initdata_end[];
25 extern char __start_rodata[], __end_rodata[];
26 extern char __efi_helloworld_begin[];
27 extern char __efi_helloworld_end[];
28
29 /* Start and end of .ctors section - used for constructor calls. */
30 extern char __ctors_start[], __ctors_end[];
31
32 /* function descriptor handling (if any).  Override
33  * in asm/sections.h */
34 #ifndef dereference_function_descriptor
35 #define dereference_function_descriptor(p) (p)
36 #endif
37
38 /* random extra sections (if any).  Override
39  * in asm/sections.h */
40 #ifndef arch_is_kernel_text
41 static inline int arch_is_kernel_text(unsigned long addr)
42 {
43         return 0;
44 }
45 #endif
46
47 #ifndef arch_is_kernel_data
48 static inline int arch_is_kernel_data(unsigned long addr)
49 {
50         return 0;
51 }
52 #endif
53
54 /* U-Boot-specific things begin here */
55
56 /* Start of U-Boot text region */
57 extern char __text_start[];
58
59 /* This marks the end of the text region which must be relocated */
60 extern char __image_copy_end[];
61
62 /*
63  * This is the U-Boot entry point - prior to relocation it should be same
64  * as __text_start
65  */
66 extern void _start(void);
67
68 /*
69  * ARM defines its symbols as char[]. Other arches define them as ulongs.
70  */
71 #ifdef CONFIG_ARM
72
73 extern char __bss_start[];
74 extern char __bss_end[];
75 extern char __image_copy_start[];
76 extern char __image_copy_end[];
77 extern char _image_binary_end[];
78 extern char __rel_dyn_start[];
79 extern char __rel_dyn_end[];
80
81 #else /* don't use offsets: */
82
83 /* Exports from the Linker Script */
84 extern ulong __data_end;
85 extern ulong __rel_dyn_start;
86 extern ulong __rel_dyn_end;
87 extern ulong __bss_end;
88 extern ulong _image_binary_end;
89
90 extern ulong _TEXT_BASE;        /* code start */
91
92 #endif
93
94 #endif /* _ASM_GENERIC_SECTIONS_H_ */