Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
| 4 | * (C) Copyright 2008 |
| 5 | * Graeme Russ, graeme.russ@gmail.com. |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 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 | */ |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 17 | |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 18 | /* Generic TPM interfaced through LPC bus */ |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 19 | #define CONFIG_TPM_TIS_BASE_ADDRESS 0xfed40000 |
| 20 | |
| 21 | /*----------------------------------------------------------------------- |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 22 | * Serial Configuration |
| 23 | */ |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 24 | |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 25 | /* |
| 26 | * Miscellaneous configurable options |
| 27 | */ |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 28 | |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 29 | /*----------------------------------------------------------------------- |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 30 | * CPU Features |
| 31 | */ |
| 32 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 33 | #define CFG_SYS_STACK_SIZE (32 * 1024) |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 34 | |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 35 | /*----------------------------------------------------------------------- |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 36 | * Environment configuration |
| 37 | */ |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 38 | |
| 39 | /*----------------------------------------------------------------------- |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 40 | * USB configuration |
| 41 | */ |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 42 | |
Bin Meng | 6f1eba4 | 2015-03-12 13:08:46 +0800 | [diff] [blame] | 43 | /* Default environment */ |
| 44 | #define CONFIG_ROOTPATH "/opt/nfsroot" |
Mario Six | 5bc0543 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 45 | #define CONFIG_HOSTNAME "x86" |
Bin Meng | 030b9e3 | 2016-05-07 07:46:35 -0700 | [diff] [blame] | 46 | #define CONFIG_RAMDISK_ADDR 0x4000000 |
Bin Meng | a0913cd | 2018-08-23 08:24:11 -0700 | [diff] [blame] | 47 | #if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB) |
Bin Meng | 030b9e3 | 2016-05-07 07:46:35 -0700 | [diff] [blame] | 48 | #define CONFIG_OTHBOOTARGS "othbootargs=\0" |
| 49 | #else |
| 50 | #define CONFIG_OTHBOOTARGS "othbootargs=acpi=off\0" |
| 51 | #endif |
Bin Meng | 6f1eba4 | 2015-03-12 13:08:46 +0800 | [diff] [blame] | 52 | |
Bin Meng | 039c031 | 2019-08-14 01:23:05 -0700 | [diff] [blame] | 53 | #if defined(CONFIG_DISTRO_DEFAULTS) |
| 54 | #define DISTRO_BOOTENV BOOTENV |
| 55 | #else |
| 56 | #define DISTRO_BOOTENV |
Bin Meng | 68d70a1 | 2019-07-28 08:13:58 -0700 | [diff] [blame] | 57 | #endif |
| 58 | |
Simon Glass | e567122 | 2021-11-19 13:24:06 -0700 | [diff] [blame] | 59 | #ifndef SPLASH_SETTINGS |
| 60 | #define SPLASH_SETTINGS |
| 61 | #endif |
| 62 | |
Bin Meng | 6f1eba4 | 2015-03-12 13:08:46 +0800 | [diff] [blame] | 63 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Bin Meng | 039c031 | 2019-08-14 01:23:05 -0700 | [diff] [blame] | 64 | DISTRO_BOOTENV \ |
Bin Meng | 6f1eba4 | 2015-03-12 13:08:46 +0800 | [diff] [blame] | 65 | CONFIG_STD_DEVICES_SETTINGS \ |
Simon Glass | e567122 | 2021-11-19 13:24:06 -0700 | [diff] [blame] | 66 | SPLASH_SETTINGS \ |
Bin Meng | 5466983 | 2015-05-24 00:12:32 +0800 | [diff] [blame] | 67 | "pciconfighost=1\0" \ |
Bin Meng | 6f1eba4 | 2015-03-12 13:08:46 +0800 | [diff] [blame] | 68 | "netdev=eth0\0" \ |
| 69 | "consoledev=ttyS0\0" \ |
Bin Meng | 030b9e3 | 2016-05-07 07:46:35 -0700 | [diff] [blame] | 70 | CONFIG_OTHBOOTARGS \ |
Bin Meng | 68d70a1 | 2019-07-28 08:13:58 -0700 | [diff] [blame] | 71 | "scriptaddr=0x7000000\0" \ |
| 72 | "kernel_addr_r=0x1000000\0" \ |
| 73 | "ramdisk_addr_r=0x4000000\0" \ |
Bin Meng | 039c031 | 2019-08-14 01:23:05 -0700 | [diff] [blame] | 74 | "ramdiskfile=initramfs.gz\0" |
| 75 | |
Bin Meng | 6f1eba4 | 2015-03-12 13:08:46 +0800 | [diff] [blame] | 76 | |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 77 | #endif /* __CONFIG_H */ |