diff options
| author | Alvin Lee <[email protected]> | 2022-06-03 19:29:27 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2022-07-05 20:17:54 +0000 |
| commit | 3e211f23aa1e1a3223edb64c4bc25cae28a1e3ae (patch) | |
| tree | 9f8ea056b22af1e7d1f098929625acf5a14ffee8 | |
| parent | drm/amd/display: 3.2.192 (diff) | |
| download | kernel-3e211f23aa1e1a3223edb64c4bc25cae28a1e3ae.tar.gz kernel-3e211f23aa1e1a3223edb64c4bc25cae28a1e3ae.zip | |
drm/amd/display: Maintain old audio programming sequence
[Description]
Program audio DTO before wall dto for audio
Reviewed-by: Martin Leung <[email protected]>
Acked-by: Qingqing Zhuo <[email protected]>
Signed-off-by: Alvin Lee <[email protected]>
Tested-by: Daniel Wheeler <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c b/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c index 76e1e0966064..e69c942c8345 100644 --- a/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c +++ b/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c @@ -2171,16 +2171,14 @@ static void dce110_setup_audio_dto( if (dc->res_pool->dccg && dc->res_pool->dccg->funcs->set_audio_dtbclk_dto) { struct dtbclk_dto_params dto_params = {0}; + dc->res_pool->dccg->funcs->set_audio_dtbclk_dto( + dc->res_pool->dccg, &dto_params); + pipe_ctx->stream_res.audio->funcs->wall_dto_setup( pipe_ctx->stream_res.audio, pipe_ctx->stream->signal, &audio_output.crtc_info, &audio_output.pll_info); - - /* disable audio DTBCLK DTO */ - dc->res_pool->dccg->funcs->set_audio_dtbclk_dto( - dc->res_pool->dccg, &dto_params); - } else pipe_ctx->stream_res.audio->funcs->wall_dto_setup( pipe_ctx->stream_res.audio, |
