[PATCH v2 2/3] drm/amd: Make SW CTF handler cope with different read_sensor() results
Mario Limonciello
mario.limonciello at amd.com
Fri Dec 15 17:27:39 UTC 2023
The SW CTF handler assumes that the read_sensor() call always succeeds
and has updated `hotspot_tmp`, but this may not be guaranteed.
For example some of the read_sensor() callbacks will return 0 when a RAS
interrupt is triggered in which case `hotspot_tmp` won't be updated.
Adjust the logic to catch this circumstance and output a warning.
Signed-off-by: Mario Limonciello <mario.limonciello at amd.com>
---
v1->v2:
* Only show `Failed to read hotspot temperature` when sensor read fails
---
drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c | 23 ++++++++++++++---------
1 file changed, 14 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c b/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
index c16703868e5c..b259e67a229b 100644
--- a/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
+++ b/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
@@ -1163,21 +1163,26 @@ static void smu_swctf_delayed_work_handler(struct work_struct *work)
struct smu_temperature_range *range =
&smu->thermal_range;
struct amdgpu_device *adev = smu->adev;
- uint32_t hotspot_tmp, size;
+ uint32_t hotspot_tmp = 0, size;
/*
* If the hotspot temperature is confirmed as below SW CTF setting point
* after the delay enforced, nothing will be done.
* Otherwise, a graceful shutdown will be performed to prevent further damage.
*/
- if (range->software_shutdown_temp &&
- smu->ppt_funcs->read_sensor &&
- !smu->ppt_funcs->read_sensor(smu,
- AMDGPU_PP_SENSOR_HOTSPOT_TEMP,
- &hotspot_tmp,
- &size) &&
- hotspot_tmp / 1000 < range->software_shutdown_temp)
- return;
+ if (range->software_shutdown_temp && smu->ppt_funcs->read_sensor) {
+ int r = smu->ppt_funcs->read_sensor(smu,
+ AMDGPU_PP_SENSOR_HOTSPOT_TEMP,
+ &hotspot_tmp,
+ &size);
+ switch (r) {
+ case 0:
+ if (hotspot_tmp / 1000 < range->software_shutdown_temp)
+ return;
+ default:
+ dev_err(adev->dev, "Failed to read hotspot temperature: %d\n", r);
+ }
+ }
dev_emerg(adev->dev, "ERROR: GPU over temperature range(SW CTF) detected!\n");
dev_emerg(adev->dev, "ERROR: System is going to shutdown due to GPU SW CTF!\n");
--
2.34.1
More information about the amd-gfx
mailing list