common: Move and rename CONFIG_SYS_SUPPORT_64BIT_DATA
[oweals/u-boot.git] / include / common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Common header file for U-Boot
4  *
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.
8  *
9  * (C) Copyright 2000-2009
10  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
11  */
12
13 #ifndef __COMMON_H_
14 #define __COMMON_H_     1
15
16 #ifndef __ASSEMBLY__            /* put C only stuff in this section */
17
18 #include <config.h>
19 #include <errno.h>
20 #include <time.h>
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>
30 #include <stdarg.h>
31 #include <stdio.h>
32 #include <linux/kernel.h>
33
34 #include <part.h>
35 #include <flash.h>
36 #include <image.h>
37
38 #include <log.h>
39
40 #include <asm/u-boot.h> /* boot information for Linux kernel */
41 #include <asm/global_data.h>    /* global data used for startup functions */
42
43 /* startup functions, used in:
44  * common/board_f.c
45  * common/init/board_init.c
46  * common/board_r.c
47  * common/board_info.c
48  */
49 #include <init.h>
50
51 #include <display_options.h>
52
53 /* lib/uuid.c */
54 #include <uuid.h>
55
56 /* lib/vsprintf.c */
57 #include <vsprintf.h>
58
59 /* lib/net_utils.c */
60 #include <net.h>
61
62 #include <bootstage.h>
63
64 #else   /* __ASSEMBLY__ */
65
66 #endif  /* __ASSEMBLY__ */
67
68 /* Put only stuff here that the assembler can digest */
69
70 /* Pull in stuff for the build system */
71 #ifdef DO_DEPS_ONLY
72 # include <env_internal.h>
73 #endif
74
75 #endif  /* __COMMON_H_ */