From: Catalin Marinas <catalin.marinas@arm.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Will Deacon <will@kernel.org>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, mathieu.poirier@linaro.org
Subject: [GIT PULL] arm64 fixes for 5.17-rc2
Date: Fri, 28 Jan 2022 19:14:29 +0000 [thread overview]
Message-ID: <YfRAlb4M0Su+iyow@arm.com> (raw)
Hi Linus,
Please pull the arm64 fixes below. Thanks.
The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:
Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux tags/arm64-fixes
for you to fetch changes up to 297ae1eb23b04c5a46111ab53c8d0f69af43f402:
arm64: cpufeature: List early Cortex-A510 parts as having broken dbm (2022-01-28 16:15:46 +0000)
----------------------------------------------------------------
arm64 fixes:
- Errata workarounds for Cortex-A510: broken hardware dirty bit
management, detection code for the TRBE (tracing) bugs with the actual
fixes going in via the CoreSight tree.
- Cortex-X2 errata handling for TRBE (inheriting the workarounds from
Cortex-A710).
- Fix ex_handler_load_unaligned_zeropad() to use the correct struct
members.
- A couple of kselftest fixes for FPSIMD.
- Silence the vdso "no previous prototype" warning.
- Mark start_backtrace() notrace and NOKPROBE_SYMBOL.
----------------------------------------------------------------
Anshuman Khandual (6):
arm64: Add Cortex-X2 CPU part definition
arm64: errata: Update ARM64_ERRATUM_[2119858|2224489] with Cortex-X2 ranges
arm64: Add Cortex-A510 CPU part definition
arm64: errata: Add detection for TRBE ignored system register writes
arm64: errata: Add detection for TRBE invalid prohibited states
arm64: errata: Add detection for TRBE trace data corruption
Catalin Marinas (1):
Merge tag 'trbe-cortex-a510-errata' of gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux into for-next/fixes
Evgenii Stepanov (1):
arm64: extable: fix load_unaligned_zeropad() reg indices
James Morse (1):
arm64: cpufeature: List early Cortex-A510 parts as having broken dbm
Mark Brown (2):
kselftest/arm64: Skip VL_INHERIT tests for unsupported vector types
kselftest/arm64: Correct logging of FPSIMD register read via ptrace
Masami Hiramatsu (1):
arm64: Mark start_backtrace() notrace and NOKPROBE_SYMBOL
Vincenzo Frascino (1):
arm64: vdso: Fix "no previous prototype" warning
Documentation/arm64/silicon-errata.rst | 12 ++++
arch/arm64/Kconfig | 81 +++++++++++++++++++++++++--
arch/arm64/include/asm/cputype.h | 4 ++
arch/arm64/kernel/cpu_errata.c | 29 ++++++++++
arch/arm64/kernel/cpufeature.c | 3 +
arch/arm64/kernel/stacktrace.c | 5 +-
arch/arm64/kernel/vdso/Makefile | 5 +-
arch/arm64/mm/extable.c | 4 +-
arch/arm64/tools/cpucaps | 3 +
tools/testing/selftests/arm64/fp/sve-ptrace.c | 11 +++-
10 files changed, 144 insertions(+), 13 deletions(-)
--
Catalin
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Catalin Marinas <catalin.marinas@arm.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Will Deacon <will@kernel.org>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, mathieu.poirier@linaro.org
Subject: [GIT PULL] arm64 fixes for 5.17-rc2
Date: Fri, 28 Jan 2022 19:14:29 +0000 [thread overview]
Message-ID: <YfRAlb4M0Su+iyow@arm.com> (raw)
Hi Linus,
Please pull the arm64 fixes below. Thanks.
The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:
Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux tags/arm64-fixes
for you to fetch changes up to 297ae1eb23b04c5a46111ab53c8d0f69af43f402:
arm64: cpufeature: List early Cortex-A510 parts as having broken dbm (2022-01-28 16:15:46 +0000)
----------------------------------------------------------------
arm64 fixes:
- Errata workarounds for Cortex-A510: broken hardware dirty bit
management, detection code for the TRBE (tracing) bugs with the actual
fixes going in via the CoreSight tree.
- Cortex-X2 errata handling for TRBE (inheriting the workarounds from
Cortex-A710).
- Fix ex_handler_load_unaligned_zeropad() to use the correct struct
members.
- A couple of kselftest fixes for FPSIMD.
- Silence the vdso "no previous prototype" warning.
- Mark start_backtrace() notrace and NOKPROBE_SYMBOL.
----------------------------------------------------------------
Anshuman Khandual (6):
arm64: Add Cortex-X2 CPU part definition
arm64: errata: Update ARM64_ERRATUM_[2119858|2224489] with Cortex-X2 ranges
arm64: Add Cortex-A510 CPU part definition
arm64: errata: Add detection for TRBE ignored system register writes
arm64: errata: Add detection for TRBE invalid prohibited states
arm64: errata: Add detection for TRBE trace data corruption
Catalin Marinas (1):
Merge tag 'trbe-cortex-a510-errata' of gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux into for-next/fixes
Evgenii Stepanov (1):
arm64: extable: fix load_unaligned_zeropad() reg indices
James Morse (1):
arm64: cpufeature: List early Cortex-A510 parts as having broken dbm
Mark Brown (2):
kselftest/arm64: Skip VL_INHERIT tests for unsupported vector types
kselftest/arm64: Correct logging of FPSIMD register read via ptrace
Masami Hiramatsu (1):
arm64: Mark start_backtrace() notrace and NOKPROBE_SYMBOL
Vincenzo Frascino (1):
arm64: vdso: Fix "no previous prototype" warning
Documentation/arm64/silicon-errata.rst | 12 ++++
arch/arm64/Kconfig | 81 +++++++++++++++++++++++++--
arch/arm64/include/asm/cputype.h | 4 ++
arch/arm64/kernel/cpu_errata.c | 29 ++++++++++
arch/arm64/kernel/cpufeature.c | 3 +
arch/arm64/kernel/stacktrace.c | 5 +-
arch/arm64/kernel/vdso/Makefile | 5 +-
arch/arm64/mm/extable.c | 4 +-
arch/arm64/tools/cpucaps | 3 +
tools/testing/selftests/arm64/fp/sve-ptrace.c | 11 +++-
10 files changed, 144 insertions(+), 13 deletions(-)
--
Catalin
next reply other threads:[~2022-01-28 19:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-28 19:14 Catalin Marinas [this message]
2022-01-28 19:14 ` [GIT PULL] arm64 fixes for 5.17-rc2 Catalin Marinas
2022-01-29 12:51 ` pr-tracker-bot
2022-01-29 12:51 ` pr-tracker-bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YfRAlb4M0Su+iyow@arm.com \
--to=catalin.marinas@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.poirier@linaro.org \
--cc=torvalds@linux-foundation.org \
--cc=will@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.