mirror of
https://github.com/VIKINGYFY/immortalwrt.git
synced 2025-12-16 17:15:26 +00:00
changelogs: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.58 Removed upstreamed patches: 1. target/linux/generic/backport-6.12/612-01-v6.17-net-dsa-tag_brcm-legacy-reorganize-functions.patch Upstream: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.12.58&id=a4daaf063f8269a5881154c5b77c5ef6639d65d3 2. target/linux/qualcommax/patches-6.12/0151-arm64-qcom-ipq6018-nss_port5.patch Upstream: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.12.58&id=9a7a5d50ee2e035325de9c720e4842d6759d2374 3. target/linux/realtek/patches-6.12/020-01-v6.18-timer-rtl-otto-work-around-dying-timers.patch Upstream: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.12.58&id=d0e217b33d42bfe52ef7ef447916a23a586e6e5c 4. target/linux/realtek/patches-6.12/020-03-v6.18-timer-rtl-otto-do-not-interfere-with-interrupts.patch Upstream: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.12.58&id=8cc561dd9d02f1753ae34dfdd565662828be9a9d Additional changes: - Manually adapted bcm27xx patch: * 950-0410-media-i2c-adv7180-Add-support-for-V4L2_CID_LINK_FREQ.patch Rebased and adjusted for kernel 6.12 to fix context conflicts. - Synced lantiq DTS (danube.dtsi) with upstream bindings to fix DT validation issues on kernel 6.12. - Manually adapted DTS to match OpenWrt's lantiq DTS layout. Compile-tested on x86_64 Run-tested on x86_64 Signed-off-by: gongzi miao <miaogongzi0227@gmail.com> Link: https://github.com/openwrt/openwrt/pull/20777 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
63 lines
2.4 KiB
Diff
63 lines
2.4 KiB
Diff
From 9685ce100f0d302501117113ef0a526ad1acca1d Mon Sep 17 00:00:00 2001
|
|
From: Ram Chandrasekar <rkumbako@codeaurora.org>
|
|
Date: Mon, 7 May 2018 11:54:08 -0600
|
|
Subject: [PATCH] drivers: thermal: step_wise: add support for hysteresis
|
|
|
|
Step wise governor increases the mitigation level when the temperature
|
|
goes above a threshold and will decrease the mitigation when the
|
|
temperature falls below the threshold. If it were a case, where the
|
|
temperature hovers around a threshold, the mitigation will be applied
|
|
and removed at every iteration. This reaction to the temperature is
|
|
inefficient for performance.
|
|
|
|
The use of hysteresis temperature could avoid this ping-pong of
|
|
mitigation by relaxing the mitigation to happen only when the
|
|
temperature goes below this lower hysteresis value.
|
|
|
|
Signed-off-by: Ram Chandrasekar <rkumbako@codeaurora.org>
|
|
Signed-off-by: Lina Iyer <ilina@codeaurora.org>
|
|
[forward-ported for Linux 6.6, as stop-gap downstream solution]
|
|
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
|
|
---
|
|
drivers/thermal/gov_step_wise.c | 23 ++++++++++++++++-------
|
|
1 file changed, 16 insertions(+), 7 deletions(-)
|
|
|
|
--- a/drivers/thermal/gov_step_wise.c
|
|
+++ b/drivers/thermal/gov_step_wise.c
|
|
@@ -87,19 +87,28 @@ static void thermal_zone_trip_update(str
|
|
int trip_id = thermal_zone_trip_id(tz, trip);
|
|
struct thermal_instance *instance;
|
|
bool throttle = false;
|
|
+ int hyst_temp;
|
|
|
|
- if (tz->temperature >= trip_threshold) {
|
|
- throttle = true;
|
|
- trace_thermal_zone_trip(tz, trip_id, trip->type);
|
|
- }
|
|
-
|
|
- dev_dbg(&tz->device, "Trip%d[type=%d,temp=%d]:trend=%d,throttle=%d\n",
|
|
- trip_id, trip->type, trip_threshold, trend, throttle);
|
|
+ hyst_temp = trip->temperature - trip->hysteresis;
|
|
+ dev_dbg(&tz->device, "Trip%d[type=%d,temp=%d,hyst=%d]:trend=%d,throttle=%d\n",
|
|
+ trip_id, trip->type, trip->temperature, hyst_temp, trend, throttle);
|
|
|
|
list_for_each_entry(instance, &td->thermal_instances, trip_node) {
|
|
int old_target;
|
|
|
|
old_target = instance->target;
|
|
+ throttle = false;
|
|
+ /*
|
|
+ * Lower the mitigation only if the temperature
|
|
+ * goes below the hysteresis temperature.
|
|
+ */
|
|
+ if (tz->temperature >= trip->temperature ||
|
|
+ (tz->temperature >= hyst_temp &&
|
|
+ old_target != THERMAL_NO_TARGET)) {
|
|
+ throttle = true;
|
|
+ trace_thermal_zone_trip(tz, trip_id, trip->type);
|
|
+ }
|
|
+
|
|
instance->target = get_target_state(instance, trend, throttle);
|
|
|
|
dev_dbg(&instance->cdev->device, "old_target=%d, target=%ld\n",
|