diff options
author | Rouven Czerwinski <r.czerwinski@pengutronix.de> | 2020-11-09 14:44:29 +0100 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2020-11-12 11:44:43 +0100 |
commit | 2e0493a6f6d544770c6c8aa4bc13c7b88553557d (patch) | |
tree | 93eb2726075eeb73c19da6ca8ffa51ca099e3d50 /arch/arm/mach-vexpress | |
parent | 927360595da06dd88103ed8fb9733cea2451dc44 (diff) | |
download | barebox-2e0493a6f6d544770c6c8aa4bc13c7b88553557d.tar.gz barebox-2e0493a6f6d544770c6c8aa4bc13c7b88553557d.tar.xz |
ARM: qemu: add support for qemu virt platform
Necessary support to boot barebox on ARM qemu virt platforms.
No internal device tree, since it is passed by qemu. Therefore it
employs the generic 2nd stage image as the low level code and only adds
a virt specific board driver.
Signed-off-by: Rouven Czerwinski <r.czerwinski@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-vexpress')
-rw-r--r-- | arch/arm/mach-vexpress/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-vexpress/Kconfig b/arch/arm/mach-vexpress/Kconfig index 38b9dffb17..9d301f7ae8 100644 --- a/arch/arm/mach-vexpress/Kconfig +++ b/arch/arm/mach-vexpress/Kconfig @@ -7,5 +7,9 @@ config ARCH_TEXT_BASE config MACH_VEXPRESS bool "ARM Vexpress" +config MACH_VIRT + bool "QEMU virt" + select ARM_PSCI_CLIENT + select BOARD_ARM_GENERIC_DT endif |