aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2020-07-20 10:25:36 +0100
committerPeter Maydell <peter.maydell@linaro.org>2020-07-20 11:35:15 +0100
commit6f4e1405b91da0d0a1084ae3aff2bd308432778f (patch)
tree8a719b20945a96a970dea2a10aa4915edb6f3ba7 /hw
parent873ec69aeb12e24eec7fb317fd0cd8494e8489dd (diff)
downloadqemu-6f4e1405b91da0d0a1084ae3aff2bd308432778f.zip
qemu-6f4e1405b91da0d0a1084ae3aff2bd308432778f.tar.gz
qemu-6f4e1405b91da0d0a1084ae3aff2bd308432778f.tar.bz2
hw/arm/virt: Enable MTE via a machine property
Control this cpu feature via a machine property, much as we do with secure=on, since both require specialized support in the machine setup to be functional. Default MTE to off, since this feature implies extra overhead. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20200713213341.590275-2-richard.henderson@linaro.org Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw')
-rw-r--r--hw/arm/virt.c39
1 files changed, 34 insertions, 5 deletions
diff --git a/hw/arm/virt.c b/hw/arm/virt.c
index 9005dae..5866c4c 100644
--- a/hw/arm/virt.c
+++ b/hw/arm/virt.c
@@ -1837,12 +1837,19 @@ static void machvirt_init(MachineState *machine)
OBJECT(secure_sysmem), &error_abort);
}
- /*
- * The cpu adds the property if and only if MemTag is supported.
- * If it is, we must allocate the ram to back that up.
- */
- if (object_property_find(cpuobj, "tag-memory", NULL)) {
+ if (vms->mte) {
+ /* Create the memory region only once, but link to all cpus. */
if (!tag_sysmem) {
+ /*
+ * The property exists only if MemTag is supported.
+ * If it is, we must allocate the ram to back that up.
+ */
+ if (!object_property_find(cpuobj, "tag-memory", NULL)) {
+ error_report("MTE requested, but not supported "
+ "by the guest CPU");
+ exit(1);
+ }
+
tag_sysmem = g_new(MemoryRegion, 1);
memory_region_init(tag_sysmem, OBJECT(machine),
"tag-memory", UINT64_MAX / 32);
@@ -2061,6 +2068,20 @@ static void virt_set_ras(Object *obj, bool value, Error **errp)
vms->ras = value;
}
+static bool virt_get_mte(Object *obj, Error **errp)
+{
+ VirtMachineState *vms = VIRT_MACHINE(obj);
+
+ return vms->mte;
+}
+
+static void virt_set_mte(Object *obj, bool value, Error **errp)
+{
+ VirtMachineState *vms = VIRT_MACHINE(obj);
+
+ vms->mte = value;
+}
+
static char *virt_get_gic_version(Object *obj, Error **errp)
{
VirtMachineState *vms = VIRT_MACHINE(obj);
@@ -2481,6 +2502,14 @@ static void virt_instance_init(Object *obj)
"Set on/off to enable/disable reporting host memory errors "
"to a KVM guest using ACPI and guest external abort exceptions");
+ /* MTE is disabled by default. */
+ vms->mte = false;
+ object_property_add_bool(obj, "mte", virt_get_mte, virt_set_mte);
+ object_property_set_description(obj, "mte",
+ "Set on/off to enable/disable emulating a "
+ "guest CPU which implements the ARM "
+ "Memory Tagging Extension");
+
vms->irqmap = a15irqmap;
virt_flash_create(vms);