]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
drm/amd/display: Add function to fetch clock requirements
authorEryk Brol <eryk.brol@amd.com>
Fri, 7 Sep 2018 17:24:28 +0000 (13:24 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 9 Oct 2018 22:02:02 +0000 (17:02 -0500)
Also add dram clock to clocks struct, for systems that uses them.

Signed-off-by: Eryk Brol <eryk.brol@amd.com>
Reviewed-by: Jun Lei <Jun.Lei@amd.com>
Acked-by: Leo Li <sunpeng.li@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/core/dc.c
drivers/gpu/drm/amd/display/dc/dc.h
drivers/gpu/drm/amd/display/dc/dc_types.h

index a0e933f2a06c15de382e96a042b78060244c6150..7c491c91465fc5a86973931cd11abe7808f1d8b8 100644 (file)
@@ -1836,3 +1836,16 @@ void dc_link_remove_remote_sink(struct dc_link *link, struct dc_sink *sink)
                }
        }
 }
+
+void get_clock_requirements_for_state(struct dc_state *state, struct AsicStateEx *info)
+{
+       info->displayClock                              = (unsigned int)state->bw.dcn.clk.dispclk_khz;
+       info->engineClock                               = (unsigned int)state->bw.dcn.clk.dcfclk_khz;
+       info->memoryClock                               = (unsigned int)state->bw.dcn.clk.dramclk_khz;
+       info->maxSupportedDppClock              = (unsigned int)state->bw.dcn.clk.max_supported_dppclk_khz;
+       info->dppClock                                  = (unsigned int)state->bw.dcn.clk.dppclk_khz;
+       info->socClock                                  = (unsigned int)state->bw.dcn.clk.socclk_khz;
+       info->dcfClockDeepSleep                 = (unsigned int)state->bw.dcn.clk.dcfclk_deep_sleep_khz;
+       info->fClock                                    = (unsigned int)state->bw.dcn.clk.fclk_khz;
+       info->phyClock                                  = (unsigned int)state->bw.dcn.clk.phyclk_khz;
+}
\ No newline at end of file
index 5f65beacd8473d648b9f5e620bfc77a4c7e9d4a2..f3284839e324a4ebc3f4516a54e443df99e52af9 100644 (file)
@@ -44,7 +44,6 @@
 #define MAX_STREAMS 6
 #define MAX_SINKS_PER_LINK 4
 
-
 /*******************************************************************************
  * Display Core Interfaces
  ******************************************************************************/
@@ -208,6 +207,7 @@ struct dc_clocks {
        int dcfclk_deep_sleep_khz;
        int fclk_khz;
        int phyclk_khz;
+       int dramclk_khz;
 };
 
 struct dc_debug_options {
@@ -601,6 +601,8 @@ struct dc_validation_set {
 
 enum dc_status dc_validate_plane(struct dc *dc, const struct dc_plane_state *plane_state);
 
+void get_clock_requirements_for_state(struct dc_state *state, struct AsicStateEx *info);
+
 enum dc_status dc_validate_global_state(
                struct dc *dc,
                struct dc_state *new_ctx);
index 4fb62780a69625e6f5d8e02d1ffdc0129d1dd2f4..6e12d640d020940d887a66bf5d6c4037a7888735 100644 (file)
@@ -659,4 +659,16 @@ enum i2c_mot_mode {
        I2C_MOT_FALSE
 };
 
+struct AsicStateEx {
+       unsigned int memoryClock;
+       unsigned int displayClock;
+       unsigned int engineClock;
+       unsigned int maxSupportedDppClock;
+       unsigned int dppClock;
+       unsigned int socClock;
+       unsigned int dcfClockDeepSleep;
+       unsigned int fClock;
+       unsigned int phyClock;
+};
+
 #endif /* DC_TYPES_H_ */