diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2017-02-21 14:37:30 +0000 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2017-04-07 11:22:10 +0100 |
commit | 5a38bcac1f2f0bd0d24700690e36a277ffd0396d (patch) | |
tree | 3e7d1f3b3acf85b176276612940b76111104fdbd /arch/arm64 | |
parent | fa8d815fac96e7c9247783d5a1f8fa4685b3c543 (diff) | |
download | linux-5a38bcac1f2f0bd0d24700690e36a277ffd0396d.tar.gz linux-5a38bcac1f2f0bd0d24700690e36a277ffd0396d.tar.bz2 linux-5a38bcac1f2f0bd0d24700690e36a277ffd0396d.zip |
arm64: arch_timer: Allow erratum matching with ACPI OEM information
Just as we're able to identify a broken platform using some DT
information, let's enable a way to spot the offenders with ACPI.
The difference is that we can only match on some OEM info instead
of implementation-specific properties. So in order to avoid the
insane multiplication of errata structures, we allow an array
of OEM descriptions to be attached to an erratum structure.
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Tested-by: dann frazier <dann.frazier@canonical.com>
Tested-by: Hanjun Guo <hanjun.guo@linaro.org>
Reviewed-by: Hanjun Guo <hanjun.guo@linaro.org>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/include/asm/arch_timer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/arch_timer.h b/arch/arm64/include/asm/arch_timer.h index 6bd1a9a1573a..74d08e44a651 100644 --- a/arch/arm64/include/asm/arch_timer.h +++ b/arch/arm64/include/asm/arch_timer.h @@ -41,6 +41,7 @@ extern struct static_key_false arch_timer_read_ool_enabled; enum arch_timer_erratum_match_type { ate_match_dt, ate_match_local_cap_id, + ate_match_acpi_oem_info, }; struct clock_event_device; |