mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-11 22:45:11 +07:00
drm/amd/display: fix crc_source_select use hardcoded color depth
Signed-off-by: Charlene Liu <charlene.liu@amd.com> Reviewed-by: Tony Cheng <Tony.Cheng@amd.com> Acked-by: Harry Wentland <Harry.Wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
acea7183b5
commit
1b7441b00a
@ -667,7 +667,25 @@ static enum dc_status bios_parser_crtc_source_select(
|
||||
crtc_source_select.signal = pipe_ctx->stream->signal;
|
||||
crtc_source_select.enable_dp_audio = false;
|
||||
crtc_source_select.sink_signal = pipe_ctx->stream->signal;
|
||||
|
||||
switch (pipe_ctx->stream->timing.display_color_depth) {
|
||||
case COLOR_DEPTH_666:
|
||||
crtc_source_select.display_output_bit_depth = PANEL_6BIT_COLOR;
|
||||
break;
|
||||
case COLOR_DEPTH_888:
|
||||
crtc_source_select.display_output_bit_depth = PANEL_8BIT_COLOR;
|
||||
break;
|
||||
case COLOR_DEPTH_101010:
|
||||
crtc_source_select.display_output_bit_depth = PANEL_10BIT_COLOR;
|
||||
break;
|
||||
case COLOR_DEPTH_121212:
|
||||
crtc_source_select.display_output_bit_depth = PANEL_12BIT_COLOR;
|
||||
break;
|
||||
default:
|
||||
BREAK_TO_DEBUGGER();
|
||||
crtc_source_select.display_output_bit_depth = PANEL_8BIT_COLOR;
|
||||
break;
|
||||
}
|
||||
|
||||
dcb = sink->ctx->dc_bios;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user