From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonathan Liu Date: Tue, 19 Mar 2019 16:40:07 +1100 Subject: [U-Boot] [PATCH] ARM: HYP/non-sec: Don't enable ARMV7_LPAE for old sunxi kernels Message-ID: <20190319054007.2268-1-net147@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Old sunxi kernels fail to boot with ARMV7_LPAE enabled. Signed-off-by: Jonathan Liu --- arch/arm/cpu/armv7/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/cpu/armv7/Kconfig b/arch/arm/cpu/armv7/Kconfig index 73d57a2aae..cdb7e402b4 100644 --- a/arch/arm/cpu/armv7/Kconfig +++ b/arch/arm/cpu/armv7/Kconfig @@ -53,7 +53,7 @@ config ARMV7_PSCI_NR_CPUS config ARMV7_LPAE bool "Use LPAE page table format" if EXPERT depends on CPU_V7A - default y if ARMV7_VIRT + default y if ARMV7_VIRT && !OLD_SUNXI_KERNEL_COMPAT ---help--- Say Y here to use the long descriptor page table format. This is required if U-Boot runs in HYP mode. -- 2.21.0