[PATCH v2] drm/amd/powerplay: sw ctf for arcturus

Quan, Evan Evan.Quan at amd.com
Thu Jan 9 07:35:06 UTC 2020


Reviewed-by: Evan Quan <evan.quan at amd.com>

> -----Original Message-----
> From: Kenneth Feng <kenneth.feng at amd.com>
> Sent: Thursday, January 9, 2020 3:13 PM
> To: amd-gfx at lists.freedesktop.org
> Cc: Quan, Evan <Evan.Quan at amd.com>; Feng, Kenneth
> <Kenneth.Feng at amd.com>
> Subject: [PATCH v2] drm/amd/powerplay: sw ctf for arcturus
> 
> change the sw ctf setting to smu_v11_0_set_thermal_range()
> since software_shutdown_temp shares the same definition and
> name in all the smu11 project.
> 
> Signed-off-by: Kenneth Feng <kenneth.feng at amd.com>
> ---
>  drivers/gpu/drm/amd/powerplay/smu_v11_0.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
> b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
> index e804f98..76bddd5 100644
> --- a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
> +++ b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
> @@ -1154,11 +1154,12 @@ static int smu_v11_0_set_thermal_range(struct
> smu_context *smu,
>  	int low = SMU_THERMAL_MINIMUM_ALERT_TEMP;
>  	int high = SMU_THERMAL_MAXIMUM_ALERT_TEMP;
>  	uint32_t val;
> +	struct smu_table_context *table_context = &smu->smu_table;
> +	struct smu_11_0_powerplay_table *powerplay_table = table_context-
> >power_play_table;
> 
>  	low = max(SMU_THERMAL_MINIMUM_ALERT_TEMP,
>  			range.min /
> SMU_TEMPERATURE_UNITS_PER_CENTIGRADES);
> -	high = min(SMU_THERMAL_MAXIMUM_ALERT_TEMP,
> -			range.max /
> SMU_TEMPERATURE_UNITS_PER_CENTIGRADES);
> +	high = min(SMU_THERMAL_MAXIMUM_ALERT_TEMP,
> powerplay_table->software_shutdown_temp);
> 
>  	if (low > high)
>  		return -EINVAL;
> --
> 2.7.4



More information about the amd-gfx mailing list