Skip to content

Commit 8a58bcd

Browse files
brooniectmarinas
authored andcommitted
arm64/sme: Add ID_AA64SMFR0_EL1 to __read_sysreg_by_encoding()
We need to explicitly enumerate all the ID registers which we rely on for CPU capabilities in __read_sysreg_by_encoding(), ID_AA64SMFR0_EL1 was missed from this list so we trip a BUG() in paths which rely on that function such as CPU hotplug. Add the register. Reported-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Mark Brown <broonie@kernel.org> Tested-by: Marek Szyprowski <m.szyprowski@samsung.com> Link: https://lore.kernel.org/r/20220427130828.162615-1-broonie@kernel.org Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
1 parent a1f4ccd commit 8a58bcd

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

arch/arm64/kernel/cpufeature.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1336,6 +1336,7 @@ u64 __read_sysreg_by_encoding(u32 sys_id)
13361336
read_sysreg_case(SYS_ID_AA64PFR0_EL1);
13371337
read_sysreg_case(SYS_ID_AA64PFR1_EL1);
13381338
read_sysreg_case(SYS_ID_AA64ZFR0_EL1);
1339+
read_sysreg_case(SYS_ID_AA64SMFR0_EL1);
13391340
read_sysreg_case(SYS_ID_AA64DFR0_EL1);
13401341
read_sysreg_case(SYS_ID_AA64DFR1_EL1);
13411342
read_sysreg_case(SYS_ID_AA64MMFR0_EL1);

0 commit comments

Comments
 (0)