From: Caleb Connolly Date: Mon, 17 Jun 2024 08:03:47 +0000 (+0200) Subject: arm64: mmu.h: fix PTE_TABLE_AP X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=7cc93554142e001d1e3504afe840f4bdf3471736;p=u-boot.git arm64: mmu.h: fix PTE_TABLE_AP The APTable attribute is two bits wide according to the ARMv8-A architecture reference manual. Fix the macro accordingly. Signed-off-by: Caleb Connolly --- diff --git a/arch/arm/include/asm/armv8/mmu.h b/arch/arm/include/asm/armv8/mmu.h index ce655ce7a9..52cb18b9ed 100644 --- a/arch/arm/include/asm/armv8/mmu.h +++ b/arch/arm/include/asm/armv8/mmu.h @@ -51,7 +51,7 @@ #define PTE_TABLE_PXN (1UL << 59) #define PTE_TABLE_XN (1UL << 60) -#define PTE_TABLE_AP (1UL << 61) +#define PTE_TABLE_AP (3UL << 61) #define PTE_TABLE_NS (1UL << 63) /*