diff options
author | Will Deacon <will@kernel.org> | 2022-07-25 12:58:10 +0300 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2022-07-25 12:58:10 +0300 |
commit | 92867739e3439ecc9bfa0a106be515d93f14c735 (patch) | |
tree | de0760bee7f4f5f8da5da8d94d995b1d334b7332 /arch/arm64/include/asm/sysreg.h | |
parent | e8da08fc3d329d59a9e338ca6b273fd9e14f7d54 (diff) | |
parent | a6a468f50d6a1fa20bcd023f286713d243f5025d (diff) | |
download | linux-92867739e3439ecc9bfa0a106be515d93f14c735.tar.xz |
Merge branch 'for-next/cpufeature' into for-next/core
* for-next/cpufeature:
arm64/hwcap: Support FEAT_EBF16
arm64/cpufeature: Store elf_hwcaps as a bitmap rather than unsigned long
arm64/hwcap: Document allocation of upper bits of AT_HWCAP
arm64: trap implementation defined functionality in userspace
Diffstat (limited to 'arch/arm64/include/asm/sysreg.h')
-rw-r--r-- | arch/arm64/include/asm/sysreg.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/sysreg.h b/arch/arm64/include/asm/sysreg.h index d7f115368197..7c71358d44c4 100644 --- a/arch/arm64/include/asm/sysreg.h +++ b/arch/arm64/include/asm/sysreg.h @@ -788,6 +788,7 @@ /* id_aa64mmfr1 */ #define ID_AA64MMFR1_ECBHB_SHIFT 60 +#define ID_AA64MMFR1_TIDCP1_SHIFT 52 #define ID_AA64MMFR1_HCX_SHIFT 40 #define ID_AA64MMFR1_AFP_SHIFT 44 #define ID_AA64MMFR1_ETS_SHIFT 36 @@ -804,6 +805,9 @@ #define ID_AA64MMFR1_VMIDBITS_8 0 #define ID_AA64MMFR1_VMIDBITS_16 2 +#define ID_AA64MMFR1_TIDCP1_NI 0 +#define ID_AA64MMFR1_TIDCP1_IMP 1 + /* id_aa64mmfr2 */ #define ID_AA64MMFR2_E0PD_SHIFT 60 #define ID_AA64MMFR2_EVT_SHIFT 56 |