Convert CONFIG_HOSTNAME et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / x86-common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2011 The Chromium OS Authors.
4  * (C) Copyright 2008
5  * Graeme Russ, graeme.russ@gmail.com.
6  */
7
8 #include <asm/ibmpc.h>
9
10 #ifndef __CONFIG_X86_COMMON_H
11 #define __CONFIG_X86_COMMON_H
12
13 /*
14  * High Level Configuration Options
15  * (easy to change)
16  */
17
18 /* Generic TPM interfaced through LPC bus */
19 #define CONFIG_TPM_TIS_BASE_ADDRESS        0xfed40000
20
21 /*-----------------------------------------------------------------------
22  * Serial Configuration
23  */
24
25 /*
26  * Miscellaneous configurable options
27  */
28
29 /*-----------------------------------------------------------------------
30  * CPU Features
31  */
32
33 #define CFG_SYS_STACK_SIZE                      (32 * 1024)
34
35 /*-----------------------------------------------------------------------
36  * Environment configuration
37  */
38
39 /*-----------------------------------------------------------------------
40  * USB configuration
41  */
42
43 /* Default environment */
44 #define CONFIG_RAMDISK_ADDR     0x4000000
45 #if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
46 #define CONFIG_OTHBOOTARGS      "othbootargs=\0"
47 #else
48 #define CONFIG_OTHBOOTARGS      "othbootargs=acpi=off\0"
49 #endif
50
51 #if defined(CONFIG_DISTRO_DEFAULTS)
52 #define DISTRO_BOOTENV          BOOTENV
53 #else
54 #define DISTRO_BOOTENV
55 #endif
56
57 #ifndef SPLASH_SETTINGS
58 #define SPLASH_SETTINGS
59 #endif
60
61 #define CONFIG_EXTRA_ENV_SETTINGS                       \
62         DISTRO_BOOTENV                                  \
63         CONFIG_STD_DEVICES_SETTINGS                     \
64         SPLASH_SETTINGS                                 \
65         "pciconfighost=1\0"                             \
66         "netdev=eth0\0"                                 \
67         "consoledev=ttyS0\0"                            \
68         CONFIG_OTHBOOTARGS                              \
69         "scriptaddr=0x7000000\0"                        \
70         "kernel_addr_r=0x1000000\0"                     \
71         "ramdisk_addr_r=0x4000000\0"                    \
72         "ramdiskfile=initramfs.gz\0"
73
74
75 #endif  /* __CONFIG_H */