Home
last modified time | relevance | path

Searched refs:hardcode_pptable (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/gpu/drm/amd/pm/swsmu/
H A Damdgpu_smu.c653 if (!smu_table->power_play_table && !smu_table->hardcode_pptable) in smu_sys_set_pp_table()
656 if (smu_table->hardcode_pptable) in smu_sys_set_pp_table()
657 *table = smu_table->hardcode_pptable; in smu_sys_set_pp_table()
681 if (!smu_table->hardcode_pptable || smu_table->power_play_table_size < size) { in smu_sys_set_pp_table()
682 kfree(smu_table->hardcode_pptable); in smu_sys_set_pp_table()
683 smu_table->hardcode_pptable = kzalloc(size, GFP_KERNEL); in smu_sys_set_pp_table()
684 if (!smu_table->hardcode_pptable) in smu_sys_set_pp_table()
688 memcpy(smu_table->hardcode_pptable, buf, size); in smu_sys_set_pp_table()
689 smu_table->power_play_table = smu_table->hardcode_pptable; in smu_sys_set_pp_table()
/linux/drivers/gpu/drm/amd/pm/swsmu/smu15/
H A Dsmu_v15_0.c427 kfree(smu_table->hardcode_pptable); in smu_v15_0_init_smc_tables()
428 smu_table->hardcode_pptable = NULL; in smu_v15_0_init_smc_tables()
/linux/drivers/gpu/drm/amd/pm/swsmu/smu14/
H A Dsmu_v14_0.c449 kfree(smu_table->hardcode_pptable); in smu_v14_0_init_smc_tables()
450 smu_table->hardcode_pptable = NULL; in smu_v14_0_init_smc_tables()
/linux/drivers/gpu/drm/amd/pm/swsmu/smu11/
H A Dsmu_v11_0.c368 kfree(smu_table->hardcode_pptable); in smu_v11_0_init_smc_tables()
369 smu_table->hardcode_pptable = NULL; in smu_v11_0_init_smc_tables()
/linux/drivers/gpu/drm/amd/pm/swsmu/smu13/
H A Dsmu_v13_0.c481 kfree(smu_table->hardcode_pptable); in smu_v13_0_init_smc_tables()
482 smu_table->hardcode_pptable = NULL; in smu_v13_0_init_smc_tables()
/linux/drivers/gpu/drm/amd/pm/swsmu/inc/
H A Damdgpu_smu.h387 void *hardcode_pptable; member