1*ab150c2bSThomas Weißschuh# SPDX-License-Identifier: GPL-2.0 2*ab150c2bSThomas Weißschuh 3*ab150c2bSThomas Weißschuhfrom ..qemu_config import QemuArchParams 4*ab150c2bSThomas Weißschuh 5*ab150c2bSThomas WeißschuhQEMU_ARCH = QemuArchParams(linux_arch='arm', 6*ab150c2bSThomas Weißschuh kconfig=''' 7*ab150c2bSThomas WeißschuhCONFIG_CPU_BIG_ENDIAN=y 8*ab150c2bSThomas WeißschuhCONFIG_ARCH_VIRT=y 9*ab150c2bSThomas WeißschuhCONFIG_SERIAL_AMBA_PL010=y 10*ab150c2bSThomas WeißschuhCONFIG_SERIAL_AMBA_PL010_CONSOLE=y 11*ab150c2bSThomas WeißschuhCONFIG_SERIAL_AMBA_PL011=y 12*ab150c2bSThomas WeißschuhCONFIG_SERIAL_AMBA_PL011_CONSOLE=y''', 13*ab150c2bSThomas Weißschuh qemu_arch='arm', 14*ab150c2bSThomas Weißschuh kernel_path='arch/arm/boot/zImage', 15*ab150c2bSThomas Weißschuh kernel_command_line='console=ttyAMA0', 16*ab150c2bSThomas Weißschuh extra_qemu_params=['-machine', 'virt']) 17