]> Git Repo - qemu.git/commitdiff
target-arm: there is no TTBR1 for 32-bit EL2 stage 1 translations
authorPeter Maydell <[email protected]>
Tue, 25 Aug 2015 14:45:08 +0000 (15:45 +0100)
committerPeter Maydell <[email protected]>
Tue, 25 Aug 2015 14:45:08 +0000 (15:45 +0100)
For EL2 stage 1 translations, there is no TTBR1. We were already
handling this for 64-bit EL2; add the code to take the 'no TTBR1'
code path for 64-bit EL2 as well.

Signed-off-by: Peter Maydell <[email protected]>
Reviewed-by: Edgar E. Iglesias <[email protected]>
Message-id: 1437751263[email protected]

target-arm/helper.c

index 97ca86ad0a8725af5c368328914901effcccecdb..86d0baf2c07e75c47f55ef7a6080dfea7a8de7d9 100644 (file)
@@ -5999,6 +5999,11 @@ static bool get_phys_addr_lpae(CPUARMState *env, target_ulong address,
         if (el > 1) {
             ttbr1_valid = false;
         }
+    } else {
+        /* There is no TTBR1 for EL2 */
+        if (el == 2) {
+            ttbr1_valid = false;
+        }
     }
 
     /* Determine whether this address is in the region controlled by
This page took 0.038187 seconds and 4 git commands to generate.