[PATCH 18/30] drm/amd/powerplay: init arcturus SMU metrics table on bootup

Kevin Wang kevwa at amd.com
Tue Jul 30 02:43:26 UTC 2019


On 7/30/19 4:14 AM, Alex Deucher wrote:
> From: Evan Quan <evan.quan at amd.com>
>
> Initialize arcturus SMU metrics table.
>
> Signed-off-by: Evan Quan <evan.quan at amd.com>
> Reviewed-by: Kevin Wang <kevin1.wang at amd.com>
> Reviewed-by: Alex Deucher <alexander.deucher at amd.com>
> Signed-off-by: Alex Deucher <alexander.deucher at amd.com>
> ---
>   drivers/gpu/drm/amd/powerplay/arcturus_ppt.c | 7 +++++++
>   1 file changed, 7 insertions(+)
>
> diff --git a/drivers/gpu/drm/amd/powerplay/arcturus_ppt.c b/drivers/gpu/drm/amd/powerplay/arcturus_ppt.c
> index a0644ef267a9..5f911f092311 100644
> --- a/drivers/gpu/drm/amd/powerplay/arcturus_ppt.c
> +++ b/drivers/gpu/drm/amd/powerplay/arcturus_ppt.c
> @@ -267,6 +267,8 @@ static int arcturus_get_workload_type(struct smu_context *smu, enum PP_SMC_POWER
>   
>   static int arcturus_tables_init(struct smu_context *smu, struct smu_table *tables)
>   {
> +	struct smu_table_context *smu_table = &smu->smu_table;
> +
>   	SMU_TABLE_INIT(tables, SMU_TABLE_PPTABLE, sizeof(PPTable_t),
>   		       PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM);
>   
> @@ -276,6 +278,11 @@ static int arcturus_tables_init(struct smu_context *smu, struct smu_table *table
>   	SMU_TABLE_INIT(tables, SMU_TABLE_SMU_METRICS, sizeof(SmuMetrics_t),
>   		       PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM);
>   
> +	smu_table->metrics_table = kzalloc(sizeof(SmuMetrics_t), GFP_KERNEL);
> [kevin]: where is do free operation in driver code ?
> +	if (!smu_table->metrics_table)
> +		return -ENOMEM;
> +	smu_table->metrics_time = 0;
> +
>   	return 0;
>   }
>   


More information about the amd-gfx mailing list