Convert CONFIG_FSL_SATA_V2 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
44 /*-----------------------------------------------------------------------
45  * CPU Features
46  */
47
48 #define CONFIG_SYS_STACK_SIZE                   (32 * 1024)
49
50 /*-----------------------------------------------------------------------
51  * Environment configuration
52  */
53
54 /*-----------------------------------------------------------------------
55  * PCI configuration
56  */
57 #define CONFIG_PCI_CONFIG_HOST_BRIDGE
58
59 /*-----------------------------------------------------------------------
60  * USB configuration
61  */
62
63 /* Default environment */
64 #define CONFIG_ROOTPATH         "/opt/nfsroot"
65 #define CONFIG_HOSTNAME         "x86"
66 #define CONFIG_RAMDISK_ADDR     0x4000000
67 #if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
68 #define CONFIG_OTHBOOTARGS      "othbootargs=\0"
69 #else
70 #define CONFIG_OTHBOOTARGS      "othbootargs=acpi=off\0"
71 #endif
72
73 #if defined(CONFIG_DISTRO_DEFAULTS)
74 #define DISTRO_BOOTENV          BOOTENV
75 #else
76 #define DISTRO_BOOTENV
77 #endif
78
79 #ifndef SPLASH_SETTINGS
80 #define SPLASH_SETTINGS
81 #endif
82
83 #define CONFIG_EXTRA_ENV_SETTINGS                       \
84         DISTRO_BOOTENV                                  \
85         CONFIG_STD_DEVICES_SETTINGS                     \
86         SPLASH_SETTINGS                                 \
87         "pciconfighost=1\0"                             \
88         "netdev=eth0\0"                                 \
89         "consoledev=ttyS0\0"                            \
90         CONFIG_OTHBOOTARGS                              \
91         "scriptaddr=0x7000000\0"                        \
92         "kernel_addr_r=0x1000000\0"                     \
93         "ramdisk_addr_r=0x4000000\0"                    \
94         "ramdiskfile=initramfs.gz\0"
95
96
97 #endif  /* __CONFIG_H */