Commit 1e1dbd6f authored by Hersen Wu's avatar Hersen Wu Committed by Alex Deucher

drm/amd/display: display connected to dp-1 does not light up

[why]
for vega, dp set_panel_mode is
handled by psp firmware. dal should not program the
register again.

[how]
dal does not program panel mode.
Signed-off-by: default avatarHersen Wu <hersenxs.wu@amd.com>
Reviewed-by: default avatarCharlene Liu <Charlene.Liu@amd.com>
Acked-by: default avatarBhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 81aca8e7
...@@ -79,6 +79,7 @@ struct dc_caps { ...@@ -79,6 +79,7 @@ struct dc_caps {
bool post_blend_color_processing; bool post_blend_color_processing;
bool force_dp_tps4_for_cp2520; bool force_dp_tps4_for_cp2520;
bool disable_dp_clk_share; bool disable_dp_clk_share;
bool psp_setup_panel_mode;
}; };
struct dc_dcc_surface_param { struct dc_dcc_surface_param {
......
...@@ -256,6 +256,11 @@ static void setup_panel_mode( ...@@ -256,6 +256,11 @@ static void setup_panel_mode(
enum dp_panel_mode panel_mode) enum dp_panel_mode panel_mode)
{ {
uint32_t value; uint32_t value;
struct dc_context *ctx = enc110->base.ctx;
/* if psp set panel mode, dal should be program it */
if (ctx->dc->caps.psp_setup_panel_mode)
return;
ASSERT(REG(DP_DPHY_INTERNAL_CTRL)); ASSERT(REG(DP_DPHY_INTERNAL_CTRL));
value = REG_READ(DP_DPHY_INTERNAL_CTRL); value = REG_READ(DP_DPHY_INTERNAL_CTRL);
......
...@@ -883,6 +883,7 @@ static bool construct( ...@@ -883,6 +883,7 @@ static bool construct(
dc->caps.i2c_speed_in_khz = 100; dc->caps.i2c_speed_in_khz = 100;
dc->caps.max_cursor_size = 128; dc->caps.max_cursor_size = 128;
dc->caps.dual_link_dvi = true; dc->caps.dual_link_dvi = true;
dc->caps.psp_setup_panel_mode = true;
dc->debug = debug_defaults; dc->debug = debug_defaults;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment