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