arm: Clear TTBCR before enabling the MMU

Upon reset, this register is supposed to have a value of zero.  But when
booting certain v7 CPUs in QEMU, we enter the kernel with several bits
set, including the EAE bit, which enables ARM's PAE extension.  I'm not
sure if QEMU is setting it or if it's the uboot loader.  Because FreeBSD
doesn't implement that extension and uses regular 32-bit page tables,
the kernel hangs immediately after enabling the MMU.

Just clear everything in TTBCR before enabling the MMU, to match the
reset value.  FreeBSD doesn't toggle anything in that register.

PR:		251187
Reviewed by:	imp
MFC after:	2 weeks
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D36041
This commit is contained in:
Mark Johnston 2022-08-05 16:21:09 -04:00
parent 52a54b96ed
commit e9552d8b45

View File

@ -294,6 +294,13 @@ ASENTRY_NP(init_mmu)
mov r0, #DOMAIN_CLIENT /* Only domain #0 is used */
mcr CP15_DACR(r0)
/*
* Ensure that LPAE is disabled and that TTBR0 is used for translation,
* use a 16KB translation table
*/
mov r0, #0
mcr CP15_TTBCR(r0)
/*
* Set TEX remap registers
* - All is set to uncacheable memory