Commit 580013b2 authored by Wenjing Liu's avatar Wenjing Liu Committed by Alex Deucher

drm/amd/display: unhard code link to phy idx mapping in dc link and clean up

[why]
1. Current code hard codes link to PHY mapping in dc link level per asic
per revision.
This is not scalable. In long term the mapping will be obatined from
DMUB and store in dc resource.

2. Depending on DCN revision and endpoint type, the definition of
dio_output_idx dio_output_type and phy_idx are not  consistent. We need
to unify the meaning of these hardware indices across different system
configuration.

[how]
1. Temporarly move the hardcoded mapping to dc_resource level, which
should have full awareness of asic specific configuration and add a TODO
comment to move the mapping to DMUB.

2. populate dio_output_idx/phy_idx for all configuration, define
usb4_enabled bit instead of dio_output_type as an external enum.
Tested-by: default avatarDaniel Wheeler <daniel.wheeler@amd.com>
Reviewed-by: default avatarEric Yang <Eric.Yang2@amd.com>
Acked-by: default avatarRodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: default avatarWenjing Liu <wenjing.liu@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 771ced73
...@@ -3971,102 +3971,73 @@ static enum dc_status deallocate_mst_payload(struct pipe_ctx *pipe_ctx) ...@@ -3971,102 +3971,73 @@ static enum dc_status deallocate_mst_payload(struct pipe_ctx *pipe_ctx)
static void update_psp_stream_config(struct pipe_ctx *pipe_ctx, bool dpms_off) static void update_psp_stream_config(struct pipe_ctx *pipe_ctx, bool dpms_off)
{ {
struct cp_psp *cp_psp = &pipe_ctx->stream->ctx->cp_psp; struct cp_psp *cp_psp = &pipe_ctx->stream->ctx->cp_psp;
#if defined(CONFIG_DRM_AMD_DC_DCN)
struct link_encoder *link_enc = NULL; struct link_encoder *link_enc = NULL;
#endif struct cp_psp_stream_config config = {0};
enum dp_panel_mode panel_mode =
dp_get_panel_mode(pipe_ctx->stream->link);
if (cp_psp && cp_psp->funcs.update_stream_config) { if (cp_psp == NULL || cp_psp->funcs.update_stream_config == NULL)
struct cp_psp_stream_config config = {0}; return;
enum dp_panel_mode panel_mode =
dp_get_panel_mode(pipe_ctx->stream->link);
config.otg_inst = (uint8_t) pipe_ctx->stream_res.tg->inst; if (pipe_ctx->stream->link->ep_type == DISPLAY_ENDPOINT_PHY)
/*stream_enc_inst*/ link_enc = pipe_ctx->stream->link->link_enc;
config.dig_fe = (uint8_t) pipe_ctx->stream_res.stream_enc->stream_enc_inst; else if (pipe_ctx->stream->link->ep_type == DISPLAY_ENDPOINT_USB4_DPIA &&
config.dig_be = pipe_ctx->stream->link->link_enc_hw_inst; pipe_ctx->stream->link->dc->res_pool->funcs->link_encs_assign)
#if defined(CONFIG_DRM_AMD_DC_DCN) link_enc = link_enc_cfg_get_link_enc_used_by_stream(
config.stream_enc_idx = pipe_ctx->stream_res.stream_enc->id - ENGINE_ID_DIGA; pipe_ctx->stream->ctx->dc,
pipe_ctx->stream);
if (pipe_ctx->stream->link->ep_type == DISPLAY_ENDPOINT_PHY || ASSERT(link_enc);
pipe_ctx->stream->link->ep_type == DISPLAY_ENDPOINT_USB4_DPIA) { if (link_enc == NULL)
if (pipe_ctx->stream->link->ep_type == DISPLAY_ENDPOINT_PHY) return;
link_enc = pipe_ctx->stream->link->link_enc;
else if (pipe_ctx->stream->link->ep_type == DISPLAY_ENDPOINT_USB4_DPIA)
if (pipe_ctx->stream->link->dc->res_pool->funcs->link_encs_assign) {
link_enc = link_enc_cfg_get_link_enc_used_by_stream(
pipe_ctx->stream->ctx->dc,
pipe_ctx->stream);
}
ASSERT(link_enc);
// Initialize PHY ID with ABCDE - 01234 mapping except when it is B0 /* otg instance */
config.phy_idx = link_enc->transmitter - TRANSMITTER_UNIPHY_A; config.otg_inst = (uint8_t) pipe_ctx->stream_res.tg->inst;
// Add flag to guard new A0 DIG mapping /* dig front end */
if (pipe_ctx->stream->ctx->dc->enable_c20_dtm_b0 == true && config.dig_fe = (uint8_t) pipe_ctx->stream_res.stream_enc->stream_enc_inst;
pipe_ctx->stream->link->dc->ctx->dce_version == DCN_VERSION_3_1) {
config.dig_be = link_enc->preferred_engine;
config.dio_output_type = pipe_ctx->stream->link->ep_type;
config.dio_output_idx = link_enc->transmitter - TRANSMITTER_UNIPHY_A;
} else {
config.dio_output_type = 0;
config.dio_output_idx = 0;
}
// Add flag to guard B0 implementation /* stream encoder index */
if (pipe_ctx->stream->ctx->dc->enable_c20_dtm_b0 == true && config.stream_enc_idx = pipe_ctx->stream_res.stream_enc->id - ENGINE_ID_DIGA;
link_enc->ctx->asic_id.hw_internal_rev == YELLOW_CARP_B0) { #if defined(CONFIG_DRM_AMD_DC_DCN)
if (pipe_ctx->stream->link->ep_type == DISPLAY_ENDPOINT_USB4_DPIA) { if (is_dp_128b_132b_signal(pipe_ctx))
// enum ID 1-4 maps to DPIA PHY ID 0-3 config.stream_enc_idx =
config.phy_idx = pipe_ctx->stream->link->link_id.enum_id - ENUM_ID_1; pipe_ctx->stream_res.hpo_dp_stream_enc->id - ENGINE_ID_HPO_DP_0;
} else { // for non DPIA mode over B0, ABCDE maps to 01564 #endif
switch (link_enc->transmitter) {
case TRANSMITTER_UNIPHY_A:
config.phy_idx = 0;
break;
case TRANSMITTER_UNIPHY_B:
config.phy_idx = 1;
break;
case TRANSMITTER_UNIPHY_C:
config.phy_idx = 5;
break;
case TRANSMITTER_UNIPHY_D:
config.phy_idx = 6;
break;
case TRANSMITTER_UNIPHY_E:
config.phy_idx = 4;
break;
default:
config.phy_idx = 0;
break;
}
} /* dig back end */
} config.dig_be = pipe_ctx->stream->link->link_enc_hw_inst;
} else if (pipe_ctx->stream->link->dc->res_pool->funcs->link_encs_assign) {
link_enc = link_enc_cfg_get_link_enc_used_by_stream(
pipe_ctx->stream->ctx->dc,
pipe_ctx->stream);
config.phy_idx = 0; /* Clear phy_idx for non-physical display endpoints. */
}
ASSERT(link_enc);
if (link_enc)
config.link_enc_idx = link_enc->transmitter - TRANSMITTER_UNIPHY_A;
if (is_dp_128b_132b_signal(pipe_ctx)) {
config.stream_enc_idx = pipe_ctx->stream_res.hpo_dp_stream_enc->id - ENGINE_ID_HPO_DP_0;
config.link_enc_idx = pipe_ctx->link_res.hpo_dp_link_enc->inst; /* link encoder index */
config.dp2_enabled = 1; config.link_enc_idx = link_enc->transmitter - TRANSMITTER_UNIPHY_A;
} #if defined(CONFIG_DRM_AMD_DC_DCN)
if (is_dp_128b_132b_signal(pipe_ctx))
config.link_enc_idx = pipe_ctx->link_res.hpo_dp_link_enc->inst;
#endif #endif
config.dpms_off = dpms_off; /* dio output index */
config.dm_stream_ctx = pipe_ctx->stream->dm_stream_context; config.dio_output_idx = link_enc->transmitter - TRANSMITTER_UNIPHY_A;
config.assr_enabled = (panel_mode == DP_PANEL_MODE_EDP);
config.mst_enabled = (pipe_ctx->stream->signal == /* phy index */
SIGNAL_TYPE_DISPLAY_PORT_MST); config.phy_idx = resource_transmitter_to_phy_idx(
cp_psp->funcs.update_stream_config(cp_psp->handle, &config); pipe_ctx->stream->link->dc, link_enc->transmitter);
} if (pipe_ctx->stream->link->ep_type == DISPLAY_ENDPOINT_USB4_DPIA)
/* USB4 DPIA doesn't use PHY in our soc, initialize it to 0 */
config.phy_idx = 0;
/* stream properties */
config.assr_enabled = (panel_mode == DP_PANEL_MODE_EDP) ? 1 : 0;
config.mst_enabled = (pipe_ctx->stream->signal ==
SIGNAL_TYPE_DISPLAY_PORT_MST) ? 1 : 0;
#if defined(CONFIG_DRM_AMD_DC_DCN)
config.dp2_enabled = is_dp_128b_132b_signal(pipe_ctx) ? 1 : 0;
#endif
config.usb4_enabled = (pipe_ctx->stream->link->ep_type == DISPLAY_ENDPOINT_USB4_DPIA) ?
1 : 0;
config.dpms_off = dpms_off;
/* dm stream context */
config.dm_stream_ctx = pipe_ctx->stream->dm_stream_context;
cp_psp->funcs.update_stream_config(cp_psp->handle, &config);
} }
#endif #endif
......
...@@ -3270,3 +3270,36 @@ void check_syncd_pipes_for_disabled_master_pipe(struct dc *dc, ...@@ -3270,3 +3270,36 @@ void check_syncd_pipes_for_disabled_master_pipe(struct dc *dc,
i, disabled_master_pipe_idx); i, disabled_master_pipe_idx);
} }
} }
uint8_t resource_transmitter_to_phy_idx(const struct dc *dc, enum transmitter transmitter)
{
/* TODO - get transmitter to phy idx mapping from DMUB */
uint8_t phy_idx = transmitter - TRANSMITTER_UNIPHY_A;
#if defined(CONFIG_DRM_AMD_DC_DCN)
if (dc->ctx->dce_version == DCN_VERSION_3_1 &&
dc->ctx->asic_id.hw_internal_rev == YELLOW_CARP_B0) {
switch (transmitter) {
case TRANSMITTER_UNIPHY_A:
phy_idx = 0;
break;
case TRANSMITTER_UNIPHY_B:
phy_idx = 1;
break;
case TRANSMITTER_UNIPHY_C:
phy_idx = 5;
break;
case TRANSMITTER_UNIPHY_D:
phy_idx = 6;
break;
case TRANSMITTER_UNIPHY_E:
phy_idx = 4;
break;
default:
phy_idx = 0;
break;
}
}
#endif
return phy_idx;
}
...@@ -34,12 +34,12 @@ struct cp_psp_stream_config { ...@@ -34,12 +34,12 @@ struct cp_psp_stream_config {
uint8_t dig_fe; uint8_t dig_fe;
uint8_t link_enc_idx; uint8_t link_enc_idx;
uint8_t stream_enc_idx; uint8_t stream_enc_idx;
uint8_t phy_idx;
uint8_t dio_output_idx; uint8_t dio_output_idx;
uint8_t dio_output_type; uint8_t phy_idx;
uint8_t assr_enabled; uint8_t assr_enabled;
uint8_t mst_enabled; uint8_t mst_enabled;
uint8_t dp2_enabled; uint8_t dp2_enabled;
uint8_t usb4_enabled;
void *dm_stream_ctx; void *dm_stream_ctx;
bool dpms_off; bool dpms_off;
}; };
......
...@@ -218,5 +218,6 @@ void reset_syncd_pipes_from_disabled_pipes(struct dc *dc, ...@@ -218,5 +218,6 @@ void reset_syncd_pipes_from_disabled_pipes(struct dc *dc,
void check_syncd_pipes_for_disabled_master_pipe(struct dc *dc, void check_syncd_pipes_for_disabled_master_pipe(struct dc *dc,
struct dc_state *context, struct dc_state *context,
uint8_t disabled_master_pipe_idx); uint8_t disabled_master_pipe_idx);
uint8_t resource_transmitter_to_phy_idx(const struct dc *dc, enum transmitter transmitter);
#endif /* DRIVERS_GPU_DRM_AMD_DC_DEV_DC_INC_RESOURCE_H_ */ #endif /* DRIVERS_GPU_DRM_AMD_DC_DEV_DC_INC_RESOURCE_H_ */
...@@ -104,6 +104,7 @@ struct mod_hdcp_displayport { ...@@ -104,6 +104,7 @@ struct mod_hdcp_displayport {
uint8_t rev; uint8_t rev;
uint8_t assr_enabled; uint8_t assr_enabled;
uint8_t mst_enabled; uint8_t mst_enabled;
uint8_t usb4_enabled;
}; };
struct mod_hdcp_hdmi { struct mod_hdcp_hdmi {
...@@ -249,7 +250,6 @@ struct mod_hdcp_link { ...@@ -249,7 +250,6 @@ struct mod_hdcp_link {
uint8_t ddc_line; uint8_t ddc_line;
uint8_t link_enc_idx; uint8_t link_enc_idx;
uint8_t phy_idx; uint8_t phy_idx;
uint8_t dio_output_type;
uint8_t dio_output_id; uint8_t dio_output_id;
uint8_t hdcp_supported_informational; uint8_t hdcp_supported_informational;
union { union {
......
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