ARM: 9355/2: Add TTBCR_* definitions to pgtable-3level-hwdef.h
authorLinus Walleij <linus.walleij@linaro.org>
Mon, 25 Mar 2024 07:27:00 +0000 (08:27 +0100)
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Thu, 18 Apr 2024 11:10:43 +0000 (12:10 +0100)
These macros will be used in a subsequent patch.

At one point these were part of the ARM32 KVM but that is no
longer the case.

Since these macros are only relevant to LPAE kernel builds, they
are added to pgtable-3level-hwdef.h

Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
arch/arm/include/asm/pgtable-3level-hwdef.h

index 2f35b4e..19da775 100644 (file)
 
 #define TTBR1_SIZE     (((PAGE_OFFSET >> 30) - 1) << 16)
 
+/*
+ * TTBCR register bits.
+ */
+#define TTBCR_EAE              (1 << 31)
+#define TTBCR_IMP              (1 << 30)
+#define TTBCR_SH1_MASK         (3 << 28)
+#define TTBCR_ORGN1_MASK       (3 << 26)
+#define TTBCR_IRGN1_MASK       (3 << 24)
+#define TTBCR_EPD1             (1 << 23)
+#define TTBCR_A1               (1 << 22)
+#define TTBCR_T1SZ_MASK                (7 << 16)
+#define TTBCR_SH0_MASK         (3 << 12)
+#define TTBCR_ORGN0_MASK       (3 << 10)
+#define TTBCR_IRGN0_MASK       (3 << 8)
+#define TTBCR_EPD0             (1 << 7)
+#define TTBCR_T0SZ_MASK                (7 << 0)
+
 #endif