[PATCH] drm/amd/powerplay: print where the pptable comes from
Yuan, Xiaojie
Xiaojie.Yuan at amd.com
Sat Oct 12 03:16:54 UTC 2019
this helps to know whether the pptable is from firmware or vbios
Signed-off-by: Xiaojie Yuan <xiaojie.yuan at amd.com>
---
drivers/gpu/drm/amd/powerplay/smu_v11_0.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
index 9883f0a4471a..809883c21241 100644
--- a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
+++ b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
@@ -369,6 +369,9 @@ static int smu_v11_0_setup_pptable(struct smu_context *smu)
version_major = le16_to_cpu(hdr->header.header_version_major);
version_minor = le16_to_cpu(hdr->header.header_version_minor);
if (version_major == 2 && smu->smu_table.boot_values.pp_table_id > 0) {
+ pr_info("using soft pptable #%d\n",
+ smu->smu_table.boot_values.pp_table_id);
+
switch (version_minor) {
case 0:
ret = smu_v11_0_set_pptable_v2_0(smu, &table, &size);
@@ -385,6 +388,8 @@ static int smu_v11_0_setup_pptable(struct smu_context *smu)
return ret;
} else {
+ pr_info("using pptable from vbios\n");
+
index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
powerplayinfo);
--
2.20.1
More information about the amd-gfx
mailing list