drm/amd/pm: remove the average clock value in sysfs
authorKenneth Feng <kenneth.feng@amd.com>
Wed, 21 Oct 2020 09:30:02 +0000 (17:30 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 22 Oct 2020 03:06:23 +0000 (23:06 -0400)
if it's fine-grained clock dpm, remove the average clock value and
reflects the real clock.

Signed-off-by: Kenneth Feng <kenneth.feng@amd.com>
Reviewed-by: Likun Gao <Likun.Gao@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c

index 9ca3d93..685a8a3 100644 (file)
@@ -954,12 +954,16 @@ static int sienna_cichlid_print_clk_levels(struct smu_context *smu,
                        freq_values[1] = cur_value;
                        mark_index = cur_value == freq_values[0] ? 0 :
                                     cur_value == freq_values[2] ? 2 : 1;
-                       if (mark_index != 1)
-                               freq_values[1] = (freq_values[0] + freq_values[2]) / 2;
 
-                       for (i = 0; i < 3; i++) {
+                       count = 3;
+                       if (mark_index != 1) {
+                               count = 2;
+                               freq_values[1] = freq_values[2];
+                       }
+
+                       for (i = 0; i < count; i++) {
                                size += sprintf(buf + size, "%d: %uMhz %s\n", i, freq_values[i],
-                                               i == mark_index ? "*" : "");
+                                               cur_value  == freq_values[i] ? "*" : "");
                        }
 
                }