Revision 3dbcea54b3ff706c58f8e8d4470f5e5d3d24a6a0 authored by Mark Rutland on 15 March 2019, 12:22:36 UTC, committed by Catalin Marinas on 19 March 2019, 14:54:24 UTC
Fujitsu erratum 010001 applies to A64FX v0r0 and v1r0, and we try to
handle either by masking MIDR with MIDR_FUJITSU_ERRATUM_010001_MASK
before comparing it to MIDR_FUJITSU_ERRATUM_010001.

Unfortunately, MIDR_FUJITSU_ERRATUM_010001 is constructed incorrectly
using MIDR_VARIANT(), which is intended to extract the variant field
from MIDR_EL1, rather than generate the field in-place. This results in
MIDR_FUJITSU_ERRATUM_010001 being all-ones, and we only match A64FX
v0r0.

This patch uses MIDR_CPU_VAR_REV() to generate an in-place mask for the
variant field, ensuring the we match both v0r0 and v1r0.

Fixes: 3e32131abc311a5c ("arm64: Add workaround for Fujitsu A64FX erratum 010001")
Reported-by: "Okamoto, Takayuki" <tokamoto@jp.fujitsu.com>
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
[catalin.marinas@arm.com: fixed the patch author]
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
1 parent 6a019a9
History
File Mode Size
gameport
joystick
keyboard
misc
mouse
rmi4
serio
tablet
touchscreen
Kconfig -rw-r--r-- 6.0 KB
Makefile -rw-r--r-- 944 bytes
apm-power.c -rw-r--r-- 2.6 KB
evbug.c -rw-r--r-- 2.9 KB
evdev.c -rw-r--r-- 33.2 KB
ff-core.c -rw-r--r-- 9.3 KB
ff-memless.c -rw-r--r-- 14.4 KB
input-compat.c -rw-r--r-- 3.3 KB
input-compat.h -rw-r--r-- 1.7 KB
input-leds.c -rw-r--r-- 5.2 KB
input-mt.c -rw-r--r-- 12.5 KB
input-polldev.c -rw-r--r-- 9.3 KB
input.c -rw-r--r-- 60.7 KB
joydev.c -rw-r--r-- 25.6 KB
matrix-keymap.c -rw-r--r-- 5.7 KB
mousedev.c -rw-r--r-- 25.8 KB
sparse-keymap.c -rw-r--r-- 7.6 KB

back to top