mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 06:30:39 +00:00
75670c81e4
Migrate the option CONFIG_SPL_FRAMEWORK and make this gate most of the current set of options we have in Kconfig. We will need to have some options available for SPL and !SPL_FRAMEWORK so this is important. In a few cases we re-order existing options so that we have less escapes from the SPL_FRAMEWORK guard. Signed-off-by: Tom Rini <trini@konsulko.com>
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
/*
|
|
* board/config.h - configuration options, board specific
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#include <configs/x86-common.h>
|
|
|
|
#define CONFIG_SYS_MONITOR_LEN (1 << 20)
|
|
|
|
#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd\0" \
|
|
"stdout=serial,vidconsole\0" \
|
|
"stderr=serial,vidconsole\0"
|
|
|
|
/*
|
|
* ATA/SATA support for QEMU x86 targets
|
|
* - Only legacy IDE controller is supported for QEMU '-M pc' target
|
|
* - AHCI controller is supported for QEMU '-M q35' target
|
|
*/
|
|
#define CONFIG_SYS_IDE_MAXBUS 2
|
|
#define CONFIG_SYS_IDE_MAXDEVICE 4
|
|
#define CONFIG_SYS_ATA_BASE_ADDR 0
|
|
#define CONFIG_SYS_ATA_DATA_OFFSET 0
|
|
#define CONFIG_SYS_ATA_REG_OFFSET 0
|
|
#define CONFIG_SYS_ATA_ALT_OFFSET 0
|
|
#define CONFIG_SYS_ATA_IDE0_OFFSET 0x1f0
|
|
#define CONFIG_SYS_ATA_IDE1_OFFSET 0x170
|
|
#define CONFIG_ATAPI
|
|
|
|
/* SPI is not supported */
|
|
|
|
#define CONFIG_SPL_TEXT_BASE 0xfffd0000
|
|
|
|
#define BOOT_DEVICE_SPI 10
|
|
|
|
#define CONFIG_SPL_BOARD_LOAD_IMAGE
|
|
#define BOOT_DEVICE_BOARD 11
|
|
|
|
#endif /* __CONFIG_H */
|