]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
target-arm: fix write helper for TLBI ALLE1IS
authorSergey Fedorov <serge.fdrv@gmail.com>
Mon, 6 Jul 2015 09:05:43 +0000 (10:05 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 6 Jul 2015 09:05:43 +0000 (10:05 +0100)
TLBI ALLE1IS is an operation that does invalidate TLB entries on all PEs
in the same Inner Sharable domain, not just on the current CPU. So we
must use tlbiall_is_write() here.

Signed-off-by: Sergey Fedorov <serge.fdrv@gmail.com>
Message-id: 1435676538-31345-1-git-send-email-serge.fdrv@gmail.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
target-arm/helper.c

index aa341599cf9ce956040fe645aee4329c5cae1049..b87afe7cdeba73d484291bd2cee5eff9678bc2c5 100644 (file)
@@ -2441,7 +2441,7 @@ static const ARMCPRegInfo v8_cp_reginfo[] = {
     { .name = "TLBI_ALLE1IS", .state = ARM_CP_STATE_AA64,
       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 4,
       .access = PL2_W, .type = ARM_CP_NO_RAW,
-      .writefn = tlbiall_write },
+      .writefn = tlbiall_is_write },
     { .name = "TLBI_VMALLE1IS", .state = ARM_CP_STATE_AA64,
       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 0,
       .access = PL1_W, .type = ARM_CP_NO_RAW,