kernel: bump 6.6 to 6.6.24
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.24
Removed upstreamed:
generic/backport-6.6/838-v6.9-leds-trigger-netdev-Fix-kernel-panic-on-interface-re.patch[1]
generic/backport-6.6/981-mtd-spinand-Add-support-for-5-byte-IDs.patch[2]
mediatek/patches-6.6/831-thermal-drivers-mediatek-Fix-control-buffer-enablement-on-MT7896.patch[3]
Removed:
ipq40xx/patches-6.6/110-mtd-limit-OTP-nvmem-to-non-nand-devices.patch[4]
All other patches automatically rebased.
1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.24&id=10f2af1af8ab8a7064f193446abd5579d3def7e3
2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.24&id=9c74507e6c4382d12a5e418742b81fd441f03313
3. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.24&id=fe750e2744428be6aec7395b13df3b34381ce6b6
4. Acknowledgment to @DragonBlurp for pointing out the redundancy of this patch. dd78a59cd7
Build system: x86/64
Build-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3
Run-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3
Signed-off-by: John Audia <therealgraysky@proton.me>
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
},
|
||||
[PORT_NPCM] = {
|
||||
.name = "Nuvoton 16550",
|
||||
@@ -2780,6 +2780,11 @@ serial8250_do_set_termios(struct uart_po
|
||||
@@ -2774,6 +2774,11 @@ serial8250_do_set_termios(struct uart_po
|
||||
unsigned long flags;
|
||||
unsigned int baud, quot, frac = 0;
|
||||
|
||||
|
||||
@@ -1,59 +0,0 @@
|
||||
From patchwork Thu Sep 7 11:20:18 2023
|
||||
Content-Type: text/plain; charset="utf-8"
|
||||
MIME-Version: 1.0
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Patchwork-Submitter: Frank Wunderlich <linux@fw-web.de>
|
||||
X-Patchwork-Id: 13376356
|
||||
From: Frank Wunderlich <linux@fw-web.de>
|
||||
To: linux-mediatek@lists.infradead.org
|
||||
Subject: [PATCH] thermal/drivers/mediatek: Fix control buffer enablement on
|
||||
MT7896
|
||||
Date: Thu, 7 Sep 2023 13:20:18 +0200
|
||||
Message-Id: <20230907112018.52811-1-linux@fw-web.de>
|
||||
X-Mailer: git-send-email 2.34.1
|
||||
MIME-Version: 1.0
|
||||
X-Mail-ID: e7eeb8e1-00de-41f6-a5df-ce2e9164136e
|
||||
X-BeenThere: linux-mediatek@lists.infradead.org
|
||||
X-Mailman-Version: 2.1.34
|
||||
Precedence: list
|
||||
List-Id: <linux-mediatek.lists.infradead.org>
|
||||
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>,
|
||||
"Rafael J. Wysocki" <rafael@kernel.org>, linux-pm@vger.kernel.org,
|
||||
Amit Kucheria <amitk@kernel.org>, Daniel Golle <daniel@makrotopia.org>,
|
||||
stable@vger.kernel.org, linux-kernel@vger.kernel.org,
|
||||
Matthias Brugger <matthias.bgg@gmail.com>, Zhang Rui <rui.zhang@intel.com>,
|
||||
linux-arm-kernel@lists.infradead.org,
|
||||
AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
|
||||
Sender: "Linux-mediatek" <linux-mediatek-bounces@lists.infradead.org>
|
||||
|
||||
From: Frank Wunderlich <frank-w@public-files.de>
|
||||
|
||||
Reading thermal sensor on mt7986 devices returns invalid temperature:
|
||||
|
||||
bpi-r3 ~ # cat /sys/class/thermal/thermal_zone0/temp
|
||||
-274000
|
||||
|
||||
Fix this by adding missing members in mtk_thermal_data struct which were
|
||||
used in mtk_thermal_turn_on_buffer after commit 33140e668b10.
|
||||
|
||||
Cc: stable@vger.kernel.org
|
||||
Fixes: 33140e668b10 ("thermal/drivers/mediatek: Control buffer enablement tweaks")
|
||||
Signed-off-by: Frank Wunderlich <frank-w@public-files.de>
|
||||
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
|
||||
Reviewed-by: Markus Schneider-Pargmann <msp@baylibre.com>
|
||||
---
|
||||
drivers/thermal/mediatek/auxadc_thermal.c | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
--- a/drivers/thermal/mediatek/auxadc_thermal.c
|
||||
+++ b/drivers/thermal/mediatek/auxadc_thermal.c
|
||||
@@ -690,6 +690,9 @@ static const struct mtk_thermal_data mt7
|
||||
.adcpnp = mt7986_adcpnp,
|
||||
.sensor_mux_values = mt7986_mux_values,
|
||||
.version = MTK_THERMAL_V3,
|
||||
+ .apmixed_buffer_ctl_reg = APMIXED_SYS_TS_CON1,
|
||||
+ .apmixed_buffer_ctl_mask = GENMASK(31, 6) | BIT(3),
|
||||
+ .apmixed_buffer_ctl_set = BIT(0),
|
||||
};
|
||||
|
||||
static bool mtk_thermal_temp_is_valid(int temp)
|
||||
Reference in New Issue
Block a user