diff options
author | Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> | 2024-05-23 18:53:53 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2024-05-30 13:21:06 +0100 |
commit | b1d592e7b0a7301eae8e3baa99744ac35db3cd2a (patch) | |
tree | 326fd088735ccd04d9097ad161d78bd30719da78 /hw/arm | |
parent | c19779ce18229a7a01e276ef68c9ce98998fc113 (diff) | |
download | qemu-b1d592e7b0a7301eae8e3baa99744ac35db3cd2a.zip qemu-b1d592e7b0a7301eae8e3baa99744ac35db3cd2a.tar.gz qemu-b1d592e7b0a7301eae8e3baa99744ac35db3cd2a.tar.bz2 |
arm/sbsa-ref: move to Neoverse-N2 as default
Moving to Neoverse-N2 gives us several cpu features to use for expanding
our platform:
- branch target identification
- pointer authentication
- RME for confidential computing
- RNG for EFI_PROTOCOL_RNG
- SVE being enabled by default
We do not go for "max" as default to have stable set of features enabled
by default. It is still supported and can be selected with "--cpu"
argument.
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Reviewed-by: Leif Lindholm <quic_llindhol@quicinc.com>
Message-id: 20240523165353.6547-1-marcin.juszkiewicz@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm')
-rw-r--r-- | hw/arm/sbsa-ref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/sbsa-ref.c b/hw/arm/sbsa-ref.c index 57c337f..e884692 100644 --- a/hw/arm/sbsa-ref.c +++ b/hw/arm/sbsa-ref.c @@ -891,7 +891,7 @@ static void sbsa_ref_class_init(ObjectClass *oc, void *data) mc->init = sbsa_ref_init; mc->desc = "QEMU 'SBSA Reference' ARM Virtual Machine"; - mc->default_cpu_type = ARM_CPU_TYPE_NAME("neoverse-n1"); + mc->default_cpu_type = ARM_CPU_TYPE_NAME("neoverse-n2"); mc->valid_cpu_types = valid_cpu_types; mc->max_cpus = 512; mc->pci_allow_0_address = true; |