Merge tag 'efi-2020-07-rc6' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
[oweals/u-boot.git] / arch / arm / mach-qemu / Kconfig
1 if ARCH_QEMU
2
3 config SYS_VENDOR
4         default "emulation"
5
6 config SYS_BOARD
7         default "qemu-arm"
8
9 config SYS_CONFIG_NAME
10         default "qemu-arm"
11
12 choice
13         prompt "QEMU ARM architecture"
14         default TARGET_QEMU_ARM_64BIT
15
16 config TARGET_QEMU_ARM_32BIT
17         bool "ARMv7-A, 32bit"
18         select ARCH_SUPPORT_PSCI
19         select CPU_V7A
20         select SYS_ARCH_TIMER
21
22 config TARGET_QEMU_ARM_64BIT
23         bool "ARMv8, 64bit"
24         select ARM64
25
26 endchoice
27
28 endif