Convert CONFIG_PCI_GT64120 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 #define CONFIG_SYS_BOOTM_LEN            (16 << 20)
18
19 /* Generic TPM interfaced through LPC bus */
20 #define CONFIG_TPM_TIS_BASE_ADDRESS        0xfed40000
21
22 /*-----------------------------------------------------------------------
23  * Real Time Clock Configuration
24  */
25 #define CONFIG_SYS_ISA_IO_BASE_ADDRESS  0
26 #define CONFIG_SYS_ISA_IO      CONFIG_SYS_ISA_IO_BASE_ADDRESS
27
28 /*-----------------------------------------------------------------------
29  * Serial Configuration
30  */
31 #define CONFIG_SYS_NS16550_PORT_MAPPED
32
33 /*
34  * Miscellaneous configurable options
35  */
36
37 /*-----------------------------------------------------------------------
38  * CPU Features
39  */
40
41 #define CONFIG_SYS_STACK_SIZE                   (32 * 1024)
42
43 /*-----------------------------------------------------------------------
44  * Environment configuration
45  */
46
47 /*-----------------------------------------------------------------------
48  * PCI configuration
49  */
50 #define CONFIG_PCI_CONFIG_HOST_BRIDGE
51
52 /*-----------------------------------------------------------------------
53  * USB configuration
54  */
55
56 /* Default environment */
57 #define CONFIG_ROOTPATH         "/opt/nfsroot"
58 #define CONFIG_HOSTNAME         "x86"
59 #define CONFIG_RAMDISK_ADDR     0x4000000
60 #if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
61 #define CONFIG_OTHBOOTARGS      "othbootargs=\0"
62 #else
63 #define CONFIG_OTHBOOTARGS      "othbootargs=acpi=off\0"
64 #endif
65
66 #if defined(CONFIG_DISTRO_DEFAULTS)
67 #define DISTRO_BOOTENV          BOOTENV
68 #else
69 #define DISTRO_BOOTENV
70 #endif
71
72 #ifndef SPLASH_SETTINGS
73 #define SPLASH_SETTINGS
74 #endif
75
76 #define CONFIG_EXTRA_ENV_SETTINGS                       \
77         DISTRO_BOOTENV                                  \
78         CONFIG_STD_DEVICES_SETTINGS                     \
79         SPLASH_SETTINGS                                 \
80         "pciconfighost=1\0"                             \
81         "netdev=eth0\0"                                 \
82         "consoledev=ttyS0\0"                            \
83         CONFIG_OTHBOOTARGS                              \
84         "scriptaddr=0x7000000\0"                        \
85         "kernel_addr_r=0x1000000\0"                     \
86         "ramdisk_addr_r=0x4000000\0"                    \
87         "ramdiskfile=initramfs.gz\0"
88
89
90 #endif  /* __CONFIG_H */