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 | |||||
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 8 | #ifndef __CONFIG_X86_COMMON_H |
9 | #define __CONFIG_X86_COMMON_H | ||||
10 | |||||
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 11 | /*----------------------------------------------------------------------- |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 12 | * USB configuration |
13 | */ | ||||
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 14 | |
Bin Meng | 6f1eba4 | 2015-03-12 13:08:46 +0800 | [diff] [blame] | 15 | /* Default environment */ |
Tom Rini | d4c8dd1 | 2022-12-04 10:13:39 -0500 | [diff] [blame] | 16 | #define CFG_RAMDISK_ADDR 0x4000000 |
Bin Meng | a0913cd | 2018-08-23 08:24:11 -0700 | [diff] [blame] | 17 | #if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB) |
Tom Rini | a2c164c | 2022-12-04 10:13:24 -0500 | [diff] [blame] | 18 | #define CFG_OTHBOOTARGS "othbootargs=\0" |
Bin Meng | 030b9e3 | 2016-05-07 07:46:35 -0700 | [diff] [blame] | 19 | #else |
Tom Rini | a2c164c | 2022-12-04 10:13:24 -0500 | [diff] [blame] | 20 | #define CFG_OTHBOOTARGS "othbootargs=acpi=off\0" |
Bin Meng | 030b9e3 | 2016-05-07 07:46:35 -0700 | [diff] [blame] | 21 | #endif |
Bin Meng | 6f1eba4 | 2015-03-12 13:08:46 +0800 | [diff] [blame] | 22 | |
Simon Glass | e567122 | 2021-11-19 13:24:06 -0700 | [diff] [blame] | 23 | #ifndef SPLASH_SETTINGS |
24 | #define SPLASH_SETTINGS | ||||
25 | #endif | ||||
26 | |||||
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 27 | #define CFG_EXTRA_ENV_SETTINGS \ |
Tom Rini | e02e5e5 | 2022-12-04 10:13:56 -0500 | [diff] [blame] | 28 | CFG_STD_DEVICES_SETTINGS \ |
Simon Glass | e567122 | 2021-11-19 13:24:06 -0700 | [diff] [blame] | 29 | SPLASH_SETTINGS \ |
Bin Meng | 5466983 | 2015-05-24 00:12:32 +0800 | [diff] [blame] | 30 | "pciconfighost=1\0" \ |
Bin Meng | 6f1eba4 | 2015-03-12 13:08:46 +0800 | [diff] [blame] | 31 | "netdev=eth0\0" \ |
32 | "consoledev=ttyS0\0" \ | ||||
Tom Rini | a2c164c | 2022-12-04 10:13:24 -0500 | [diff] [blame] | 33 | CFG_OTHBOOTARGS \ |
Bin Meng | 68d70a1 | 2019-07-28 08:13:58 -0700 | [diff] [blame] | 34 | "scriptaddr=0x7000000\0" \ |
35 | "kernel_addr_r=0x1000000\0" \ | ||||
36 | "ramdisk_addr_r=0x4000000\0" \ | ||||
Bin Meng | 039c031 | 2019-08-14 01:23:05 -0700 | [diff] [blame] | 37 | "ramdiskfile=initramfs.gz\0" |
38 | |||||
Bin Meng | 6f1eba4 | 2015-03-12 13:08:46 +0800 | [diff] [blame] | 39 | |
Simon Glass | 880a3cc | 2014-11-10 18:00:23 -0700 | [diff] [blame] | 40 | #endif /* __CONFIG_H */ |