* [PATCH 0/1] drm/amd: more VRR race fixes during IRQ handling
@ 2024-09-16 12:54 tjakobi
2024-09-16 12:54 ` [PATCH 1/1] drm/amd/display: handle nulled pipe context in DCE110's set_drr() tjakobi
0 siblings, 1 reply; 3+ messages in thread
From: tjakobi @ 2024-09-16 12:54 UTC (permalink / raw)
To: amd-gfx, dri-devel, linux-kernel; +Cc: Tobias Jakobi
From: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
Hello,
this is a follow-up for these (already merged) patches:
https://lore.kernel.org/all/cover.1725269643.git.tjakobi@math.uni-bielefeld.de/
A user on the GitLab issue tracker pointed out that the problem
also manifests itself on DCE110 hardware.
This is a straight port of DCE10/DCE35 code.
With best wishes,
Tobias
Tobias Jakobi (1):
drm/amd/display: handle nulled pipe context in DCE110's set_drr()
.../amd/display/dc/hwss/dce110/dce110_hwseq.c | 21 ++++++++++++-------
1 file changed, 14 insertions(+), 7 deletions(-)
--
2.44.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] drm/amd/display: handle nulled pipe context in DCE110's set_drr()
2024-09-16 12:54 [PATCH 0/1] drm/amd: more VRR race fixes during IRQ handling tjakobi
@ 2024-09-16 12:54 ` tjakobi
2024-09-16 21:12 ` Alex Deucher
0 siblings, 1 reply; 3+ messages in thread
From: tjakobi @ 2024-09-16 12:54 UTC (permalink / raw)
To: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Pan, Xinhui, David Airlie, Daniel Vetter,
Mario Limonciello
Cc: Tobias Jakobi, amd-gfx, dri-devel, linux-kernel
From: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
As set_drr() is called from IRQ context, it can happen that the
pipe context has been nulled by dc_state_destruct().
Apply the same protection here that is already present for
dcn35_set_drr() and dcn10_set_drr(). I.e. fetch the tg pointer
first (to avoid a race with dc_state_destruct()), and then
check the local copy before using it.
Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/3142
Fixes: 06ad7e164256 ("drm/amd/display: Destroy DC context while keeping DML and DML2")
Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
---
.../amd/display/dc/hwss/dce110/dce110_hwseq.c | 21 ++++++++++++-------
1 file changed, 14 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c b/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c
index 0d3ea291eeee..666dfc6d192e 100644
--- a/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c
+++ b/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c
@@ -1970,13 +1970,20 @@ static void set_drr(struct pipe_ctx **pipe_ctx,
* as well.
*/
for (i = 0; i < num_pipes; i++) {
- pipe_ctx[i]->stream_res.tg->funcs->set_drr(
- pipe_ctx[i]->stream_res.tg, ¶ms);
-
- if (adjust.v_total_max != 0 && adjust.v_total_min != 0)
- pipe_ctx[i]->stream_res.tg->funcs->set_static_screen_control(
- pipe_ctx[i]->stream_res.tg,
- event_triggers, num_frames);
+ /* dc_state_destruct() might null the stream resources, so fetch tg
+ * here first to avoid a race condition. The lifetime of the pointee
+ * itself (the timing_generator object) is not a problem here.
+ */
+ struct timing_generator *tg = pipe_ctx[i]->stream_res.tg;
+
+ if ((tg != NULL) && tg->funcs) {
+ if (tg->funcs->set_drr)
+ tg->funcs->set_drr(tg, ¶ms);
+ if (adjust.v_total_max != 0 && adjust.v_total_min != 0)
+ if (tg->funcs->set_static_screen_control)
+ tg->funcs->set_static_screen_control(
+ tg, event_triggers, num_frames);
+ }
}
}
--
2.44.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] drm/amd/display: handle nulled pipe context in DCE110's set_drr()
2024-09-16 12:54 ` [PATCH 1/1] drm/amd/display: handle nulled pipe context in DCE110's set_drr() tjakobi
@ 2024-09-16 21:12 ` Alex Deucher
0 siblings, 0 replies; 3+ messages in thread
From: Alex Deucher @ 2024-09-16 21:12 UTC (permalink / raw)
To: tjakobi
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Pan, Xinhui, David Airlie, Daniel Vetter,
Mario Limonciello, amd-gfx, dri-devel, linux-kernel
Acked-by: Alex Deucher <alexander.deucher@amd.com>
And applied.
Thanks!
On Mon, Sep 16, 2024 at 9:03 AM <tjakobi@math.uni-bielefeld.de> wrote:
>
> From: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
>
> As set_drr() is called from IRQ context, it can happen that the
> pipe context has been nulled by dc_state_destruct().
>
> Apply the same protection here that is already present for
> dcn35_set_drr() and dcn10_set_drr(). I.e. fetch the tg pointer
> first (to avoid a race with dc_state_destruct()), and then
> check the local copy before using it.
>
> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/3142
> Fixes: 06ad7e164256 ("drm/amd/display: Destroy DC context while keeping DML and DML2")
> Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
> ---
> .../amd/display/dc/hwss/dce110/dce110_hwseq.c | 21 ++++++++++++-------
> 1 file changed, 14 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c b/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c
> index 0d3ea291eeee..666dfc6d192e 100644
> --- a/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c
> +++ b/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c
> @@ -1970,13 +1970,20 @@ static void set_drr(struct pipe_ctx **pipe_ctx,
> * as well.
> */
> for (i = 0; i < num_pipes; i++) {
> - pipe_ctx[i]->stream_res.tg->funcs->set_drr(
> - pipe_ctx[i]->stream_res.tg, ¶ms);
> -
> - if (adjust.v_total_max != 0 && adjust.v_total_min != 0)
> - pipe_ctx[i]->stream_res.tg->funcs->set_static_screen_control(
> - pipe_ctx[i]->stream_res.tg,
> - event_triggers, num_frames);
> + /* dc_state_destruct() might null the stream resources, so fetch tg
> + * here first to avoid a race condition. The lifetime of the pointee
> + * itself (the timing_generator object) is not a problem here.
> + */
> + struct timing_generator *tg = pipe_ctx[i]->stream_res.tg;
> +
> + if ((tg != NULL) && tg->funcs) {
> + if (tg->funcs->set_drr)
> + tg->funcs->set_drr(tg, ¶ms);
> + if (adjust.v_total_max != 0 && adjust.v_total_min != 0)
> + if (tg->funcs->set_static_screen_control)
> + tg->funcs->set_static_screen_control(
> + tg, event_triggers, num_frames);
> + }
> }
> }
>
> --
> 2.44.2
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-09-16 21:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-16 12:54 [PATCH 0/1] drm/amd: more VRR race fixes during IRQ handling tjakobi
2024-09-16 12:54 ` [PATCH 1/1] drm/amd/display: handle nulled pipe context in DCE110's set_drr() tjakobi
2024-09-16 21:12 ` Alex Deucher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox