From f419c5f554068b6b1996e6e8eb2ae33e37208120 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 2 Sep 2018 16:19:24 -0400 Subject: [PATCH] hw/arm/tosa: Enable all CPU features by using the max target for A-class CPUs This mirrors the current behavior for the AArch64 CPUs, where we also use the max target. --- qemu/hw/arm/tosa.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qemu/hw/arm/tosa.c b/qemu/hw/arm/tosa.c index 76af6b11..bff4473c 100644 --- a/qemu/hw/arm/tosa.c +++ b/qemu/hw/arm/tosa.c @@ -34,7 +34,8 @@ static void tosa_machine_init(struct uc_struct *uc, MachineClass *mc) if (uc->mode & UC_MODE_MCLASS) { mc->default_cpu_type = ARM_CPU_TYPE_NAME("cortex-m3"); } else { - mc->default_cpu_type = ARM_CPU_TYPE_NAME("cortex-a15"); + // Unicorn: Enable all CPU features + mc->default_cpu_type = ARM_CPU_TYPE_NAME("max"); } }