1if ARCH_QEMU
2
3config SYS_VENDOR
4	default "emulation"
5
6config SYS_BOARD
7	default "qemu-arm"
8
9config SYS_CONFIG_NAME
10	default "qemu-arm"
11
12choice
13	prompt "QEMU ARM architecture"
14	default TARGET_QEMU_ARM_64BIT
15
16config 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
23config TARGET_QEMU_ARM_64BIT
24	bool "ARMv8, 64bit"
25	select ARM64
26	select BOARD_LATE_INIT
27
28endchoice
29
30endif
31