diff options
author | Corbin McElhanney <corbin.mcelhanney@amd.com> | 2017-06-26 23:47:27 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-09-27 01:08:21 +0300 |
commit | f71f2772cb001d087e260c96f46d1fde022d2e03 (patch) | |
tree | c183adfd1e29bbf4c7cf1b259da152a25a8d5ec2 | |
parent | ba6bf832b25ca7369ed3d4c0b0651bb43c9e644a (diff) | |
download | linux-f71f2772cb001d087e260c96f46d1fde022d2e03.tar.xz |
drm/amd/display: Add clock info struct
Signed-off-by: Corbin McElhanney <corbin.mcelhanney@amd.com>
Reviewed-by: Logatharshan Thothiralingam <Logatharshan.Thothiralingam@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/dm_services_types.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dm_services_types.h b/drivers/gpu/drm/amd/display/dc/dm_services_types.h index b28304531d8a..4c04ec587308 100644 --- a/drivers/gpu/drm/amd/display/dc/dm_services_types.h +++ b/drivers/gpu/drm/amd/display/dc/dm_services_types.h @@ -271,4 +271,10 @@ struct dm_pp_static_clock_info { enum dm_pp_clocks_state max_clocks_state; }; +struct dtn_min_clk_info { + uint32_t disp_clk_khz; + uint32_t min_engine_clock_khz; + uint32_t min_memory_clock_khz; +}; + #endif |