Convert CONFIG_SYS_INTERLAKEN 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 #define CONFIG_SYS_NS16550_PORT_MAPPED
25
26 /*
27  * Miscellaneous configurable options
28  */
29
30 /*-----------------------------------------------------------------------
31  * CPU Features
32  */
33
34 #define CONFIG_SYS_STACK_SIZE                   (32 * 1024)
35
36 /*-----------------------------------------------------------------------
37  * Environment configuration
38  */
39
40 /*-----------------------------------------------------------------------
41  * USB configuration
42  */
43
44 /* Default environment */
45 #define CONFIG_ROOTPATH         "/opt/nfsroot"
46 #define CONFIG_HOSTNAME         "x86"
47 #define CONFIG_RAMDISK_ADDR     0x4000000
48 #if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
49 #define CONFIG_OTHBOOTARGS      "othbootargs=\0"
50 #else
51 #define CONFIG_OTHBOOTARGS      "othbootargs=acpi=off\0"
52 #endif
53
54 #if defined(CONFIG_DISTRO_DEFAULTS)
55 #define DISTRO_BOOTENV          BOOTENV
56 #else
57 #define DISTRO_BOOTENV
58 #endif
59
60 #ifndef SPLASH_SETTINGS
61 #define SPLASH_SETTINGS
62 #endif
63
64 #define CONFIG_EXTRA_ENV_SETTINGS                       \
65         DISTRO_BOOTENV                                  \
66         CONFIG_STD_DEVICES_SETTINGS                     \
67         SPLASH_SETTINGS                                 \
68         "pciconfighost=1\0"                             \
69         "netdev=eth0\0"                                 \
70         "consoledev=ttyS0\0"                            \
71         CONFIG_OTHBOOTARGS                              \
72         "scriptaddr=0x7000000\0"                        \
73         "kernel_addr_r=0x1000000\0"                     \
74         "ramdisk_addr_r=0x4000000\0"                    \
75         "ramdiskfile=initramfs.gz\0"
76
77
78 #endif  /* __CONFIG_H */