aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArve Hjønnevåg <arve@android.com>2012-11-30 17:05:40 -0800
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-04-15 17:25:50 +0200
commit9106e4a432cc6d0eb5f59adf7bae6f93beee8f1f (patch)
treeba65732173d30a5336d1e5af335e67bdb4481a61
parent55da0c430fdbe242c58f2a0099135ca82ea9bdea (diff)
downloadkernel_replicant_linux-9106e4a432cc6d0eb5f59adf7bae6f93beee8f1f.tar.gz
kernel_replicant_linux-9106e4a432cc6d0eb5f59adf7bae6f93beee8f1f.tar.bz2
kernel_replicant_linux-9106e4a432cc6d0eb5f59adf7bae6f93beee8f1f.zip
ANDROID: arm: decompressor: Flush tlb before swiching domain 0 to client mode
If the bootloader used a page table that is incompatible with domain 0 in client mode, and boots with the mmu on, then swithing domain 0 to client mode causes a fault if we don't flush the tlb after updating the page table pointer. v2: Add ISB before loading dacr. Signed-off-by: Arve Hjønnevåg <arve@android.com>
-rw-r--r--arch/arm/boot/compressed/head.S2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/boot/compressed/head.S b/arch/arm/boot/compressed/head.S
index bf79f2f78d23..083e59d474fe 100644
--- a/arch/arm/boot/compressed/head.S
+++ b/arch/arm/boot/compressed/head.S
@@ -896,6 +896,8 @@ __armv7_mmu_cache_on:
bic r6, r6, #1 << 31 @ 32-bit translation system
bic r6, r6, #(7 << 0) | (1 << 4) @ use only ttbr0
mcrne p15, 0, r3, c2, c0, 0 @ load page table pointer
+ mcrne p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
+ mcr p15, 0, r0, c7, c5, 4 @ ISB
mcrne p15, 0, r1, c3, c0, 0 @ load domain access control
mcrne p15, 0, r6, c2, c0, 2 @ load ttb control
#endif