Re: [PATCH v3 13/19] target/arm: Restrict ARMv7 R-profile cpus to TCG accel

2020-03-16 Thread Richard Henderson
On 3/16/20 9:06 AM, Philippe Mathieu-Daudé wrote: > +static void arm_v7r_cpu_register_types(void) > +{ > +const ARMCPUInfo *info = arm_v7r_cpus; > + > +while (info->name) { > +arm_cpu_register(info); > +info++; > +} > +} Likewise wrt ARRAY_SIZE, otherwise, Reviewed-by:

[PATCH v3 13/19] target/arm: Restrict ARMv7 R-profile cpus to TCG accel

2020-03-16 Thread Philippe Mathieu-Daudé
A KVM-only build won't be able to run R-profile cpus. Only enable the following ARMv7 R-Profile CPUs when TCG is available: - Cortex-R5 - Cortex-R5F Signed-off-by: Philippe Mathieu-Daudé --- default-configs/aarch64-softmmu.mak | 1 - target/arm/cpu.c| 51 --