394978b9d905d78658ec3816e5a9f1b9b35e072c
[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_BOOTFILE         "bzImage"
71 #define CONFIG_RAMDISK_ADDR     0x4000000
72 #if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
73 #define CONFIG_OTHBOOTARGS      "othbootargs=\0"
74 #else
75 #define CONFIG_OTHBOOTARGS      "othbootargs=acpi=off\0"
76 #endif
77
78 #if defined(CONFIG_DISTRO_DEFAULTS)
79 #define DISTRO_BOOTENV          BOOTENV
80 #else
81 #define DISTRO_BOOTENV
82 #endif
83
84 #ifndef SPLASH_SETTINGS
85 #define SPLASH_SETTINGS
86 #endif
87
88 #define CONFIG_EXTRA_ENV_SETTINGS                       \
89         DISTRO_BOOTENV                                  \
90         CONFIG_STD_DEVICES_SETTINGS                     \
91         SPLASH_SETTINGS                                 \
92         "pciconfighost=1\0"                             \
93         "netdev=eth0\0"                                 \
94         "consoledev=ttyS0\0"                            \
95         CONFIG_OTHBOOTARGS                              \
96         "scriptaddr=0x7000000\0"                        \
97         "kernel_addr_r=0x1000000\0"                     \
98         "ramdisk_addr_r=0x4000000\0"                    \
99         "ramdiskfile=initramfs.gz\0"
100
101
102 #endif  /* __CONFIG_H */