blob: 9ac96f3d456af731dc8abd314c16f5714e60a936 [file] [log] [blame]
developerf043db82022-12-21 14:59:23 +08001From 3126ebf7886276a5a1da781a539da0fa3603f673 Mon Sep 17 00:00:00 2001
developer51f6fcf2022-12-14 17:08:01 +08002From: Howard Hsu <howard-yh.hsu@mediatek.com>
3Date: Fri, 2 Dec 2022 10:16:49 +0800
developer30d39c22022-12-16 10:29:49 +08004Subject: [PATCH 1/6] wifi: mt76: mt7915: call
developer51f6fcf2022-12-14 17:08:01 +08005 mt7915_mcu_set_thermal_throttling() only after init_work
6
7Enable thermal management by default shall not be executed during mcu
8init. This causes thermal configuration being reset to the firmware
9default settings.
10
11Fixes: 0063b86c9120 ("mt76: mt7915e: Enable thermal management by default")
12Reviewed-by: Ryder Lee <ryder.lee@mediatek.com>
13Signed-off-by: Howard Hsu <howard-yh.hsu@mediatek.com>
14---
15 mt7915/init.c | 3 +--
16 mt7915/main.c | 6 ++++++
17 2 files changed, 7 insertions(+), 2 deletions(-)
18
19diff --git a/mt7915/init.c b/mt7915/init.c
developer699cda22022-12-17 15:21:57 +080020index 6fd5c63..a03d0b3 100644
developer51f6fcf2022-12-14 17:08:01 +080021--- a/mt7915/init.c
22+++ b/mt7915/init.c
23@@ -201,8 +201,7 @@ static int mt7915_thermal_init(struct mt7915_phy *phy)
24 phy->throttle_temp[0] = 110;
25 phy->throttle_temp[1] = 120;
26
27- return mt7915_mcu_set_thermal_throttling(phy,
28- MT7915_THERMAL_THROTTLE_MAX);
29+ return 0;
30 }
31
32 static void mt7915_led_set_config(struct led_classdev *led_cdev,
33diff --git a/mt7915/main.c b/mt7915/main.c
developer699cda22022-12-17 15:21:57 +080034index 0511d6a..98af032 100644
developer51f6fcf2022-12-14 17:08:01 +080035--- a/mt7915/main.c
36+++ b/mt7915/main.c
37@@ -57,6 +57,12 @@ int mt7915_run(struct ieee80211_hw *hw)
38 mt7915_mac_enable_nf(dev, phy->mt76->band_idx);
39 }
40
41+ ret = mt7915_mcu_set_thermal_throttling(phy,
42+ MT7915_THERMAL_THROTTLE_MAX);
43+
44+ if (ret)
45+ goto out;
46+
47 ret = mt76_connac_mcu_set_rts_thresh(&dev->mt76, 0x92b,
48 phy->mt76->band_idx);
49 if (ret)
50--
developer699cda22022-12-17 15:21:57 +0800512.36.1
developer51f6fcf2022-12-14 17:08:01 +080052