mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
06efc8027f
Changelog: https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.15.136
Removed bcm53xx patch backported from 5.15.136:
target/linux/bcm53xx/patches-5.15/081-xhci-Keep-interrupt-disabled-in-initialization-until.patch [1]
All other patches automatically rebased.
Build system: x86_64
Build-tested: ramips/tplink_archer-a6-v3
Run-tested: ramips/tplink_archer-a6-v3
1. https://github.com/openwrt/openwrt/pull/13751#issuecomment-1781206937
Signed-off-by: John Audia <therealgraysky@proton.me>
[rmilecki: updated commit description & tested on Luxul XWR-3150]
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
[Refreshed on top of OpenWrt 23.05]
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 5a6368e85d
)
29 lines
851 B
Diff
29 lines
851 B
Diff
From f9692c96f39c68cc42acdf02fb7d262920c3f0e3 Mon Sep 17 00:00:00 2001
|
|
From: Michael Zoran <mzoran@crowfest.net>
|
|
Date: Sat, 11 Feb 2017 01:18:31 -0800
|
|
Subject: [PATCH] ARM64: Force hardware emulation of deprecated
|
|
instructions.
|
|
|
|
---
|
|
arch/arm64/kernel/armv8_deprecated.c | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
--- a/arch/arm64/kernel/armv8_deprecated.c
|
|
+++ b/arch/arm64/kernel/armv8_deprecated.c
|
|
@@ -546,10 +546,15 @@ static void __init register_insn_emulati
|
|
|
|
switch (insn->status) {
|
|
case INSN_DEPRECATED:
|
|
+#if 0
|
|
insn->current_mode = INSN_EMULATE;
|
|
/* Disable the HW mode if it was turned on at early boot time */
|
|
run_all_cpu_set_hw_mode(insn, false);
|
|
+#else
|
|
+ insn->current_mode = INSN_HW;
|
|
+ run_all_cpu_set_hw_mode(insn, true);
|
|
insn->max = INSN_HW;
|
|
+#endif
|
|
break;
|
|
case INSN_OBSOLETE:
|
|
insn->current_mode = INSN_UNDEF;
|