Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/amd/display: Move RGB-type check for audio sync to DCE HW sequence

[Why&How]
DVI-A & VGA connectors are applicable to DCE ASICs, so move them to
dce110_hwseq.c to block audio sync on SIGNAL_TYPE_RGB for DCE ASICs.

Signed-off-by: Ivan Lipski <ivan.lipski@amd.com>
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Tested-by: Dan Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Ivan Lipski and committed by
Alex Deucher
5fdd03c7 4fa94425

+4 -2
+3
drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c
··· 1102 1102 if (!pipe_ctx->stream) 1103 1103 return; 1104 1104 1105 + if (dc_is_rgb_signal(pipe_ctx->stream->signal)) 1106 + return; 1107 + 1105 1108 dc = pipe_ctx->stream->ctx->dc; 1106 1109 clk_mgr = dc->clk_mgr; 1107 1110 link_hwss = get_link_hwss(pipe_ctx->stream->link, &pipe_ctx->link_res);