Skip to content

Commit bd30d07

Browse files
zhang-ruirafaeljw
authored andcommitted
thermal: intel: pch: improve the cooling delay log
Previously, during suspend, intel_pch_thermal driver logs for every cooling iteration, about the current PCH temperature and number of cooling iterations that have been tried, like below [ 100.955526] intel_pch_thermal 0000:00:14.2: CPU-PCH current temp [53C] higher than the threshold temp [50C], sleep 1 times for 100 ms duration [ 101.064156] intel_pch_thermal 0000:00:14.2: CPU-PCH current temp [53C] higher than the threshold temp [50C], sleep 2 times for 100 ms duration After changing the default delay_cnt to 600, in practice, it is common to see tens of the above messages if the system is suspended when PCH overheats. Thus, change this log message from dev_warn to dev_dbg because it is only useful when we want to check the temperature trend. At the same time, there is always a one-line message given by the driver with the patch applied, with below four possibilities. 1. PCH is cool, no cooling delay needed [ 1791.902853] intel_pch_thermal 0000:00:12.0: CPU-PCH is cool [48C] 2. PCH overheats and becomes cool after the cooling delays [ 1475.511617] intel_pch_thermal 0000:00:12.0: CPU-PCH is cool [49C] after 30700 ms delay 3. PCH still overheats after the overall cooling timeout [ 2250.157487] intel_pch_thermal 0000:00:12.0: CPU-PCH is hot [60C] after 60000 ms delay. S0ix might fail 4. PCH aborts cooling because of wakeup event detected during the delay [ 1933.639509] intel_pch_thermal 0000:00:12.0: Wakeup event detected, abort cooling Signed-off-by: Zhang Rui <[email protected]> Tested-by: Sumeet Pawnikar <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 9292302 commit bd30d07

File tree

1 file changed

+20
-11
lines changed

1 file changed

+20
-11
lines changed

drivers/thermal/intel/intel_pch_thermal.c

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ static int pch_wpt_get_temp(struct pch_thermal_device *ptd, int *temp)
197197
static int pch_wpt_suspend(struct pch_thermal_device *ptd)
198198
{
199199
u8 tsel;
200-
int pch_delay_cnt = 1;
200+
int pch_delay_cnt = 0;
201201
u16 pch_thr_temp, pch_cur_temp;
202202

203203
/* Shutdown the thermal sensor if it is not enabled by BIOS */
@@ -233,29 +233,38 @@ static int pch_wpt_suspend(struct pch_thermal_device *ptd)
233233
* temperature stays above threshold, notify the warning message
234234
* which helps to indentify the reason why S0ix entry was rejected.
235235
*/
236-
while (pch_delay_cnt <= delay_cnt) {
236+
while (pch_delay_cnt < delay_cnt) {
237237
if (pch_cur_temp < pch_thr_temp)
238238
break;
239239

240-
if (pm_wakeup_pending())
241-
break;
240+
if (pm_wakeup_pending()) {
241+
dev_warn(&ptd->pdev->dev, "Wakeup event detected, abort cooling\n");
242+
return 0;
243+
}
242244

243-
dev_warn(&ptd->pdev->dev,
245+
pch_delay_cnt++;
246+
dev_dbg(&ptd->pdev->dev,
244247
"CPU-PCH current temp [%dC] higher than the threshold temp [%dC], sleep %d times for %d ms duration\n",
245248
pch_cur_temp, pch_thr_temp, pch_delay_cnt, delay_timeout);
246249
msleep(delay_timeout);
247250
/* Read the PCH current temperature for next cycle. */
248251
pch_cur_temp = GET_PCH_TEMP(WPT_TEMP_TSR & readw(ptd->hw_base + WPT_TEMP));
249-
pch_delay_cnt++;
250252
}
251253

252254
if (pch_cur_temp >= pch_thr_temp)
253255
dev_warn(&ptd->pdev->dev,
254-
"CPU-PCH is hot [%dC] even after delay, continue to suspend. S0ix might fail\n",
255-
pch_cur_temp);
256-
else
257-
dev_info(&ptd->pdev->dev,
258-
"CPU-PCH is cool [%dC], continue to suspend\n", pch_cur_temp);
256+
"CPU-PCH is hot [%dC] after %d ms delay. S0ix might fail\n",
257+
pch_cur_temp, pch_delay_cnt * delay_timeout);
258+
else {
259+
if (pch_delay_cnt)
260+
dev_info(&ptd->pdev->dev,
261+
"CPU-PCH is cool [%dC] after %d ms delay\n",
262+
pch_cur_temp, pch_delay_cnt * delay_timeout);
263+
else
264+
dev_info(&ptd->pdev->dev,
265+
"CPU-PCH is cool [%dC]\n",
266+
pch_cur_temp);
267+
}
259268

260269
return 0;
261270
}

0 commit comments

Comments
 (0)