Merge tag 'efi-next' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi into...
[platform/kernel/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 BOARD_LATE_INIT
20         select CPU_V7A
21         select SYS_ARCH_TIMER
22
23 config TARGET_QEMU_ARM_64BIT
24         bool "ARMv8, 64bit"
25         select ARM64
26         select BOARD_LATE_INIT
27
28 endchoice
29
30 endif