* [PATCH] drm/msm/dpu: fix x1e80100 intf_6 underrun/vsync interrupt
@ 2024-11-15 12:55 Stephan Gerhold
2024-11-15 13:17 ` Johan Hovold
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Stephan Gerhold @ 2024-11-15 12:55 UTC (permalink / raw)
To: Rob Clark, Abhinav Kumar, Dmitry Baryshkov
Cc: Sean Paul, Marijn Suijten, David Airlie, Simona Vetter, Abel Vesa,
linux-arm-msm, dri-devel, freedreno, linux-kernel, Johan Hovold,
stable
The IRQ indexes for the intf_6 underrun/vsync interrupts are swapped.
DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 16) is the actual underrun interrupt and
DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 17) is the vsync interrupt.
This causes timeout errors when using the DP2 controller, e.g.
[dpu error]enc37 frame done timeout
*ERROR* irq timeout id=37, intf_mode=INTF_MODE_VIDEO intf=6 wb=-1, pp=2, intr=0
*ERROR* wait disable failed: id:37 intf:6 ret:-110
Correct them to fix these errors and make DP2 work properly.
Cc: stable@vger.kernel.org
Fixes: e3b1f369db5a ("drm/msm/dpu: Add X1E80100 support")
Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
---
drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_9_2_x1e80100.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_9_2_x1e80100.h b/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_9_2_x1e80100.h
index a3e60ac70689..d61895bb396f 100644
--- a/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_9_2_x1e80100.h
+++ b/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_9_2_x1e80100.h
@@ -389,8 +389,8 @@ static const struct dpu_intf_cfg x1e80100_intf[] = {
.type = INTF_DP,
.controller_id = MSM_DP_CONTROLLER_2,
.prog_fetch_lines_worst_case = 24,
- .intr_underrun = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 17),
- .intr_vsync = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 16),
+ .intr_underrun = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 16),
+ .intr_vsync = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 17),
}, {
.name = "intf_7", .id = INTF_7,
.base = 0x3b000, .len = 0x280,
---
base-commit: 744cf71b8bdfcdd77aaf58395e068b7457634b2c
change-id: 20241115-x1e80100-dp2-fix-beb12c6dcac9
Best regards,
--
Stephan Gerhold <stephan.gerhold@linaro.org>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] drm/msm/dpu: fix x1e80100 intf_6 underrun/vsync interrupt
2024-11-15 12:55 [PATCH] drm/msm/dpu: fix x1e80100 intf_6 underrun/vsync interrupt Stephan Gerhold
@ 2024-11-15 13:17 ` Johan Hovold
2024-11-15 14:20 ` Dmitry Baryshkov
2024-12-03 2:57 ` Abhinav Kumar
2 siblings, 0 replies; 4+ messages in thread
From: Johan Hovold @ 2024-11-15 13:17 UTC (permalink / raw)
To: Stephan Gerhold
Cc: Rob Clark, Abhinav Kumar, Dmitry Baryshkov, Sean Paul,
Marijn Suijten, David Airlie, Simona Vetter, Abel Vesa,
linux-arm-msm, dri-devel, freedreno, linux-kernel, stable
On Fri, Nov 15, 2024 at 01:55:13PM +0100, Stephan Gerhold wrote:
> The IRQ indexes for the intf_6 underrun/vsync interrupts are swapped.
> DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 16) is the actual underrun interrupt and
> DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 17) is the vsync interrupt.
>
> This causes timeout errors when using the DP2 controller, e.g.
> [dpu error]enc37 frame done timeout
> *ERROR* irq timeout id=37, intf_mode=INTF_MODE_VIDEO intf=6 wb=-1, pp=2, intr=0
> *ERROR* wait disable failed: id:37 intf:6 ret:-110
>
> Correct them to fix these errors and make DP2 work properly.
>
> Cc: stable@vger.kernel.org
> Fixes: e3b1f369db5a ("drm/msm/dpu: Add X1E80100 support")
> Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
This fixes the errors I was seeing with the third usb-c port on the
x1e80100 CRD:
Tested-by: Johan Hovold <johan+linaro@kernel.org>
Johan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] drm/msm/dpu: fix x1e80100 intf_6 underrun/vsync interrupt
2024-11-15 12:55 [PATCH] drm/msm/dpu: fix x1e80100 intf_6 underrun/vsync interrupt Stephan Gerhold
2024-11-15 13:17 ` Johan Hovold
@ 2024-11-15 14:20 ` Dmitry Baryshkov
2024-12-03 2:57 ` Abhinav Kumar
2 siblings, 0 replies; 4+ messages in thread
From: Dmitry Baryshkov @ 2024-11-15 14:20 UTC (permalink / raw)
To: Stephan Gerhold
Cc: Rob Clark, Abhinav Kumar, Sean Paul, Marijn Suijten, David Airlie,
Simona Vetter, Abel Vesa, linux-arm-msm, dri-devel, freedreno,
linux-kernel, Johan Hovold, stable
On Fri, Nov 15, 2024 at 01:55:13PM +0100, Stephan Gerhold wrote:
> The IRQ indexes for the intf_6 underrun/vsync interrupts are swapped.
> DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 16) is the actual underrun interrupt and
> DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 17) is the vsync interrupt.
>
> This causes timeout errors when using the DP2 controller, e.g.
> [dpu error]enc37 frame done timeout
> *ERROR* irq timeout id=37, intf_mode=INTF_MODE_VIDEO intf=6 wb=-1, pp=2, intr=0
> *ERROR* wait disable failed: id:37 intf:6 ret:-110
>
> Correct them to fix these errors and make DP2 work properly.
>
> Cc: stable@vger.kernel.org
> Fixes: e3b1f369db5a ("drm/msm/dpu: Add X1E80100 support")
> Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
> ---
> drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_9_2_x1e80100.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
This matches other DPU hardware, so
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] drm/msm/dpu: fix x1e80100 intf_6 underrun/vsync interrupt
2024-11-15 12:55 [PATCH] drm/msm/dpu: fix x1e80100 intf_6 underrun/vsync interrupt Stephan Gerhold
2024-11-15 13:17 ` Johan Hovold
2024-11-15 14:20 ` Dmitry Baryshkov
@ 2024-12-03 2:57 ` Abhinav Kumar
2 siblings, 0 replies; 4+ messages in thread
From: Abhinav Kumar @ 2024-12-03 2:57 UTC (permalink / raw)
To: Stephan Gerhold, Rob Clark, Dmitry Baryshkov
Cc: Sean Paul, Marijn Suijten, David Airlie, Simona Vetter, Abel Vesa,
linux-arm-msm, dri-devel, freedreno, linux-kernel, Johan Hovold,
stable
On 11/15/2024 4:55 AM, Stephan Gerhold wrote:
> The IRQ indexes for the intf_6 underrun/vsync interrupts are swapped.
> DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 16) is the actual underrun interrupt and
> DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 17) is the vsync interrupt.
>
> This causes timeout errors when using the DP2 controller, e.g.
> [dpu error]enc37 frame done timeout
> *ERROR* irq timeout id=37, intf_mode=INTF_MODE_VIDEO intf=6 wb=-1, pp=2, intr=0
> *ERROR* wait disable failed: id:37 intf:6 ret:-110
>
> Correct them to fix these errors and make DP2 work properly.
>
> Cc: stable@vger.kernel.org
> Fixes: e3b1f369db5a ("drm/msm/dpu: Add X1E80100 support")
> Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
> ---
> drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_9_2_x1e80100.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
Thanks for fixing this, good catch !
Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-03 2:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-15 12:55 [PATCH] drm/msm/dpu: fix x1e80100 intf_6 underrun/vsync interrupt Stephan Gerhold
2024-11-15 13:17 ` Johan Hovold
2024-11-15 14:20 ` Dmitry Baryshkov
2024-12-03 2:57 ` Abhinav Kumar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox