upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
533 B
35 lines
533 B
#
|
|
# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
config QEMU
|
|
bool
|
|
select ARCH_EARLY_INIT_R
|
|
imply AHCI_PCI
|
|
imply E1000
|
|
imply SCSI_AHCI
|
|
imply SYS_NS16550
|
|
imply USB
|
|
imply USB_EHCI_HCD
|
|
imply VIDEO_VESA
|
|
|
|
if QEMU
|
|
|
|
config SYS_CAR_ADDR
|
|
hex
|
|
default 0x10000
|
|
|
|
config SYS_CAR_SIZE
|
|
hex
|
|
default 0x10000
|
|
|
|
config ACPI_PM1_BASE
|
|
hex
|
|
default 0xe400
|
|
help
|
|
ACPI Power Managment 1 (PM1) i/o-mapped base address.
|
|
This device is defined in ACPI specification, with 16 bytes in size.
|
|
|
|
endif
|
|
|