diff options
author | Rodrigo Siqueira <[email protected]> | 2024-07-25 16:41:38 -0600 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2024-08-06 11:11:01 -0400 |
commit | e1dbe625d6ac2821eb29e087db46cb539d8079f0 (patch) | |
tree | 9a36381b71b46d5ae0be633e5f72c731ffa008dd | |
parent | 4f842ba7cdd83cba1d5c0bbd15ed9d14d882cf89 (diff) |
drm/amd/display: Add missing program DET segment call to pipe init
Add a callback that program the DET segment when initializing pipes.
Acked-by: Tom Chung <[email protected]>
Signed-off-by: Rodrigo Siqueira <[email protected]>
Signed-off-by: Wayne Lin <[email protected]>
Tested-by: Daniel Wheeler <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/hwss/dcn10/dcn10_hwseq.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/hwss/dcn10/dcn10_hwseq.c b/drivers/gpu/drm/amd/display/dc/hwss/dcn10/dcn10_hwseq.c index e31249d1dd22..3cd584419b88 100644 --- a/drivers/gpu/drm/amd/display/dc/hwss/dcn10/dcn10_hwseq.c +++ b/drivers/gpu/drm/amd/display/dc/hwss/dcn10/dcn10_hwseq.c @@ -1403,6 +1403,8 @@ void dcn10_init_pipes(struct dc *dc, struct dc_state *context) if (hubbub && hubp) { if (hubbub->funcs->program_det_size) hubbub->funcs->program_det_size(hubbub, hubp->inst, 0); + if (hubbub->funcs->program_det_segments) + hubbub->funcs->program_det_segments(hubbub, hubp->inst, 0); } } |