diff options
author | 2019-10-01 11:31:37 -0400 | |
---|---|---|
committer | 2019-10-25 16:50:08 -0400 | |
commit | 22631bb8ca58b14bd5cbd583479e7cdda763cd1d (patch) | |
tree | 69a0dc48ecdd0a8a2d94d18230ce1d729350a154 /drivers/gpu/drm/amd/display/dc/dc.h | |
parent | drm/amd/display: add embedded flag to dml (diff) | |
download | linux-dev-22631bb8ca58b14bd5cbd583479e7cdda763cd1d.tar.xz linux-dev-22631bb8ca58b14bd5cbd583479e7cdda763cd1d.zip |
drm/amd/display: add flag to allow diag to force enumerate edp
[why]
SLT tests require that diag can drive eDP even if nothing is connected, this is not
typical production use case, so we need to add flag
[how]
add flag, and this flag supercedes "should destroy" logic
Signed-off-by: Jun Lei <Jun.Lei@amd.com>
Reviewed-by: Aric Cyr <Aric.Cyr@amd.com>
Acked-by: Leo Li <sunpeng.li@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/dc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dc.h b/drivers/gpu/drm/amd/display/dc/dc.h index a86dad3808b6..b578b2148e45 100644 --- a/drivers/gpu/drm/amd/display/dc/dc.h +++ b/drivers/gpu/drm/amd/display/dc/dc.h @@ -220,6 +220,7 @@ struct dc_config { bool allow_seamless_boot_optimization; bool power_down_display_on_boot; bool edp_not_connected; + bool force_enum_edp; bool forced_clocks; bool disable_extended_timeout_support; // Used to disable extended timeout and lttpr feature as well bool multi_mon_pp_mclk_switch; |