OSDN Git Service

drm/amd/display: Include names of all PP clock types
authorRafał Miłecki <rafal@milecki.pl>
Sun, 13 Jan 2019 13:24:07 +0000 (14:24 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 25 Jan 2019 21:15:34 +0000 (16:15 -0500)
This fixes printing clock names in cases like:
[    5.352311] [drm] DM_PPLIB: values for Invalid clock
[    5.352313] [drm] DM_PPLIB:   400000 in kHz
[    5.352313] [drm] DM_PPLIB:   933000 in kHz
[    5.352314] [drm] DM_PPLIB:   1067000 in kHz
[    5.352315] [drm] DM_PPLIB:   1200000 in kHz
[    5.352317] [drm] DM_PPLIB: values for Invalid clock
[    5.352318] [drm] DM_PPLIB:   300000 in kHz
[    5.352318] [drm] DM_PPLIB:   600000 in kHz
[    5.352319] [drm] DM_PPLIB:   626000 in kHz
[    5.352320] [drm] DM_PPLIB:   654000 in kHz
(source: HP EliteBook 745 G5 w. RAVEN 0x1002:0x15DD 0x103C:0x83D5 0xD1)

On my system above "Invalid" names got replaced by "F" and "DCF".

The same problem was occurring on Huawei Matebook D with just 667000 kHz
instead of 400000 kHz.

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dm_services_types.h

index 1af8c77..9afd36a 100644 (file)
@@ -82,7 +82,15 @@ enum dm_pp_clock_type {
 #define DC_DECODE_PP_CLOCK_TYPE(clk_type) \
        (clk_type) == DM_PP_CLOCK_TYPE_DISPLAY_CLK ? "Display" : \
        (clk_type) == DM_PP_CLOCK_TYPE_ENGINE_CLK ? "Engine" : \
-       (clk_type) == DM_PP_CLOCK_TYPE_MEMORY_CLK ? "Memory" : "Invalid"
+       (clk_type) == DM_PP_CLOCK_TYPE_MEMORY_CLK ? "Memory" : \
+       (clk_type) == DM_PP_CLOCK_TYPE_DCFCLK ? "DCF" : \
+       (clk_type) == DM_PP_CLOCK_TYPE_DCEFCLK ? "DCEF" : \
+       (clk_type) == DM_PP_CLOCK_TYPE_SOCCLK ? "SoC" : \
+       (clk_type) == DM_PP_CLOCK_TYPE_PIXELCLK ? "Pixel" : \
+       (clk_type) == DM_PP_CLOCK_TYPE_DISPLAYPHYCLK ? "Display PHY" : \
+       (clk_type) == DM_PP_CLOCK_TYPE_DPPCLK ? "DPP" : \
+       (clk_type) == DM_PP_CLOCK_TYPE_FCLK ? "F" : \
+       "Invalid"
 
 #define DM_PP_MAX_CLOCK_LEVELS 8