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 */
18 typedef volatile unsigned long vu_long;
19 typedef volatile unsigned short vu_short;
20 typedef volatile unsigned char vu_char;
25 #include <asm-offsets.h>
26 #include <linux/bitops.h>
27 #include <linux/bug.h>
28 #include <linux/delay.h>
29 #include <linux/types.h>
30 #include <linux/printk.h>
31 #include <linux/string.h>
32 #include <linux/stringify.h>
33 #include <asm/ptrace.h>
36 #include <linux/kernel.h>
43 #define CONFIG_SYS_SUPPORT_64BIT_DATA
48 #include <asm/u-boot.h> /* boot information for Linux kernel */
49 #include <asm/global_data.h> /* global data used for startup functions */
51 /* startup functions, used in:
53 * common/init/board_init.c
62 void hang (void) __attribute__ ((noreturn));
64 #include <display_options.h>
67 * arch_fixup_fdt() - Write arch-specific information to fdt
69 * Defined in arch/$(ARCH)/lib/bootm-fdt.c
71 * @blob: FDT blob to write to
72 * @return 0 if ok, or -ve FDT_ERR_... on failure
74 int arch_fixup_fdt(void *blob);
76 /* common/cmd_source.c */
77 int source (ulong addr, const char *fit_uname);
79 extern ulong load_addr; /* Default Load Address */
80 extern ulong save_addr; /* Default Save Address */
81 extern ulong save_size; /* Default Save Size */
83 /* common/cmd_fat.c */
84 int do_fat_fsload(cmd_tbl_t *, int, int, char * const []);
86 /* common/cmd_ext2.c */
87 int do_ext2load(cmd_tbl_t *, int, int, char * const []);
89 /* common/exports.c */
90 void jumptable_init(void);
92 /* common/kallsysm.c */
93 const char *symbol_lookup(unsigned long addr, unsigned long *caddr);
95 /* common/memsize.c */
96 long get_ram_size (long *, long);
97 phys_size_t get_effective_memsize(void);
99 /* $(BOARD)/$(BOARD).c */
100 void reset_phy (void);
101 void fdc_hw_init (void);
103 #if !defined(CONFIG_ENV_EEPROM_IS_ON_I2C) && defined(CONFIG_SYS_I2C_EEPROM_ADDR)
104 # define CONFIG_SYS_DEF_EEPROM_ADDR CONFIG_SYS_I2C_EEPROM_ADDR
107 #if defined(CONFIG_SYS_DRAM_TEST)
109 #endif /* CONFIG_SYS_DRAM_TEST */
111 #if defined(CONFIG_ARM)
112 void relocate_code(ulong);
114 void relocate_code(ulong, gd_t *, ulong) __attribute__ ((noreturn));
119 void upmconfig (unsigned int, unsigned int *, unsigned int);
120 ulong get_tbclk (void);
121 void reset_misc (void);
122 void reset_cpu (ulong addr);
123 void ft_cpu_setup(void *blob, bd_t *bd);
124 void ft_pci_setup(void *blob, bd_t *bd);
127 int get_clocks (void);
128 ulong get_bus_freq (ulong);
129 int get_serial_clock(void);
135 #include <vsprintf.h>
137 /* lib/net_utils.c */
140 #include <bootstage.h>
142 #else /* __ASSEMBLY__ */
144 #endif /* __ASSEMBLY__ */
146 /* Put only stuff here that the assembler can digest */
149 #define CONFIG_HAS_POST
150 #ifndef CONFIG_POST_ALT_LIST
151 #define CONFIG_POST_STD_LIST
155 #define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1))
158 * check_member() - Check the offset of a structure member
160 * @structure: Name of structure (e.g. global_data)
161 * @member: Name of member (e.g. baudrate)
162 * @offset: Expected offset in bytes
164 #define check_member(structure, member, offset) _Static_assert( \
165 offsetof(struct structure, member) == offset, \
166 "`struct " #structure "` offset for `" #member "` is not " #offset)
168 /* Avoid using CONFIG_EFI_STUB directly as we may boot from other loaders */
169 #ifdef CONFIG_EFI_STUB
170 #define ll_boot_init() false
172 #define ll_boot_init() true
175 /* Pull in stuff for the build system */
177 # include <env_internal.h>
180 #endif /* __COMMON_H_ */