mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
ddcca73051
This adds support for '-machine virt' on AArch64. This is rather simple: we just add TARGET_QEMU_ARM_xxBIT to select a few different Kconfig symbols, provide the ARMv8 memory map from the board file and add a new defconfig based on the 32-bit defconfig. Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi> Reviewed-by: Tom Rini <trini@konsulko.com>
23 lines
353 B
Text
23 lines
353 B
Text
if ARCH_QEMU
|
|
|
|
config SYS_VENDOR
|
|
default "emulation"
|
|
|
|
config SYS_BOARD
|
|
default "qemu-arm"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "qemu-arm"
|
|
|
|
endif
|
|
|
|
config TARGET_QEMU_ARM_32BIT
|
|
bool "Support qemu_arm"
|
|
depends on ARCH_QEMU
|
|
select CPU_V7
|
|
select ARCH_SUPPORT_PSCI
|
|
|
|
config TARGET_QEMU_ARM_64BIT
|
|
bool "Support qemu_arm64"
|
|
depends on ARCH_QEMU
|
|
select ARM64
|