Merge tag 'next-20220328' of https://source.denx.de/u-boot/custodians/u-boot-video...
[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 /* Default environment */
66 #define CONFIG_ROOTPATH         "/opt/nfsroot"
67 #define CONFIG_HOSTNAME         "x86"
68 #define CONFIG_RAMDISK_ADDR     0x4000000
69 #if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
70 #define CONFIG_OTHBOOTARGS      "othbootargs=\0"
71 #else
72 #define CONFIG_OTHBOOTARGS      "othbootargs=acpi=off\0"
73 #endif
74
75 #if defined(CONFIG_DISTRO_DEFAULTS)
76 #define DISTRO_BOOTENV          BOOTENV
77 #else
78 #define DISTRO_BOOTENV
79 #endif
80
81 #ifndef SPLASH_SETTINGS
82 #define SPLASH_SETTINGS
83 #endif
84
85 #define CONFIG_EXTRA_ENV_SETTINGS                       \
86         DISTRO_BOOTENV                                  \
87         CONFIG_STD_DEVICES_SETTINGS                     \
88         SPLASH_SETTINGS                                 \
89         "pciconfighost=1\0"                             \
90         "netdev=eth0\0"                                 \
91         "consoledev=ttyS0\0"                            \
92         CONFIG_OTHBOOTARGS                              \
93         "scriptaddr=0x7000000\0"                        \
94         "kernel_addr_r=0x1000000\0"                     \
95         "ramdisk_addr_r=0x4000000\0"                    \
96         "ramdiskfile=initramfs.gz\0"
97
98
99 #endif  /* __CONFIG_H */