1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Common header file for U-Boot
5 * This file still includes quite a bit of stuff that should be in separate
6 * headers. Please think before adding more things.
7 * Patches to remove things are welcome.
9 * (C) Copyright 2000-2009
10 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
16 #ifndef __ASSEMBLY__ /* put C only stuff in this section */
21 #include <asm-offsets.h>
22 #include <linux/bitops.h>
23 #include <linux/bug.h>
24 #include <linux/delay.h>
25 #include <linux/types.h>
26 #include <linux/printk.h>
27 #include <linux/string.h>
28 #include <linux/stringify.h>
29 #include <asm/ptrace.h>
32 #include <linux/kernel.h>
39 #define CONFIG_SYS_SUPPORT_64BIT_DATA
44 #include <asm/u-boot.h> /* boot information for Linux kernel */
45 #include <asm/global_data.h> /* global data used for startup functions */
47 /* startup functions, used in:
49 * common/init/board_init.c
58 void hang (void) __attribute__ ((noreturn));
60 #include <display_options.h>
62 /* common/cmd_source.c */
63 int source (ulong addr, const char *fit_uname);
65 extern ulong load_addr; /* Default Load Address */
66 extern ulong save_addr; /* Default Save Address */
67 extern ulong save_size; /* Default Save Size */
69 /* common/memsize.c */
70 long get_ram_size (long *, long);
71 phys_size_t get_effective_memsize(void);
73 #if defined(CONFIG_SYS_DRAM_TEST)
75 #endif /* CONFIG_SYS_DRAM_TEST */
86 #include <bootstage.h>
88 #else /* __ASSEMBLY__ */
90 #endif /* __ASSEMBLY__ */
92 /* Put only stuff here that the assembler can digest */
94 #define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1))
97 * check_member() - Check the offset of a structure member
99 * @structure: Name of structure (e.g. global_data)
100 * @member: Name of member (e.g. baudrate)
101 * @offset: Expected offset in bytes
103 #define check_member(structure, member, offset) _Static_assert( \
104 offsetof(struct structure, member) == offset, \
105 "`struct " #structure "` offset for `" #member "` is not " #offset)
107 /* Pull in stuff for the build system */
109 # include <env_internal.h>
112 #endif /* __COMMON_H_ */