/*
- * QEMU ARM TCG-only CPUs.
+ * QEMU ARM TCG-only CPUs (not needed for the AArch64 linux-user build)
*
* Copyright (c) 2012 SUSE LINUX Products GmbH
*
#include "cpu.h"
#include "accel/tcg/cpu-ops.h"
#include "internals.h"
-#if !defined(CONFIG_USER_ONLY)
#include "hw/core/boards.h"
-#endif
#include "cpregs.h"
-
-/* CPU models. These are not needed for the AArch64 linux-user build. */
-#if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
-
static void arm926_initfn(Object *obj)
{
ARMCPU *cpu = ARM_CPU(obj);
}
type_init(arm_tcg_cpu_register_types)
-
-#endif /* !CONFIG_USER_ONLY || !TARGET_AARCH64 */
arm_ss.add(when: 'TARGET_AARCH64', if_true: gen_a64)
arm_stubs_ss.add(files('stubs32.c'))
-arm_ss.add(files(
- 'cpu32.c',
-))
-
arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
'gengvec64.c',
'translate-a64.c',
arm_common_system_ss.add(files(
'cpregs-at.c',
+ 'cpu32-system.c',
'gicv5-cpuif.c',
'psci.c',
'tlb_helper.c',