diff options
author | Alvin Lee <Alvin.Lee2@amd.com> | 2023-03-23 15:48:41 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2023-04-11 18:03:35 -0400 |
commit | 0289e0ed1b9ae20e7b682fc7ca30d2d324a47618 (patch) | |
tree | 546e4da88387ca477b1f4c83e5618d5e863a0659 /drivers/gpu/drm/amd/display/dc/dc.h | |
parent | 385c3e4c29e1d4ce8f68687a8c84621e4c0e0416 (diff) | |
download | linux-0289e0ed1b9ae20e7b682fc7ca30d2d324a47618.tar.gz linux-0289e0ed1b9ae20e7b682fc7ca30d2d324a47618.tar.bz2 linux-0289e0ed1b9ae20e7b682fc7ca30d2d324a47618.zip |
drm/amd/display: Add FPO + VActive support
[Description]
- When determining FPO support, include FPO + VActive support
- Support FPO + VActive if one display meets regular requirements
for FPO and the second display is able to switch in VACTIVE with
a given amount of margin
Reviewed-by: Jun Lei <Jun.Lei@amd.com>
Acked-by: Qingqing Zhuo <qingqing.zhuo@amd.com>
Signed-off-by: Alvin Lee <Alvin.Lee2@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/dc.h')
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/dc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dc.h b/drivers/gpu/drm/amd/display/dc/dc.h index e363a3c88250..719727a2f939 100644 --- a/drivers/gpu/drm/amd/display/dc/dc.h +++ b/drivers/gpu/drm/amd/display/dc/dc.h @@ -875,6 +875,8 @@ struct dc_debug_options { bool override_dispclk_programming; bool disable_fpo_optimizations; bool support_eDP1_5; + uint32_t fpo_vactive_margin_us; + bool disable_fpo_vactive; }; struct gpu_info_soc_bounding_box_v1_0; |