[PATCH] drm/amd/pm: fix debugfs pm_info output
Chen, Guchun
Guchun.Chen at amd.com
Mon Aug 21 01:25:31 UTC 2023
[Public]
Reviewed-by: Guchun Chen <guchun.chen at amd.com>
Regards,
Guchun
> -----Original Message-----
> From: amd-gfx <amd-gfx-bounces at lists.freedesktop.org> On Behalf Of Alex
> Deucher
> Sent: Saturday, August 19, 2023 3:21 AM
> To: amd-gfx at lists.freedesktop.org
> Cc: Deucher, Alexander <Alexander.Deucher at amd.com>
> Subject: [PATCH] drm/amd/pm: fix debugfs pm_info output
>
> Print both input and avg power.
>
> Fixes: 47f1724db4fe ("drm/amd: Introduce
> `AMDGPU_PP_SENSOR_GPU_INPUT_POWER`")
> Signed-off-by: Alex Deucher <alexander.deucher at amd.com>
> ---
> drivers/gpu/drm/amd/pm/amdgpu_pm.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/amd/pm/amdgpu_pm.c
> b/drivers/gpu/drm/amd/pm/amdgpu_pm.c
> index 5b1d73b00ef7..1c3745b3ca85 100644
> --- a/drivers/gpu/drm/amd/pm/amdgpu_pm.c
> +++ b/drivers/gpu/drm/amd/pm/amdgpu_pm.c
> @@ -3471,6 +3471,9 @@ static int amdgpu_debugfs_pm_info_pp(struct
> seq_file *m, struct amdgpu_device *a
> size = sizeof(uint32_t);
> if (!amdgpu_dpm_read_sensor(adev,
> AMDGPU_PP_SENSOR_GPU_AVG_POWER, (void *)&query, &size))
> seq_printf(m, "\t%u.%u W (average GPU)\n", query >> 8,
> query & 0xff);
> + size = sizeof(uint32_t);
> + if (!amdgpu_dpm_read_sensor(adev,
> AMDGPU_PP_SENSOR_GPU_INPUT_POWER, (void *)&query, &size))
> + seq_printf(m, "\t%u.%u W (current GPU)\n", query >> 8,
> query & 0xff);
> size = sizeof(value);
> seq_printf(m, "\n");
>
> --
> 2.41.0
More information about the amd-gfx
mailing list